This is an automated email from the git hooks/post-receive script. dod pushed a commit to branch master in repository devscripts.
commit a12dd2cea3b11b4a1b15ff7c1602b2f87c114cbd Author: Dominique Dumont <[email protected]> Date: Thu Jul 2 20:56:14 2015 +0200 licensecheck: parse assembly files with suffix .S as found in dyncall packages (part of moarvm) --- debian/changelog | 1 + scripts/licensecheck.pl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 7450a2e..513d660 100644 --- a/debian/changelog +++ b/debian/changelog @@ -15,6 +15,7 @@ devscripts (2.15.6) UNRELEASED; urgency=medium * extract © owner when © and owners are specified on 2 lines. * fix digia © and license extraction (Closes: #789074) * fix BSD-2-clause detection + * parse assembly files with suffix .S [ Mattia Rizzolo ] * uscan: Suggest the correct syntax in the manpage for the dversionmangle diff --git a/scripts/licensecheck.pl b/scripts/licensecheck.pl index fa8ec74..c991a62 100755 --- a/scripts/licensecheck.pl +++ b/scripts/licensecheck.pl @@ -168,7 +168,7 @@ my $default_ignore_regex = qr! \.shelf|_MTN|\.bzr(?:\.backup|tags)?)(?:$|/.*$) !x; -my $default_check_regex = '\.(c(c|pp|xx)?|h(h|pp|xx)?|f(77|90)?|go|groovy|scala|clj|p(l|m)|xs|sh|php|py(|x)|rb|java|js|vala|el|sc(i|e)|cs|pas|inc|dtd|xsl|mod|m|tex|mli?|(c|l)?hs)$'; +my $default_check_regex = '\.(c(c|pp|xx)?|h(h|pp|xx)?|S|f(77|90)?|go|groovy|scala|clj|p(l|m)|xs|sh|php|py(|x)|rb|java|js|vala|el|sc(i|e)|cs|pas|inc|dtd|xsl|mod|m|tex|mli?|(c|l)?hs)$'; # also used to cleanup -- 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
