Subversion Repositories libtar

Compare Revisions

Ignore whitespace Rev 38 → Rev 39

/trunk/debian/changelog
4,8 → 4,9
#763119). Those appear in incremental archives and use the bytes that
the new-style headers use for the prefix field for other fields.
Thanks to Steinar H. Gunderson.
* testsuite.patch: Add a simple test (Closes: #737258).
 
-- Magnus Holmgren <holmgren@debian.org> Sun, 12 Oct 2014 21:45:42 +0200
-- Magnus Holmgren <holmgren@debian.org> Fri, 25 Mar 2016 19:10:41 +0100
 
libtar (1.2.20-4) unstable; urgency=high
 
/trunk/debian/patches/series
3,3 → 3,4
CVE-2013-4420.patch
th_get_size-unsigned-int.patch
oldgnu_prefix.patch
testsuite.patch
/trunk/debian/patches/testsuite.patch
0,0 → 1,50
--- a/Makefile.am
+++ b/Makefile.am
@@ -10,5 +10,5 @@ ACLOCAL_AMFLAGS = -I autoconf
#@SET_MAKE@
-SUBDIRS = lib libtar doc
+SUBDIRS = lib libtar doc testsuite
--- a/doc/Makefile.in
+++ b/doc/Makefile.in
@@ -151,3 +151,4 @@ install: all
echo ".so man3/@LISTHASH_PREFIX@_list_new.3" > ${DESTDIR}${mandir}/man3/$${i}.3; \
done
+check:
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -104,3 +104,4 @@ install: ${ALL}
${INSTALL_DATA} ${srcdir}/libtar.h ${DESTDIR}${includedir}
${INSTALL_DATA} ../listhash/libtar_listhash.h ${DESTDIR}${includedir}
+check:
--- a/libtar/Makefile.in
+++ b/libtar/Makefile.in
@@ -76,3 +76,4 @@ install: ${ALL}
${MKDIR} ${DESTDIR}${bindir}
$(LIBTOOL) --mode=install ${INSTALL_PROGRAM} libtar ${DESTDIR}${bindir}
+check:
--- /dev/null
+++ b/testsuite/Makefile.in
@@ -0,0 +1,7 @@
+all:
+
+check: ../libtar/libtar
+ ../libtar/libtar -C ../doc -c test.tar .
+ ../libtar/libtar -t test.tar
+ $(RM) test.tar
+install:
--- a/configure.ac
+++ b/configure.ac
@@ -120,6 +120,6 @@ fi
dnl ### Create output files. #######################################
-AC_CONFIG_FILES([Makefile lib/Makefile libtar/Makefile doc/Makefile])
+AC_CONFIG_FILES([Makefile lib/Makefile libtar/Makefile doc/Makefile testsuite/Makefile])
AC_OUTPUT