Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libdnet/
Date: Tue, 13 Oct 2020 15:49:58
Message-Id: 1602604157.2ac4be198cbd3324a528d98d92197bb4c5ef9a1a.mgorny@gentoo
1 commit: 2ac4be198cbd3324a528d98d92197bb4c5ef9a1a
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 13 15:49:17 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 13 15:49:17 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ac4be19
7
8 dev-libs/libdnet: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-libs/libdnet/Manifest | 3 --
13 dev-libs/libdnet/libdnet-1.12-r1.ebuild | 77 ---------------------------------
14 dev-libs/libdnet/libdnet-1.12.ebuild | 70 ------------------------------
15 dev-libs/libdnet/libdnet-1.14.ebuild | 77 ---------------------------------
16 4 files changed, 227 deletions(-)
17
18 diff --git a/dev-libs/libdnet/Manifest b/dev-libs/libdnet/Manifest
19 index 49650f18887..dad5f443f91 100644
20 --- a/dev-libs/libdnet/Manifest
21 +++ b/dev-libs/libdnet/Manifest
22 @@ -1,4 +1 @@
23 -DIST libdnet-1.12.ipv6-1.patch.gz 5124 BLAKE2B 674866a441a5907df97942772b1e4b95aee004ddb110204df0580cec6b6bb3ba4074831d83e675e1914f1a29281b02227e95016db6ce6a0e8b99417d1aa6aaab SHA512 fa2380e41548ecdd978722930ecf90dffabd15cf06cbae0e113285072fe98a066f1e686b6d79e2d8b9f8adcf29783f313d61933b9e1e74e71da8dc7d741f815a
24 -DIST libdnet-1.12.tar.gz 959945 BLAKE2B a19f8c83425861d02f832330cf0eb5bc317eec157737e0eacd48a7827d423c626b24ce833f66429c9f2a0018502cae5426d5cfc1019aed307d63e4fa6b3845c8 SHA512 a2410a98b76d4bccecf7bcb82ff0b6e9fb809b389f7fea938cc42d94e18622cc5f353d2de737121a1990d9e16e9db8cc2f82677c94f78cd03c9227e815eab9e0
25 -DIST libdnet-1.12.tgz 970125 BLAKE2B 74be00b6fe1c7848010a7044628a6ad8f4b2f2c4f9676066c15e02c7a8b613e26a5e7743df524869fee2eb7d93438bf346f772b8df199b8ec337279dd50d5d77 SHA512 b763d2caa77b8d16b531142a5bce3b862ed20198406a00e1fe7f3b45ce308b97d638b0c7f03bd8593fdd206cc1645952839bc340b77537298a3df88599835bf3
26 DIST libdnet-1.14.tar.gz 520833 BLAKE2B 97e241fc374fc9489e70d440db5e19199f4e653650af85e24af56bbbc0167db1c451349c43fcb630a26c61f8ca15c58f5c879e0d82654e275189ca3e140bb22a SHA512 ce8d95228f5175e4d9a8ff71bb99eb1ccc3ccd599a85dd07adbfd9842fc54066235d362c8060828fb3ba8129d0e1e8e071e93d60d69c6d03be310c80e61cea93
27
28 diff --git a/dev-libs/libdnet/libdnet-1.12-r1.ebuild b/dev-libs/libdnet/libdnet-1.12-r1.ebuild
29 deleted file mode 100644
30 index 53b21531ca6..00000000000
31 --- a/dev-libs/libdnet/libdnet-1.12-r1.ebuild
32 +++ /dev/null
33 @@ -1,77 +0,0 @@
34 -# Copyright 1999-2020 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -AT_M4DIR="config"
40 -PYTHON_COMPAT=( python2_7 )
41 -DISTUTILS_OPTIONAL=1
42 -inherit autotools distutils-r1
43 -
44 -DESCRIPTION="simplified, portable interface to several low-level networking routines"
45 -HOMEPAGE="https://github.com/dugsong/libdnet"
46 -SRC_URI="
47 - https://github.com/dugsong/libdnet/archive/${P}.tar.gz
48 - ipv6? ( https://fragroute-ipv6.googlecode.com/files/${P}.ipv6-1.patch.gz )
49 -"
50 -LICENSE="LGPL-2"
51 -
52 -SLOT="0"
53 -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
54 -IUSE="ipv6 python static-libs test"
55 -
56 -DEPEND="
57 - python? ( ${PYTHON_DEPS} )
58 -"
59 -RDEPEND="
60 - ${DEPEND}
61 -"
62 -RESTRICT="test"
63 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
64 -DOCS=( README THANKS TODO )
65 -S=${WORKDIR}/${PN}-${P}
66 -
67 -src_prepare() {
68 - # Useless copy
69 - rm -r trunk/ || die
70 -
71 - sed -i \
72 - -e 's/libcheck.a/libcheck.so/g' \
73 - -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
74 - configure.in || die
75 - sed -i -e 's|-L@libdir@ ||g' dnet-config.in || die
76 - use ipv6 && eapply "${WORKDIR}/${P}.ipv6-1.patch"
77 - sed -i -e '/^SUBDIRS/s|python||g' Makefile.am || die
78 - eautoreconf
79 -
80 - if use python; then
81 - cd python
82 - distutils-r1_src_prepare
83 - fi
84 -
85 - eapply_user
86 -}
87 -
88 -src_configure() {
89 - econf \
90 - $(use_with python) \
91 - $(use_enable static-libs static)
92 -}
93 -
94 -src_compile() {
95 - default
96 - if use python; then
97 - cd python
98 - distutils-r1_src_compile
99 - fi
100 -}
101 -
102 -src_install() {
103 - default
104 - if use python; then
105 - cd python
106 - unset DOCS
107 - distutils-r1_src_install
108 - fi
109 - find "${D}" -name '*.la' -delete || die
110 -}
111
112 diff --git a/dev-libs/libdnet/libdnet-1.12.ebuild b/dev-libs/libdnet/libdnet-1.12.ebuild
113 deleted file mode 100644
114 index a7cef11fa49..00000000000
115 --- a/dev-libs/libdnet/libdnet-1.12.ebuild
116 +++ /dev/null
117 @@ -1,70 +0,0 @@
118 -# Copyright 1999-2020 Gentoo Authors
119 -# Distributed under the terms of the GNU General Public License v2
120 -
121 -EAPI=5
122 -
123 -AT_M4DIR="config"
124 -PYTHON_COMPAT=( python2_7 )
125 -DISTUTILS_OPTIONAL=1
126 -
127 -inherit autotools distutils-r1 eutils ltprune
128 -
129 -DESCRIPTION="simplified, portable interface to several low-level networking routines"
130 -HOMEPAGE="https://github.com/dugsong/libdnet"
131 -SRC_URI="https://libdnet.googlecode.com/files/${P}.tgz
132 - ipv6? ( https://fragroute-ipv6.googlecode.com/files/${P}.ipv6-1.patch.gz )"
133 -
134 -LICENSE="LGPL-2"
135 -SLOT="0"
136 -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 sparc x86"
137 -IUSE="ipv6 python static-libs test"
138 -
139 -#DEPEND="test? ( dev-libs/check )"
140 -DEPEND="python? ( ${PYTHON_DEPS} )"
141 -RDEPEND="${DEPEND}"
142 -RESTRICT="test"
143 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
144 -
145 -DOCS=( README THANKS TODO )
146 -
147 -src_prepare() {
148 - # Useless copy
149 - rm -r trunk/ || die
150 -
151 - sed -i \
152 - -e 's/libcheck.a/libcheck.so/g' \
153 - -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
154 - configure.in || die
155 - sed -i -e 's|-L@libdir@ ||g' dnet-config.in || die
156 - use ipv6 && epatch "${WORKDIR}/${P}.ipv6-1.patch"
157 - sed -i -e '/^SUBDIRS/s|python||g' Makefile.am || die
158 - eautoreconf
159 - if use python; then
160 - cd python
161 - distutils-r1_src_prepare
162 - fi
163 -}
164 -
165 -src_configure() {
166 - econf \
167 - $(use_with python) \
168 - $(use_enable static-libs static)
169 -}
170 -
171 -src_compile() {
172 - default
173 - if use python; then
174 - cd python
175 - distutils-r1_src_compile
176 - fi
177 -}
178 -
179 -src_install() {
180 - default
181 - if use python; then
182 - cd python
183 - unset DOCS
184 - distutils-r1_src_install
185 - fi
186 - prune_libtool_files
187 -}
188
189 diff --git a/dev-libs/libdnet/libdnet-1.14.ebuild b/dev-libs/libdnet/libdnet-1.14.ebuild
190 deleted file mode 100644
191 index 3c236abaf8f..00000000000
192 --- a/dev-libs/libdnet/libdnet-1.14.ebuild
193 +++ /dev/null
194 @@ -1,77 +0,0 @@
195 -# Copyright 1999-2020 Gentoo Authors
196 -# Distributed under the terms of the GNU General Public License v2
197 -
198 -EAPI=7
199 -AT_M4DIR="config"
200 -PYTHON_COMPAT=( python3_{6,7,8} )
201 -DISTUTILS_OPTIONAL=1
202 -inherit autotools distutils-r1
203 -
204 -DESCRIPTION="simplified, portable interface to several low-level networking routines"
205 -HOMEPAGE="https://github.com/ofalk/libdnet"
206 -SRC_URI="https://github.com/ofalk/${PN}/archive/${P}.tar.gz"
207 -LICENSE="LGPL-2"
208 -
209 -SLOT="0"
210 -KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 sparc x86"
211 -IUSE="python static-libs test"
212 -
213 -DEPEND="
214 - python? ( ${PYTHON_DEPS} )
215 -"
216 -RDEPEND="
217 - ${DEPEND}
218 -"
219 -RESTRICT="test"
220 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
221 -DOCS=( README.md THANKS TODO )
222 -S=${WORKDIR}/${PN}-${P}
223 -PATCHES=(
224 - "${FILESDIR}"/${PN}-1.14-strlcpy.patch
225 -)
226 -
227 -src_prepare() {
228 - default
229 -
230 - sed -i \
231 - -e 's/libcheck.a/libcheck.so/g' \
232 - -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
233 - configure.ac || die
234 - sed -i \
235 - -e 's|-L$libdir ||g' \
236 - dnet-config.in || die
237 - sed -i \
238 - -e '/^SUBDIRS/s|python||g' \
239 - Makefile.am || die
240 -
241 - eautoreconf
242 -
243 - if use python; then
244 - cd python
245 - distutils-r1_src_prepare
246 - fi
247 -}
248 -
249 -src_configure() {
250 - econf \
251 - $(use_with python) \
252 - $(use_enable static-libs static)
253 -}
254 -
255 -src_compile() {
256 - default
257 - if use python; then
258 - cd python
259 - distutils-r1_src_compile
260 - fi
261 -}
262 -
263 -src_install() {
264 - default
265 - if use python; then
266 - cd python
267 - unset DOCS
268 - distutils-r1_src_install
269 - fi
270 - find "${D}" -name '*.la' -delete || die
271 -}