Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmaxminddb/
Date: Thu, 07 Jan 2021 01:35:37
Message-Id: 1609983309.1a1285f5cda87d2565714bf76369d9af8e7f46a7.sam@gentoo
1 commit: 1a1285f5cda87d2565714bf76369d9af8e7f46a7
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jan 7 01:35:09 2021 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Thu Jan 7 01:35:09 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a1285f5
7
8 dev-libs/libmaxminddb: sync live
9
10 Package-Manager: Portage-3.0.12, Repoman-3.0.2
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 dev-libs/libmaxminddb/libmaxminddb-99999.ebuild | 16 ++++++++++------
14 1 file changed, 10 insertions(+), 6 deletions(-)
15
16 diff --git a/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild b/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild
17 index 307904ee7c4..4979eebf44d 100644
18 --- a/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild
19 +++ b/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild
20 @@ -1,8 +1,9 @@
21 -# Copyright 1999-2020 Gentoo Authors
22 +# Copyright 1999-2021 Gentoo Authors
23 # Distributed under the terms of the GNU General Public License v2
24
25 EAPI=7
26 -inherit autotools git-r3 toolchain-funcs
27 +
28 +inherit toolchain-funcs git-r3
29
30 DESCRIPTION="C library for the MaxMind DB file format"
31 HOMEPAGE="https://github.com/maxmind/libmaxminddb"
32 @@ -10,8 +11,12 @@ EGIT_REPO_URI="https://github.com/maxmind/libmaxminddb.git"
33
34 LICENSE="Apache-2.0"
35 SLOT="0/0.0.7"
36 -KEYWORDS=""
37 -IUSE="static-libs"
38 +IUSE="test"
39 +RESTRICT="!test? ( test )"
40 +
41 +DEPEND="
42 + test? ( dev-perl/IPC-Run3 )
43 +"
44
45 DOCS=( Changes.md )
46
47 @@ -21,12 +26,11 @@ src_prepare() {
48 }
49
50 src_configure() {
51 - econf $(use_enable static-libs static)
52 + econf --disable-static
53 tc-export AR CC
54 }
55
56 src_install() {
57 default
58 -
59 find "${ED}" -name '*.la' -delete || die
60 }