summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2023-09-29 12:31:33 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2023-09-29 15:29:07 +0200
commit1898696b6207b4bc61f6d9362b01ef143aaa60d1 (patch)
tree504ba532497b306210c4f371f8c368b41df45a7b
parent1d49d7968661729c2b58c07b192cf6c18ab47d4b (diff)
downloadptxdist-1898696b6207b4bc61f6d9362b01ef143aaa60d1.tar.gz
ptxdist-1898696b6207b4bc61f6d9362b01ef143aaa60d1.tar.xz
nanocom: remove after more than one year in staging
Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--patches/nanocom-1.0/0001-Nanocom-fix-its-buildsystem.patch37
-rw-r--r--patches/nanocom-1.0/series4
-rw-r--r--rules/nanocom.in11
-rw-r--r--rules/nanocom.make62
4 files changed, 0 insertions, 114 deletions
diff --git a/patches/nanocom-1.0/0001-Nanocom-fix-its-buildsystem.patch b/patches/nanocom-1.0/0001-Nanocom-fix-its-buildsystem.patch
deleted file mode 100644
index 2e50eff3f..000000000
--- a/patches/nanocom-1.0/0001-Nanocom-fix-its-buildsystem.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-From: Juergen Beisert <jbe@pengutronix.de>
-Date: Mon, 2 Jul 2012 10:36:35 +0200
-Subject: [PATCH] Nanocom: fix its buildsystem
-
-This existing Makefile tries to be smarter than Make is. And it fails badly.
- - it is not able to compile twice
- - it does not honor external flags, nor does it list the binaries sources for
- dependency detection
-
-Signed-off.by: Juergen Beisert <jbe@pengutronix.de>
----
- Makefile | 10 ++++------
- 1 files changed, 4 insertions(+), 6 deletions(-)
-
-diff --git a/Makefile b/Makefile
-index df28d22..1ef2aed 100644
---- a/Makefile
-+++ b/Makefile
-@@ -12,13 +12,11 @@
- #** GNU General Public License for more details at www.gnu.org
- #****************************************************************************/
-
--CC=gcc
-+all: nanocom
-
--all: clean nanocom
-+nanocom: mux.c menu.c nanocom.c
-
--nanocom:
-- $(CC) mux.c nanocom.c menu.c -o nanocom
--
- clean:
- rm -rf *.o nanocom
--
-\ No newline at end of file
-+
-+.PHONY: all clean
diff --git a/patches/nanocom-1.0/series b/patches/nanocom-1.0/series
deleted file mode 100644
index 5314ad7bf..000000000
--- a/patches/nanocom-1.0/series
+++ /dev/null
@@ -1,4 +0,0 @@
-# generated by git-ptx-patches
-#tag:base --start-number 1
-0001-Nanocom-fix-its-buildsystem.patch
-# e6ac4f301256655d216f4f37323e0a80 - git-ptx-patches magic
diff --git a/rules/nanocom.in b/rules/nanocom.in
deleted file mode 100644
index 5bd837e65..000000000
--- a/rules/nanocom.in
+++ /dev/null
@@ -1,11 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=shell_and_console
-config NANOCOM
- tristate
- prompt "nanocom"
- help
- This is a lightweight terminal emulator.
-
- STAGING: remove in PTXdist 2023.04.0
- Upstream is dead and fails to build with a current toolchain (gcc 11).
diff --git a/rules/nanocom.make b/rules/nanocom.make
deleted file mode 100644
index 74adbd255..000000000
--- a/rules/nanocom.make
+++ /dev/null
@@ -1,62 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2007 by Juergen Beisert
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_NANOCOM) += nanocom
-
-#
-# Paths and names
-#
-NANOCOM_VERSION := 1.0
-NANOCOM_MD5 := 6dd9cc4f4a2191952ee8b13da877dec5
-NANOCOM := nanocom-$(NANOCOM_VERSION)
-NANOCOM_SUFFIX := tar.bz2
-NANOCOM_URL := http://www.pengutronix.de/software/ptxdist/temporary-src/$(NANOCOM).$(NANOCOM_SUFFIX)
-NANOCOM_SOURCE := $(SRCDIR)/$(NANOCOM).$(NANOCOM_SUFFIX)
-NANOCOM_DIR := $(BUILDDIR)/$(NANOCOM)
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-NANOCOM_CONF_TOOL := NO
-NANOCOM_MAKE_OPT := \
- $(CROSS_ENV_CC)
-
-# ----------------------------------------------------------------------------
-# Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/nanocom.install:
- @$(call targetinfo)
- @install -v -m 0755 -D $(NANOCOM_DIR)/nanocom \
- $(NANOCOM_PKGDIR)/usr/bin/nanocom
- @$(call touch)
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/nanocom.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, nanocom)
- @$(call install_fixup, nanocom,PRIORITY,optional)
- @$(call install_fixup, nanocom,SECTION,base)
- @$(call install_fixup, nanocom,AUTHOR,"Juergen Beisert <juergen@kreuzholzen.de>")
- @$(call install_fixup, nanocom,DESCRIPTION,missing)
-
- @$(call install_copy, nanocom, 0, 0, 0755, -, /usr/bin/nanocom)
-
- @$(call install_finish, nanocom)
-
- @$(call touch)
-
-# vim: syntax=make