Diff pysam-0.24.0 with a pysam-9999

/usr/portage/sci-biology/pysam/pysam-9999.ebuild 2025-08-07 18:21:07.607831902 +0300
1
# Copyright 1999-2026 Gentoo Authors
1
# Copyright 1999-2025 Gentoo Authors
2 2
# Distributed under the terms of the GNU General Public License v2
3 3

  
4 4
EAPI=8
5 5
DISTUTILS_EXT=1
6 6
DISTUTILS_USE_PEP517=setuptools
7
PYTHON_COMPAT=( python3_{11..14} )
7
PYTHON_COMPAT=( python3_{11..13} )
8 8

  
9 9
inherit distutils-r1
10 10

  
......
24 24
LICENSE="MIT"
25 25
SLOT="0"
26 26

  
27
RDEPEND="=sci-libs/htslib-1.23*:="
27
RDEPEND=">=sci-libs/htslib-1.21"
28 28
DEPEND="${RDEPEND}"
29 29
BDEPEND="
30
	>=dev-python/cython-3[${PYTHON_USEDEP}]
31 30
	test? (
32
		=sci-biology/bcftools-1.23*
33
		=sci-biology/samtools-1.23*
31
		>=sci-biology/bcftools-1.21
32
		>=sci-biology/samtools-1.21
34 33
	)"
35 34

  
36 35
distutils_enable_tests pytest
......
44 43
)
45 44

  
46 45
python_prepare_all() {
47

  
48 46
	# unbundle htslib
49 47
	export HTSLIB_MODE="external"
50 48
	export HTSLIB_INCLUDE_DIR="${ESYSROOT}"/usr/include
Thank you!