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 0F465139368 for ; Wed, 4 Aug 2021 14:46:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DC6AFE0877; Wed, 4 Aug 2021 14:46:12 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 7FCE4E0877 for ; Wed, 4 Aug 2021 14:46:12 +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 06B17342D34 for ; Wed, 4 Aug 2021 14:46:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 316FD851 for ; Wed, 4 Aug 2021 14:46:09 +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: <1628088343.bd130f9e7c723629ba84a231b4b5b9774ca6de7b.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libsearpc/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild X-VCS-Directories: net-libs/libsearpc/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bd130f9e7c723629ba84a231b4b5b9774ca6de7b X-VCS-Branch: master Date: Wed, 4 Aug 2021 14:46:09 +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: ce3582f7-3135-481b-bdfc-c3db8cb38726 X-Archives-Hash: 947219a254c97bafdb005a798bcff088 commit: bd130f9e7c723629ba84a231b4b5b9774ca6de7b Author: David Seifert gentoo org> AuthorDate: Wed Aug 4 14:45:43 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Aug 4 14:45:43 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd130f9e net-libs/libsearpc: update EAPI 7 -> 8 * EAPI 8 by default disable static libraries Signed-off-by: David Seifert gentoo.org> net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild b/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild index ca9505393e1..c19c1820eaf 100644 --- a/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild +++ b/net-libs/libsearpc/libsearpc-3.2.0-r1.ebuild @@ -1,11 +1,9 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=(python3_{8,9}) - -WANT_AUTOMAKE=1.16 +PYTHON_COMPAT=( python3_{8..9} ) inherit autotools python-single-r1 @@ -16,7 +14,6 @@ SRC_URI="https://github.com/haiwen/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" REQUIRED_USE="${PYTHON_REQUIRED_USE}" DEPEND="${PYTHON_DEPS} @@ -35,6 +32,6 @@ src_prepare() { src_install() { default - # Remove unnecessary .la and .a files - find "${ED}" -name '*.la' -o -name '*.a' -delete || die + # Remove unnecessary .la files + find "${ED}" -name '*.la' -delete || die }