Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-7]: src/external/public-domain/tz/dist Pull up following revision...



details:   https://anonhg.NetBSD.org/src/rev/807e919ed152
branches:  netbsd-7
changeset: 799142:807e919ed152
user:      snj <snj%NetBSD.org@localhost>
date:      Wed Mar 25 17:25:13 2015 +0000

description:
Pull up following revision(s) (requested by apb in ticket #638):
        doc/3RDPARTY: patch
        external/public-domain/tz/dist/Makefile: up to revision 1.1.1.7
        external/public-domain/tz/dist/NEWS: up to revision 1.1.1.7
        external/public-domain/tz/dist/Theory: up to revision 1.1.1.3
        external/public-domain/tz/dist/antarctica: up to revision 1.1.1.3
        external/public-domain/tz/dist/asia: up to revision 1.1.1.7
        external/public-domain/tz/dist/australasia: up to revision 1.1.1.5
        external/public-domain/tz/dist/backward: up to revision 1.1.1.3
        external/public-domain/tz/dist/backzone: up to revision 1.1.1.6
        external/public-domain/tz/dist/checklinks.awk: up to revision 1.1.1.1
        external/public-domain/tz/dist/checktab.awk: up to revision 1.1.1.6
        external/public-domain/tz/dist/europe: up to revision 1.1.1.7
        external/public-domain/tz/dist/leap-seconds.list: up to revision 1.1.1.3
        external/public-domain/tz/dist/leapseconds: up to revision 1.1.1.4
        external/public-domain/tz/dist/leapseconds.awk: up to revision 1.1.1.4
        external/public-domain/tz/dist/northamerica: up to revision 1.1.1.7
        external/public-domain/tz/dist/southamerica: up to revision 1.1.1.5
        external/public-domain/tz/dist/zone.tab: up to revision 1.1.1.4
        external/public-domain/tz/dist/zone1970.tab: up to revision 1.1.1.5
Update tzdata from 2014j to 2015b.  Some of the changes are:
* Mongolia will start observing DST in 2015.
* Changes to Palestine DST dates in 2014 and 2015.
* The Mexican state of Quintana Roo, represented by
America/Cancun, changed time zone in Feb 2015.
* Chile's new standard time from 2015 will be its old DST.
* New leap second 2015-06-30 23:59:60 UTC as per IERS Bulletin C 49.
* Corrections to historic times in Iceland and Easter Island.
* Some more zones have been turned into links, when they
differed from existing zones only for times before 1970.

diffstat:

 external/public-domain/tz/dist/checklinks.awk |  19 +++++++++++++++++++
 1 files changed, 19 insertions(+), 0 deletions(-)

diffs (23 lines):

diff -r 5e39cbd9dbaa -r 807e919ed152 external/public-domain/tz/dist/checklinks.awk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/external/public-domain/tz/dist/checklinks.awk     Wed Mar 25 17:25:13 2015 +0000
@@ -0,0 +1,19 @@
+# Check links in tz tables.
+
+# Contributed by Paul Eggert.
+
+/^Link/ { used[$2] = 1 }
+/^Zone/ { defined[$2] = 1 }
+
+END {
+    status = 0
+
+    for (tz in used) {
+       if (!defined[tz]) {
+           printf "%s: Link to non-zone\n", tz
+           status = 1
+       }
+    }
+
+    exit status
+}



Home | Main Index | Thread Index | Old Index