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 4F59E138334 for ; Mon, 14 Oct 2019 08:53:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8A342E0817; Mon, 14 Oct 2019 08:53:18 +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 70020E0817 for ; Mon, 14 Oct 2019 08:53:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 392DE34BCE7 for ; Mon, 14 Oct 2019 08:53:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8F661720 for ; Mon, 14 Oct 2019 08:53:15 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1571043193.37cc858514b20cbae854b7d380870774380bc277.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libnl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libnl/libnl-99999999.ebuild X-VCS-Directories: dev-libs/libnl/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: 37cc858514b20cbae854b7d380870774380bc277 X-VCS-Branch: master Date: Mon, 14 Oct 2019 08:53:15 +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: a5af9555-d915-4cd9-a539-6f4b1f82c473 X-Archives-Hash: c7a1fea31f4b55959b7cd76288aba6b5 commit: 37cc858514b20cbae854b7d380870774380bc277 Author: Jeroen Roovers gentoo org> AuthorDate: Mon Oct 14 08:52:58 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Mon Oct 14 08:53:13 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37cc8585 dev-libs/libnl: Update live ebuild Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Jeroen Roovers gentoo.org> dev-libs/libnl/libnl-99999999.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/dev-libs/libnl/libnl-99999999.ebuild b/dev-libs/libnl/libnl-99999999.ebuild index 43eb90b83be..bb976be4513 100644 --- a/dev-libs/libnl/libnl-99999999.ebuild +++ b/dev-libs/libnl/libnl-99999999.ebuild @@ -1,10 +1,10 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 -PYTHON_COMPAT=( python2_7 python3_{5,6} ) +EAPI=7 +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) DISTUTILS_OPTIONAL=1 -inherit autotools distutils-r1 eutils git-r3 libtool multilib multilib-minimal +inherit autotools distutils-r1 git-r3 libtool multilib multilib-minimal DESCRIPTION="Libraries providing APIs to netlink protocol based Linux kernel interfaces" HOMEPAGE="http://www.infradead.org/~tgr/libnl/ https://github.com/thom311/libnl" @@ -84,7 +84,7 @@ multilib_src_compile() { } multilib_src_install() { - emake DESTDIR="${D}" install + default if multilib_is_native_abi && use python; then # Unset DOCS= since distutils-r1.eclass interferes @@ -96,5 +96,5 @@ multilib_src_install() { multilib_src_install_all() { einstalldocs - prune_libtool_files --modules + find "${D}" -name '*.la' -delete || die }