Skip to content
Commits on Source (6)
python-cutadapt (2.4-2) unstable; urgency=medium
* Reupload source package
Closes: #934232
* debhelper-compat 12
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Remove trailing whitespace in debian/changelog
* Use secure URI in Homepage field.
-- Andreas Tille <tille@debian.org> Thu, 08 Aug 2019 16:27:30 +0200
python-cutadapt (2.4-1) unstable; urgency=medium
* Team upload
......
......@@ -6,7 +6,7 @@ Uploaders: Olivier Sallou <osallou@debian.org>,
Section: python
Testsuite: autopkgtest-pkg-python
Priority: optional
Build-Depends: debhelper (>= 11~),
Build-Depends: debhelper-compat (= 12),
dh-python,
python3,
python3-dev,
......@@ -14,12 +14,12 @@ Build-Depends: debhelper (>= 11~),
python3-setuptools-scm,
python3-pytest-timeout,
python3-xopen (>= 0.5.0),
python3-dnaio (>= 0.3),
python3-dnaio,
cython3
Standards-Version: 4.4.0
Vcs-Browser: https://salsa.debian.org/med-team/python-cutadapt
Vcs-Git: https://salsa.debian.org/med-team/python-cutadapt.git
Homepage: http://pypi.python.org/pypi/cutadapt
Homepage: https://pypi.python.org/pypi/cutadapt
Package: python3-cutadapt
Architecture: any
......@@ -27,7 +27,7 @@ Depends: ${misc:Depends},
${python3:Depends},
${shlibs:Depends},
python3-xopen (>= 0.5.0),
python3-dnaio (>= 0.3),
python3-dnaio,
pigz
Description: Clean biological sequences from high-throughput sequencing reads (Python 3)
Cutadapt helps with biological sequence clean tasks by finding the adapter
......
......@@ -26,8 +26,10 @@ override_dh_install:
mv debian/python3-cutadapt/usr/bin/cutadapt debian/cutadapt/usr/bin/
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
dh_auto_test -- -s custom --test-args="cd {build_dir}; \
py.test-3 --pyargs cutadapt tests"
endif
override_dh_auto_clean:
dh_auto_clean
......