From b522124233e90a84963ca9512f1bb5166983a6ab Mon Sep 17 00:00:00 2001 From: Pacho Ramos Date: Sun, 11 Mar 2018 12:02:45 +0100 Subject: Remove masked for removal packages --- net-nds/ypbind/Manifest | 1 - net-nds/ypbind/files/ypbind.confd-r1 | 4 -- net-nds/ypbind/files/ypbind.initd | 40 ---------------- net-nds/ypbind/files/ypbind.service | 11 ----- net-nds/ypbind/metadata.xml | 5 -- net-nds/ypbind/ypbind-1.37.2-r1.ebuild | 64 -------------------------- net-nds/ypserv/Manifest | 1 - net-nds/ypserv/files/rpc.yppasswdd-r1 | 21 --------- net-nds/ypserv/files/rpc.yppasswdd.confd | 7 --- net-nds/ypserv/files/rpc.ypxfrd-2.23 | 21 --------- net-nds/ypserv/files/rpc.ypxfrd.confd | 3 -- net-nds/ypserv/files/ypserv | 22 --------- net-nds/ypserv/files/ypserv.confd | 4 -- net-nds/ypserv/metadata.xml | 5 -- net-nds/ypserv/ypserv-2.26-r1.ebuild | 78 -------------------------------- 15 files changed, 287 deletions(-) delete mode 100644 net-nds/ypbind/Manifest delete mode 100644 net-nds/ypbind/files/ypbind.confd-r1 delete mode 100644 net-nds/ypbind/files/ypbind.initd delete mode 100644 net-nds/ypbind/files/ypbind.service delete mode 100644 net-nds/ypbind/metadata.xml delete mode 100644 net-nds/ypbind/ypbind-1.37.2-r1.ebuild delete mode 100644 net-nds/ypserv/Manifest delete mode 100644 net-nds/ypserv/files/rpc.yppasswdd-r1 delete mode 100644 net-nds/ypserv/files/rpc.yppasswdd.confd delete mode 100644 net-nds/ypserv/files/rpc.ypxfrd-2.23 delete mode 100644 net-nds/ypserv/files/rpc.ypxfrd.confd delete mode 100644 net-nds/ypserv/files/ypserv delete mode 100644 net-nds/ypserv/files/ypserv.confd delete mode 100644 net-nds/ypserv/metadata.xml delete mode 100644 net-nds/ypserv/ypserv-2.26-r1.ebuild (limited to 'net-nds') diff --git a/net-nds/ypbind/Manifest b/net-nds/ypbind/Manifest deleted file mode 100644 index e29f024bcfa7..000000000000 --- a/net-nds/ypbind/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ypbind-mt-1.37.2.tar.bz2 197280 BLAKE2B 40a1a3caf4a353cf5dda480d486b2bb737bee7829a5cb773f52ba96e9dec7d04c3afcc19636cb9d180d7083d6df8c3697b12079cd517bdbb1e56f0be12737a39 SHA512 b101a1144b6886ff02d4ac83705313e20dac998aa30239d8ae34a0413a8deb4e786bbe3b549368119408593ceb40a95170b345c119a23b8fdf2461746c70a7be diff --git a/net-nds/ypbind/files/ypbind.confd-r1 b/net-nds/ypbind/files/ypbind.confd-r1 deleted file mode 100644 index 91cdc60c1030..000000000000 --- a/net-nds/ypbind/files/ypbind.confd-r1 +++ /dev/null @@ -1,4 +0,0 @@ -# Config file for /etc/init.d/ypbind - -# Set any command line options you want to pass to ypbind. -YPBIND_OPTS="" diff --git a/net-nds/ypbind/files/ypbind.initd b/net-nds/ypbind/files/ypbind.initd deleted file mode 100644 index 27c907ad21b0..000000000000 --- a/net-nds/ypbind/files/ypbind.initd +++ /dev/null @@ -1,40 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net portmap - use ypserv domainname -} - -start() { - ebegin "Starting ypbind" - if [ -n "${YPBIND_OPTS}" ]; then - YOPTS="-- ${YPBIND_OPTS}" - fi - start-stop-daemon --start --quiet --exec /usr/sbin/ypbind ${YOPTS} - local ret=$? - if [ $ret -eq 0 ] ; then - notfound=1 - for i in 0 1 2 3 4 5 6 7 8 9 - do - ypwhich >/dev/null 2>&1 && { notfound=0; break; } - sleep 1 - done - if [ $notfound -eq 1 ] ; then - eend 1 "No NIS server found" - else - eend 0 - fi - else - eend $ret - fi -} - -stop() { - ebegin "Stopping ypbind" - start-stop-daemon --stop --quiet --exec /usr/sbin/ypbind - eend $? - # Remove binding files, if ypbind "forgets" it - rm -f /var/yp/binding/* -} diff --git a/net-nds/ypbind/files/ypbind.service b/net-nds/ypbind/files/ypbind.service deleted file mode 100644 index a04ed71fe0d0..000000000000 --- a/net-nds/ypbind/files/ypbind.service +++ /dev/null @@ -1,11 +0,0 @@ -[Unit] -Description=YP Bind -Requires=rpcbind.service domainname.service -After=rpcbind.service domainname.service network.target -Before=systemd-user-sessions.service - -[Service] -ExecStart=/usr/sbin/ypbind -foreground - -[Install] -WantedBy=multi-user.target diff --git a/net-nds/ypbind/metadata.xml b/net-nds/ypbind/metadata.xml deleted file mode 100644 index 6f49eba8f496..000000000000 --- a/net-nds/ypbind/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/net-nds/ypbind/ypbind-1.37.2-r1.ebuild b/net-nds/ypbind/ypbind-1.37.2-r1.ebuild deleted file mode 100644 index e21f9b413783..000000000000 --- a/net-nds/ypbind/ypbind-1.37.2-r1.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -inherit readme.gentoo systemd - -MY_P=${PN}-mt-${PV} -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)" -HOMEPAGE="http://www.linux-nis.org/nis/ypbind-mt/index.html" -SRC_URI="http://www.linux-nis.org/download/ypbind-mt/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86" -IUSE="debug dbus nls slp systemd" - -RDEPEND=" - debug? ( dev-libs/dmalloc ) - dbus? ( dev-libs/dbus-glib ) - slp? ( net-libs/openslp ) - systemd? ( - net-nds/rpcbind - >=net-nds/yp-tools-2.12-r1 - sys-apps/systemd ) - !systemd? ( - net-nds/yp-tools - || ( net-nds/portmap net-nds/rpcbind ) ) -" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) -" - -DOC_CONTENTS=" - If you are using dhcpcd, be sure to add the -Y option to - dhcpcd_eth0 (or eth1, etc.) to keep dhcpcd from clobbering - /etc/yp.conf. -" - -src_prepare() { - ! use systemd && export ac_cv_header_systemd_sd_daemon_h=no -} - -src_configure() { - econf \ - $(use_enable nls) \ - $(use_enable slp) \ - $(use_with debug dmalloc) \ - $(use_enable dbus dbus-nm) -} - -src_install() { - default - - insinto /etc - newins etc/yp.conf yp.conf.example - - newconfd "${FILESDIR}/ypbind.confd-r1" ypbind - newinitd "${FILESDIR}/ypbind.initd" ypbind - use systemd && systemd_dounit "${FILESDIR}/ypbind.service" - - readme.gentoo_create_doc -} diff --git a/net-nds/ypserv/Manifest b/net-nds/ypserv/Manifest deleted file mode 100644 index f230c646898d..000000000000 --- a/net-nds/ypserv/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ypserv-2.26.tar.bz2 196037 BLAKE2B 7dd0ce5da2c3596b34b36e68178ec2445d6d16a648a03dcdb5753f3182e97cbac5afd228037f0334d20670b040289d443802e75dcc58299292e30cff733f8989 SHA512 03ae9dfc65cfcedab37f7b0945cf87b9c6e2d15d081d9e023ab6f1d7a8bfe9e00971d7ec4d0f6f040515bc9cd21e4a9fc76b1f4d6fecce9ea48c289b84305ad1 diff --git a/net-nds/ypserv/files/rpc.yppasswdd-r1 b/net-nds/ypserv/files/rpc.yppasswdd-r1 deleted file mode 100644 index 9c2c2b416c53..000000000000 --- a/net-nds/ypserv/files/rpc.yppasswdd-r1 +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net portmap ypserv -} - -start() { - ebegin "Starting rpc.yppasswdd" - YOPTS="" - if [ -n "${YPPASSWDD_OPTS}" ]; then YOPTS="-- ${YPPASSWDD_OPTS}"; fi - start-stop-daemon --start --quiet --exec /usr/sbin/rpc.yppasswdd ${YOPTS} - eend $? -} - -stop() { - ebegin "Stopping rpc.yppasswdd" - start-stop-daemon --stop --quiet --exec /usr/sbin/rpc.yppasswdd - eend $? -} diff --git a/net-nds/ypserv/files/rpc.yppasswdd.confd b/net-nds/ypserv/files/rpc.yppasswdd.confd deleted file mode 100644 index 0d6673630776..000000000000 --- a/net-nds/ypserv/files/rpc.yppasswdd.confd +++ /dev/null @@ -1,7 +0,0 @@ -# -e chsh allows changing shell through ypchsh, -# -e chfn allows changing GECOS ("finger") information through ypchfn, -# -D allows specification of directory with yp/NIS sources -# if other than /etc. -#YPPASSWDD_OPTS="-e chsh -e chfn -D /var/yp/source" - - diff --git a/net-nds/ypserv/files/rpc.ypxfrd-2.23 b/net-nds/ypserv/files/rpc.ypxfrd-2.23 deleted file mode 100644 index d096dbf266a8..000000000000 --- a/net-nds/ypserv/files/rpc.ypxfrd-2.23 +++ /dev/null @@ -1,21 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net portmap ypserv -} - -start() { - ebegin "Starting rpc.ypxfrd" - YOPTS="" - if [ -n "${YPXFRD_OPTS}" ]; then YOPTS="-- ${YPXFRD_OPTS}"; fi - start-stop-daemon --start --quiet --pidfile /var/run/ypxfrd.pid --exec /usr/sbin/rpc.ypxfrd ${YOPTS} - eend $? -} - -stop() { - ebegin "Stopping rpc.ypxfrd" - start-stop-daemon --stop --quiet --pidfile /var/run/ypxfrd.pid --exec /usr/sbin/rpc.ypxfrd - eend $? -} diff --git a/net-nds/ypserv/files/rpc.ypxfrd.confd b/net-nds/ypserv/files/rpc.ypxfrd.confd deleted file mode 100644 index 73cfc47e7154..000000000000 --- a/net-nds/ypserv/files/rpc.ypxfrd.confd +++ /dev/null @@ -1,3 +0,0 @@ -# Command line options to pass to rpc.ypxfrd -# eg: you can pass --port to use a non-standard port -YPXFRD_OPTS="" diff --git a/net-nds/ypserv/files/ypserv b/net-nds/ypserv/files/ypserv deleted file mode 100644 index 205c3ef4381b..000000000000 --- a/net-nds/ypserv/files/ypserv +++ /dev/null @@ -1,22 +0,0 @@ -#!/sbin/openrc-run -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -depend() { - need net portmap - use domainname -} - -start() { - ebegin "Starting NIS Server" - YOPTS="" - if [ -n "${YPSERV_OPTS}" ]; then YOPTS="-- ${YPSERV_OPTS}"; fi - start-stop-daemon --start --quiet --exec /usr/sbin/ypserv ${YOPTS} - eend $? -} - -stop() { - ebegin "Stopping NIS Server" - start-stop-daemon --stop --quiet --exec /usr/sbin/ypserv - eend $? -} diff --git a/net-nds/ypserv/files/ypserv.confd b/net-nds/ypserv/files/ypserv.confd deleted file mode 100644 index 0ae9756dc81b..000000000000 --- a/net-nds/ypserv/files/ypserv.confd +++ /dev/null @@ -1,4 +0,0 @@ -# Config file for /etc/init.d/ypserv - -# Command line options to pass to ypserv: -YPSERV_OPTS="" diff --git a/net-nds/ypserv/metadata.xml b/net-nds/ypserv/metadata.xml deleted file mode 100644 index 6f49eba8f496..000000000000 --- a/net-nds/ypserv/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/net-nds/ypserv/ypserv-2.26-r1.ebuild b/net-nds/ypserv/ypserv-2.26-r1.ebuild deleted file mode 100644 index 700b169788d2..000000000000 --- a/net-nds/ypserv/ypserv-2.26-r1.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="6" - -inherit autotools - -DESCRIPTION="Network Information Service server" -HOMEPAGE="http://www.linux-nis.org/nis/" -SRC_URI="mirror://kernel/linux/utils/net/NIS/${P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc ppc64 x86" -IUSE="slp" - -DEPEND=">=sys-libs/gdbm-1.8.0 - slp? ( net-libs/openslp )" -RDEPEND="${DEPEND} - || ( net-nds/rpcbind net-nds/portmap )" - -src_prepare() { - # The configure script does not provide a command-line flag to control usage - # of slp. Use a brutal method in case we need to disable it. - if ! use slp; then - sed -i -e 's/USE_SLP=1/USE_SLP=0/g' configure.in || die - eautoreconf - fi - - default -} - -src_install() { - default - dodoc AUTHORS ChangeLog NEWS README THANKS TODO - - insinto /etc - doins etc/ypserv.conf etc/netgroup etc/netmasks - insinto /var/yp - newins etc/securenets securenets.default - - newconfd "${FILESDIR}/ypserv.confd" ypserv - newconfd "${FILESDIR}/rpc.yppasswdd.confd" rpc.yppasswdd - newconfd "${FILESDIR}/rpc.ypxfrd.confd" rpc.ypxfrd - - newinitd "${FILESDIR}/ypserv" ypserv - newinitd "${FILESDIR}/rpc.yppasswdd-r1" rpc.yppasswdd - newinitd "${FILESDIR}/rpc.ypxfrd-2.23" rpc.ypxfrd - - echo "CONFIG_PROTECT=\"/var/yp/Makefile\"" > "${T}"/10ypserv - doenvd "${T}"/10ypserv -} - -pkg_preinst() { - # This ebuilds installs an env file which CONFIG_PROTECTs /var/yp/Makefile, - # but if the user is migrating from older ypserv, this won't take effect - # immediately. Keep the older setup with Makefile.dist file and ask the user - # to migrate. - if [ -f "${ROOT}/var/yp/Makefile.dist" ]; then - mv "${D}/var/yp/Makefile" "${D}/var/yp/Makefile.dist" \ - || die "mv failed" - cp "${ROOT}/var/yp/Makefile" "${D}/var/yp/Makefile" \ - || die "cp failed" - elog "Please remove ${ROOT}/var/yp/Makefile.dist after making sure that" - elog "${ROOT}/var/yp/Makefile looks fine to you. It is now" - elog "CONFIG_PROTECTed, so further changes should be managed with" - elog "usual config management tools like etc-update or dispatch-conf." - fi -} - -pkg_postinst() { - einfo "To complete setup, you will need to edit /var/yp/securenets," - einfo "/etc/conf.d/ypserv, /etc/ypserv.conf, /etc/conf.d/rpc.yppasswdd" - einfo "and possibly /var/yp/Makefile." - - einfo "To start the services at boot, you need to enable ypserv and optionally" - einfo "the rpc.yppasswdd and/or rpc.ypxfrd services" -} -- cgit v1.2.3-65-gdbad