diff options
author | David Seifert <soap@gentoo.org> | 2021-05-16 00:14:23 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2021-05-16 00:14:23 +0200 |
commit | cfa63566389d55018a3454a00322e0045e86c26a (patch) | |
tree | 72d40b41e55aa1cb6591ee463538bdab280618da /sys-block | |
parent | sys-libs/binutils-libs: 2.35.2 ppc64 stable, bug #779805 (diff) | |
download | gentoo-cfa63566389d55018a3454a00322e0045e86c26a.tar.gz gentoo-cfa63566389d55018a3454a00322e0045e86c26a.tar.bz2 gentoo-cfa63566389d55018a3454a00322e0045e86c26a.zip |
sys-block/nbd: drop 3.19, 3.20
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'sys-block')
-rw-r--r-- | sys-block/nbd/Manifest | 2 | ||||
-rw-r--r-- | sys-block/nbd/nbd-3.19.ebuild | 60 | ||||
-rw-r--r-- | sys-block/nbd/nbd-3.20.ebuild | 60 |
3 files changed, 0 insertions, 122 deletions
diff --git a/sys-block/nbd/Manifest b/sys-block/nbd/Manifest index 6e8a33812532..deee3965f712 100644 --- a/sys-block/nbd/Manifest +++ b/sys-block/nbd/Manifest @@ -1,3 +1 @@ -DIST nbd-3.19.tar.xz 524412 BLAKE2B 21669bfe3d34789725895511b1b65be83f85c315992d973db6737cb151ffa48c69ca8bef7dbce513d6f12551b22d063a951644fcaadbec5c115672040b2af8e7 SHA512 0916b411857045af6e01032b3093e295e7f3cfb1ae92f25adb03d97d3196741f8805104c627b17ad4f7f4305db3a4bcd5516bfd2c60fbea02b497dc296f97a16 -DIST nbd-3.20.tar.xz 535136 BLAKE2B e707ab5565ca2281052d04e0b8854222a14b3dd365a2bb71b6544a9253204aad49df652bb888a035fbcc3b352530ccf59ab5374280ae78feea012f91fd4fa24c SHA512 d115939d8f086a1d99637d71453cbcc000a9145a85912a7edf701fad1b90d79e7bba1bc065fc54baa20c8a7665f47ad886cf8493bbabb15854eeede45cf176bc DIST nbd-3.21.tar.xz 523472 BLAKE2B 8601306966b75e5000e34d784175f287553d478e8367d488b9a3c1c11bcb7345a4ba898f02a94b8e927fbded1d3a563a4f0369ad7b49b14dcb6f5ea8d91812f3 SHA512 5dc238e6f45eb230a6f92493a8c3b4891dee98fc47e120e59c3ca31c0a698537ca03f78e43c5e7089d93d548a22b5e3853ba228536d2fc688c3edf4a590fdb3f diff --git a/sys-block/nbd/nbd-3.19.ebuild b/sys-block/nbd/nbd-3.19.ebuild deleted file mode 100644 index 34c5f3a353a8..000000000000 --- a/sys-block/nbd/nbd-3.19.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -DESCRIPTION="Userland client/server for kernel network block device" -HOMEPAGE="http://nbd.sourceforge.net/" -if [[ "${PV}" = 9999 ]] ; then - inherit autotools git-r3 - EGIT_REPO_URI="https://github.com/NetworkBlockDevice/nbd.git" -else - SRC_URI="mirror://sourceforge/nbd/${P}.tar.xz" - KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 ~sparc x86" -fi -LICENSE="GPL-2" -SLOT="0" -IUSE="debug gnutls netlink zlib" - -RDEPEND=" - >=dev-libs/glib-2.26.0 - gnutls? ( >=net-libs/gnutls-2.12.0 ) - netlink? ( >=dev-libs/libnl-3.1 ) - zlib? ( sys-libs/zlib ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -if [[ "${PV}" = 9999 ]] ; then - DEPEND+=" - app-text/docbook-sgml-dtd:4.5 - app-text/docbook-sgml-utils - " -fi - -src_prepare() { - default - if [[ "${PV}" = 9999 ]] ; then - emake -C man -f Makefile.am \ - nbd-server.1.sh.in \ - nbd-server.5.sh.in \ - nbd-client.8.sh.in \ - nbd-trdump.1.sh.in \ - nbdtab.5.sh.in - emake -C systemd -f Makefile.am nbd@.service.sh.in - eautoreconf - fi -} - -src_configure() { - local myeconfargs=( - --enable-lfs - $(use_enable !debug syslog) - $(use_enable debug) - $(use_enable zlib gznbd) - $(use_with gnutls) - $(use_with netlink libnl) - ) - econf "${myeconfargs[@]}" -} diff --git a/sys-block/nbd/nbd-3.20.ebuild b/sys-block/nbd/nbd-3.20.ebuild deleted file mode 100644 index fad2a1deedee..000000000000 --- a/sys-block/nbd/nbd-3.20.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -DESCRIPTION="Userland client/server for kernel network block device" -HOMEPAGE="http://nbd.sourceforge.net/" -if [[ "${PV}" = 9999 ]] ; then - inherit autotools git-r3 - EGIT_REPO_URI="https://github.com/NetworkBlockDevice/nbd.git" -else - SRC_URI="mirror://sourceforge/nbd/${P}.tar.xz" - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" -fi -LICENSE="GPL-2" -SLOT="0" -IUSE="debug gnutls netlink zlib" - -BDEPEND="virtual/pkgconfig" - -RDEPEND=" - >=dev-libs/glib-2.26.0 - gnutls? ( >=net-libs/gnutls-2.12.0 ) - netlink? ( >=dev-libs/libnl-3.1 ) - zlib? ( sys-libs/zlib ) -" -DEPEND="${RDEPEND}" - -if [[ "${PV}" = 9999 ]] ; then - DEPEND+=" - app-text/docbook-sgml-dtd:4.5 - app-text/docbook-sgml-utils - " -fi - -src_prepare() { - default - if [[ "${PV}" = 9999 ]] ; then - emake -C man -f Makefile.am \ - nbd-server.1.sh.in \ - nbd-server.5.sh.in \ - nbd-client.8.sh.in \ - nbd-trdump.1.sh.in \ - nbdtab.5.sh.in - emake -C systemd -f Makefile.am nbd@.service.sh.in - eautoreconf - fi -} - -src_configure() { - local myeconfargs=( - --enable-lfs - $(use_enable !debug syslog) - $(use_enable debug) - $(use_enable zlib gznbd) - $(use_with gnutls) - $(use_with netlink libnl) - ) - econf "${myeconfargs[@]}" -} |