Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/judy/
Date: Mon, 29 Aug 2022 19:28:09
Message-Id: 1661801197.8cd570c70a43e502ba6d7ac78980b7fb22259ed4.asturm@gentoo
1 commit: 8cd570c70a43e502ba6d7ac78980b7fb22259ed4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 29 18:51:01 2022 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 29 19:26:37 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cd570c7
7
8 dev-libs/judy: drop 1.0.5-r2, EAPI-6--
9
10 Closes: https://bugs.gentoo.org/865451
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 dev-libs/judy/judy-1.0.5-r2.ebuild | 34 ----------------------------------
14 1 file changed, 34 deletions(-)
15
16 diff --git a/dev-libs/judy/judy-1.0.5-r2.ebuild b/dev-libs/judy/judy-1.0.5-r2.ebuild
17 deleted file mode 100644
18 index 09e76a1992a8..000000000000
19 --- a/dev-libs/judy/judy-1.0.5-r2.ebuild
20 +++ /dev/null
21 @@ -1,34 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit autotools multilib-minimal
28 -
29 -DESCRIPTION="A C library that implements a dynamic array"
30 -HOMEPAGE="http://judy.sourceforge.net/"
31 -SRC_URI="mirror://sourceforge/judy/Judy-${PV}.tar.gz"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
36 -IUSE="static-libs"
37 -DOCS=( AUTHORS ChangeLog README )
38 -
39 -src_prepare() {
40 - eapply -p0 "${FILESDIR}/${P}-parallel-make.patch"
41 - eapply "${FILESDIR}/${P}-gcc49.patch"
42 - sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || die
43 - eapply_user
44 - eautoreconf
45 - multilib_copy_sources
46 -}
47 -
48 -multilib_src_configure() {
49 - ECONF_SOURCE=${BUILD_DIR} econf $(use_enable static-libs static)
50 -}
51 -
52 -multilib_src_install_all() {
53 - einstalldocs
54 - find "${ED}" -name '*.la' -delete || die
55 -}