[med-svn] [Git][med-team/libqes][master] 9 commits: New upstream version 0.2.8

Andreas Tille gitlab at salsa.debian.org
Sat Apr 28 21:49:22 BST 2018


Andreas Tille pushed to branch master at Debian Med / libqes


Commits:
18b85f66 by Andreas Tille at 2018-04-28T22:32:39+02:00
New upstream version 0.2.8
- - - - -
f55e0e31 by Andreas Tille at 2018-04-28T22:32:40+02:00
Update upstream source from tag 'upstream/0.2.8'

Update to upstream version '0.2.8'
with Debian dir e04a782129f7ea1d4e4975ea8c16eb676690830c
- - - - -
31fae88a by Andreas Tille at 2018-04-28T22:32:40+02:00
New upstream version

- - - - -
e568cd54 by Andreas Tille at 2018-04-28T22:33:35+02:00
Point Vcs fields to salsa.debian.org

- - - - -
bb9f49f2 by Andreas Tille at 2018-04-28T22:33:35+02:00
Standards-Version: 4.1.4

- - - - -
56f3cf71 by Andreas Tille at 2018-04-28T22:33:35+02:00
debhelper 11

- - - - -
0b9f80e6 by Andreas Tille at 2018-04-28T22:34:23+02:00
Remove empty series file

- - - - -
70ba7b8e by Andreas Tille at 2018-04-28T22:39:24+02:00
d/rules: do not parse d/changelog

- - - - -
1910813f by Andreas Tille at 2018-04-28T22:49:09+02:00
Upload to unstable

- - - - -


7 changed files:

- README.md
- debian/changelog
- debian/compat
- debian/control
- − debian/patches/series
- debian/rules
- src/qes_seq.c


Changes:

=====================================
README.md
=====================================
--- a/README.md
+++ b/README.md
@@ -7,10 +7,8 @@ API.
 
 ###Tests:
 
-| Jenkins GNU/Linux | [![Build Status](http://biojenkins.anu.edu.au/job/libqes/badge/icon)](http://biojenkins.anu.edu.au/job/libqes/) |
-| ----------------- | --- |
-| Jenkins MinGW     | [![Build Status](http://biojenkins.anu.edu.au/job/libqes-mingw/badge/icon)](http://biojenkins.anu.edu.au/job/libqes-mingw/) |
 | TravisCI          | [![Build Status](https://travis-ci.org/kdmurray91/libqes.svg?branch=dev)](https://travis-ci.org/kdmurray91/libqes) |
+| ----------------- | --- |
 | Test Coverage     | [![Coverage Status](https://img.shields.io/coveralls/kdmurray91/libqes.svg)](https://coveralls.io/r/kdmurray91/libqes?branch=master) |
 
 


=====================================
debian/changelog
=====================================
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,14 @@
+libqes (0.2.8-1) unstable; urgency=medium
+
+  * Team upload.
+  * New upstream version
+  * Point Vcs fields to salsa.debian.org
+  * Standards-Version: 4.1.4
+  * debhelper 11
+  * d/rules: do not parse d/changelog
+
+ -- Andreas Tille <tille at debian.org>  Sat, 28 Apr 2018 22:41:33 +0200
+
 libqes (0.2.7-1) unstable; urgency=medium
 
   * New upstream release (fixes major parsing bug)


=====================================
debian/compat
=====================================
--- a/debian/compat
+++ b/debian/compat
@@ -1 +1 @@
-9
+11


=====================================
debian/control
=====================================
--- a/debian/control
+++ b/debian/control
@@ -1,23 +1,23 @@
 Source: libqes
-Priority: optional
 Maintainer: Debian Med Packaging Team <debian-med-packaging at lists.alioth.debian.org>
 Uploaders: Kevin Murray <kdmfoss at gmail.com>
-Build-Depends: debhelper (>= 9),
+Section: libs
+Priority: optional
+Build-Depends: debhelper (>= 11~),
                cmake,
                zlib1g-dev,
-               dh-exec,
-Standards-Version: 3.9.8
-Section: libs
+               dh-exec
+Standards-Version: 4.1.4
+Vcs-Browser: https://salsa.debian.org/med-team/libqes
+Vcs-Git: https://salsa.debian.org/med-team/libqes.git
 Homepage: https://github.com/kdmurray91/libqes
-Vcs-Git: https://anonscm.debian.org/git/debian-med/libqes.git
-Vcs-Browser: https://anonscm.debian.org/cgit/debian-med/libqes.git
 
 Package: libqes-dev
-Section: libdevel
 Architecture: any
+Section: libdevel
 Depends: libqes0 (= ${binary:Version}),
-        ${misc:Depends},
-        zlib1g-dev,
+         ${misc:Depends},
+         zlib1g-dev
 Description: DNA sequence parsing library -- development
  A small C library, with a bioinformatic focus. Optimised for speed and a clean
  API. Handles sequence parsing and miscellaneous manipulation of DNA sequences.


=====================================
debian/patches/series deleted
=====================================
--- a/debian/patches/series
+++ /dev/null


=====================================
debian/rules
=====================================
--- a/debian/rules
+++ b/debian/rules
@@ -4,7 +4,5 @@ export DEB_BUILD_MAINT_OPTIONS += hardening=+all
 DPKG_EXPORT_BUILDFLAGS = 1
 include /usr/share/dpkg/buildflags.mk
 
-DEBPKGNAME     := $(shell dpkg-parsechangelog | awk '/^Source:/ {print $$2}')
-
 %:
-	dh $@ --buildsystem=cmake --parallel
+	dh $@ --buildsystem=cmake


=====================================
src/qes_seq.c
=====================================
--- a/src/qes_seq.c
+++ b/src/qes_seq.c
@@ -217,7 +217,7 @@ qes_seq_print(const struct qes_seq *seq, FILE *stream, bool fasta, int tag)
             fprintf(stream, "/%d", tag);
         }
     }
-    if (seq->comment.str) {
+    if (seq->comment.len > 0) {
         fputc(' ', stream);
         fputs(seq->comment.str, stream);
     }



View it on GitLab: https://salsa.debian.org/med-team/libqes/compare/2064815d2c5243c15aac76b49364c8ac44dbfce8...1910813fa566e046447a99371c4165d5721931dc

---
View it on GitLab: https://salsa.debian.org/med-team/libqes/compare/2064815d2c5243c15aac76b49364c8ac44dbfce8...1910813fa566e046447a99371c4165d5721931dc
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/20180428/ee82e426/attachment-0001.html>


More information about the debian-med-commit mailing list