Package: libossp-uuid-perl
Version: 1.6.2-1.3
Severity: normal
Tags: patch
Dear Maintainer,
while installing a custom software wich normally requires Data::UUID modules
from cpan
make test fails with
Can't locate object method "create_bin" via package "Data::UUID"
taking a look to the non DFSG module page
http://search.cpan.org/~rjbs/Data-UUID-1.219/UUID.pm i see that create and
create_bin are almost the same.
would you please consider in adding a wrapper function for this call ?
-- System Information:
Debian Release: 7.2
APT prefers stable
APT policy: (500, 'stable')
Architecture: i386 (i686)
Kernel: Linux 3.2.0-4-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Versions of packages libossp-uuid-perl depends on:
ii libc6 2.13-38
ii libossp-uuid16 1.6.2-1.3
ii perl 5.14.2-21+deb7u1
ii perl-base [perlapi-5.14.2] 5.14.2-21+deb7u1
libossp-uuid-perl recommends no packages.
libossp-uuid-perl suggests no packages.
-- no debconf information
--- perl/uuid_compat.pm.orig 2014-01-07 18:24:54.106182532 +0100
+++ perl/uuid_compat.pm 2014-01-07 18:25:29.021697718 +0100
@@ -159,6 +159,12 @@
return $self->to_b64string($self->create);
}
+sub create_bin {
+ my ($self) = @_;
+ return $self->create($self);
+}
+
+
sub create_from_name_str {
my $self = shift;
return $self->to_string($self->create_from_name(@_));