Skip to content
Commits on Source (3)
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)
......
......@@ -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
......
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
Makefile.patch
#pythonVersion.patch
......@@ -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
......