[med-svn] [Git][med-team/fast5][master] 8 commits: Add myself as Uploader

Andreas Tille gitlab at salsa.debian.org
Wed Sep 4 14:07:39 BST 2019



Andreas Tille pushed to branch master at Debian Med / fast5


Commits:
8d9f3eeb by Andreas Tille at 2019-09-04T12:56:51Z
Add myself as Uploader

- - - - -
9bd91446 by Andreas Tille at 2019-09-04T12:59:02Z
Drop Python2 support

- - - - -
3121e9ca by Andreas Tille at 2019-09-04T13:01:35Z
Simplify watch file

- - - - -
2d89ceb9 by Andreas Tille at 2019-09-04T13:01:47Z
debhelper-compat 12

- - - - -
5f8c4f99 by Andreas Tille at 2019-09-04T13:01:50Z
Standards-Version: 4.4.0

- - - - -
e1e4c72b by Andreas Tille at 2019-09-04T13:01:50Z
Remove trailing whitespace in debian/copyright

- - - - -
77fdbc42 by Andreas Tille at 2019-09-04T13:01:51Z
Drop deprecated restrictions . See https://salsa.debian.org/ci-team/autopkgtest/tree/master/doc/README.package-tests.rst

Fixes lintian: obsolete-runtime-tests-restriction
See https://lintian.debian.org/tags/obsolete-runtime-tests-restriction.html for more details.

- - - - -
eee2e1cc by Andreas Tille at 2019-09-04T13:07:03Z
Upload to unstable

- - - - -


7 changed files:

- debian/changelog
- − debian/compat
- debian/control
- debian/copyright
- debian/rules
- debian/tests/control
- debian/watch


Changes:

=====================================
debian/changelog
=====================================
@@ -1,8 +1,21 @@
-fast5 (0.6.5-3) UNRELEASED; urgency=medium
+fast5 (0.6.5-3) unstable; urgency=medium
 
+  [ Jelmer Vernooij ]
   * Use secure copyright file specification URI.
 
- -- Jelmer Vernooij <jelmer at debian.org>  Sat, 20 Oct 2018 20:47:07 +0000
+  [ Andreas Tille ]
+  * Afif removed himself from Uploaders
+  * Add myself as Uploader
+  * Drop Python2 support
+    Closes: #936504
+  * Simplify watch file
+  * debhelper-compat 12
+  * Standards-Version: 4.4.0
+  * Remove trailing whitespace in debian/copyright
+  * Drop deprecated restrictions . See https://salsa.debian.org/ci-
+    team/autopkgtest/tree/master/doc/README.package-tests.rst
+
+ -- Andreas Tille <tille at debian.org>  Wed, 04 Sep 2019 15:01:52 +0200
 
 fast5 (0.6.5-2) unstable; urgency=medium
 


=====================================
debian/compat deleted
=====================================
@@ -1 +0,0 @@
-11


=====================================
debian/control
=====================================
@@ -1,18 +1,16 @@
 Source: fast5
 Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
+Uploaders: Andreas Tille <tille at debian.org>
 Section: science
 Priority: optional
-Build-Depends: debhelper (>= 11),
+Build-Depends: debhelper-compat (= 12),
                dh-python,
                libhdf5-dev,
                libboost-python-dev,
-               python-all-dev,
-               python-setuptools,
                python3-all-dev,
                python3-setuptools,
-               cython,
                cython3
-Standards-Version: 4.2.1
+Standards-Version: 4.4.0
 Vcs-Browser: https://salsa.debian.org/med-team/fast5
 Vcs-Git: https://salsa.debian.org/med-team/fast5.git
 Homepage: https://github.com/mateidavid/fast5
@@ -39,18 +37,6 @@ Description: library for reading Oxford Nanopore Fast5 files -- headers
  .
  This package provides the header files for development with fast5.
 
-Package: python-fast5
-Architecture: any
-Section: python
-Depends: ${shlibs:Depends},
-         ${misc:Depends},
-         ${python:Depends}
-Description: library for reading Oxford Nanopore Fast5 files -- Python 2
- A lightweight C++11 library to read raw signal data from Oxford
- Nanopore's FAST5 files.
- .
- This package provides the Python 2 library
-
 Package: python3-fast5
 Architecture: any
 Section: python


=====================================
debian/copyright
=====================================
@@ -27,6 +27,6 @@ License: MIT
  OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
  IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
- CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 
- TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
  SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


=====================================
debian/rules
=====================================
@@ -15,7 +15,7 @@ export CXXFLAGS += -std=c++11
 export DEB_BUILD_MAINT_OPTIONS=hardening=+all
 
 %:
-	dh $@ --with python2,python3 --buildsystem=pybuild \
+	dh $@ --with python3 --buildsystem=pybuild \
 	--sourcedirectory=python
 
 override_dh_auto_test:
@@ -38,4 +38,3 @@ override_dh_install:
 	dh_install
 	mkdir -p debian/fast5/usr/bin/
 	mv debian/python3-fast5/usr/bin/* debian/fast5/usr/bin/
-	rm -rf debian/python-fast5/usr/bin/ debian/python3-fast5/usr/bin/


=====================================
debian/tests/control
=====================================
@@ -7,8 +7,7 @@ Test-Command:
 Depends:
 	build-essential,
 	libfast5-dev,
-Restrictions:
-	allow-stderr
+Restrictions: allow-stderr
 
 Test-Command:
 	python -c "import fast5"


=====================================
debian/watch
=====================================
@@ -1,5 +1,3 @@
-version=3
+version=4
 
-opts="filenamemangle=s/(?:.*?)?v?(\d[\d.]*)\.tar\.gz/fast5-$1.tar.gz/" \
-	https://github.com/mateidavid/fast5/tags \
-	(?:.*?/)?v?(\d[\d.]*)\.tar\.gz
+https://github.com/mateidavid/fast5/releases .*/archive/v?@ANY_VERSION@@ARCHIVE_EXT@



View it on GitLab: https://salsa.debian.org/med-team/fast5/compare/0a35e90b4592eee173596f581048a198d7fe8c09...eee2e1ccfee62ef0cafd736ba876cd8c1cf21bab

-- 
View it on GitLab: https://salsa.debian.org/med-team/fast5/compare/0a35e90b4592eee173596f581048a198d7fe8c09...eee2e1ccfee62ef0cafd736ba876cd8c1cf21bab
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20190904/cb856dda/attachment-0001.html>


More information about the debian-med-commit mailing list