Date: Wednesday, October 12, 2022 @ 10:52:03
Author: andyrtr
Revision: 457769
archrelease: copy trunk to testing-x86_64
Added:
tzdata/repos/testing-x86_64/
tzdata/repos/testing-x86_64/PKGBUILD
(from rev 457768, tzdata/trunk/PKGBUILD)
tzdata/repos/testing-x86_64/keys/
----------+
PKGBUILD | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
Copied: tzdata/repos/testing-x86_64/PKGBUILD (from rev 457768,
tzdata/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2022-10-12 10:52:03 UTC (rev 457769)
@@ -0,0 +1,51 @@
+# Maintainer: Andreas Radke <[email protected]>
+
+pkgname=tzdata
+pkgver=2022e
+_tzcode=2022e
+_tzdata=2022e
+pkgrel=1
+pkgdesc="Sources for time zone and daylight saving time data"
+arch=('x86_64')
+url="https://www.iana.org/time-zones"
+license=('custom: public domain')
+options=('!emptydirs')
+source=(https://www.iana.org/time-zones/repository/releases/tzcode${_tzcode}.tar.gz{,.asc}
+
https://www.iana.org/time-zones/repository/releases/${pkgname}${_tzdata}.tar.gz{,.asc})
+sha512sums=('7b3771bfa024d0bf445256f4d837a046eaba910ca3f2a5b4fcaf72ddd5fe34a9318a68f94ee09c0de120f3bdea41e9a16b0e82763896df8a6254ced0b454c060'
+ 'SKIP'
+
'3b63ba2662930ee13dec79290f57545d71d21d4ddb76f94498a7096edaee0b3150e501c221c4d596df6af7c1d770c211f88feb5add13c5e3bed979218b4544da'
+ 'SKIP')
+validpgpkeys=('7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34') # Paul Eggert
<[email protected]>
+
+_timezones=('africa' 'antarctica' 'asia' 'australasia'
+ 'europe' 'northamerica' 'southamerica'
+ 'etcetera' 'backward' 'factory')
+
+prepare() {
+ sed -i "s:sbin:bin:g" Makefile
+}
+
+build() {
+ make LFLAGS="${LDFLAGS} ${LTOFLAGS}"
+}
+
+package() {
+ cd "${srcdir}"
+ # install tzcode stuff
+ make DESTDIR="${pkgdir}" install
+
+ # install tzdata stuff
+ ./zic -b fat -d "${pkgdir}"/usr/share/zoneinfo ${_timezones[@]}
+ ./zic -b fat -d "${pkgdir}"/usr/share/zoneinfo/posix ${_timezones[@]}
+ ./zic -b fat -d "${pkgdir}"/usr/share/zoneinfo/right -L leapseconds
${_timezones[@]}
+ # This creates the posixrules file. We use New York because POSIX requires
the daylight savings time rules to be in accordance with US rules.
+ ./zic -b fat -d "${pkgdir}"/usr/share/zoneinfo -p America/New_York
+ install -m644 -t "${pkgdir}"/usr/share/zoneinfo iso3166.tab
leap-seconds.list zone1970.tab zone.tab SECURITY # zone.tab is depricated and
will go soon
+
+ # cleanup
+ rm "${pkgdir}/etc/localtime"
+
+ # install license
+ install -Dm644 LICENSE "${pkgdir}"/usr/share/licenses/${pkgname}/LICENSE
+}