Skip to content
GitLab
Explore
Sign in
Register
Commits on Source
7
debhelper 11
· 804ac8e8
Andreas Tille
authored
Oct 31, 2018
804ac8e8
Point Vcs fields to salsa.debian.org
· b942044e
Andreas Tille
authored
Oct 31, 2018
b942044e
Standards-Version: 4.2.1
· 3a3ceb44
Andreas Tille
authored
Oct 31, 2018
3a3ceb44
Secure URI in copyright format
· 52528275
Andreas Tille
authored
Oct 31, 2018
52528275
Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
· e3e4070c
Andreas Tille
authored
Oct 31, 2018
e3e4070c
Remove trailing whitespace in debian/copyright
· e10f2d53
Andreas Tille
authored
Oct 31, 2018
e10f2d53
Upload to unstable
· 0aa52542
Andreas Tille
authored
Oct 31, 2018
0aa52542
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
0aa52542
pbbarcode (0.8.0-5) unstable; urgency=medium
* Team upload.
* debhelper 11
* Point Vcs fields to salsa.debian.org
* Standards-Version: 4.2.1
* Secure URI in copyright format
* Respect DEB_BUILD_OPTIONS in override_dh_auto_test target
* Remove trailing whitespace in debian/copyright
-- Andreas Tille <tille@debian.org> Wed, 31 Oct 2018 08:07:56 +0100
pbbarcode (0.8.0-4) unstable; urgency=medium
* Team upload
...
...
debian/compat
View file @
0aa52542
1
0
1
1
debian/control
View file @
0aa52542
...
...
@@ -3,8 +3,7 @@ Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.alioth.debian.
Uploaders: Afif Elghraoui <afif@debian.org>
Section: science
Priority: optional
Build-Depends:
debhelper (>= 10),
Build-Depends: debhelper (>= 11~),
dh-python,
python-setuptools,
python3-docutils,
...
...
@@ -14,21 +13,19 @@ Build-Depends:
python-h5py,
# Test-Depends:
python-nose,
pbh5tools
,
Standards-Version:
3.9.8
Vcs-Browser: https://
anonscm
.debian.org/
cgit/debian-med
/pbbarcode
.git
Vcs-Git: https://
anonscm
.debian.org/
git/debian-med
/pbbarcode.git
pbh5tools
Standards-Version:
4.2.1
Vcs-Browser: https://
salsa
.debian.org/
med-team
/pbbarcode
Vcs-Git: https://
salsa
.debian.org/
med-team
/pbbarcode.git
Homepage: https://github.com/PacificBiosciences/pbbarcode
Package: pbbarcode
Architecture: any
Depends:
${misc:Depends},
Depends: ${misc:Depends},
${shlibs:Depends},
${python:Depends},
python-pkg-resources,
Suggests:
pbdagcon,
python-pkg-resources
Suggests: pbdagcon
Description: annotate PacBio sequencing reads with barcode information
The pbbarcode package provides tools for annotating PacBio sequencing reads
with barcode information. Typically, pbbarcode is called in context of a
...
...
debian/copyright
View file @
0aa52542
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Format: http
s
://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: pbbarcode
Upstream-Contact: Pacific Biosciences <devnet@pacificbiosciences.com>
Source: https://github.com/PacificBiosciences/pbbarcode
...
...
debian/rules
View file @
0aa52542
...
...
@@ -12,9 +12,11 @@ PYBUILD_NAME = pbbarcode
LC_ALL=C.UTF-8 dh $@ --with python2 --buildsystem=pybuild
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
PYBUILD_SYSTEM=custom \
PYBUILD_TEST_ARGS="find tests -name '*.py' | xargs nosetests -v" \
dh_auto_test
endif
override_dh_install:
mkdir -p debian/$(DEB_SOURCE)/usr/share/man/man1
...
...