commit: bd130f9e7c723629ba84a231b4b5b9774ca6de7b
Author: David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 4 14:45:43 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> 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 <soap <AT> 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
}