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 DE3C0138350 for ; Sun, 9 Feb 2020 18:50:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 16C80E0806; Sun, 9 Feb 2020 18:50:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 EA022E0806 for ; Sun, 9 Feb 2020 18:50:21 +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 A5EA734E8FB for ; Sun, 9 Feb 2020 18:50:20 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7766F126 for ; Sun, 9 Feb 2020 18:50:18 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1581274170.c1380ebd1a7e6545a9c870ccbdb490719158d832.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libnfnetlink/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild X-VCS-Directories: net-libs/libnfnetlink/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: c1380ebd1a7e6545a9c870ccbdb490719158d832 X-VCS-Branch: master Date: Sun, 9 Feb 2020 18:50:18 +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: d61c4fef-23de-4bb5-a1ac-d79f828b2c30 X-Archives-Hash: 72840b78c941c5913c5dd7793b686684 commit: c1380ebd1a7e6545a9c870ccbdb490719158d832 Author: David Seifert gentoo org> AuthorDate: Sun Feb 9 18:49:30 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Feb 9 18:49:30 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1380ebd net-libs/libnfnetlink: Port to EAPI 7 Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild | 29 ++++++++++++------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild b/net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild index 7f4eb46d560..26088b852aa 100644 --- a/net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild +++ b/net-libs/libnfnetlink/libnfnetlink-1.0.1.ebuild @@ -1,28 +1,25 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 -inherit linux-info eutils +EAPI=7 + +inherit linux-info -DESCRIPTION="the low-level library for netfilter related kernel/userspace communication" -HOMEPAGE="http://www.netfilter.org/projects/libnfnetlink/" PATCH_BLOB=04aef8a4dedf267dd5744afb134ef8046e77f613 PATCH_FN=${PATCH_BLOB}-musl-fix-includes.patch -SRC_URI="http://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2 - https://git.alpinelinux.org/cgit/aports/plain/main/libnfnetlink/musl-fix-includes.patch -> ${PATCH_FN}" + +DESCRIPTION="the low-level library for netfilter related kernel/userspace communication" +HOMEPAGE="http://www.netfilter.org/projects/libnfnetlink/" +SRC_URI=" + http://www.netfilter.org/projects/${PN}/files/${P}.tar.bz2 + https://git.alpinelinux.org/cgit/aports/plain/main/libnfnetlink/musl-fix-includes.patch -> ${PATCH_FN}" LICENSE="GPL-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh sparc x86" -IUSE="static-libs" -DOCS=( README ) PATCHES=( "${DISTDIR}/${PATCH_FN}" ) -src_prepare() { - epatch "${PATCHES[@]}" -} - pkg_setup() { linux-info_pkg_setup @@ -44,10 +41,12 @@ pkg_setup() { } src_configure() { - econf $(use_enable static-libs static) + econf --disable-static } src_install() { default - prune_libtool_files + + # no static archives + find "${D}" -name '*.la' -delete || die }