diff options
Diffstat (limited to 'sci-biology/bedtools/bedtools-2.30.0.ebuild')
-rw-r--r-- | sci-biology/bedtools/bedtools-2.30.0.ebuild | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/sci-biology/bedtools/bedtools-2.30.0.ebuild b/sci-biology/bedtools/bedtools-2.30.0.ebuild index 3647f43dabe5..3e0d51b0711b 100644 --- a/sci-biology/bedtools/bedtools-2.30.0.ebuild +++ b/sci-biology/bedtools/bedtools-2.30.0.ebuild @@ -1,15 +1,16 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 -PYTHON_COMPAT=( python3_{7..9} ) +PYTHON_COMPAT=( python3_{8..11} ) inherit python-any-r1 toolchain-funcs DESCRIPTION="Tools for manipulation and analysis of BED, GFF/GTF, VCF, SAM/BAM file formats" HOMEPAGE="https://bedtools.readthedocs.io/" SRC_URI="https://github.com/arq5x/${PN}2/releases/download/v${PV}/${P}.tar.gz" +S="${WORKDIR}/${PN}2" LICENSE="GPL-2" SLOT="0" @@ -26,8 +27,6 @@ BDEPEND=" ${PYTHON_DEPS} test? ( >=sci-biology/samtools-1.10:0 )" -S="${WORKDIR}"/${PN}2 - # bedtools2 has a *terrible* build system and development practices. # Upstream has forked htslib 1.9 and extended it by adding clever callbacks # that make unbundling it nigh impossible. There are no signs of upstream porting @@ -44,6 +43,6 @@ src_configure() { src_install() { default - insinto /usr/share/${PN} + insinto /usr/share/bedtools doins -r genomes } |