diff options
author | Sam James <sam@gentoo.org> | 2022-05-16 03:00:51 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-05-16 03:02:23 +0000 |
commit | c3d05b5054ca89187a37311cb079b96f9a6e40b0 (patch) | |
tree | 15ad16a41fe0ba460368c89d818ba8f9aca9b0ab /app-forensics | |
parent | app-editors/bluefish: add Python 3.10 (diff) | |
download | gentoo-c3d05b5054ca89187a37311cb079b96f9a6e40b0.tar.gz gentoo-c3d05b5054ca89187a37311cb079b96f9a6e40b0.tar.bz2 gentoo-c3d05b5054ca89187a37311cb079b96f9a6e40b0.zip |
app-forensics/afflib: add Python 3.10, fix fuse dep
Closes: https://bugs.gentoo.org/796248
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-forensics')
-rw-r--r-- | app-forensics/afflib/afflib-3.7.19-r1.ebuild (renamed from app-forensics/afflib/afflib-3.7.19.ebuild) | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/app-forensics/afflib/afflib-3.7.19.ebuild b/app-forensics/afflib/afflib-3.7.19-r1.ebuild index a9cfa61c34b8..1becd23f068c 100644 --- a/app-forensics/afflib/afflib-3.7.19.ebuild +++ b/app-forensics/afflib/afflib-3.7.19-r1.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 - -PYTHON_COMPAT=( python3_{7,8,9} ) +EAPI=8 +PYTHON_COMPAT=( python3_{8..10} ) inherit autotools python-single-r1 MY_PN=AFFLIBv3 @@ -25,15 +24,15 @@ RESTRICT="test" RDEPEND=" dev-libs/expat - sys-libs/zlib:0= - fuse? ( sys-fs/fuse:= ) - dev-libs/openssl:0= - ncurses? ( sys-libs/ncurses:0= ) + sys-libs/zlib:= + fuse? ( sys-fs/fuse:0 ) + dev-libs/openssl:= + ncurses? ( sys-libs/ncurses:= ) python? ( ${PYTHON_DEPS} $(python_gen_cond_dep 'dev-python/cython[${PYTHON_USEDEP}]') ) - readline? ( sys-libs/readline:0= ) + readline? ( sys-libs/readline:= ) s3? ( net-misc/curl ) " DEPEND="${RDEPEND}" @@ -66,10 +65,12 @@ src_configure() { $(use_enable static-libs static) $(use_enable threads threading) ) + econf "${myeconfargs[@]}" } src_install() { default + find "${ED}" -name "*.la" -delete || die } |