summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2021-07-28 11:03:28 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2021-07-28 14:47:52 +0200
commitdb0b3f0c0de142917722e21395eebd5a521e7c49 (patch)
tree7582d5dc47faec26a277977da04a8d718aeb3899
parent91e54bfea8b1c284fb05f1574ca353fb5d75ee6f (diff)
downloadptxdist-db0b3f0c0de142917722e21395eebd5a521e7c49.tar.gz
ptxdist-db0b3f0c0de142917722e21395eebd5a521e7c49.tar.xz
libnih: remove old package
It has been in staging for more than one year. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/host-libnih.in7
-rw-r--r--rules/host-libnih.make24
-rw-r--r--rules/libnih.in18
-rw-r--r--rules/libnih.make60
4 files changed, 0 insertions, 109 deletions
diff --git a/rules/host-libnih.in b/rules/host-libnih.in
deleted file mode 100644
index d2728692f..000000000
--- a/rules/host-libnih.in
+++ /dev/null
@@ -1,7 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=hosttools_noprompt
-config HOST_LIBNIH
- tristate
- default y if ALLYES
- select HOST_DBUS
diff --git a/rules/host-libnih.make b/rules/host-libnih.make
deleted file mode 100644
index d7f132f79..000000000
--- a/rules/host-libnih.make
+++ /dev/null
@@ -1,24 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2010 by Tim Sander <tim01@iss.tu-darmstadt.de>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-HOST_PACKAGES-$(PTXCONF_HOST_LIBNIH) += host-libnih
-
-#
-# Paths and names
-#
-HOST_LIBNIH_DIR = $(HOST_BUILDDIR)/$(LIBNIH)
-
-#
-# autoconf
-#
-HOST_LIBNIH_AUTOCONF := $(HOST_AUTOCONF)
-
-# vim: syntax=make
diff --git a/rules/libnih.in b/rules/libnih.in
deleted file mode 100644
index 84e8acf9f..000000000
--- a/rules/libnih.in
+++ /dev/null
@@ -1,18 +0,0 @@
-## SECTION=staging
-## old section:
-### SECTION=system_libraries
-
-config LIBNIH
- tristate
- prompt "libnih"
- select LIBC_RT
- select LIBC_PTHREAD
- select DBUS
- select HOST_LIBNIH
- help
- libnih is a small library for C application development containing
- functions that, despite its name, are not implemented elsewhere in
- the standard library set.
-
- STAGING: remove in ptxdist-2021.06.0
- Obsolete, unused and dead for a long time. Fails to build with gcc 10.
diff --git a/rules/libnih.make b/rules/libnih.make
deleted file mode 100644
index 12dc74e70..000000000
--- a/rules/libnih.make
+++ /dev/null
@@ -1,60 +0,0 @@
-# -*-makefile-*-
-#
-# Copyright (C) 2010 by Tim Sander <tim.sander@hbm.com>
-#
-# For further information about the PTXdist project and license conditions
-# see the README file.
-#
-
-#
-# We provide this package
-#
-PACKAGES-$(PTXCONF_LIBNIH) += libnih
-
-#
-# Paths and names
-#
-LIBNIH_VERSION := 1.0.2
-LIBNIH_MD5 := 89bf20db4ff3f005cc37482a4f050650
-LIBNIH := libnih-$(LIBNIH_VERSION)
-LIBNIH_SUFFIX := tar.gz
-LIBNIH_URL := http://launchpad.net/libnih/1.0/$(LIBNIH_VERSION)/+download/$(LIBNIH).$(LIBNIH_SUFFIX)
-LIBNIH_DIR := $(BUILDDIR)/$(LIBNIH)
-LIBNIH_SOURCE := $(SRCDIR)/$(LIBNIH).$(LIBNIH_SUFFIX)
-LIBNIH_LICENSE := GPL-2.0-or-later
-
-# ----------------------------------------------------------------------------
-# Prepare
-# ----------------------------------------------------------------------------
-
-LIBNIH_ENV := \
- $(CROSS_ENV) \
- NIH_DBUS_TOOL=${PTXDIST_SYSROOT_HOST}/bin/nih-dbus-tool
-
-#
-# autoconf
-#
-LIBNIH_AUTOCONF := \
- $(CROSS_AUTOCONF_USR)
-
-# ----------------------------------------------------------------------------
-# Target-Install
-# ----------------------------------------------------------------------------
-
-$(STATEDIR)/libnih.targetinstall:
- @$(call targetinfo)
-
- @$(call install_init, libnih)
- @$(call install_fixup, libnih, PRIORITY, optional)
- @$(call install_fixup, libnih, SECTION, base)
- @$(call install_fixup, libnih, AUTHOR, "Tim Sandet <tim.sander@hbm.com>")
- @$(call install_fixup, libnih, DESCRIPTION, missing)
-
- @$(call install_lib, libnih, 0, 0, 0644, libnih-dbus);
- @$(call install_lib, libnih, 0, 0, 0644, libnih);
-
- @$(call install_finish, libnih)
-
- @$(call touch)
-
-# vim: syntax=make