diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2015-10-06 15:27:04 +0200 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2015-10-06 15:27:21 +0200 |
commit | 19a1b452c666fc7488657904d02b1d76e40e892d (patch) | |
tree | 6d3beb499c8ca46c6393f1474d33199928acf78e /net-libs | |
parent | net-firewall/nftables: Remove old (diff) | |
download | gentoo-19a1b452c666fc7488657904d02b1d76e40e892d.tar.gz gentoo-19a1b452c666fc7488657904d02b1d76e40e892d.tar.bz2 gentoo-19a1b452c666fc7488657904d02b1d76e40e892d.zip |
net-libs/libnftnl: Remove old
Package-Manager: portage-2.2.22
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/libnftnl/Manifest | 2 | ||||
-rw-r--r-- | net-libs/libnftnl/libnftnl-1.0.3.ebuild | 58 | ||||
-rw-r--r-- | net-libs/libnftnl/libnftnl-1.0.4.ebuild | 58 |
3 files changed, 0 insertions, 118 deletions
diff --git a/net-libs/libnftnl/Manifest b/net-libs/libnftnl/Manifest index 4fb56bc211c4..7c20829adc0c 100644 --- a/net-libs/libnftnl/Manifest +++ b/net-libs/libnftnl/Manifest @@ -1,3 +1 @@ -DIST libnftnl-1.0.3.tar.bz2 356264 SHA256 cf0ae7eab6a6866192a1fbd6b370a8a2cbe2066fe3975ab44939fd50747c27f7 SHA512 6fba3f3a0c3d98e0c3200edbd45910e326f0864383dc695fa77580d47d3fe541c50518f62d2dbfc50b2378b9b311aec28b3321ef18f59a321e0a3f0817952181 WHIRLPOOL 70219737c4d865bdfe9f58803377d3a10619198cb486623d03d30a43b0d159ded9d625505cb0209fe30585dbe3413d136d2fdd6552a6ce2339151bedb1c94c9a -DIST libnftnl-1.0.4.tar.bz2 367016 SHA256 8f1fbf9bcf87bf68e782f464fb05428d476c2e9a0bec91c6cda7a389a21969d0 SHA512 ed4230581c139c004c39a9ef3e6d548cfad43d1f3c47e83db328b7ae6c6d7fa70b194699d7f18472fa7fb819c943a85b6997be0f2d2b926745dd5cdbdbf81a41 WHIRLPOOL f899694c2d45fc073af694f5bd6edcae70abead69ef37a3f84a290e6b3dbb246029337e14378e4b3af4a4040f9c407db247f4d8636b8986e3f0d5b48783c20bd DIST libnftnl-1.0.5.tar.bz2 367016 SHA256 f6d4f5a702e38bc7987f2363f9fcd65930e8b702595c221a497e2f3a359be497 SHA512 85c71aaaeeafdffe09f2591f26d49d41e9f511a53ed313fe642b4968eae8aac1246a53d5908fc737c6eb9cc4f5f3ef2a4eaa17fe33db453a1fd60f2f9d5c5a1d WHIRLPOOL 15fb25aa9e23bfdcb19ab21ea1d6eadd22e5acc0c38e761e4637a06136c809f5a5827ac58643515432e1394e3e8d4575df11e52b5f16ca787157317e5e2ae463 diff --git a/net-libs/libnftnl/libnftnl-1.0.3.ebuild b/net-libs/libnftnl/libnftnl-1.0.3.ebuild deleted file mode 100644 index d74a39499681..000000000000 --- a/net-libs/libnftnl/libnftnl-1.0.3.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit base linux-info toolchain-funcs - -DESCRIPTION="Netlink API to the in-kernel nf_tables subsystem" -HOMEPAGE="http://netfilter.org/projects/nftables/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="examples json static-libs test xml" -SRC_URI="http://netfilter.org/projects/${PN}/files/${P}.tar.bz2" - -RDEPEND=">=net-libs/libmnl-1.0.0 - xml? ( >=dev-libs/mini-xml-2.6 ) - json? ( >=dev-libs/jansson-2.3 )" -DEPEND="virtual/pkgconfig - ${RDEPEND}" - -REQUIRED_USE="test? ( json xml )" - -pkg_setup() { - if kernel_is ge 3 13; then - CONFIG_CHECK="~NF_TABLES" - linux-info_pkg_setup - else - eerror "This package requires kernel version 3.13 or newer to work properly." - fi -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_with xml xml-parsing) \ - $(use_with json json-parsing) -} - -src_install() { - default - gen_usr_ldscript -a nftnl - prune_libtool_files - - if use examples; then - find examples/ -name 'Makefile*' -delete - dodoc -r examples/ - docompress -x /usr/share/doc/${PF}/examples - fi -} - -src_test() { - default - cd tests || die - ./test-script.sh || die -} diff --git a/net-libs/libnftnl/libnftnl-1.0.4.ebuild b/net-libs/libnftnl/libnftnl-1.0.4.ebuild deleted file mode 100644 index 32b072d37beb..000000000000 --- a/net-libs/libnftnl/libnftnl-1.0.4.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit base linux-info toolchain-funcs - -DESCRIPTION="Netlink API to the in-kernel nf_tables subsystem" -HOMEPAGE="http://netfilter.org/projects/nftables/" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~x86" -IUSE="examples json static-libs test xml" -SRC_URI="http://netfilter.org/projects/${PN}/files/${P}.tar.bz2" - -RDEPEND=">=net-libs/libmnl-1.0.0 - xml? ( >=dev-libs/mini-xml-2.6 ) - json? ( >=dev-libs/jansson-2.3 )" -DEPEND="virtual/pkgconfig - ${RDEPEND}" - -REQUIRED_USE="test? ( json xml )" - -pkg_setup() { - if kernel_is ge 3 13; then - CONFIG_CHECK="~NF_TABLES" - linux-info_pkg_setup - else - eerror "This package requires kernel version 3.13 or newer to work properly." - fi -} - -src_configure() { - econf \ - $(use_enable static-libs static) \ - $(use_with xml xml-parsing) \ - $(use_with json json-parsing) -} - -src_install() { - default - gen_usr_ldscript -a nftnl - prune_libtool_files - - if use examples; then - find examples/ -name 'Makefile*' -delete - dodoc -r examples/ - docompress -x /usr/share/doc/${PF}/examples - fi -} - -src_test() { - default - cd tests || die - ./test-script.sh || die -} |