diff options
| author | Armin Kuster <akuster@mvista.com> | 2020-10-08 11:18:52 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-09 12:01:24 +0100 |
| commit | 601449ff5c438ed766b2fef9f81eeab743bd1846 (patch) | |
| tree | 679077b951bd828e894ec1b7fe8fe42c87e01470 | |
| parent | 16bbaba389db0cfc6acc1bd6827e6bc87a4e9f0f (diff) | |
| download | poky-601449ff5c438ed766b2fef9f81eeab743bd1846.tar.gz | |
timezone: update to 2020b
For more info see: https://github.com/eggert/tz/blob/master/NEWS
(From OE-Core rev: b19bc7ae71a59673bd725e1de3251667c2026ed5)
Signed-off-by: Armin Kuster <akuster@mvista.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-extended/timezone/timezone.inc | 8 | ||||
| -rw-r--r-- | meta/recipes-extended/timezone/tzdata.bb | 8 |
2 files changed, 7 insertions, 9 deletions
diff --git a/meta/recipes-extended/timezone/timezone.inc b/meta/recipes-extended/timezone/timezone.inc index 32723f3dec..8eb17c5eaf 100644 --- a/meta/recipes-extended/timezone/timezone.inc +++ b/meta/recipes-extended/timezone/timezone.inc | |||
| @@ -6,7 +6,7 @@ SECTION = "base" | |||
| 6 | LICENSE = "PD & BSD & BSD-3-Clause" | 6 | LICENSE = "PD & BSD & BSD-3-Clause" |
| 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c679c9d6b02bc2757b3eaf8f53c43fba" | 7 | LIC_FILES_CHKSUM = "file://LICENSE;md5=c679c9d6b02bc2757b3eaf8f53c43fba" |
| 8 | 8 | ||
| 9 | PV = "2020a" | 9 | PV = "2020b" |
| 10 | 10 | ||
| 11 | SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz;name=tzcode \ | 11 | SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz;name=tzcode \ |
| 12 | http://www.iana.org/time-zones/repository/releases/tzdata${PV}.tar.gz;name=tzdata \ | 12 | http://www.iana.org/time-zones/repository/releases/tzdata${PV}.tar.gz;name=tzdata \ |
| @@ -14,7 +14,5 @@ SRC_URI =" http://www.iana.org/time-zones/repository/releases/tzcode${PV}.tar.gz | |||
| 14 | 14 | ||
| 15 | UPSTREAM_CHECK_URI = "http://www.iana.org/time-zones" | 15 | UPSTREAM_CHECK_URI = "http://www.iana.org/time-zones" |
| 16 | 16 | ||
| 17 | SRC_URI[tzcode.md5sum] = "f87c3477e85a5c4b00df0def6c6a0055" | 17 | SRC_URI[tzcode.sha256sum] = "47eff8944de4a64f7629b851e4a32338ab12c9b73edd62063795167ff1fe43da" |
| 18 | SRC_URI[tzcode.sha256sum] = "7d2af7120ee03df71fbca24031ccaf42404752e639196fe93c79a41b38a6d669" | 18 | SRC_URI[tzdata.sha256sum] = "9b053f951d245ce89d850b96ee4711d82d833559b1fc96ba19f90bc4d745e809" |
| 19 | SRC_URI[tzdata.md5sum] = "96a985bb8eeab535fb8aa2132296763a" | ||
| 20 | SRC_URI[tzdata.sha256sum] = "547161eca24d344e0b5f96aff6a76b454da295dc14ed4ca50c2355043fb899a2" | ||
diff --git a/meta/recipes-extended/timezone/tzdata.bb b/meta/recipes-extended/timezone/tzdata.bb index 6aac516f69..f8443110d5 100644 --- a/meta/recipes-extended/timezone/tzdata.bb +++ b/meta/recipes-extended/timezone/tzdata.bb | |||
| @@ -15,18 +15,18 @@ DEFAULT_TIMEZONE ?= "Universal" | |||
| 15 | INSTALL_TIMEZONE_FILE ?= "1" | 15 | INSTALL_TIMEZONE_FILE ?= "1" |
| 16 | 16 | ||
| 17 | TZONES= "africa antarctica asia australasia europe northamerica southamerica \ | 17 | TZONES= "africa antarctica asia australasia europe northamerica southamerica \ |
| 18 | factory etcetera backward systemv \ | 18 | factory etcetera backward \ |
| 19 | " | 19 | " |
| 20 | # pacificnew | 20 | # pacificnew |
| 21 | 21 | ||
| 22 | do_compile () { | 22 | do_compile () { |
| 23 | for zone in ${TZONES}; do \ | 23 | for zone in ${TZONES}; do \ |
| 24 | ${STAGING_BINDIR_NATIVE}/zic -d ${WORKDIR}${datadir}/zoneinfo -L /dev/null \ | 24 | ${STAGING_BINDIR_NATIVE}/zic -d ${WORKDIR}${datadir}/zoneinfo -L /dev/null \ |
| 25 | -y ${S}/yearistype.sh ${S}/${zone} ; \ | 25 | ${S}/${zone} ; \ |
| 26 | ${STAGING_BINDIR_NATIVE}/zic -d ${WORKDIR}${datadir}/zoneinfo/posix -L /dev/null \ | 26 | ${STAGING_BINDIR_NATIVE}/zic -d ${WORKDIR}${datadir}/zoneinfo/posix -L /dev/null \ |
| 27 | -y ${S}/yearistype.sh ${S}/${zone} ; \ | 27 | ${S}/${zone} ; \ |
| 28 | ${STAGING_BINDIR_NATIVE}/zic -d ${WORKDIR}${datadir}/zoneinfo/right -L ${S}/leapseconds \ | 28 | ${STAGING_BINDIR_NATIVE}/zic -d ${WORKDIR}${datadir}/zoneinfo/right -L ${S}/leapseconds \ |
| 29 | -y ${S}/yearistype.sh ${S}/${zone} ; \ | 29 | ${S}/${zone} ; \ |
| 30 | done | 30 | done |
| 31 | } | 31 | } |
| 32 | 32 | ||
