This is an automated email from the git hooks/post-receive script. jamessan pushed a commit to branch master in repository devscripts.
commit 14b5b129c1b005782dab0ae47a8f7364b881c2ac Author: James McCoy <[email protected]> Date: Tue Feb 2 22:03:06 2016 -0500 dep3changelog: Recognize https URLs for Bug-Debian Closes: #750024 Signed-off-by: James McCoy <[email protected]> --- debian/changelog | 2 ++ scripts/dep3changelog.pl | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index aadfde8..c287bd3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -41,6 +41,8 @@ devscripts (2.16.1) UNRELEASED; urgency=medium * debsnap: + Remove use of JSON module in favor of the core Perl JSON::PP module. Thanks to RjY and Jakub Wilk. (Closes: #803315) + * dep3changelog: + + Recognize https URLs for Bug-Debian. (Closes: #750024) [ Christoph Berg ] * debcheckout: Add auth mapping for https://github.com. diff --git a/scripts/dep3changelog.pl b/scripts/dep3changelog.pl index c1a1753..b7000cc 100755 --- a/scripts/dep3changelog.pl +++ b/scripts/dep3changelog.pl @@ -142,7 +142,7 @@ for my $patch (@patches) { $author = $2; } elsif (/^Origin:\s+(.*)\s*/) { $origin = $1; - } elsif (/^bug-debian:\s+http:\/\/bugs\.debian\.org\/([0-9]+)\s*/i) { + } elsif (/^bug-debian:\s+https?:\/\/bugs\.debian\.org\/([0-9]+)\s*/i) { $debbug = $1; } elsif (/^bug-ubuntu:\s+https:\/\/.*launchpad\.net\/.*\/([0-9]+)\s*/i) { $lpbug = $1; -- 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
