diff options
author | Brian Evans <grknight@gentoo.org> | 2019-01-23 13:29:21 -0500 |
---|---|---|
committer | Brian Evans <grknight@gentoo.org> | 2019-01-23 13:29:21 -0500 |
commit | be65a46f137c787ed1f79659f8899eef35efc6ce (patch) | |
tree | 58d01a2c64907c92415e73052e01b95bd67d2128 /net-misc | |
parent | net-nds/gosa-*: Remove last rite packages (diff) | |
download | gentoo-be65a46f137c787ed1f79659f8899eef35efc6ce.tar.gz gentoo-be65a46f137c787ed1f79659f8899eef35efc6ce.tar.bz2 gentoo-be65a46f137c787ed1f79659f8899eef35efc6ce.zip |
net-misc/netctl: Remove last rite package
Signed-off-by: Brian Evans <grknight@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/netctl/Manifest | 3 | ||||
-rw-r--r-- | net-misc/netctl/metadata.xml | 5 | ||||
-rw-r--r-- | net-misc/netctl/netctl-1.10.ebuild | 67 | ||||
-rw-r--r-- | net-misc/netctl/netctl-1.11.ebuild | 66 | ||||
-rw-r--r-- | net-misc/netctl/netctl-1.9.ebuild | 67 | ||||
-rw-r--r-- | net-misc/netctl/netctl-9999.ebuild | 66 |
6 files changed, 0 insertions, 274 deletions
diff --git a/net-misc/netctl/Manifest b/net-misc/netctl/Manifest deleted file mode 100644 index 83152df7e8bc..000000000000 --- a/net-misc/netctl/Manifest +++ /dev/null @@ -1,3 +0,0 @@ -DIST netctl-1.10.tar.xz 43576 BLAKE2B 53ba8494deb588fa0f7c53b5116a2897fe6a5b2b4eeb783686269d243a110cc44f6b1a3ca11a1eb02ae13ef57d306028aa5fddf9060ea54fa360b338c14efb9f SHA512 f42b6f5abf4115d745bac73af68562a2c3974347051699cab66cb0e1f7254e52492ddeda51c338498f7f6479226bf4c6e9f46d2c3a8b1f3594244dd9e10dddd9 -DIST netctl-1.11.tar.xz 43868 BLAKE2B d54d80b636745a06f2e550c144d9c12ef20fd55a653d19aafce9e0305be4c95aa96d893f27fca1ef8863fcc5201ae19d924440a724d356889e267d624b64dfe8 SHA512 00bf4b016d755796980d492305332230a2089e843bf0921a7fd28ef17400e024bac0987a08c4caadf1c19becae73ce7f33d1e51ce1ea9f47e0129e1aff1ccd71 -DIST netctl-1.9.tar.xz 43256 BLAKE2B 49fc8968d8342b79e190b3156919e4be376e10010978b68f0d246d7b469a806509723254e8b26b4abbeb88eaee81111cffb10ab4592853c93f886305c3bbd78c SHA512 586cf8389d33c130d2cb94fa35479436a6dba70ff05bc7b59d2c3148760ddb3030f00d06bdb8c09cb6bac4fc0d94a4f3a3ced7d3b30973e58323af1676ef6f42 diff --git a/net-misc/netctl/metadata.xml b/net-misc/netctl/metadata.xml deleted file mode 100644 index 7a38bb900964..000000000000 --- a/net-misc/netctl/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <!-- maintainer-needed --> -</pkgmetadata> diff --git a/net-misc/netctl/netctl-1.10.ebuild b/net-misc/netctl/netctl-1.10.ebuild deleted file mode 100644 index 7e5e03490612..000000000000 --- a/net-misc/netctl/netctl-1.10.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit bash-completion-r1 eutils - -if [[ ${PV} = *9999* ]]; then - EGIT_REPO_URI="git://projects.archlinux.org/netctl.git" - inherit git-2 - DEPEND="app-text/asciidoc" -else - SRC_URI="https://sources.archlinux.org/other/packages/${PN}/${P}.tar.xz" - KEYWORDS="~amd64 ~x86" -fi - -DESCRIPTION="Profile based network connection tool from Arch Linux" -HOMEPAGE="https://wiki.archlinux.org/index.php/Netctl - https://www.archlinux.org/packages/core/any/netctl/ - https://projects.archlinux.org/netctl.git/" - -LICENSE="GPL-3" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/pkgconfig - sys-apps/systemd -" -RDEPEND=" - >=app-shells/bash-4.0 - >=net-dns/openresolv-3.5.4-r1 - sys-apps/iproute2 - sys-apps/systemd - !<net-misc/dhcpcd-6.4.0 -" - -src_prepare() { - sed -i -e "s:/usr/bin/ifplugd:/usr/sbin/ifplugd:" \ - "services/netctl-ifplugd@.service" || die -} - -src_compile() { - return 0 -} - -src_install() { - emake DESTDIR="${D%/}" SHELL=bash install - dodoc AUTHORS NEWS README - newbashcomp contrib/bash-completion netctl - bashcomp_alias netctl netctl-auto wifi-menu - insinto /usr/share/zsh/site-functions - newins contrib/zsh-completion _netctl -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - elog "To get additional features, a number of optional runtime dependencies may be" - elog "installed." - optfeature "DHCP support" net-misc/dhcpcd ">=net-misc/dhcp-5.6.7[client]" - optfeature "WPA support" net-wireless/wpa_supplicant - optfeature "interactive assistant" dev-util/dialog - optfeature "automatic connection" sys-apps/ifplugd - optfeature "bonding support" net-misc/ifenslave - optfeature "dialup support" net-dialup/ppp - fi -} diff --git a/net-misc/netctl/netctl-1.11.ebuild b/net-misc/netctl/netctl-1.11.ebuild deleted file mode 100644 index de213cc97dfb..000000000000 --- a/net-misc/netctl/netctl-1.11.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit bash-completion-r1 eutils - -if [[ ${PV} = *9999* ]]; then - EGIT_REPO_URI="git://projects.archlinux.org/netctl.git" - inherit git-2 - DEPEND="app-text/asciidoc" -else - SRC_URI="https://sources.archlinux.org/other/packages/${PN}/${P}.tar.xz" - KEYWORDS="~amd64 ~arm ~x86" -fi - -DESCRIPTION="Profile based network connection tool from Arch Linux" -HOMEPAGE="https://wiki.archlinux.org/index.php/Netctl - https://www.archlinux.org/packages/core/any/netctl/ - https://projects.archlinux.org/netctl.git/" - -LICENSE="GPL-3" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/pkgconfig - sys-apps/systemd -" -RDEPEND=" - >=app-shells/bash-4.0 - >=net-dns/openresolv-3.5.4-r1 - sys-apps/iproute2 - sys-apps/systemd - !<net-misc/dhcpcd-6.4.0 -" - -src_prepare() { - sed -i -e "s:/usr/bin/ifplugd:/usr/sbin/ifplugd:" \ - "services/netctl-ifplugd@.service" || die -} - -src_compile() { - return 0 -} - -src_install() { - emake DESTDIR="${D%/}" SHELL=bash install - dodoc AUTHORS NEWS README - newbashcomp contrib/bash-completion netctl - insinto /usr/share/zsh/site-functions - newins contrib/zsh-completion _netctl -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - elog "To get additional features, a number of optional runtime dependencies may be" - elog "installed." - optfeature "DHCP support" net-misc/dhcpcd ">=net-misc/dhcp-5.6.7[client]" - optfeature "WPA support" net-wireless/wpa_supplicant - optfeature "interactive assistant" dev-util/dialog - optfeature "automatic connection" sys-apps/ifplugd - optfeature "bonding support" net-misc/ifenslave - optfeature "dialup support" net-dialup/ppp - fi -} diff --git a/net-misc/netctl/netctl-1.9.ebuild b/net-misc/netctl/netctl-1.9.ebuild deleted file mode 100644 index bc3b83141261..000000000000 --- a/net-misc/netctl/netctl-1.9.ebuild +++ /dev/null @@ -1,67 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit bash-completion-r1 eutils - -if [[ ${PV} = *9999* ]]; then - EGIT_REPO_URI="git://projects.archlinux.org/netctl.git" - inherit git-2 - DEPEND="app-text/asciidoc" -else - SRC_URI="https://sources.archlinux.org/other/packages/${PN}/${P}.tar.xz" - KEYWORDS="amd64 x86" -fi - -DESCRIPTION="Profile based network connection tool from Arch Linux" -HOMEPAGE="https://wiki.archlinux.org/index.php/Netctl - https://www.archlinux.org/packages/core/any/netctl/ - https://projects.archlinux.org/netctl.git/" - -LICENSE="GPL-3" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/pkgconfig - sys-apps/systemd -" -RDEPEND=" - >=app-shells/bash-4.0 - >=net-dns/openresolv-3.5.4-r1 - sys-apps/iproute2 - sys-apps/systemd - !<net-misc/dhcpcd-6.4.0 -" - -src_prepare() { - sed -i -e "s:/usr/bin/ifplugd:/usr/sbin/ifplugd:" \ - "services/netctl-ifplugd@.service" || die -} - -src_compile() { - return 0 -} - -src_install() { - emake DESTDIR="${D%/}" SHELL=bash install - dodoc AUTHORS NEWS README - newbashcomp contrib/bash-completion netctl - bashcomp_alias netctl netctl-auto wifi-menu - insinto /usr/share/zsh/site-functions - newins contrib/zsh-completion _netctl -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - elog "To get additional features, a number of optional runtime dependencies may be" - elog "installed." - optfeature "DHCP support" net-misc/dhcpcd ">=net-misc/dhcp-5.6.7[client]" - optfeature "WPA support" net-wireless/wpa_supplicant - optfeature "interactive assistant" dev-util/dialog - optfeature "automatic connection" sys-apps/ifplugd - optfeature "bonding support" net-misc/ifenslave - optfeature "dialup support" net-dialup/ppp - fi -} diff --git a/net-misc/netctl/netctl-9999.ebuild b/net-misc/netctl/netctl-9999.ebuild deleted file mode 100644 index fb31bb4589b9..000000000000 --- a/net-misc/netctl/netctl-9999.ebuild +++ /dev/null @@ -1,66 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit bash-completion-r1 eutils - -if [[ ${PV} = *9999* ]]; then - EGIT_REPO_URI="git://projects.archlinux.org/netctl.git" - inherit git-2 - DEPEND="app-text/asciidoc" -else - SRC_URI="https://sources.archlinux.org/other/packages/${PN}/${P}.tar.xz" - KEYWORDS="~amd64 ~x86" -fi - -DESCRIPTION="Profile based network connection tool from Arch Linux" -HOMEPAGE="https://wiki.archlinux.org/index.php/Netctl - https://www.archlinux.org/packages/core/any/netctl/ - https://projects.archlinux.org/netctl.git/" - -LICENSE="GPL-3" -SLOT="0" -IUSE="" - -DEPEND+=" - virtual/pkgconfig - sys-apps/systemd -" -RDEPEND=" - >=app-shells/bash-4.0 - >=net-dns/openresolv-3.5.4-r1 - sys-apps/iproute2 - sys-apps/systemd - !<net-misc/dhcpcd-6.4.0 -" - -src_prepare() { - sed -i -e "s:/usr/bin/ifplugd:/usr/sbin/ifplugd:" \ - "services/netctl-ifplugd@.service" || die -} - -src_compile() { - return 0 -} - -src_install() { - emake DESTDIR="${D%/}" SHELL=bash install - dodoc AUTHORS NEWS README - newbashcomp contrib/bash-completion netctl - insinto /usr/share/zsh/site-functions - newins contrib/zsh-completion _netctl -} - -pkg_postinst() { - if [[ -z ${REPLACING_VERSIONS} ]]; then - elog "To get additional features, a number of optional runtime dependencies may be" - elog "installed." - optfeature "DHCP support" net-misc/dhcpcd ">=net-misc/dhcp-5.6.7[client]" - optfeature "WPA support" net-wireless/wpa_supplicant - optfeature "interactive assistant" dev-util/dialog - optfeature "automatic connection" sys-apps/ifplugd - optfeature "bonding support" net-misc/ifenslave - optfeature "dialup support" net-dialup/ppp - fi -} |