aboutsummaryrefslogtreecommitdiff
path: root/share/zoneinfo
Commit message (Collapse)AuthorAgeFilesLines
* We don't actually need env here, so drop it. All shells allow settingWarner Losh2018-02-091-1/+1
| | | | | | | of shell variables for the next command like this. Notes: svn path=/head/; revision=329064
* Avoid find -s, use find | sort instead.Warner Losh2018-02-061-1/+6
| | | | | | | | | | | | | | find -s was introduced to make the metalog more deterministic. However, find -s is not portable. find | sort is portable and accomplishes the same goals, even if it isn't pedantically the same. TZS is the same before / after the change so any fussy differences between the two are moot and there won't be METALOG churn across this change. Differential Revision: https://reviews.freebsd.org/D14231 Notes: svn path=/head/; revision=328958
* DIRDEPS_BUILD: Connect new directories.Bryan Drewery2017-10-311-0/+11
| | | | | | | Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=325187
* Add HAS_TESTS to all Makefiles that are currently using theEnji Cooper2017-08-021-0/+1
| | | | | | | | | `SUBDIR.${MK_TESTS}+= tests` idiom. This is a follow up to r321912. Notes: svn path=/projects/make-check-sandbox/; revision=321914
* Convert traditional ${MK_TESTS} conditional idiom for including testEnji Cooper2017-08-021-3/+1
| | | | | | | | | | | | | | directories to SUBDIR.${MK_TESTS} idiom This is being done to pave the way for future work (and homogenity) in ^/projects/make-check-sandbox . No functional change intended. MFC after: 1 weeks Notes: svn path=/head/; revision=321912
* Add tests to help verify Links functionality for .../contrib/tzdata/backwardsEnji Cooper2017-07-064-0/+122
| | | | | | | | MFC after: 1 month MFC with: r320702 Notes: svn path=/head/; revision=320703
* Formalize LEAPSECONDS and OLDTIMEZONES in share/zoneinfo/... asEnji Cooper2017-07-061-2/+14
| | | | | | | | | | | | | | | | | | | | `MK_ZONEINFO_LEAPSECONDS_SUPPORT == yes` and `MK_ZONEINFO_OLD_TIMEZONES_SUPPORT == yes`. Keep `LEAPSECONDS` and `OLDTIMEZONES` for backwards compatibility, but print out a warning notifying users that they should use the new variables, in an effort to migrate them to the variables. This is being done mostly for automated build tools, etc, that might rely on these variables being set. The variables will be removed in the future on ^/head, e.g., after ^/stable/12 is cut. MFC after: 1 month Relnotes: yes Reviewed by: bdrewery Differential Revision: D11376 Notes: svn path=/head/; revision=320702
* Allow parallel installworld (-j N) and poudriere installworldCy Schubert2017-06-281-1/+1
| | | | | | | | | | | | (poudriere jail -c and poudriere jail -u) to proceed. Reviewed by: trasz@ Tested by: trasz@, cy@ MFC after: 1 month X-MFC-with: r320362 Notes: svn path=/head/; revision=320454
* Provide visual feedback when timezone files are installed.Edward Tomasz Napierala2017-06-261-3/+8
| | | | | | | | | | | After r320003 it wasn't being shown in any way. Submitted by: bdrewery MFC after: 1 month Differential Revision: https://reviews.freebsd.org/D11154 Notes: svn path=/head/; revision=320362
* Don't print all timezones during installworld.Edward Tomasz Napierala2017-06-161-1/+1
| | | | | | | | | | | Submitted by: Alex Richardson <alr48@cl.cam.ac.uk> Reviewed by: gjb MFC after: 1 month Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D11154 Notes: svn path=/head/; revision=320003
* share: normalize paths using SRCTOP-relative paths or :H when possibleEnji Cooper2017-03-041-1/+1
| | | | | | | | | | This simplifies make logic/output MFC after: 1 month Sponsored by: Dell EMC Isilon Notes: svn path=/head/; revision=314652
* If you are going to be run individually to make a new timezone setJulian Elischer2016-12-221-0/+2
| | | | | | | | | | | | then ensure the destination directories exist. Especially if you define OLDTIMEZONES because the mtree pass doesn't do it for you. MFC after: 1 week Sponsored by: Panzura Notes: svn path=/head/; revision=310426
* When you select make OLDTIMEZONES=1 then you need a few added directoriesJulian Elischer2016-11-151-0/+4
| | | | | | | | | to be made or the command fails Sponsored by: panzura Notes: svn path=/head/; revision=308671
* Reimplement r301944 using the correct install(1) invocation, which againGlen Barber2016-06-161-2/+2
| | | | | | | | | | | | fixes packaging tzdata/zoneinfo. Thank you to hrs for the pointer on what I did incorrectly. Approved by: re (blanket, pkgbase) Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=301965
* Revert r301944, which apparently broke zoneinfo install duringGlen Barber2016-06-161-2/+2
| | | | | | | | | | | | | installworld (although I am not sure why). I'll revisit this change after I further understand the cause of the breakage. Thanks to our secret canary (dhw) for the report. Approved by: re (blanket, pkgbase) Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=301958
* Fix zoneinfo file packaging.Glen Barber2016-06-161-2/+2
| | | | | | | | | | | This change fixes 468 of 488 zoneinfo file packaging issues, the rest still to be investigated. Approved by: re (blanket, pkgbase) Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=301944
* Rework META_TARGETS so that it automatically adds META_DEPS to the targets.Bryan Drewery2016-04-141-2/+2
| | | | | | | | | | | This will only be done if the target is defined, so if the target is defined after bsd.sys.mk is included then it needs to manually add ${META_DEPS} still. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=297994
* META_MODE: Simplify the META_COOKIE handling to use .USE/.USEBEFORE.Bryan Drewery2016-03-111-7/+3
| | | | | | | | | | Extend it to other cases of meta mode cookies so they get the proper rm cookie behavior when a .meta file detects it needs to rebuild and fails. Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=296700
* DIRDEPS_BUILD: Reduce restaging here.Bryan Drewery2016-03-112-3/+9
| | | | | | | | | | This also fixes meta tracking for the beforeinstall since it had been marked .PHONY before (in bsd.sys.mk). Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=296698
* DIRDEPS_BUILD: Fix building during dirdeps.Bryan Drewery2016-03-111-0/+2
| | | | | | | Sponsored by: EMC / Isilon Storage Division Notes: svn path=/head/; revision=296697
* Install share/zoneinfo in a deterministic way by sorting the results from findEnji Cooper2015-10-171-1/+1
| | | | | | | | | | | | | This helps produce deterministic METALOG output PR: 200674 Submitted by: Fabian Keil <fk@fabiankeil.de> Reviewed by: emaste MFC after: 1 week Obtained from: ElectroBSD Notes: svn path=/head/; revision=289451
* Fix build when LEAPSECONDS is enabled.Xin LI2015-08-221-1/+1
| | | | | | | MFC after: 2 weeks Notes: svn path=/head/; revision=287021
* Add META_MODE support.Simon J. Gerraty2015-06-131-0/+11
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | Off by default, build behaves normally. WITH_META_MODE we get auto objdir creation, the ability to start build from anywhere in the tree. Still need to add real targets under targets/ to build packages. Differential Revision: D2796 Reviewed by: brooks imp Notes: svn path=/head/; revision=284345
| * dirdeps.mk now sets DEP_RELDIRSimon J. Gerraty2015-06-081-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=284172
| * Merge from head@274682Simon J. Gerraty2014-11-191-4/+4
| |\ | |/ |/| | | Notes: svn path=/projects/bmake/; revision=274683
| * Updated dependenciesSimon J. Gerraty2013-02-161-2/+0
| | | | | | | | Notes: svn path=/projects/bmake/; revision=246868
| * Sync with HEAD.David E. O'Brien2013-02-081-4/+31
| |\ | | | | | | | | | Notes: svn path=/projects/bmake/; revision=246555
| * | Sync FreeBSD's bmake branch with Juniper's internal bmake branch.Marcel Moolenaar2012-08-221-0/+14
| | | | | | | | | | | | | | | | | | | | | Requested by: Simon Gerraty <sjg@juniper.net> Notes: svn path=/projects/bmake/; revision=239572
* | | Avoid ./ in zoneinfo entries in METALOGEd Maste2014-09-031-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Use of "find ." resulted in METALOG entries with an extra ./ -- e.g., ./usr/share/zoneinfo/./America/Toronto. Avoid this by using globbing via "find *" instead. Reviewed by: brooks Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D719 Notes: svn path=/head/; revision=271047
* | | Fix comments on updating tzdata releases.Sergey Kandaurov2014-08-271-3/+3
| |/ |/| | | | | Notes: svn path=/head/; revision=270729
* | Use find -exec to install zoneinfo instead of requiring xargs to be anBrooks Davis2013-01-111-2/+2
| | | | | | | | | | | | | | | | | | install tool. Suggested by: delphij Notes: svn path=/head/; revision=245309
* | Rather than using zic to both compile and install zoneinfo files,Brooks Davis2013-01-101-4/+31
|/ | | | | | | | | | | generate the files during the build and install them with install(1). This was the one place in installworld where files (vs links) were installed by a tool other than install. Reviewed by: edwin, jilles Notes: svn path=/head/; revision=245265
* Officially speaking, the zoneinfo data files are contributed data.Edwin Groothuis2010-02-2516-13223/+5
| | | | | | | Therefore treat them as such. Notes: svn path=/head/; revision=204300
* Fix a installation issue with $DESTDIR.Norikatsu Shigemura2010-02-111-1/+1
| | | | | | | Approved by: imp (mentor) Notes: svn path=/head/; revision=203780
* MFV of tzdata2010b, r203017Edwin Groothuis2010-01-262-9/+102
|\ | | | | | | | | | | | | | | | | | | | | Mexico's House of Representatives has approved a proposal for northern Mexico's border cities to share the same daylight saving schedule as the United States. MFC after: now Notes: svn path=/head/; revision=203019
* | MFV of tzdata2010a:Edwin Groothuis2010-01-181-5/+5
|\| | | | | | | | | | | | | Administrative only: Fix AT fields for Asia/Dhaka Notes: svn path=/head/; revision=202606
* | MFV of tzdata2009u, r201187Edwin Groothuis2009-12-291-3/+38
|\| | | | | | | | | | | | | | | | | Bangladesh will change its clock back to Standard Time on Dec 31, 2009. MFC after: now Notes: svn path=/head/; revision=201189
* | MFV of tzcode2009t, r200833Edwin Groothuis2009-12-223-11/+86
|\| | | | | | | | | | | | | | | | | Comment only, no data changes. MFC after: 1 week Notes: svn path=/head/; revision=200835
* | Catch up with r130332 which changed the default timezone from GMT to UTC.David E. O'Brien2009-11-171-2/+2
| | | | | | | | | | | | | | | | Otherwise the tzload() (when called by gmtload()) fails to locate the UTC file and loads the posixrules. Notes: svn path=/head/; revision=199405
* | MFV of tzdata2009s, r199334Edwin Groothuis2009-11-162-3/+24
|\| | | | | | | | | | | | | | | | | | | - Fix (harmless) typo in the definitions of Antarctica/David - Fiji will go into DST from 29 November 2009 to 25 April 2010. MFC after: 3 days Notes: svn path=/head/; revision=199336
* | MFV of r199105, tzdata2009r:Edwin Groothuis2009-11-091-4/+27
|\| | | | | | | | | | | | | | | | | | | | | | | | | - Three Australian stations in Antarctica have changed their time zone: Casey moved from UTC+8 to UTC+11 Davis moved from UTC+7 to UTC+5 Mawson moved from UTC+6 to UTC+5 The changes occurred on 2009-10-18 at 02:00 (local times). MFC after: 3 days Notes: svn path=/head/; revision=199107
* | MFV of tzdata2009q:Edwin Groothuis2009-11-023-10/+130
|\| | | | | | | | | | | | | | | | | | | | | | | | | - New region: Asia/Novokuznetsk - Kemerovo oblast' (Kemerovo region) in Russia will change current time zone on 29 March 2010 - Add historical data for Hongkong 1941 - 1980 - Syria will go to winter time in the last weekend of October 2009. MFC after: 2 days Notes: svn path=/head/; revision=198825
* | MFV of tzdata2009pEdwin Groothuis2009-10-271-40/+52
|\| | | | | | | | | | | | | | | | | Merge of r198513 - Argentina does not go to DST this year. Notes: svn path=/head/; revision=198515
* | Move comments to the beginning of the line to make it look better.Edwin Groothuis2009-10-221-5/+5
| | | | | | | | | | | | | | | | | | Thank to ru@ for his noticing of it. MFC after: 1 week Notes: svn path=/head/; revision=198375
* | After the installation of the /usr/share/zoneinfo, run tzsetup ifEdwin Groothuis2009-10-211-0/+20
| | | | | | | | | | | | | | | | | | /var/db/zoneinfo exists. MFC after: 1 week Notes: svn path=/head/; revision=198351
* | MFV of tzdata2009o:Edwin Groothuis2009-10-202-11/+102
|\| | | | | | | | | | | | | | | | | | | | | - Somoa has not moved to DST this year (comment only) - Bangladesh stays on DST for now. - Pakistan went back to standard time in 1 October 2009 MFC after: 1 week Notes: svn path=/head/; revision=198270
* | MFV of tzdata2009nEdwin Groothuis2009-09-282-5/+42
|\| | | | | | | | | | | | | | | Pakistan will go out DST on 1 October. Headsup for changes in Argentina. Notes: svn path=/head/; revision=197597
* | MFV of r196998.Edwin Groothuis2009-09-092-4/+56
|\| | | | | | | | | | | | | | | | | | | Import of tzdata2008m Samoa will go in DST on 4 October 2009 till 28 March 2010 Palestine will go back from DST on 4 September 2009 Notes: svn path=/head/; revision=197000
* | MFV of r196350Edwin Groothuis2009-08-272-3/+38
|\| | | | | | | | | | | | | | | | | | | Import of tzdata2009l - Egypt will go to Wintertime on 21 August 2009 - Heads up for a possible DST in Samoa Notes: svn path=/head/; revision=196582
* | MFV of r195792:Edwin Groothuis2009-08-274-20/+50
|\| | | | | | | | | | | | | | | | | | | Import of tzdata2009k to head. - Changes in Mauritius and Bangladesh - No leapsecond at the end of December 2009 Notes: svn path=/head/; revision=196581