Package: devscripts
Version: 2.9.16
Severity: normal
Hi,
svnpath displays Path: instead of the correct path when used with
svk repositories. I have attached a little patch which corrects svnpath
behaviour.
Greetings Arjan Oosting
-- System Information:
Debian Release: testing/unstable
APT prefers testing
APT policy: (990, 'testing'), (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-3-nebula
Locale: LANG=nl_NL.UTF-8, LC_CTYPE=nl_NL.UTF-8 (charmap=UTF-8)
Versions of packages devscripts depends on:
ii debianutils 2.15.5 Miscellaneous utilities specific t
ii dpkg-dev 1.13.18 package building tools for Debian
ii libc6 2.3.6-5 GNU C Library: Shared libraries an
ii perl 5.8.8-4 Larry Wall's Practical Extraction
ii sed 4.1.4-7 The GNU sed stream editor
Versions of packages devscripts recommends:
ii fakeroot 1.5.8 Gives a fake root environment
-- no debconf information
diff -Naur devscripts-2.9.16/debian/changelog
devscripts-2.9.16.1/debian/changelog
--- devscripts-2.9.16/debian/changelog 2006-03-29 17:20:37.000000000 +0200
+++ devscripts-2.9.16.1/debian/changelog 2006-04-11 17:04:02.000000000
+0200
@@ -1,3 +1,10 @@
+devscripts (2.9.16.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Fix svnpath for svk.
+
+ -- Arjan Oosting <[EMAIL PROTECTED]> Tue, 11 Apr 2006 17:03:43 +0200
+
devscripts (2.9.16) unstable; urgency=low
[ Julian Gilbey ]
diff -Naur devscripts-2.9.16/svnpath.pl devscripts-2.9.16.1/svnpath.pl
--- devscripts-2.9.16/svnpath.pl 2005-12-05 20:34:36.000000000 +0100
+++ devscripts-2.9.16.1/svnpath.pl 2006-04-11 17:04:31.000000000 +0200
@@ -72,7 +72,7 @@
}
else {
# Try svk instead.
- $url = `svk info .| grep -i '^Depot Path:' | cut -d ' ' -f 2`;
+ $url = `svk info .| grep -i '^Depot Path:' | cut -d ' ' -f 3`;
}
if (! length $url) {