This is an automated email from the git hooks/post-receive script. adsb pushed a commit to branch master in repository devscripts.
commit 9dda5a70be2b4ea32d26a59a9f859100fdb160bb Author: Adam D. Barratt <[email protected]> Date: Tue Dec 10 23:31:49 2013 +0000 Honour USCAN_EXCLUSION. (Closes: #731885) --- debian/changelog | 4 ++++ scripts/uscan.pl | 1 + 2 files changed, 5 insertions(+) diff --git a/debian/changelog b/debian/changelog index 6c2df45..2514d11 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,7 +1,11 @@ devscripts (2.13.7) unstable; urgency=medium + [ James McCoy ] * Fix imports of Devscripts::Compression. (Closes: #731847) + [ Adam D. Barratt ] + * Honour USCAN_EXCLUSION. (Closes: #731885) + -- James McCoy <[email protected]> Tue, 10 Dec 2013 07:49:54 -0500 devscripts (2.13.6) unstable; urgency=medium diff --git a/scripts/uscan.pl b/scripts/uscan.pl index 8f4d36c..4282951 100755 --- a/scripts/uscan.pl +++ b/scripts/uscan.pl @@ -267,6 +267,7 @@ if (@ARGV and $ARGV[0] =~ /^--no-?conf$/) { $user_agent_string = $config_vars{'USCAN_USER_AGENT'} if $config_vars{'USCAN_USER_AGENT'}; $repack = $config_vars{'USCAN_REPACK'} eq 'yes' ? 1 : 0; + $exclusion = $config_vars{'USCAN_EXCLUSION'} eq 'yes' ? 1 : 0; } # Now read the command line arguments -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/collab-maint/devscripts.git _______________________________________________ devscripts-devel mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/devscripts-devel
