diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-05-02 15:43:11 +0200 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2020-05-02 15:46:37 +0200 |
commit | e1201225289acd21766007bc10475aacb4fc748e (patch) | |
tree | 5d1731c1296e07c75aefb19d129bcb2bb1dbd90a | |
parent | 30cf5c2bfb2380f2c82ed2b57434aba054539f7c (diff) | |
download | urpmi-e1201225289acd21766007bc10475aacb4fc748e.tar urpmi-e1201225289acd21766007bc10475aacb4fc748e.tar.gz urpmi-e1201225289acd21766007bc10475aacb4fc748e.tar.bz2 urpmi-e1201225289acd21766007bc10475aacb4fc748e.tar.xz urpmi-e1201225289acd21766007bc10475aacb4fc748e.zip |
cpan_testers: fix genhdlist2 defaulting to zstd
fix a local zstd change in genhdlist2 that wrongly made it into
testsuite's bundled version
-rw-r--r-- | NEWS | 3 | ||||
-rwxr-xr-x | t/genhdlist2 | 6 |
2 files changed, 6 insertions, 3 deletions
@@ -1,3 +1,6 @@ +- cpan_testers: + o fix bundled genhdlist2 wrongly defaulting to zstd + Version 8.123 - 30 April 2020 - cpan_testers: diff --git a/t/genhdlist2 b/t/genhdlist2 index e7ea961e..04c95b7d 100755 --- a/t/genhdlist2 +++ b/t/genhdlist2 @@ -186,10 +186,10 @@ sub build { if (!$b_no_hdlist) { $out_hdlist = MDV::Packdrakeng->new( archive => "$hdlist.tmp", - compress => "zstd", - uncompress => "zstd -d", + compress => "gzip", + uncompress => "gzip -d", extern => 1, - comp_level => 11, + comp_level => 9, ) or die "Can't create archive"; } |