From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Mon, 18 May 2026 09:56:12 +0200 Received: from metis.whiteo.stw.pengutronix.de ([2a0a:edc0:2:b01:1d::104]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wOspg-0013a2-1f for lore@lore.pengutronix.de; Mon, 18 May 2026 09:56:12 +0200 Received: from [127.0.0.1] (helo=metis.whiteo.stw.pengutronix.de) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wOspf-0002mi-Q6; Mon, 18 May 2026 09:56:11 +0200 Received: from drehscheibe.grey.stw.pengutronix.de ([2a0a:edc0:0:c01:1d::a2]) by metis.whiteo.stw.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1wOsnm-0004QT-Nw; Mon, 18 May 2026 09:54:14 +0200 Received: from dude05.red.stw.pengutronix.de ([2a0a:edc0:0:1101:1d::54]) by drehscheibe.grey.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.96) (envelope-from ) id 1wOsnm-000YTo-0G; Mon, 18 May 2026 09:54:14 +0200 Received: from mol by dude05.red.stw.pengutronix.de with local (Exim 4.98.2) (envelope-from ) id 1wOsnm-00000000Dfp-2VGp; Mon, 18 May 2026 09:54:14 +0200 From: Michael Olbrich To: ptxdist@pengutronix.de Date: Mon, 18 May 2026 09:54:14 +0200 Message-ID: <20260518075414.52554-1-m.olbrich@pengutronix.de> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260504125335.64734-1-t.scherer@eckelmann.de> References: <20260504125335.64734-1-t.scherer@eckelmann.de> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: Re: [ptxdist] [APPLIED] xterm: Remove after one year in staging X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: Thorsten Scherer Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.whiteo.stw.pengutronix.de); SAEximRunCond expanded to false Thanks, applied as 4592d03165e0191781000b2eafe619776e8a6a33. Michael [sent from post-receive hook] On Mon, 18 May 2026 09:54:14 +0200, Thorsten Scherer wrote: > Signed-off-by: Thorsten Scherer > Message-Id: <20260504125335.64734-1-t.scherer@eckelmann.de> > Signed-off-by: Michael Olbrich > > diff --git a/rules/xterm.in b/rules/xterm.in > deleted file mode 100644 > index 34cfb911ee2f..000000000000 > --- a/rules/xterm.in > +++ /dev/null > @@ -1,22 +0,0 @@ > -## SECTION=staging > -## old section: > -### SECTION=multimedia_xorg_app > - > -config XTERM > - tristate > - select XORG_LIB_XAW > - select XORG_LIB_XMU > - select XORG_LIB_XEXT > - select XORG_LIB_XT > - select XORG_LIB_SM > - select XORG_LIB_ICE > - select XORG_LIB_X11 > - select NCURSES > - prompt "xterm" > - help > - The xterm program is the standard terminal emulator for the X > - Window System. > - > - STAGING: remove in PTXdist 2026.03.0 > - Unmaintained in PTXdist and fails to build with current toolchains. > - Needs updating to the latest version. > diff --git a/rules/xterm.make b/rules/xterm.make > deleted file mode 100644 > index 832391070312..000000000000 > --- a/rules/xterm.make > +++ /dev/null > @@ -1,69 +0,0 @@ > -# -*-makefile-*- > -# > -# Copyright (C) 2006 by Sascha Hauer > -# > -# For further information about the PTXdist project and license conditions > -# see the README file. > -# > - > -# > -# We provide this package > -# > -PACKAGES-$(PTXCONF_XTERM) += xterm > - > -# > -# Paths and names > -# > -XTERM_VERSION := 284 > -XTERM_MD5 := fa6bd90b91365f41c6bb895bee054c12 > -XTERM := xterm-$(XTERM_VERSION) > -XTERM_SUFFIX := tgz > -XTERM_URL := https://invisible-mirror.net/archives/xterm/$(XTERM).$(XTERM_SUFFIX) > -XTERM_SOURCE := $(SRCDIR)/$(XTERM).$(XTERM_SUFFIX) > -XTERM_DIR := $(BUILDDIR)/$(XTERM) > -XTERM_LICENSE := MIT > -XTERM_LICENSE_FILES := \ > - file://xterm.h;startline=4;endline=30;md5=1abc86c2506fe2c8138eb8d3bdb785e3 > - > -# ---------------------------------------------------------------------------- > -# Prepare > -# ---------------------------------------------------------------------------- > - > -# > -# autoconf > -# > -XTERM_CONF_TOOL := autoconf > -XTERM_CONF_OPT := \ > - $(CROSS_AUTOCONF_USR) \ > - --disable-freetype \ > - --disable-rpath-hack \ > - --without-x > - > -# > -# "--without-x" is no typo, it means don't look for X using pre > -# defined --paths like /usr or /usr/X11, xterm will find X via > -# pkg-config then. > -# > - > -XTERM_MAKE_OPT := EXTRA_LOADFLAGS=-lICE > - > -# ---------------------------------------------------------------------------- > -# Target-Install > -# ---------------------------------------------------------------------------- > - > -$(STATEDIR)/xterm.targetinstall: > - @$(call targetinfo) > - > - @$(call install_init, xterm) > - @$(call install_fixup, xterm,PRIORITY,optional) > - @$(call install_fixup, xterm,SECTION,base) > - @$(call install_fixup, xterm,AUTHOR,"Robert Schwebel ") > - @$(call install_fixup, xterm,DESCRIPTION,missing) > - > - @$(call install_copy, xterm, 0, 0, 0755, -, $(XORG_BINDIR)/xterm) > - > - @$(call install_finish, xterm) > - > - @$(call touch) > - > -# vim: syntax=make