commit:     b90fc7b7dd3e0b95b98587fea0fb89668dbb3b6b
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 12 23:03:34 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sat Dec 12 23:03:34 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b90fc7b7

net-misc/netifrc: drop old

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 net-misc/netifrc/Manifest             |  1 -
 net-misc/netifrc/netifrc-0.5.1.ebuild | 71 -----------------------------------
 net-misc/netifrc/netifrc-0.7.1.ebuild | 71 -----------------------------------
 3 files changed, 143 deletions(-)

diff --git a/net-misc/netifrc/Manifest b/net-misc/netifrc/Manifest
index e425418827c..5d0a546d5f8 100644
--- a/net-misc/netifrc/Manifest
+++ b/net-misc/netifrc/Manifest
@@ -1,2 +1 @@
-DIST netifrc-0.5.1.tar.bz2 78749 BLAKE2B 
cecbf4b64cc8e93483326ef0646d2abfdb837c0351cc210ea0134e654cd44f90cba0390014412f6b45ff4d337d3aaeb5e739553231305846351452aebac870e1
 SHA512 
277d10f58f694c734c9dec52896f847a58e40b61567573dd634d0a0604c27550d4baec461df46dac4e535753f6594afd30344696229f4f4cf4f5e04dba659710
 DIST netifrc-0.7.1.tar.gz 82393 BLAKE2B 
a1d147db2a4e4ff7d360bf5140ccf060283dbcbfde7100f1d193c783f1da540574e1342b4d7f3f9ee011628f9f113fc751416805f35678a1093e0cc0014f5eb9
 SHA512 
407071f8f58b7788703a62193677673ddd18114b69142894674337410473e620cf3895bb014cff133f719ac1a7191ac3bedfd969c9a11bf2f1c4b04d39683057

diff --git a/net-misc/netifrc/netifrc-0.5.1.ebuild 
b/net-misc/netifrc/netifrc-0.5.1.ebuild
deleted file mode 100644
index 032ac9cfd40..00000000000
--- a/net-misc/netifrc/netifrc-0.5.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils systemd udev
-
-DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/";
-
-if [[ ${PV} == "9999" ]]; then
-       EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
-       #EGIT_REPO_URI="https://github.com/gentoo/${PN}"; # Alternate
-       inherit git-r3
-else
-       SRC_URI="https://dev.gentoo.org/~robbat2/distfiles/${P}.tar.bz2";
-       KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv s390 sparc x86"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="kernel_linux? ( virtual/pkgconfig )
-       !<sys-fs/udev-172"
-RDEPEND="sys-apps/gentoo-functions
-       >=sys-apps/openrc-0.15
-       !<sys-fs/udev-init-scripts-27"
-
-src_prepare() {
-       if [[ ${PV} == "9999" ]] ; then
-               local ver="git-${EGIT_VERSION:0:6}"
-               sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
-               einfo "Producing ChangeLog from Git history"
-               GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
-       fi
-
-       # Allow user patches to be applied without modifying the ebuild
-       epatch_user
-}
-
-src_compile() {
-       MAKE_ARGS="${MAKE_ARGS}
-               UDEVDIR=${EPREFIX}$(get_udevdir)
-               LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
-
-       use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
-
-       emake ${MAKE_ARGS} all
-}
-
-src_install() {
-       emake ${MAKE_ARGS} DESTDIR="${D}" install
-       dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO ChangeLog
-
-       # Install the service file
-       LIBEXECDIR=${EPREFIX}/lib/${PN}
-       UNIT_DIR="$(systemd_get_unitdir)"
-       sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
-       systemd_newunit "${T}/net_at.service" '[email protected]'
-       dosym "${UNIT_DIR#${EPREFIX}}/[email protected]" 
"${UNIT_DIR#${EPREFIX}}/[email protected]"
-}
-
-pkg_postinst() {
-       if [[ ! -e "${EROOT}"/etc/conf.d/net && -z $REPLACING_VERSIONS ]]; then
-               elog "The network configuration scripts will use dhcp by"
-               elog "default to set up your interfaces."
-               elog "If you need to set up something more complete, see"
-               elog "${EROOT}/usr/share/doc/${P}/README"
-       fi
-}

diff --git a/net-misc/netifrc/netifrc-0.7.1.ebuild 
b/net-misc/netifrc/netifrc-0.7.1.ebuild
deleted file mode 100644
index 6e2ab1bd5d2..00000000000
--- a/net-misc/netifrc/netifrc-0.7.1.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit eutils systemd udev
-
-DESCRIPTION="Gentoo Network Interface Management Scripts"
-HOMEPAGE="https://www.gentoo.org/proj/en/base/openrc/";
-
-if [[ ${PV} == "9999" ]]; then
-       EGIT_REPO_URI="git://anongit.gentoo.org/proj/${PN}.git"
-       #EGIT_REPO_URI="https://github.com/gentoo/${PN}"; # Alternate
-       inherit git-r3
-else
-       SRC_URI="https://gitweb.gentoo.org/proj/${PN}.git/snapshot/${P}.tar.gz";
-       KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86"
-fi
-
-LICENSE="BSD-2"
-SLOT="0"
-IUSE=""
-
-DEPEND="kernel_linux? ( virtual/pkgconfig )
-       !<sys-fs/udev-172"
-RDEPEND="sys-apps/gentoo-functions
-       >=sys-apps/openrc-0.15
-       !<sys-fs/udev-init-scripts-27"
-
-src_prepare() {
-       if [[ ${PV} == "9999" ]] ; then
-               local ver="git-${EGIT_VERSION:0:6}"
-               sed -i "/^GITVER[[:space:]]*=/s:=.*:=${ver}:" mk/git.mk || die
-               einfo "Producing ChangeLog from Git history"
-               GIT_DIR="${S}/.git" git log >"${S}"/ChangeLog
-       fi
-
-       # Allow user patches to be applied without modifying the ebuild
-       epatch_user
-}
-
-src_compile() {
-       MAKE_ARGS="${MAKE_ARGS}
-               UDEVDIR=${EPREFIX}$(get_udevdir)
-               LIBEXECDIR=${EPREFIX}/lib/${PN} PF=${PF}"
-
-       use prefix && MAKE_ARGS="${MAKE_ARGS} MKPREFIX=yes PREFIX=${EPREFIX}"
-
-       emake ${MAKE_ARGS} all
-}
-
-src_install() {
-       emake ${MAKE_ARGS} DESTDIR="${D}" install
-       dodoc README CREDITS FEATURE-REMOVAL-SCHEDULE STYLE TODO
-
-       # Install the service file
-       LIBEXECDIR=${EPREFIX}/lib/${PN}
-       UNIT_DIR="$(systemd_get_unitdir)"
-       sed "s:@LIBEXECDIR@:${LIBEXECDIR}:" "${S}/systemd/net_at.service.in" > 
"${T}/net_at.service" || die
-       systemd_newunit "${T}/net_at.service" '[email protected]'
-       dosym "${UNIT_DIR#${EPREFIX}}/[email protected]" 
"${UNIT_DIR#${EPREFIX}}/[email protected]"
-}
-
-pkg_postinst() {
-       if [[ ! -e "${EROOT}"/etc/conf.d/net && -z $REPLACING_VERSIONS ]]; then
-               elog "The network configuration scripts will use dhcp by"
-               elog "default to set up your interfaces."
-               elog "If you need to set up something more complete, see"
-               elog "${EROOT}/usr/share/doc/${P}/README"
-       fi
-}

Reply via email to