Skip to content
Commits on Source (7)
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@debian.org> Tue, 04 Dec 2018 09:45:10 +0100
libgtextutils (0.7-5) unstable; urgency=medium
* debhelper 11
......
......@@ -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/
......
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
......
Author: Frédéric Bonnard <frediz@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
gcc-6.patch
enable_parallel_tests.patch
......@@ -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
......