summaryrefslogtreecommitdiff
path: root/build-aux/announce-gen
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2006-12-08 17:37:36 +0000
committerJim Meyering <jim@meyering.net>2006-12-08 17:37:36 +0000
commitbd9cebc297b4060bec68580eede80e2ad3c7d423 (patch)
treec485b955b7c03c8c303d768caaf72bf18794d85b /build-aux/announce-gen
parent78498008b329deb3cd1b35752022d4a2de4983e7 (diff)
downloadgnulib-bd9cebc297b4060bec68580eede80e2ad3c7d423.tar.gz
* build-aux/announce-gen ($VERSION): Don't use of $Revision...$.
Instead, use Emacs' time-stamp write hook.
Diffstat (limited to 'build-aux/announce-gen')
-rwxr-xr-xbuild-aux/announce-gen14
1 files changed, 11 insertions, 3 deletions
diff --git a/build-aux/announce-gen b/build-aux/announce-gen
index 751ece0dcc..1f87bc26bf 100755
--- a/build-aux/announce-gen
+++ b/build-aux/announce-gen
@@ -1,6 +1,12 @@
#!/usr/bin/perl -w
# Generate a release announcement message.
+my $VERSION = '2006-12-08 17:35'; # 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
+# do its job. Otherwise, update this string manually.
+
# Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
@@ -26,7 +32,6 @@ use Digest::MD5;
use Digest::SHA1;
use POSIX qw(strftime);
-(my $VERSION = '$Revision: 1.2 $ ') =~ tr/[0-9].//cd;
(my $ME = $0) =~ s|.*/||;
my %valid_release_types = map {$_ => 1} qw (alpha beta major);
@@ -480,8 +485,6 @@ EOF
exit 0;
}
-
-
### Setup "GNU" style for perl-mode and cperl-mode.
## Local Variables:
## perl-indent-level: 2
@@ -497,4 +500,9 @@ EOF
## cperl-extra-newline-before-brace: t
## cperl-merge-trailing-else: nil
## cperl-continued-statement-offset: 2
+## eval: (add-hook 'write-file-hooks 'time-stamp)
+## time-stamp-start: "my $VERSION = '"
+## time-stamp-format: "%:y-%02m-%02d %02H:%02M"
+## time-stamp-time-zone: "UTC"
+## time-stamp-end: "'; # UTC"
## End: