Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (3)
Uploaded to distribution
· 38e498e6
Steffen Möller
authored
May 04, 2019
38e498e6
Merge branch 'master' of salsa.debian.org:med-team/libbigwig
· ed599aad
Steffen Möller
authored
May 04, 2019
ed599aad
Fixing build.
· 8d63d899
Steffen Möller
authored
May 06, 2019
8d63d899
Show whitespace changes
Inline
Side-by-side
debian/changelog
View file @
8d63d899
libbigwig (0.4.2+dfsg-2) UNRELEASED; urgency=medium
* Fixed FTBFS - missing dependency
* Added Debian Med as maintainer
-- Steffen Moeller <moeller@debian.org> Mon, 06 May 2019 10:34:49 +0200
libbigwig (0.4.2+dfsg-1) UNRELEASED; urgency=medium
* Initial release (Closes: 928400)
...
...
debian/control
View file @
8d63d899
...
...
@@ -2,7 +2,7 @@ Source: libbigwig
Priority: optional
Maintainer: Debian Med Packaging Team <debian-med-packaging@lists.debian.org>
Uploaders: Steffen Moeller <moeller@debian.org>
Build-Depends: debhelper (>= 11), libcurl4-gnutls-dev|libcurl-dev
Build-Depends: debhelper (>= 11), libcurl4-gnutls-dev|libcurl-dev
, zlib1g-dev
Build-Depends-Indep: doxygen
Standards-Version: 4.3.0
Section: libs
...
...
debian/patches/pythonVersion.patch
0 → 100644
View file @
8d63d899
Index: libbigwig-0.4.2+dfsg/test/test.py
===================================================================
--- libbigwig-0.4.2+dfsg.orig/test/test.py
+++ libbigwig-0.4.2+dfsg/test/test.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python2.7
+#!/usr/bin/python2.7
from subprocess import Popen, PIPE, check_call
from os import remove
debian/patches/series
View file @
8d63d899
Makefile.patch
#pythonVersion.patch
debian/rules
View file @
8d63d899
...
...
@@ -28,6 +28,9 @@ override_dh_auto_install:
# This is a symbolic link, not a copy
mv *.so $(CURDIR)/debian/tmp/usr/lib/$(shell dpkg-architecture -qDEB_TARGET_MULTIARCH)
override_dh_auto_test:
echo "W: Not testing - depending on online resources"
override_dh_auto_clean:
dh_auto_clean
rm -rf docs
...
...