[SCM] Git repository for devscripts branch, master, updated. v2.11.7-62-gc5c2456

Christoph Berg myon at debian.org
Wed Jun 6 21:22:04 UTC 2012


The following commit has been merged in the master branch:
commit c5c2456cc28934e0be5c6f654a937c9ddd3959d6
Author: Christoph Berg <myon at debian.org>
Date:   Wed Jun 6 23:22:14 2012 +0200

    debcheckout: Also recognize bzr+ssh:// schema.

diff --git a/debian/changelog b/debian/changelog
index 3feea11..b575bdd 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -6,6 +6,9 @@ devscripts (2.11.9) UNRELEASED; urgency=low
   [ Ron Lee ]
   * cowpoke: Properly strip the arguments to dpkg --compare-versions
 
+  [ Christoph Berg ]
+  * debcheckout: Also recognize bzr+ssh:// schema.
+
  -- David Prévot <taffit at debian.org>  Thu, 31 May 2012 12:12:02 -0400
 
 devscripts (2.11.8) unstable; urgency=low
diff --git a/scripts/debcheckout.pl b/scripts/debcheckout.pl
index 56f0c93..f6ccdcc 100755
--- a/scripts/debcheckout.pl
+++ b/scripts/debcheckout.pl
@@ -945,7 +945,7 @@ sub print_details($$) {
 sub guess_repo_type($$) {
     my ($repo_url, $default) = @_;
     my $repo_type = $default;
-    if ($repo_url =~ /^(git|svn)(\+ssh)?:/) {
+    if ($repo_url =~ /^(git|svn|bzr)(\+ssh)?:/) {
 	$repo_type = $1;
     } elsif ($repo_url =~ /^https?:\/\/(svn|git|hg|bzr|darcs)\.debian\.org/) {
 	$repo_type = $1;

-- 
Git repository for devscripts



More information about the devscripts-devel mailing list