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 A1B52138334 for ; Fri, 13 Dec 2019 03:25:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E158BE089D; Fri, 13 Dec 2019 03:25:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 AB8C8E089D for ; Fri, 13 Dec 2019 03:25:19 +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 4D19634D980 for ; Fri, 13 Dec 2019 03:25:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDCA88C6 for ; Fri, 13 Dec 2019 03:25:14 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1576207506.f8c71641924952b7d4a38155d8897378b264ca18.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmnl/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libmnl/libmnl-1.0.3-r1.ebuild net-libs/libmnl/libmnl-1.0.4.ebuild X-VCS-Directories: net-libs/libmnl/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: f8c71641924952b7d4a38155d8897378b264ca18 X-VCS-Branch: master Date: Fri, 13 Dec 2019 03:25:14 +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: 3c0030dd-2cdf-4e1b-8777-e99f719fd169 X-Archives-Hash: 2805913d4d1c12ba39a1950afcdfffe1 commit: f8c71641924952b7d4a38155d8897378b264ca18 Author: Aaron Bauman gentoo org> AuthorDate: Fri Dec 13 02:38:19 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Fri Dec 13 03:25:06 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c71641 net-libs/libmnl: port to EAPI 7 Signed-off-by: Aaron Bauman gentoo.org> net-libs/libmnl/libmnl-1.0.3-r1.ebuild | 12 +++++++----- net-libs/libmnl/libmnl-1.0.4.ebuild | 9 +++++---- 2 files changed, 12 insertions(+), 9 deletions(-) diff --git a/net-libs/libmnl/libmnl-1.0.3-r1.ebuild b/net-libs/libmnl/libmnl-1.0.3-r1.ebuild index 316073b5786..67fbdb2cc36 100644 --- a/net-libs/libmnl/libmnl-1.0.3-r1.ebuild +++ b/net-libs/libmnl/libmnl-1.0.3-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 +EAPI=7 -inherit eutils toolchain-funcs usr-ldscript +inherit toolchain-funcs usr-ldscript DESCRIPTION="Minimalistic netlink library" HOMEPAGE="https://netfilter.org/projects/libmnl/" @@ -20,11 +20,13 @@ src_configure() { src_install() { default + gen_usr_ldscript -a mnl - prune_libtool_files + + find "${D}" -name '*.la' -delete || die if use examples; then - find examples/ -name 'Makefile*' -delete + find examples/ -name 'Makefile*' -delete || die dodoc -r examples/ docompress -x /usr/share/doc/${PF}/examples fi diff --git a/net-libs/libmnl/libmnl-1.0.4.ebuild b/net-libs/libmnl/libmnl-1.0.4.ebuild index fd97a5559d2..794d9e30984 100644 --- a/net-libs/libmnl/libmnl-1.0.4.ebuild +++ b/net-libs/libmnl/libmnl-1.0.4.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit eutils toolchain-funcs usr-ldscript +inherit toolchain-funcs usr-ldscript DESCRIPTION="Minimalistic netlink library" HOMEPAGE="https://netfilter.org/projects/libmnl/" @@ -22,10 +22,11 @@ src_install() { default gen_usr_ldscript -a mnl - prune_libtool_files + + find "${D}" -name '*.la' -delete || die if use examples; then - find examples/ -name 'Makefile*' -delete + find examples/ -name 'Makefile*' -delete || die dodoc -r examples/ docompress -x /usr/share/doc/${PF}/examples fi