diff -Nru libtrycatch-perl-1.003001+zentyal3/debian/changelog libtrycatch-perl-1.003001+zentyal4/debian/changelog --- libtrycatch-perl-1.003001+zentyal3/debian/changelog 2013-11-02 13:17:30.000000000 +0000 +++ libtrycatch-perl-1.003001+zentyal4/debian/changelog 2013-11-03 13:01:50.000000000 +0000 @@ -1,3 +1,9 @@ +libtrycatch-perl (1.003001+zentyal4) precise; urgency=low + + * Remove namespace::clean depend in Lite version + + -- José A. Calvo Sun, 03 Nov 2013 14:01:28 +0100 + libtrycatch-perl (1.003001+zentyal3) precise; urgency=low * Precise version diff -Nru libtrycatch-perl-1.003001+zentyal3/lib/TryCatch/Lite.pm libtrycatch-perl-1.003001+zentyal4/lib/TryCatch/Lite.pm --- libtrycatch-perl-1.003001+zentyal3/lib/TryCatch/Lite.pm 2013-11-02 13:13:31.000000000 +0000 +++ libtrycatch-perl-1.003001+zentyal4/lib/TryCatch/Lite.pm 2013-11-03 13:01:15.000000000 +0000 @@ -25,8 +25,6 @@ XSLoader::load('TryCatch', $VERSION); -use namespace::clean; - use Sub::Exporter -setup => { exports => [qw/try/], groups => { default => [qw/try/] }, diff -Nru libtrycatch-perl-1.003001+zentyal3/lib/TryCatch.pm libtrycatch-perl-1.003001+zentyal4/lib/TryCatch.pm --- libtrycatch-perl-1.003001+zentyal3/lib/TryCatch.pm 2013-11-02 13:14:58.000000000 +0000 +++ libtrycatch-perl-1.003001+zentyal4/lib/TryCatch.pm 2013-11-03 13:01:12.000000000 +0000 @@ -10,6 +10,8 @@ our $VERSION = '1.003000'; +use namespace::clean; + use Sub::Exporter -setup => { exports => [qw/try/], groups => { default => [qw/try/] },