Diff bowtie-2.4.4 with a bowtie-2.5.1

/usr/portage/sci-biology/bowtie/bowtie-2.5.1.ebuild 2023-10-09 14:52:34.996368489 +0300
3 3

  
4 4
EAPI=8
5 5

  
6
PYTHON_COMPAT=( python3_{9..10} )
6
PYTHON_COMPAT=( python3_{9..11} )
7 7

  
8 8
inherit python-single-r1 toolchain-funcs
9 9

  
10 10
DESCRIPTION="Popular short read aligner for Next-generation sequencing data"
11
HOMEPAGE="http://bowtie-bio.sourceforge.net/bowtie2/"
11
HOMEPAGE="https://bowtie-bio.sourceforge.net/bowtie2/"
12 12
SRC_URI="mirror://sourceforge/project/${PN}-bio/bowtie2/${PV}/bowtie2-${PV}-source.zip"
13 13
S="${WORKDIR}/${PN}2-${PV}"
14 14

  
15 15
LICENSE="GPL-3"
16 16
SLOT="2"
17 17
KEYWORDS="~amd64 ~x86"
18
IUSE="cpu_flags_x86_sse2 examples"
18

  
19
IUSE="test cpu_flags_x86_sse2 examples"
20
# Test script missing from tarball
21
# ./scripts/sim/run.sh: No such file or directory
22
RESTRICT="test"
19 23
REQUIRED_USE="cpu_flags_x86_sse2 ${PYTHON_REQUIRED_USE}"
20 24

  
21 25
RDEPEND="
22 26
	${PYTHON_DEPS}
23 27
	dev-lang/perl
24
	sys-libs/zlib"
28
	sys-libs/zlib
29
"
25 30
DEPEND="${RDEPEND}"
26
BDEPEND="app-arch/unzip"
31
BDEPEND="
32
	app-arch/unzip
33
	test? (
34
		dev-perl/App-cpanminus
35
		dev-perl/B-COW
36
		dev-perl/Clone
37
		dev-perl/Config-General
38
		dev-perl/File-Which
39
		dev-perl/local-lib
40
		dev-perl/Math-Random
41
		dev-perl/Test-Deep
42
		dev-perl/Text-Template
43
	)
44
"
27 45

  
28 46
src_compile() {
29 47
	emake \
Thank you!