Attached is a patch for debcommit to support Subversion 1.7.
You can also merge from here:
https://github.com/simono/debian-devscripts/commit/3b121bce37618ab94f0c1c593cab703d511ecad3
Regards,
Simon
diff --git a/scripts/debcommit.pl b/scripts/debcommit.pl
index 815b786..4420366 100755
--- a/scripts/debcommit.pl
+++ b/scripts/debcommit.pl
@@ -452,10 +452,13 @@ sub getprog {
}
}
- # .bzr or .git may be in a parent directory, rather than the current
+ # .svn, .bzr or .git may be in a parent directory, rather than the current
# directory, if multiple packages are kept in one repository.
my $dir=getcwd();
while ($dir=~s/[^\/]*\/?$// && length $dir) {
+ if (-d "$dir/.svn") {
+ return "svn";
+ }
if (-d "$dir/.bzr") {
return "bzr";
}