MT#61074 Switch from obsolete libossp-uuid-perl to libuuid-perl

The libossp-uuid-perl implementation has seen no update since 2014, and
our primary UUID perl implementation is libuuid-perl. Switch to use
that.

This also fixes a problem with libossp-uuid-perl causing upgrade
problems for apt when libdata-uuid-perl is also installed, where we
depend on both from various of our projects.

Change-Id: I35083899db3a08c82ba52ab32747a8356c25b7d5
mr13.0.1
Guillem Jover 7 months ago
parent 2c59f16a72
commit e4933ee56c

2
debian/control vendored

@ -18,8 +18,8 @@ Depends:
libjson-perl,
liblog-log4perl-perl,
libngcp-api-client-perl,
libossp-uuid-perl,
libreadonly-perl,
libuuid-perl,
sipsak (>= 0.9.6+git20160713),
${misc:Depends},
${perl:Depends},

@ -16,7 +16,7 @@ use Readonly;
use Config::Any;
use Sys::Syslog qw(:DEFAULT :macros setlogsock);
use IO::Socket;
use Data::UUID;
use UUID;
use Data::Dumper;
use HTTP::Request;
use LWP::UserAgent;
@ -107,7 +107,7 @@ sub log_syslog {
sub gen_callid {
my $self = shift;
return Data::UUID->create_str();
return UUID::uuid();
}
sub gen_branchid {

Loading…
Cancel
Save