Version in base suite: 2.5.8-1 Base version: oar_2.5.8-1 Target version: oar_2.5.8-1+deb10u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/o/oar/oar_2.5.8-1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/o/oar/oar_2.5.8-1+deb10u1.dsc changelog | 7 +++++ patches/00-fix-max-recursion-depth-in-perl-storable.patch | 18 ++++++++++++++ patches/series | 1 3 files changed, 26 insertions(+) diff -Nru oar-2.5.8/debian/changelog oar-2.5.8/debian/changelog --- oar-2.5.8/debian/changelog 2019-01-04 20:06:58.000000000 +0000 +++ oar-2.5.8/debian/changelog 2019-10-17 13:31:19.000000000 +0000 @@ -1,3 +1,10 @@ +oar (2.5.8-1+deb10u1) buster; urgency=medium + + * Revert to stretch behavior for Storable::dclone perl function (Closes: + #942467) + + -- Vincent Danjean Thu, 17 Oct 2019 15:31:19 +0200 + oar (2.5.8-1) unstable; urgency=medium [ Pierre Neyron ] diff -Nru oar-2.5.8/debian/patches/00-fix-max-recursion-depth-in-perl-storable.patch oar-2.5.8/debian/patches/00-fix-max-recursion-depth-in-perl-storable.patch --- oar-2.5.8/debian/patches/00-fix-max-recursion-depth-in-perl-storable.patch 1970-01-01 00:00:00.000000000 +0000 +++ oar-2.5.8/debian/patches/00-fix-max-recursion-depth-in-perl-storable.patch 2019-10-17 13:31:19.000000000 +0000 @@ -0,0 +1,18 @@ +Fix Max. recursion depth with nested structures + +Due to a restriction implemented in Perl's Storable module +distributed in Buster, Storable::dclone prevent recursions that +were used before by oar. +Removing here this limitation, going back to the previous behavior. +--- a/sources/core/common-libs/lib/OAR/Schedulers/ResourceTree.pm ++++ b/sources/core/common-libs/lib/OAR/Schedulers/ResourceTree.pm +@@ -7,6 +7,9 @@ + use Storable qw(dclone); + #use Time::HiRes qw(gettimeofday); + ++$Storable::recursion_limit=-1; ++$Storable::recursion_limit_hash=-1; ++ + ############################################################################### + # RESOURCE TREE MANAGEMENT # + ############################################################################### diff -Nru oar-2.5.8/debian/patches/series oar-2.5.8/debian/patches/series --- oar-2.5.8/debian/patches/series 2019-01-04 20:06:58.000000000 +0000 +++ oar-2.5.8/debian/patches/series 2019-10-17 13:31:19.000000000 +0000 @@ -0,0 +1 @@ +00-fix-max-recursion-depth-in-perl-storable.patch