Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Better solution for setting PATH properly (thanks to Piotr Ożarowski)
· 7620de1a
Andreas Tille
authored
Jun 29, 2018
7620de1a
(Build-)Depends: python3-networkx
· 1b5e30fa
Andreas Tille
authored
Jun 29, 2018
1b5e30fa
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
1b5e30fa
...
...
@@ -8,11 +8,11 @@ snakemake (5.1.5-1) UNRELEASED; urgency=medium
* Build-Depends: r-cran-rmarkdown and disable patch that skips test using
RMarkdown
* Recommends: r-cran-rmarkdown
* Build-Depends: python3-datrie, python3-recommonmark
* Build-Depends: python3-datrie,
python3-networkx,
python3-recommonmark
* Point Vcs-fields to Salsa
* Drop X-Python-Version
-- Andreas Tille <tille@debian.org> Tue, 2
7 Mar
2018 1
6:07:45
+0200
-- Andreas Tille <tille@debian.org> Tue, 2
6 Jun
2018 1
1:18:08
+0200
snakemake (4.3.1-1) unstable; urgency=medium
...
...
debian/control
View file @
1b5e30fa
...
...
@@ -9,6 +9,7 @@ Build-Depends: debhelper (>= 11~),
python3-boto,
python3-configargparse,
python3-datrie,
python3-networkx,
python3-nose,
python3-psutil,
python3-pytools,
...
...
@@ -36,6 +37,7 @@ Depends: ${misc:Depends},
${sphinxdoc:Depends},
python3-docutils,
python3-datrie,
python3-networkx,
python3-psutil,
python3-pytools,
python3-ratelimiter,
...
...
debian/rules
View file @
1b5e30fa
...
...
@@ -8,7 +8,7 @@ export PYBUILD_DESTDIR_python3=debian/snakemake
export PYBUILD_BEFORE_TEST_python3=chmod +x {dir}/bin/snakemake; cp -r {dir}/bin {dir}/tests {build_dir}
export PYBUILD_AFTER_TEST_python3=rm -fr {build_dir}/bin {build_dir}/tests
export PATH:=$(shell pybuild --print build_dir --interpreter python3)/bin:$(PATH)
export PATH:=$(shell pybuild --print build_dir --interpreter python3
--name $(PYBUILD_NAME)
)/bin:$(PATH)
# Force the use of python3's sphinx-build.
export SPHINXBUILD=/usr/share/sphinx/scripts/python3/sphinx-build
...
...