diff options
author | Sam James <sam@gentoo.org> | 2024-06-02 04:10:11 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-06-02 04:10:11 +0100 |
commit | 9de09da51eae3a61adf54eaf6274d070c54a8797 (patch) | |
tree | a384bb6da1cc1b914478739833382e485668cd26 /net-fs | |
parent | gui-apps/waypipe: sync live (diff) | |
download | gentoo-9de09da51eae3a61adf54eaf6274d070c54a8797.tar.gz gentoo-9de09da51eae3a61adf54eaf6274d070c54a8797.tar.bz2 gentoo-9de09da51eae3a61adf54eaf6274d070c54a8797.zip |
net-fs/btfs: enable py3.12
Closes: https://bugs.gentoo.org/929693
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-fs')
-rw-r--r-- | net-fs/btfs/btfs-2.24.ebuild | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/net-fs/btfs/btfs-2.24.ebuild b/net-fs/btfs/btfs-2.24.ebuild index 38bd3d6bbeba..0a84c213ddc8 100644 --- a/net-fs/btfs/btfs-2.24.ebuild +++ b/net-fs/btfs/btfs-2.24.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -PYTHON_COMPAT=( python3_{9..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit autotools python-r1 DESCRIPTION="a bittorrent filesystem based on FUSE" @@ -15,12 +15,16 @@ SLOT="0" KEYWORDS="~amd64 ~arm64 ~x86" REQUIRED_USE="${PYTHON_REQUIRED_USE}" -DEPEND=">=sys-fs/fuse-2.8.0:0 +DEPEND=" + >=sys-fs/fuse-2.8.0:0 >=net-misc/curl-7.22.0 dev-libs/boost:= - >=net-libs/libtorrent-rasterbar-0.16.0:=" -RDEPEND="${DEPEND} - ${PYTHON_DEPS}" + >=net-libs/libtorrent-rasterbar-0.16.0:= +" +RDEPEND=" + ${DEPEND} + ${PYTHON_DEPS} +" BDEPEND="virtual/pkgconfig" src_prepare() { |