I installed this.  Cheers!

commit 4f4779e15adb7f1c61e8e13ab2bdf08974e33945
Author: Akim Demaille <akim.demai...@gmail.com>
Date:   Sun May 10 18:11:04 2020 +0200

    announce-gen: add support for dist-lzip
    
    * build-aux/announce-gen (@archive_suffixes): Add tar.lz.

diff --git a/ChangeLog b/ChangeLog
index b31bbb185..1ba1c5f97 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-10  Akim Demaille  <a...@lrde.epita.fr>
+
+       announce-gen: add support for dist-lzip
+       * build-aux/announce-gen (@archive_suffixes): Add tar.lz.
+
 2020-05-09  Paul Eggert  <egg...@cs.ucla.edu>
 
        manywarnings: port to GCC 10.1
diff --git a/build-aux/announce-gen b/build-aux/announce-gen
index a59031f9e..b095a05eb 100755
--- a/build-aux/announce-gen
+++ b/build-aux/announce-gen
@@ -35,7 +35,7 @@
 eval 'exec perl -wSx "$0" "$@"'
      if 0;
 
-my $VERSION = '2020-04-04 15:07'; # UTC
+my $VERSION = '2020-05-10 16:13'; # UTC
 # The definition above must lie within the first 8 lines in order
 # for the Emacs time-stamp write hook (at end) to update it.
 # If you change this file with Emacs, please let the write hook
@@ -48,7 +48,7 @@ use POSIX qw(strftime);
 (my $ME = $0) =~ s|.*/||;
 
 my %valid_release_types = map {$_ => 1} qw (alpha beta stable);
-my @archive_suffixes = ('tar.gz', 'tar.bz2', 'tar.lzma', 'tar.xz');
+my @archive_suffixes = qw (tar.gz tar.bz2 tar.lz tar.lzma tar.xz);
 my %digest_classes =
   (
    'md5' => (eval { require Digest::MD5; } and 'Digest::MD5'),


Reply via email to