From b8883494d26af72a3745b32009ad9587b7a137ed Mon Sep 17 00:00:00 2001 From: Guido Günther Date: Tue, 13 Aug 2019 19:57:49 +0200 Subject: gbp-clone: Support salsa: pseudo urls --- gbp/scripts/clone.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gbp/scripts/clone.py') diff --git a/gbp/scripts/clone.py b/gbp/scripts/clone.py index edc991ed..b17241b6 100755 --- a/gbp/scripts/clone.py +++ b/gbp/scripts/clone.py @@ -81,6 +81,8 @@ def repo_to_url(repo): """ >>> repo_to_url("https://foo.example.com") 'https://foo.example.com' + >>> repo_to_url("salsa:agx/git-buildpackage") + 'https://salsa.debian.org/agx/git-buildpackage.git' >>> repo_to_url("github:agx/git-buildpackage") 'https://github.com/agx/git-buildpackage.git' """ @@ -90,6 +92,8 @@ def repo_to_url(repo): else: proto, path = parts + if proto == 'salsa': + return 'https://salsa.debian.org/%s.git' % path if proto == 'github': return 'https://github.com/%s.git' % path elif proto in ['vcsgit', 'vcs-git']: -- cgit v1.2.3