[SCM] hydrogen packaging branch, master, updated. 1f8e4361335aef5d223885927c688d654b9566e2

js at users.alioth.debian.org js at users.alioth.debian.org
Tue Mar 2 16:23:15 UTC 2010


The following commit has been merged in the master branch:
commit e332fa6f33f73e953639f94cc8fe9c43bed5dd12
Author: Jonas Smedegaard <dr at jones.dk>
Date:   Sun Feb 14 20:48:01 2010 +0100

    Fix allow overriding copyright-check.mk variables early (i.e. use ?= not plain = ).

diff --git a/debian/cdbs/1/rules/copyright-check.mk b/debian/cdbs/1/rules/copyright-check.mk
index 88f2503..f503525 100644
--- a/debian/cdbs/1/rules/copyright-check.mk
+++ b/debian/cdbs/1/rules/copyright-check.mk
@@ -29,15 +29,15 @@ include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
 CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), devscripts (>= 2.10.7)
 
 # Set to yes to fail on changed/new hints are found
-#DEB_COPYRIGHT_CHECK_STRICT := yes
+#DEB_COPYRIGHT_CHECK_STRICT = yes
 
 # Single regular expression for files to include or ignore
-DEB_COPYRIGHT_CHECK_REGEX = .*
-#DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^(debian/.*|(.*/)?config\.(guess|sub|rpath)(\..*)?)$
-DEB_COPYRIGHT_CHECK_IGNORE_REGEX = ^debian/(changelog|copyright(|_hints|_newhints))$
+DEB_COPYRIGHT_CHECK_REGEX ?= .*
+#DEB_COPYRIGHT_CHECK_IGNORE_REGEX ?= ^(debian/.*|(.*/)?config\.(guess|sub|rpath)(\..*)?)$
+DEB_COPYRIGHT_CHECK_IGNORE_REGEX ?= ^debian/(changelog|copyright(|_hints|_newhints))$
 
 # number of lines from the top of each file to investigate
-DEB_COPYRIGHT_CHECK_PARSELINES = 99999
+DEB_COPYRIGHT_CHECK_PARSELINES ?= 99999
 
 pre-build:: debian/stamp-copyright-check
 

-- 
hydrogen packaging



More information about the pkg-multimedia-commits mailing list