From owner-svn-ports-head@freebsd.org Wed Dec 23 14:54:31 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id EA45C4C12E4; Wed, 23 Dec 2020 14:54:31 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4D1GSl62L5z3F1w; Wed, 23 Dec 2020 14:54:31 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C1FCE1FBCE; Wed, 23 Dec 2020 14:54:31 +0000 (UTC) (envelope-from skreuzer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0BNEsVxZ054057; Wed, 23 Dec 2020 14:54:31 GMT (envelope-from skreuzer@FreeBSD.org) Received: (from skreuzer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0BNEsVIp054054; Wed, 23 Dec 2020 14:54:31 GMT (envelope-from skreuzer@FreeBSD.org) Message-Id: <202012231454.0BNEsVIp054054@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: skreuzer set sender to skreuzer@FreeBSD.org using -f From: Steven Kreuzer Date: Wed, 23 Dec 2020 14:54:31 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r558996 - head/misc/zoneinfo X-SVN-Group: ports-head X-SVN-Commit-Author: skreuzer X-SVN-Commit-Paths: head/misc/zoneinfo X-SVN-Commit-Revision: 558996 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 23 Dec 2020 14:54:32 -0000 Author: skreuzer Date: Wed Dec 23 14:54:30 2020 New Revision: 558996 URL: https://svnweb.freebsd.org/changeset/ports/558996 Log: Update to 2020e Changes to future timestamps: Volgograd switches to Moscow time on 2020-12-27 at 02:00. Changes to past timestamps: Correct many pre-1986 transitions, fixing entries originally derived from Shanks. The fixes include: - Australia: several 1917 through 1971 transitions - Bahamas: several 1941 through 1945 transitions - Bermuda: several 1917 through 1956 transitions - Belize: several 1942 through 1968 transitions - Ghana: several 1915 through 1956 transitions - Israel and Palestine: several 1940 through 1985 transitions - Kenya and adjacent: several 1908 through 1960 transitions - Nigeria and adjacent: correcting LMT in Lagos, and several 1905 through 1919 transitions - Seychelles: the introduction of standard time in 1907, not 1906 - Vanuatu: DST in 1973-1974, and a corrected 1984 transition Because of the Australia change, Australia/Currie (King Island) is no longer needed, as it is identical to Australia/Hobart for all timestamps since 1970 and was therefore created by mistake. Australia/Currie has been moved to the 'backward' file and its corrected data moved to the 'backzone' file. Changes to past time zone abbreviations and DST flags: To better match legislation in Turks and Caicos, the 2015 shift to year-round observance of -04 is now modeled as AST throughout before returning to Eastern Time with US DST in 2018, rather than as maintaining EDT until 2015-11-01. Modified: head/misc/zoneinfo/Makefile head/misc/zoneinfo/distinfo head/misc/zoneinfo/pkg-plist Modified: head/misc/zoneinfo/Makefile ============================================================================== --- head/misc/zoneinfo/Makefile Wed Dec 23 14:47:20 2020 (r558995) +++ head/misc/zoneinfo/Makefile Wed Dec 23 14:54:30 2020 (r558996) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= zoneinfo -DISTVERSION= 2020d +DISTVERSION= 2020e CATEGORIES= misc MASTER_SITES= https://data.iana.org/time-zones/releases/ \ ftp://ftp.iana.org/tz/releases/ @@ -97,9 +97,9 @@ do-install: test-pkgplist: check-plist @(cd ${STAGEDIR} && ${FIND} . -type f -print) | \ - ${SED} -e 's:^[.]::' | sort | \ + ${SED} -e 's:^[.]::' | ${SORT} | \ ${COMM} -23 -- - ${WRKDIR}/.plist-files-no-comments | \ - while read -r f; do echo "MISSING FROM PLIST: $$f" >&2; echo fail; done | \ + while read -r f; do ${ECHO_CMD} "MISSING FROM PLIST: $$f" >&2; ${ECHO_CMD} fail; done | \ ! ${GREP} fail >/dev/null .include Modified: head/misc/zoneinfo/distinfo ============================================================================== --- head/misc/zoneinfo/distinfo Wed Dec 23 14:47:20 2020 (r558995) +++ head/misc/zoneinfo/distinfo Wed Dec 23 14:54:30 2020 (r558996) @@ -1,3 +1,3 @@ -TIMESTAMP = 1603328201 -SHA256 (tzdata2020d.tar.gz) = 8d813957de363387696f05af8a8889afa282ab5016a764c701a20758d39cbaf3 -SIZE (tzdata2020d.tar.gz) = 401479 +TIMESTAMP = 1608734682 +SHA256 (tzdata2020e.tar.gz) = 0be1ba329eae29ae1b54057c3547b3e672f73b3ae7643aa87dac85122bec037e +SIZE (tzdata2020e.tar.gz) = 411619 Modified: head/misc/zoneinfo/pkg-plist ============================================================================== --- head/misc/zoneinfo/pkg-plist Wed Dec 23 14:47:20 2020 (r558995) +++ head/misc/zoneinfo/pkg-plist Wed Dec 23 14:54:30 2020 (r558996) @@ -306,7 +306,6 @@ %%DATADIR%%/Australia/Adelaide %%DATADIR%%/Australia/Brisbane %%DATADIR%%/Australia/Broken_Hill -%%DATADIR%%/Australia/Currie %%DATADIR%%/Australia/Darwin %%DATADIR%%/Australia/Eucla %%DATADIR%%/Australia/Hobart