[med-svn] [Git][med-team/libgtextutils][master] 7 commits: preserves parallel testing while making sure it does not fail on ppc64el (turned…

Andreas Tille gitlab at salsa.debian.org
Tue Dec 4 08:46:43 GMT 2018


Andreas Tille pushed to branch master at Debian Med / libgtextutils


Commits:
724b62f0 by Andreas Tille at 2018-12-04T08:44:12Z
preserves parallel testing while making sure it does not fail on ppc64el (turned change of Frédéric into quilt patch)

- - - - -
e5bf7f47 by Andreas Tille at 2018-12-04T08:45:09Z
Standards-Version: 4.2.1

- - - - -
e398954e by Andreas Tille at 2018-12-04T08:45:09Z
Secure URI in copyright format

- - - - -
7d3e18fb by Andreas Tille at 2018-12-04T08:45:10Z
Remove trailing whitespace in debian/changelog

- - - - -
d2b8cc18 by Andreas Tille at 2018-12-04T08:45:10Z
Remove trailing whitespace in debian/control

- - - - -
a21343ec by Andreas Tille at 2018-12-04T08:45:10Z
Remove trailing whitespace in debian/copyright

- - - - -
1c2422a0 by Andreas Tille at 2018-12-04T08:46:13Z
Upload to unstable

- - - - -


6 changed files:

- debian/changelog
- debian/control
- debian/copyright
- + debian/patches/enable_parallel_tests.patch
- debian/patches/series
- tests/Makefile.am


Changes:

=====================================
debian/changelog
=====================================
@@ -1,3 +1,19 @@
+libgtextutils (0.7-6) unstable; urgency=medium
+
+  [ Frédéric Bonnard ]
+  * preserves parallel testing while making sure it does not fail on
+    ppc64el
+    Closes: #914438
+
+  [ Andreas Tille ]
+  * Standards-Version: 4.2.1
+  * Secure URI in copyright format
+  * Remove trailing whitespace in debian/changelog
+  * Remove trailing whitespace in debian/control
+  * Remove trailing whitespace in debian/copyright
+
+ -- Andreas Tille <tille at debian.org>  Tue, 04 Dec 2018 09:45:10 +0100
+
 libgtextutils (0.7-5) unstable; urgency=medium
 
   * debhelper 11
@@ -11,7 +27,7 @@ libgtextutils (0.7-4) unstable; urgency=medium
   * Team upload.
   [ Gert Wollny ]
   * d/p/gcc-6.patch: Fix compilation with g++-6, Closes: #811646
-  * d/ibgtextutils0v5.lintian-override: add override for differently 
+  * d/ibgtextutils0v5.lintian-override: add override for differently
     names -dev symlink
   * cme fix dpkg-control
 


=====================================
debian/control
=====================================
@@ -7,7 +7,7 @@ Priority: optional
 Build-Depends: debhelper (>= 11~),
                dh-exec,
                libtool
-Standards-Version: 4.1.5
+Standards-Version: 4.2.1
 Vcs-Browser: https://salsa.debian.org/med-team/libgtextutils
 Vcs-Git: https://salsa.debian.org/med-team/libgtextutils.git
 Homepage: http://hannonlab.cshl.edu/fastx_toolkit/
@@ -20,7 +20,7 @@ Depends: libgtextutils0v5 (= ${binary:Version}),
          ${misc:Depends}
 Description: Gordon Text_utils library (development files)
  The Gordon Text_utils (gtextutils) library is a text utilities library used by
- the FASTX-Toolkit, a suite of programs for biological sequence analysis. 
+ the FASTX-Toolkit, a suite of programs for biological sequence analysis.
  .
  Development files for the Gordon Text_utils (gtextutils) library.
 
@@ -34,6 +34,6 @@ Conflicts: libgtextutils0
 Replaces: libgtextutils0
 Description: Gordon Text_utils library
  The Gordon Text_utils (gtextutils) library is a text utilities library used by
- the FASTX-Toolkit, a suite of programs for biological sequence analysis. 
+ the FASTX-Toolkit, a suite of programs for biological sequence analysis.
  .
  This package provides the dynamic library.


=====================================
debian/copyright
=====================================
@@ -1,4 +1,4 @@
-Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
+Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 Source: https://github.com/agordon/libgtextutils/archive/master.zip
  commit: dc6863fc7cab116c8ceaebb35889cb6924cff843, branch: master
 
@@ -19,9 +19,9 @@ Files: src/Makefile.am src/gtextutils/Makefile.am Makefile.am m4/Makefile.am doc
 Copyright: © 2008-2013 Assaf Gordon <assafgordon at gmail.com>
 License: special
   This file is free software; as a special exception the author gives
-  unlimited permission to copy and/or distribute it, with or without 
+  unlimited permission to copy and/or distribute it, with or without
   modifications, as long as this notice is preserved.
- .  
+ .
   This program is distributed in the hope that it will be useful, but
   WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
   implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.


=====================================
debian/patches/enable_parallel_tests.patch
=====================================
@@ -0,0 +1,30 @@
+Author: Frédéric Bonnard <frediz at debian.org>
+Last-Update: Fri Nov 23 13:45:51 2018 +0100
+Bug-Debian: https://bugs.debian.org/914438
+Description: preserves parallel testing while making sure it does not fail on
+  ppc64el (and may be other architectures)
+
+--- a/tests/Makefile.am
++++ b/tests/Makefile.am
+@@ -16,9 +16,10 @@ else
+ TUPLE_PROG = 
+ endif
+ 
+-AM_TESTS_ENVIRONMENT=\
+-	printf "first line\nsecond line\nthird line\nfourth line\n" > test.txt;
++test.txt:
++	printf "first line\nsecond line\nthird line\nfourth line\n" > test.txt
+ 
++CLEANFILES = test.txt
+ 
+ check_PROGRAMS = test_container_join \
+ 		 test_natural_sort \
+@@ -32,6 +33,8 @@ check_PROGRAMS = test_container_join \
+ 		 test_string_tokenize \
+ 		 $(TUPLE_PROG)
+ 
++$(check_PROGRAMS): test.txt
++
+ TESTS = $(check_PROGRAMS)
+ 
+ LDADD = $(top_builddir)/src/gtextutils/libgtextutils.la


=====================================
debian/patches/series
=====================================
@@ -1 +1,2 @@
 gcc-6.patch
+enable_parallel_tests.patch


=====================================
tests/Makefile.am
=====================================
@@ -16,10 +16,9 @@ else
 TUPLE_PROG = 
 endif
 
-test.txt:
-	printf "first line\nsecond line\nthird line\nfourth line\n" > test.txt
+AM_TESTS_ENVIRONMENT=\
+	printf "first line\nsecond line\nthird line\nfourth line\n" > test.txt;
 
-CLEANFILES = test.txt
 
 check_PROGRAMS = test_container_join \
 		 test_natural_sort \
@@ -33,8 +32,6 @@ check_PROGRAMS = test_container_join \
 		 test_string_tokenize \
 		 $(TUPLE_PROG)
 
-$(check_PROGRAMS): test.txt
-
 TESTS = $(check_PROGRAMS)
 
 LDADD = $(top_builddir)/src/gtextutils/libgtextutils.la



View it on GitLab: https://salsa.debian.org/med-team/libgtextutils/compare/cb9a72e6feb0e06e4fa9f40e520633d340a47712...1c2422a0eed0e6f10bc4d41c158e59e98a0b0f20

-- 
View it on GitLab: https://salsa.debian.org/med-team/libgtextutils/compare/cb9a72e6feb0e06e4fa9f40e520633d340a47712...1c2422a0eed0e6f10bc4d41c158e59e98a0b0f20
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/20181204/ab1a4a90/attachment-0001.html>


More information about the debian-med-commit mailing list