[Forensics-changes] [SCM] debian-forensics/afflib branch, debian, updated. debian/3.5.10+dfsg-1-3-g33ff9ac

Cristian Greco cristian at regolo.cc
Sat Apr 10 00:03:10 UTC 2010


The following commit has been merged in the debian branch:
commit 267614a0375f72b731f98f708325a27edce8657d
Author: Cristian Greco <cristian at regolo.cc>
Date:   Fri Apr 9 18:31:24 2010 +0200

    debian/patches/04-tests-disabling: drop patch, and just point dh_auto_test to
    an empty target in debian/rules to disable tests.

diff --git a/debian/patches/04-tests-disabling b/debian/patches/04-tests-disabling
deleted file mode 100644
index 38e71f5..0000000
--- a/debian/patches/04-tests-disabling
+++ /dev/null
@@ -1,303 +0,0 @@
-Index: afflib/Makefile.am
-===================================================================
---- afflib.orig/Makefile.am	2010-02-23 21:51:10.524222519 +0100
-+++ afflib/Makefile.am	2010-02-23 21:51:10.548223302 +0100
-@@ -1,4 +1,4 @@
--SUBDIRS = lib tools lzma443 tests doc pyaff man
-+SUBDIRS = lib tools lzma443 doc pyaff man
- 
- pkgconfigdir = $(libdir)/pkgconfig
- 
-@@ -106,8 +106,6 @@
- 	afflib.pc.in \
- 	afflib.pubkey.asc \
- 	misc/expat-2.0.1.tar.gz \
--	tests/encrypted.iso \
--	tests/encrypted.aff
- 
- #
- # Note: don't forget to run autoreconf when significant changes are made
-Index: afflib/Makefile.in
-===================================================================
---- afflib.orig/Makefile.in	2010-02-23 21:51:10.524222519 +0100
-+++ afflib/Makefile.in	2010-02-23 21:51:10.548223302 +0100
-@@ -229,7 +229,7 @@
- target_alias = @target_alias@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
--SUBDIRS = lib tools lzma443 tests doc pyaff man
-+SUBDIRS = lib tools lzma443 doc pyaff man
- pkgconfigdir = $(libdir)/pkgconfig
- pkgconfig_DATA = afflib.pc
- include_HEADERS = 
-@@ -297,8 +297,6 @@
- 	afflib.pc.in \
- 	afflib.pubkey.asc \
- 	misc/expat-2.0.1.tar.gz \
--	tests/encrypted.iso \
--	tests/encrypted.aff
- 
- all: affconfig.h
- 	$(MAKE) $(AM_MAKEFLAGS) all-recursive
-Index: afflib/configure
-===================================================================
---- afflib.orig/configure	2010-02-23 21:51:10.532215749 +0100
-+++ afflib/configure	2010-02-23 21:51:10.552240869 +0100
-@@ -11831,7 +11831,7 @@
- 
- # AC_PROG_RANLIB not needed if you are using AC_PROG_LIBTOOL
- # AC_PROG_RANLIB
--ac_config_files="$ac_config_files Makefile lib/Makefile tools/Makefile lzma443/Makefile tests/Makefile doc/Makefile pyaff/Makefile man/Makefile lib/version.h"
-+ac_config_files="$ac_config_files Makefile lib/Makefile tools/Makefile lzma443/Makefile doc/Makefile pyaff/Makefile man/Makefile lib/version.h"
- 
- ac_config_files="$ac_config_files afflib.spec"
- 
-@@ -23224,7 +23224,6 @@
-     "lib/Makefile") CONFIG_FILES="$CONFIG_FILES lib/Makefile" ;;
-     "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;;
-     "lzma443/Makefile") CONFIG_FILES="$CONFIG_FILES lzma443/Makefile" ;;
--    "tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
-     "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;;
-     "pyaff/Makefile") CONFIG_FILES="$CONFIG_FILES pyaff/Makefile" ;;
-     "man/Makefile") CONFIG_FILES="$CONFIG_FILES man/Makefile" ;;
-Index: afflib/configure.ac
-===================================================================
---- afflib.orig/configure.ac	2010-02-23 21:51:10.532215749 +0100
-+++ afflib/configure.ac	2010-02-23 21:51:10.552240869 +0100
-@@ -31,7 +31,7 @@
- # AC_PROG_RANLIB not needed if you are using AC_PROG_LIBTOOL
- # AC_PROG_RANLIB
- AC_CONFIG_FILES([Makefile lib/Makefile tools/Makefile lzma443/Makefile
--			  tests/Makefile doc/Makefile pyaff/Makefile man/Makefile lib/version.h])
-+			  doc/Makefile pyaff/Makefile man/Makefile lib/version.h])
- dnl Have configure make distribution specific files
- AC_CONFIG_FILES([afflib.spec])
- dnl Have configure write its configuration
-Index: afflib/lib/Makefile.in
-===================================================================
---- afflib.orig/lib/Makefile.in	2010-02-23 21:48:11.016216858 +0100
-+++ afflib/lib/Makefile.in	2010-02-23 21:51:10.552240869 +0100
-@@ -873,79 +873,6 @@
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
- 
--check-TESTS: $(TESTS)
--	@failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[	 ]'; \
--	srcdir=$(srcdir); export srcdir; \
--	list=' $(TESTS) '; \
--	if test -n "$$list"; then \
--	  for tst in $$list; do \
--	    if test -f ./$$tst; then dir=./; \
--	    elif test -f $$tst; then dir=; \
--	    else dir="$(srcdir)/"; fi; \
--	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
--	      all=`expr $$all + 1`; \
--	      case " $(XFAIL_TESTS) " in \
--	      *$$ws$$tst$$ws*) \
--		xpass=`expr $$xpass + 1`; \
--		failed=`expr $$failed + 1`; \
--		echo "XPASS: $$tst"; \
--	      ;; \
--	      *) \
--		echo "PASS: $$tst"; \
--	      ;; \
--	      esac; \
--	    elif test $$? -ne 77; then \
--	      all=`expr $$all + 1`; \
--	      case " $(XFAIL_TESTS) " in \
--	      *$$ws$$tst$$ws*) \
--		xfail=`expr $$xfail + 1`; \
--		echo "XFAIL: $$tst"; \
--	      ;; \
--	      *) \
--		failed=`expr $$failed + 1`; \
--		echo "FAIL: $$tst"; \
--	      ;; \
--	      esac; \
--	    else \
--	      skip=`expr $$skip + 1`; \
--	      echo "SKIP: $$tst"; \
--	    fi; \
--	  done; \
--	  if test "$$failed" -eq 0; then \
--	    if test "$$xfail" -eq 0; then \
--	      banner="All $$all tests passed"; \
--	    else \
--	      banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
--	    fi; \
--	  else \
--	    if test "$$xpass" -eq 0; then \
--	      banner="$$failed of $$all tests failed"; \
--	    else \
--	      banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
--	    fi; \
--	  fi; \
--	  dashes="$$banner"; \
--	  skipped=""; \
--	  if test "$$skip" -ne 0; then \
--	    skipped="($$skip tests were not run)"; \
--	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
--	      dashes="$$skipped"; \
--	  fi; \
--	  report=""; \
--	  if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
--	    report="Please report to $(PACKAGE_BUGREPORT)"; \
--	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
--	      dashes="$$report"; \
--	  fi; \
--	  dashes=`echo "$$dashes" | sed s/./=/g`; \
--	  echo "$$dashes"; \
--	  echo "$$banner"; \
--	  test -z "$$skipped" || echo "$$skipped"; \
--	  test -z "$$report" || echo "$$report"; \
--	  echo "$$dashes"; \
--	  test "$$failed" -eq 0; \
--	else :; fi
--
- distdir: $(DISTFILES)
- 	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
- 	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-@@ -973,7 +900,6 @@
- 	  fi; \
- 	done
- check-am: all-am
--	$(MAKE) $(AM_MAKEFLAGS) check-TESTS
- check: check-am
- all-am: Makefile $(LTLIBRARIES) $(PROGRAMS)
- install-binPROGRAMS: install-libLTLIBRARIES
-@@ -1069,7 +995,7 @@
- 
- .MAKE: install-am install-exec-am install-strip
- 
--.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
-+.PHONY: CTAGS GTAGS all all-am check check-am clean \
- 	clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
- 	clean-libtool ctags distclean distclean-compile \
- 	distclean-generic distclean-libtool distclean-tags distdir dvi \
-Index: afflib/tools/Makefile.am
-===================================================================
---- afflib.orig/tools/Makefile.am	2010-02-23 21:51:18.368217821 +0100
-+++ afflib/tools/Makefile.am	2010-02-23 21:51:48.436230391 +0100
-@@ -1,10 +1,6 @@
- bin_PROGRAMS = afcat afcompare afconvert afcopy afcrypto affix afinfo afsegment \
- 	afstats afverify afxml affuse afrecover afsign afdiskprint
- 
--EXTRA_DIST = test_make_random_iso.sh test_crypto.sh test_signing.sh test_recovery.sh \
--	test_passphrase.sh test_afsegment.sh 
--
--TESTS = test_signing.sh test_recovery.sh test_passphrase.sh test_afsegment.sh test_crypto.sh
- 
- # See http://www.gnu.org/software/libtool/manual.html		# Using-Automake
- 
-Index: afflib/tools/Makefile.in
-===================================================================
---- afflib.orig/tools/Makefile.in	2010-02-23 21:52:28.917222293 +0100
-+++ afflib/tools/Makefile.in	2010-02-23 21:53:09.456478311 +0100
-@@ -283,10 +283,6 @@
- target_alias = @target_alias@
- top_builddir = @top_builddir@
- top_srcdir = @top_srcdir@
--EXTRA_DIST = test_make_random_iso.sh test_crypto.sh test_signing.sh test_recovery.sh \
--	test_passphrase.sh test_afsegment.sh 
--
--TESTS = test_signing.sh test_recovery.sh test_passphrase.sh test_afsegment.sh test_crypto.sh
- 
- # See http://www.gnu.org/software/libtool/manual.html		# Using-Automake
- AM_LDFLAGS = -static		# staticly link our tools (easier debugging)
-@@ -553,79 +549,6 @@
- distclean-tags:
- 	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
- 
--check-TESTS: $(TESTS)
--	@failed=0; all=0; xfail=0; xpass=0; skip=0; ws='[	 ]'; \
--	srcdir=$(srcdir); export srcdir; \
--	list=' $(TESTS) '; \
--	if test -n "$$list"; then \
--	  for tst in $$list; do \
--	    if test -f ./$$tst; then dir=./; \
--	    elif test -f $$tst; then dir=; \
--	    else dir="$(srcdir)/"; fi; \
--	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
--	      all=`expr $$all + 1`; \
--	      case " $(XFAIL_TESTS) " in \
--	      *$$ws$$tst$$ws*) \
--		xpass=`expr $$xpass + 1`; \
--		failed=`expr $$failed + 1`; \
--		echo "XPASS: $$tst"; \
--	      ;; \
--	      *) \
--		echo "PASS: $$tst"; \
--	      ;; \
--	      esac; \
--	    elif test $$? -ne 77; then \
--	      all=`expr $$all + 1`; \
--	      case " $(XFAIL_TESTS) " in \
--	      *$$ws$$tst$$ws*) \
--		xfail=`expr $$xfail + 1`; \
--		echo "XFAIL: $$tst"; \
--	      ;; \
--	      *) \
--		failed=`expr $$failed + 1`; \
--		echo "FAIL: $$tst"; \
--	      ;; \
--	      esac; \
--	    else \
--	      skip=`expr $$skip + 1`; \
--	      echo "SKIP: $$tst"; \
--	    fi; \
--	  done; \
--	  if test "$$failed" -eq 0; then \
--	    if test "$$xfail" -eq 0; then \
--	      banner="All $$all tests passed"; \
--	    else \
--	      banner="All $$all tests behaved as expected ($$xfail expected failures)"; \
--	    fi; \
--	  else \
--	    if test "$$xpass" -eq 0; then \
--	      banner="$$failed of $$all tests failed"; \
--	    else \
--	      banner="$$failed of $$all tests did not behave as expected ($$xpass unexpected passes)"; \
--	    fi; \
--	  fi; \
--	  dashes="$$banner"; \
--	  skipped=""; \
--	  if test "$$skip" -ne 0; then \
--	    skipped="($$skip tests were not run)"; \
--	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
--	      dashes="$$skipped"; \
--	  fi; \
--	  report=""; \
--	  if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
--	    report="Please report to $(PACKAGE_BUGREPORT)"; \
--	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
--	      dashes="$$report"; \
--	  fi; \
--	  dashes=`echo "$$dashes" | sed s/./=/g`; \
--	  echo "$$dashes"; \
--	  echo "$$banner"; \
--	  test -z "$$skipped" || echo "$$skipped"; \
--	  test -z "$$report" || echo "$$report"; \
--	  echo "$$dashes"; \
--	  test "$$failed" -eq 0; \
--	else :; fi
--
- distdir: $(DISTFILES)
- 	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
- 	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
-@@ -653,7 +576,6 @@
- 	  fi; \
- 	done
- check-am: all-am
--	$(MAKE) $(AM_MAKEFLAGS) check-TESTS
- check: check-am
- all-am: Makefile $(PROGRAMS)
- installdirs:
-@@ -745,7 +667,7 @@
- 
- .MAKE: install-am install-strip
- 
--.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
-+.PHONY: CTAGS GTAGS all all-am check check-am clean \
- 	clean-binPROGRAMS clean-generic clean-libtool ctags distclean \
- 	distclean-compile distclean-generic distclean-libtool \
- 	distclean-tags distdir dvi dvi-am html html-am info info-am \
diff --git a/debian/patches/series b/debian/patches/series
index 977b979..a55e1df 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,4 +1,3 @@
 01-debian-directory.patch
 02-win32-files.patch
 03-bashism.patch
-04-tests-disabling
diff --git a/debian/rules b/debian/rules
index 6dd4688..aaebf91 100755
--- a/debian/rules
+++ b/debian/rules
@@ -22,6 +22,8 @@ override_dh_install:
 
 	dh_install --fail-missing
 
+override_dh_auto_test:
+	# do nothing
 
 override_dh_strip:
 	dh_strip --dbg-package=afflib-dbg

-- 
debian-forensics/afflib



More information about the forensics-changes mailing list