From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B7DAB1382C5 for ; Thu, 7 Jan 2021 01:35:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0E7E5E08C8; Thu, 7 Jan 2021 01:35:37 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E7500E08C8 for ; Thu, 7 Jan 2021 01:35:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A21BF340931 for ; Thu, 7 Jan 2021 01:35:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1FFCD490 for ; Thu, 7 Jan 2021 01:35:34 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1609983309.1a1285f5cda87d2565714bf76369d9af8e7f46a7.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libmaxminddb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libmaxminddb/libmaxminddb-99999.ebuild X-VCS-Directories: dev-libs/libmaxminddb/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1a1285f5cda87d2565714bf76369d9af8e7f46a7 X-VCS-Branch: master Date: Thu, 7 Jan 2021 01:35:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 21c92286-401c-4acf-8f66-b28eb58f7a22 X-Archives-Hash: 9ae9e8d963fb19bfc53fab38a617223f commit: 1a1285f5cda87d2565714bf76369d9af8e7f46a7 Author: Sam James gentoo org> AuthorDate: Thu Jan 7 01:35:09 2021 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 7 01:35:09 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a1285f5 dev-libs/libmaxminddb: sync live Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> dev-libs/libmaxminddb/libmaxminddb-99999.ebuild | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild b/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild index 307904ee7c4..4979eebf44d 100644 --- a/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild +++ b/dev-libs/libmaxminddb/libmaxminddb-99999.ebuild @@ -1,8 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit autotools git-r3 toolchain-funcs + +inherit toolchain-funcs git-r3 DESCRIPTION="C library for the MaxMind DB file format" HOMEPAGE="https://github.com/maxmind/libmaxminddb" @@ -10,8 +11,12 @@ EGIT_REPO_URI="https://github.com/maxmind/libmaxminddb.git" LICENSE="Apache-2.0" SLOT="0/0.0.7" -KEYWORDS="" -IUSE="static-libs" +IUSE="test" +RESTRICT="!test? ( test )" + +DEPEND=" + test? ( dev-perl/IPC-Run3 ) +" DOCS=( Changes.md ) @@ -21,12 +26,11 @@ src_prepare() { } src_configure() { - econf $(use_enable static-libs static) + econf --disable-static tc-export AR CC } src_install() { default - find "${ED}" -name '*.la' -delete || die }