]> Savannah Git Hosting - gnulib.git/commitdiff
announce-gen: add support for dist-lzip
authorAkim Demaille <akim.demaille@gmail.com>
Sun, 10 May 2020 16:11:04 +0000 (18:11 +0200)
committerAkim Demaille <akim.demaille@gmail.com>
Sun, 10 May 2020 16:14:44 +0000 (18:14 +0200)
* build-aux/announce-gen (@archive_suffixes): Add tar.lz.

ChangeLog
build-aux/announce-gen

index b31bbb185bc94acd868b948af7c2108cdc9d6d62..1ba1c5f97dad5e15a690df37551ccb19850f7524 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2020-05-10  Akim Demaille  <akim@lrde.epita.fr>
+
+       announce-gen: add support for dist-lzip
+       * build-aux/announce-gen (@archive_suffixes): Add tar.lz.
+
 2020-05-09  Paul Eggert  <eggert@cs.ucla.edu>
 
        manywarnings: port to GCC 10.1
index a59031f9e7a91f58a75d9a2e7e934e2ba4f6d2fe..b095a05eb8204c4f3429e53a24f59c7f6a2e9ac7 100755 (executable)
@@ -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'),