1
0
mirror of https://frontier.innolan.net/rainlance/amiga-tz.git synced 2026-05-06 14:07:48 +00:00

* leapseconds.awk, NEWS: Also output expiration date comment.

Problem reported by Martin Burnicki in:
http://www.ietf.org/mail-archive/web/tzdist/current/msg01132.html
This commit is contained in:
Paul Eggert
2014-12-17 10:02:57 -08:00
parent 5486ec685a
commit 951395058c
2 changed files with 12 additions and 0 deletions

3
NEWS
View File

@@ -33,6 +33,9 @@ Unreleased, experimental changes
Changes affecting commentary Changes affecting commentary
The leapseconds file commentary now mentions the expiration date.
(Problem reported by Martin Burnicki.)
Update Mexican Library of Congress URL. Update Mexican Library of Congress URL.

View File

@@ -37,6 +37,11 @@ BEGIN {
} }
/^ *$/ { next } /^ *$/ { next }
/^#\tUpdated through/ || /^#\tFile expires on:/ {
last_lines = last_lines $0 "\n"
}
/^#/ { next } /^#/ { next }
{ {
@@ -64,3 +69,7 @@ BEGIN {
} }
old_TAI_minus_UTC = TAI_minus_UTC old_TAI_minus_UTC = TAI_minus_UTC
} }
END {
printf "\n%s", last_lines
}