Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnftnl/
Date: Tue, 06 Oct 2015 13:27:42
Message-Id: 1444138041.19a1b452c666fc7488657904d02b1d76e40e892d.mrueg@gentoo
1 commit: 19a1b452c666fc7488657904d02b1d76e40e892d
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 6 13:27:04 2015 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 6 13:27:21 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19a1b452
7
8 net-libs/libnftnl: Remove old
9
10 Package-Manager: portage-2.2.22
11
12 net-libs/libnftnl/Manifest | 2 --
13 net-libs/libnftnl/libnftnl-1.0.3.ebuild | 58 ---------------------------------
14 net-libs/libnftnl/libnftnl-1.0.4.ebuild | 58 ---------------------------------
15 3 files changed, 118 deletions(-)
16
17 diff --git a/net-libs/libnftnl/Manifest b/net-libs/libnftnl/Manifest
18 index 4fb56bc..7c20829 100644
19 --- a/net-libs/libnftnl/Manifest
20 +++ b/net-libs/libnftnl/Manifest
21 @@ -1,3 +1 @@
22 -DIST libnftnl-1.0.3.tar.bz2 356264 SHA256 cf0ae7eab6a6866192a1fbd6b370a8a2cbe2066fe3975ab44939fd50747c27f7 SHA512 6fba3f3a0c3d98e0c3200edbd45910e326f0864383dc695fa77580d47d3fe541c50518f62d2dbfc50b2378b9b311aec28b3321ef18f59a321e0a3f0817952181 WHIRLPOOL 70219737c4d865bdfe9f58803377d3a10619198cb486623d03d30a43b0d159ded9d625505cb0209fe30585dbe3413d136d2fdd6552a6ce2339151bedb1c94c9a
23 -DIST libnftnl-1.0.4.tar.bz2 367016 SHA256 8f1fbf9bcf87bf68e782f464fb05428d476c2e9a0bec91c6cda7a389a21969d0 SHA512 ed4230581c139c004c39a9ef3e6d548cfad43d1f3c47e83db328b7ae6c6d7fa70b194699d7f18472fa7fb819c943a85b6997be0f2d2b926745dd5cdbdbf81a41 WHIRLPOOL f899694c2d45fc073af694f5bd6edcae70abead69ef37a3f84a290e6b3dbb246029337e14378e4b3af4a4040f9c407db247f4d8636b8986e3f0d5b48783c20bd
24 DIST libnftnl-1.0.5.tar.bz2 367016 SHA256 f6d4f5a702e38bc7987f2363f9fcd65930e8b702595c221a497e2f3a359be497 SHA512 85c71aaaeeafdffe09f2591f26d49d41e9f511a53ed313fe642b4968eae8aac1246a53d5908fc737c6eb9cc4f5f3ef2a4eaa17fe33db453a1fd60f2f9d5c5a1d WHIRLPOOL 15fb25aa9e23bfdcb19ab21ea1d6eadd22e5acc0c38e761e4637a06136c809f5a5827ac58643515432e1394e3e8d4575df11e52b5f16ca787157317e5e2ae463
25
26 diff --git a/net-libs/libnftnl/libnftnl-1.0.3.ebuild b/net-libs/libnftnl/libnftnl-1.0.3.ebuild
27 deleted file mode 100644
28 index d74a394..0000000
29 --- a/net-libs/libnftnl/libnftnl-1.0.3.ebuild
30 +++ /dev/null
31 @@ -1,58 +0,0 @@
32 -# Copyright 1999-2014 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -# $Id$
35 -
36 -EAPI=5
37 -
38 -inherit base linux-info toolchain-funcs
39 -
40 -DESCRIPTION="Netlink API to the in-kernel nf_tables subsystem"
41 -HOMEPAGE="http://netfilter.org/projects/nftables/"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="~amd64 ~arm ~x86"
46 -IUSE="examples json static-libs test xml"
47 -SRC_URI="http://netfilter.org/projects/${PN}/files/${P}.tar.bz2"
48 -
49 -RDEPEND=">=net-libs/libmnl-1.0.0
50 - xml? ( >=dev-libs/mini-xml-2.6 )
51 - json? ( >=dev-libs/jansson-2.3 )"
52 -DEPEND="virtual/pkgconfig
53 - ${RDEPEND}"
54 -
55 -REQUIRED_USE="test? ( json xml )"
56 -
57 -pkg_setup() {
58 - if kernel_is ge 3 13; then
59 - CONFIG_CHECK="~NF_TABLES"
60 - linux-info_pkg_setup
61 - else
62 - eerror "This package requires kernel version 3.13 or newer to work properly."
63 - fi
64 -}
65 -
66 -src_configure() {
67 - econf \
68 - $(use_enable static-libs static) \
69 - $(use_with xml xml-parsing) \
70 - $(use_with json json-parsing)
71 -}
72 -
73 -src_install() {
74 - default
75 - gen_usr_ldscript -a nftnl
76 - prune_libtool_files
77 -
78 - if use examples; then
79 - find examples/ -name 'Makefile*' -delete
80 - dodoc -r examples/
81 - docompress -x /usr/share/doc/${PF}/examples
82 - fi
83 -}
84 -
85 -src_test() {
86 - default
87 - cd tests || die
88 - ./test-script.sh || die
89 -}
90
91 diff --git a/net-libs/libnftnl/libnftnl-1.0.4.ebuild b/net-libs/libnftnl/libnftnl-1.0.4.ebuild
92 deleted file mode 100644
93 index 32b072d..0000000
94 --- a/net-libs/libnftnl/libnftnl-1.0.4.ebuild
95 +++ /dev/null
96 @@ -1,58 +0,0 @@
97 -# Copyright 1999-2015 Gentoo Foundation
98 -# Distributed under the terms of the GNU General Public License v2
99 -# $Id$
100 -
101 -EAPI=5
102 -
103 -inherit base linux-info toolchain-funcs
104 -
105 -DESCRIPTION="Netlink API to the in-kernel nf_tables subsystem"
106 -HOMEPAGE="http://netfilter.org/projects/nftables/"
107 -
108 -LICENSE="GPL-2"
109 -SLOT="0"
110 -KEYWORDS="~amd64 ~arm ~x86"
111 -IUSE="examples json static-libs test xml"
112 -SRC_URI="http://netfilter.org/projects/${PN}/files/${P}.tar.bz2"
113 -
114 -RDEPEND=">=net-libs/libmnl-1.0.0
115 - xml? ( >=dev-libs/mini-xml-2.6 )
116 - json? ( >=dev-libs/jansson-2.3 )"
117 -DEPEND="virtual/pkgconfig
118 - ${RDEPEND}"
119 -
120 -REQUIRED_USE="test? ( json xml )"
121 -
122 -pkg_setup() {
123 - if kernel_is ge 3 13; then
124 - CONFIG_CHECK="~NF_TABLES"
125 - linux-info_pkg_setup
126 - else
127 - eerror "This package requires kernel version 3.13 or newer to work properly."
128 - fi
129 -}
130 -
131 -src_configure() {
132 - econf \
133 - $(use_enable static-libs static) \
134 - $(use_with xml xml-parsing) \
135 - $(use_with json json-parsing)
136 -}
137 -
138 -src_install() {
139 - default
140 - gen_usr_ldscript -a nftnl
141 - prune_libtool_files
142 -
143 - if use examples; then
144 - find examples/ -name 'Makefile*' -delete
145 - dodoc -r examples/
146 - docompress -x /usr/share/doc/${PF}/examples
147 - fi
148 -}
149 -
150 -src_test() {
151 - default
152 - cd tests || die
153 - ./test-script.sh || die
154 -}