Your message dated Thu, 14 Jan 2010 23:57:24 +0100
with message-id <[email protected]>
and subject line Package removed from Debian unstable
has caused the Debian Bug report #281513,
regarding libsvn-mirror-perl: VCP support
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
281513: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=281513
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: libsvn-mirror-perl
Version: 0.49-1
Severity: wishlist
Tags: patch

Please add the support for VCP. It requires libvcp-perl package and Data::UUID 
library. This library is not DFSG software so I replaced it 
with /usr/bin/uuidgen program from libuuid1 package. I tried to contact 
author of Data::UUID without success.

diff -Nru SVN-Mirror-0.50/debian/control SVN-Mirror-0.50.debian/debian/control
--- SVN-Mirror-0.50/debian/control	2004-10-26 16:55:55 +0200
+++ SVN-Mirror-0.50.debian/debian/control	2004-11-16 12:50:17 +0100
@@ -2,13 +2,13 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (>= 4.0.2)
-Build-Depends-Indep: perl (>= 5.8.0-7), libsvn-core-perl (>= 1.0.4), libsvn-simple-perl, liburi-perl, subversion
+Build-Depends-Indep: perl (>= 5.8.0-7), libsvn-core-perl (>= 1.0.4), libsvn-simple-perl, liburi-perl, subversion, libvcp-perl, libuuid1
 Maintainer: Bastian Blank <[email protected]>
 Standards-Version: 3.6.1
 
 Package: libsvn-mirror-perl
 Architecture: all
-Depends: ${perl:Depends}, ${misc:Depends}, libterm-readkey-perl, libsvn-core-perl (>= 1.0.4), libsvn-simple-perl, liburi-perl
+Depends: ${perl:Depends}, ${misc:Depends}, libterm-readkey-perl, libsvn-core-perl (>= 1.0.4), libsvn-simple-perl, liburi-perl, libvcp-perl, libuuid1
 Description: A subversion repository mirroring tool
  Mirrors remote repository accissible via SVN::Ra interface
  to a local repository.
diff -Nru SVN-Mirror-0.50/lib/SVN/Mirror/VCP.pm SVN-Mirror-0.50.debian/lib/SVN/Mirror/VCP.pm
--- SVN-Mirror-0.50/lib/SVN/Mirror/VCP.pm	2004-11-10 15:04:12 +0100
+++ SVN-Mirror-0.50.debian/lib/SVN/Mirror/VCP.pm	2004-11-16 12:51:11 +0100
@@ -16,9 +16,9 @@
     if ($^O eq 'MSWin32') {
         require Win32API::GUID;
     }
-    else {
-        require Data::UUID;
-    }
+#    else {
+#        require Data::UUID;
+#    }
 }
 eval { require VCP::Dest::svk; 1 } or
     do { warn "VCP::Dest::svk not installed\n"; die };
@@ -105,7 +105,10 @@
 
 sub make_uuid {
     return Win32API::GUID::CreateGuid() if ($^O eq 'MSWin32');
-    Data::UUID->new->create_from_name_str(&Data::UUID::NameSpace_DNS, $_[0]);
+#    Data::UUID->new->create_from_name_str(&Data::UUID::NameSpace_DNS, $_[0]);
+    my $uuid = `/usr/bin/uuidgen` or die "libuuid1 not installed";
+    chop $uuid;
+    return $uuid;
 }
 
 sub load_state {
diff -Nru SVN-Mirror-0.50/Makefile.PL SVN-Mirror-0.50.debian/Makefile.PL
--- SVN-Mirror-0.50/Makefile.PL	2004-10-17 13:06:46 +0200
+++ SVN-Mirror-0.50.debian/Makefile.PL	2004-11-16 12:40:29 +0100
@@ -20,7 +20,7 @@
     'VCP support' => [
 	-default => 0,
         'VCP' => '0.9',
-        (($^O eq 'MSWin32') ? 'Win32API::GUID' : 'Data::UUID') => 0,
+#        (($^O eq 'MSWin32') ? 'Win32API::GUID' : 'Data::UUID') => 0,
     ],
 );
 

--- End Message ---
--- Begin Message ---
Version: 0.74-1+rm

Package removed from Debian unstable: http://bugs.debian.org/554336

-- 
Sandro Tosi (aka morph, morpheus, matrixhasu)
My website: http://matrixhasu.altervista.org/
Me at Debian: http://wiki.debian.org/SandroTosi


--- End Message ---

Reply via email to