History log of /freebsd-10.1-release/share/zoneinfo/
Revision Date Author Comments
272461 03-Oct-2014 gjb

Copy stable/10@r272459 to releng/10.1 as part of
the 10.1-RELEASE process.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


271275 08-Sep-2014 emaste

MFC r271047: Avoid ./ in zoneinfo entries in METALOG

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.

Approved by: re
Sponsored by: DARPA, AFRL


259073 07-Dec-2013 peter

Hoist all the mergeinfo up to the root in preparation for enforcing merges
to the root only. All MFC's were rerecorded to the root.

Going forward, if an MFC includes mergeinfo, it will need to be made to
the root and committed from the root. Merges with --ignore-ancestry
or diff | patch can go anywhere.

The mergeinfo in HEAD is in a bad state from years of neglect and manual
tampering and this was branched into 10.x. This confuses the coalescing
code and prevents it from doing its job.

Approved by: re (gjb, implicit)


256281 10-Oct-2013 gjb

Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.

Approved by: re (implicit)
Sponsored by: The FreeBSD Foundation


245309 11-Jan-2013 brooks

Use find -exec to install zoneinfo instead of requiring xargs to be an
install tool.

Suggested by: delphij


245265 10-Jan-2013 brooks

Rather than using zic to both compile and install zoneinfo files,
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


223758 04-Jul-2011 attilio

With retirement of cpumask_t and usage of cpuset_t for representing a
mask of CPUs, pc_other_cpus and pc_cpumask become highly inefficient.

Remove them and replace their usage with custom pc_cpuid magic (as,
atm, pc_cpumask can be easilly represented by (1 << pc_cpuid) and
pc_other_cpus by (all_cpus & ~(1 << pc_cpuid))).

This change is not targeted for MFC because of struct pcpu members
removal and dependency by cpumask_t retirement.

MD review by: marcel, marius, alc
Tested by: pluknet
MD testing by: marcel, marius, gonzo, andreast


222813 07-Jun-2011 attilio

etire the cpumask_t type and replace it with cpuset_t usage.

This is intended to fix the bug where cpu mask objects are
capped to 32. MAXCPU, then, can now arbitrarely bumped to whatever
value. Anyway, as long as several structures in the kernel are
statically allocated and sized as MAXCPU, it is suggested to keep it
as low as possible for the time being.

Technical notes on this commit itself:
- More functions to handle with cpuset_t objects are introduced.
The most notable are cpusetobj_ffs() (which calculates a ffs(3)
for a cpuset_t object), cpusetobj_strprint() (which prepares a string
representing a cpuset_t object) and cpusetobj_strscan() (which
creates a valid cpuset_t starting from a string representation).
- pc_cpumask and pc_other_cpus are target to be removed soon.
With the moving from cpumask_t to cpuset_t they are now inefficient
and not really useful. Anyway, for the time being, please note that
access to pcpu datas is protected by sched_pin() in order to avoid
migrating the CPU while reading more than one (possible) word
- Please note that size of cpuset_t objects may differ between kernel
and userland. While this is not directly related to the patch itself,
it is good to understand that concept and possibly use the patch
as a reference on how to deal with cpuset_t objects in userland, when
accessing kernland members.
- KTR_CPUMASK is changed and now is represented through a string, to be
set as the example reported in NOTES.

Please additively note that no MAXCPU is bumped in this patch, but
private testing has been done until to MAXCPU=128 on a real 8x8x2(htt)
machine (amd64).

Please note that the FreeBSD version is not yet bumped because of
the upcoming pcpu changes. However, note that this patch is not
targeted for MFC.

People to thank for the time spent on this patch:
- sbruno, pluknet and Nicholas Esborn (nick AT desert DOT net) tested
several revision of the patches and really helped in improving
stability of this work.
- marius fixed several bugs in the sparc64 implementation and reviewed
patches related to ktr.
- jeff and jhb discussed the basic approach followed.
- kib and marcel made targeted review on some specific part of the
patch.
- marius, art, nwhitehorn and andreast reviewed MD specific part of
the patch.
- marius, andreast, gonzo, nwhitehorn and jceel tested MD specific
implementations of the patch.
- Other people have made contributions on other patches that have been
already committed and have been listed separately.

Companies that should be mentioned for having participated at several
degrees:
- Yahoo! for having offered the machines used for testing on big
count of CPUs.
- The FreeBSD Foundation for having sponsored my devsummit attendance,
which has been instrumental.
- Sandvine for having offered offices and infrastructure during
development.

(I really hope I didn't forget anyone, if it happened I apologize in
advance).


207736 07-May-2010 mckusick

Merger of the quota64 project into head.

This joint work of Dag-Erling Smørgrav and myself updates the
FFS quota system to support both traditional 32-bit and new 64-bit
quotas (for those of you who want to put 2+Tb quotas on your users).

By default quotas are not compiled into the kernel. To include them
in your kernel configuration you need to specify:

options QUOTA # Enable FFS quotas

If you are already running with the current 32-bit quotas, they
should continue to work just as they have in the past. If you
wish to convert to using 64-bit quotas, use `quotacheck -c 64';
if you wish to revert from 64-bit quotas back to 32-bit quotas,
use `quotacheck -c 32'.

There is a new library of functions to simplify the use of the
quota system, do `man quotafile' for details. If your application
is currently using the quotactl(2), it is highly recommended that
you convert your application to use the quotafile interface.
Note that existing binaries will continue to work.

Special thanks to John Kozubik of rsync.net for getting me
interested in pursuing 64-bit quota support and for funding
part of my development time on this project.


204300 25-Feb-2010 edwin

Officially speaking, the zoneinfo data files are contributed data.
Therefore treat them as such.


203780 11-Feb-2010 nork

Fix a installation issue with $DESTDIR.

Approved by: imp (mentor)


203019 26-Jan-2010 edwin

MFV of tzdata2010b, r203017

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


202606 18-Jan-2010 edwin

MFV of tzdata2010a:

Administrative only: Fix AT fields for Asia/Dhaka


201189 29-Dec-2009 edwin

MFV of tzdata2009u, r201187

Bangladesh will change its clock back to Standard Time on Dec 31, 2009.

MFC after: now


200835 22-Dec-2009 edwin

MFV of tzcode2009t, r200833

Comment only, no data changes.

MFC after: 1 week


199405 17-Nov-2009 obrien

Catch up with r130332 which changed the default timezone from GMT to UTC.
Otherwise the tzload() (when called by gmtload()) fails to locate the UTC
file and loads the posixrules.


199336 16-Nov-2009 edwin

MFV of tzdata2009s, r199334

- 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


199107 09-Nov-2009 edwin

MFV of r199105, tzdata2009r:

- 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


198825 02-Nov-2009 edwin

MFV of tzdata2009q:

- 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


198515 27-Oct-2009 edwin

MFV of tzdata2009p
Merge of r198513

- Argentina does not go to DST this year.


198375 22-Oct-2009 edwin

Move comments to the beginning of the line to make it look better.
Thank to ru@ for his noticing of it.

MFC after: 1 week


198351 21-Oct-2009 edwin

After the installation of the /usr/share/zoneinfo, run tzsetup if
/var/db/zoneinfo exists.

MFC after: 1 week


198270 20-Oct-2009 edwin

MFV of tzdata2009o:

- 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


197597 28-Sep-2009 edwin

MFV of tzdata2009n

Pakistan will go out DST on 1 October.
Headsup for changes in Argentina.


197000 09-Sep-2009 edwin

MFV of r196998.

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


196582 27-Aug-2009 edwin

MFV of r196350

Import of tzdata2009l

- Egypt will go to Wintertime on 21 August 2009
- Heads up for a possible DST in Samoa


196581 27-Aug-2009 edwin

MFV of r195792:

Import of tzdata2009k to head.

- Changes in Mauritius and Bangladesh
- No leapsecond at the end of December 2009


194485 19-Jun-2009 edwin

MFV of r194480

- Official start of Bangladesh DST.


193785 09-Jun-2009 edwin

MFV of tzdata2009i:

Bangladesh will go into DST on 20 June.

MFC after: 2 days


192886 27-May-2009 edwin

MFV of tzdata2009h:

- Fix coordinates of Africa/Gaborone, Pacific/Noumea, Pacific/Tongatapu,
Europe/Vatican

- Fix URLs (=3D -> = etc)

- Jordan doesn't go at last Friday of March 00:00 but no last
Thursday of March 24:00

- Specifically state license for the data: public domain

MFC after: 1 week


191618 28-Apr-2009 edwin

MFC of tzdata2009g:

Egypt will have DST till the end of September the coming years.


191052 14-Apr-2009 edwin

MFV of tzdata2009f

Correct DST information for Pakistan for 2009.


190991 13-Apr-2009 edwin

MFV of tzdata2009e

- Jordan went into DST in the last Thursday in March instead of the
last Friday in March.
- Palestine has extended the DST time with one week before and one
month after.

MFC after: 1 week


190372 24-Mar-2009 edwin

MFV of tzdata2009d:

- Morocco will observe DST from 2009-06-01 00:00 to 2009-08-21 00:00
- Tunisia will not observe DST this year.
- Syria will start DST on 2009-03-27 00:00 this year
- the Province of San Luis will go to utc-04:00

MFC after: 1 week


189923 17-Mar-2009 edwin

MFV of tzdata2009c

- Cuba has DST again.

MFC after: 1 week


188436 10-Feb-2009 edwin

MFV of tzdata2009b.

- Updated leapseconds

(but that one was already commited earlier phk@ without it going
through the proper path)

MFC after: 1 week


187588 22-Jan-2009 edwin

MFV of tzdata2009a

- Asia/Katmandu -> Asia/Kathmandu
- Fix historical references to DST in Switzerland
- Correct rules for America/Resolute (Nunavut)
- Cuba didn't have DST in 2005.

MFC after: 1 week


187524 21-Jan-2009 phk

Latest bulletin C from Daniel GAMBIS: no leap at the end of june 2009.


184406 28-Oct-2008 edwin

MFV of tzdata2008i.

- United States zone reordering and recommenting
- Argentina DST changes update.


183865 14-Oct-2008 edwin

update the manual on how to import and MFV new tzdata releases


183864 14-Oct-2008 edwin

MFV of r183861:
Vendor import of tzdata2008h

- Minor update for Mauritius (which I don't understand)
- Syria goes to DST at 1 November instead of 1 October.
- Niue is now located at the right side of the equator.


183536 02-Oct-2008 edwin

Apply upcoming fix for 2008g release.


183066 16-Sep-2008 edwin

MFV of tzdata2008c:

Changes for Mauritius, Morocco, Pakistan, Palestine, Argentina and Brazil.

Approved by: bde@ (implicit)


181426 08-Aug-2008 edwin

Replace description on how to do CVS imports on this module with a
description on how to do SVN imports on this module.

Approved by: bde (implicit)


181424 08-Aug-2008 edwin

MFV on tzdata2008e:

- Fix dates in 2008/2009 for Africa/Mauritius.
- Leap second notification for the end of 2008.

Approved by: bde (mentor, implicit), des
MFC after: 1 week


181421 08-Aug-2008 edwin

MFV of tzdata2008d

- Mauritius will have a DST experiment between 2008-11-01 and 2009-03-31.
- Add/Fix historical data for C-Eur, the SovietZone, Germany,
Bahamas, San Luis.
- Add information about West Para (America/Santarem)
- America/Eirunepe and America/Rio_Branco go to UTC-4

Approved by: bde (mentor, implicit), des
MFC after: 1 week


181418 08-Aug-2008 edwin

MFV of tzdata2008c

- Africa/Morocco will have DST in 2008.
- Asia/Choibalsan should be GMT+08:00.
- Asia/Pakistan will have DST in 2008.

Also set all the svn:eol-style properties to native.

Approved by: bde (mentor, implicit), des
MFC after: 1 week


181415 08-Aug-2008 edwin

Bootstrap the merge history for base/vendor/tzdata and base/share/zoneinfo
to version tzdata2008b.

Approved by: bde (implicit)


181414 08-Aug-2008 edwin

Revert the change in leapseconds for 31 december 2008, so I can
properly bootstrap the merge history on this module.

Approved by: bde (implicit)


181413 08-Aug-2008 edwin

Cleanup (cont)

Remove Theory, which isn't part of the zoneinfo module but came out
of /head/usr.sbin/zic (and isn't installed from there neither).

Approved by: bde (implicit)
MFC after: 1 week


181404 08-Aug-2008 edwin

remove the empty "datfiles" directory.

Approved by: bde (mentor, implicit), des


180379 09-Jul-2008 phk

Leapsecond at end of december.


180208 03-Jul-2008 peter

Set magic fbsd:nokeywords property that allows files to bypass
keyword expansion. (file-specific replacement for CVSROOT/exclude)


177592 25-Mar-2008 edwin

Fix double patch on this file.


177591 25-Mar-2008 edwin

MFV of tzdata2008a

Changes:
- Calcutta -> Kolkata
- Iraq DST changes
- Syria DST changes
- Saigon -> Ho_Chi_Minh
- Cuba DST changes
- New area America/Argentina/San_Luis

Approved by: grog@ (mentor)


176974 09-Mar-2008 edwin

MFV: tzdata2008a

Notable changes:

- Chilis DST has been extended for 3 weeks.
- No leapsecond in 2008

Approved by: grog@ (mentor)


175433 18-Jan-2008 phk

Still no new leapseconds: Bulletin C-35


175034 01-Jan-2008 edwin

MFV of tzdata2007k.

- Adjust Argentinian DST times.
- Add SJ on the right location.


174242 04-Dec-2007 edwin

MFV of tzdata2007j

Timezone data changes in this import:
- Add America/St_Barthelemy (BL) and America/Marigot (MF)
- Venezuela will move to -4:30 on 9 December 2007 instead of 31 December 2007

MFCs will be done after the code freezes have stopped.


173319 04-Nov-2007 edwin

MFV of tzdata2007i

Changes in Cuba and Syria.


172479 08-Oct-2007 edwin

MFV for tzdata2007h

Timezone data changes in the following locations:

- Egypt (push possible DST ending one year ahead)
- Iran gets DST again in 2008.
- Palestine DST time for this year fixed.
- Brasils DST rule change in 2008.
- Venezuela time moves half an hour back at the end of this year.

PR: conf/116900
Approved by: re (Ken Smith), grog@ (mentor)
MFC after: 1 week


172476 08-Oct-2007 edwin

Describe the process of importing new zoneinfo data and updating
it into CVS.

PR: conf/116901
Approved by: re (Ken Smith), grog@ (mentor)


171948 24-Aug-2007 edwin

MFV: tzdata2007g

PR: conf/115706
Submitted by: edwin@
Approved by: re (bmah@)
Obtained from: ftp://elsie.nci.nih.gov/pub/
MFC after: 1 week


171946 24-Aug-2007 edwin

This commit was generated by cvs2svn to compensate for changes in r171945,
which included commits to RCS files with non-trunk default branches.


171424 13-Jul-2007 phk

Update with Bulletin C 34 from IERS: Still no leap second.

Approved by: re (hrs)


169811 21-May-2007 wollman

MFV: tzdata2007f

PR: conf/109418
Requested by: edwin@
Obtained from: Arthur David Olson, ftp://elsie.nci.nih.gov/pub/tzdata2007f.tar.gz
MFC after: 1 week


169809 21-May-2007 wollman

This commit was generated by cvs2svn to compensate for changes in r169808,
which included commits to RCS files with non-trunk default branches.


166422 02-Feb-2007 phk

Update with the latest Bulletin C from IERS.


163302 13-Oct-2006 ru

MFV.


163300 13-Oct-2006 ru

This commit was generated by cvs2svn to compensate for changes in r163299,
which included commits to RCS files with non-trunk default branches.


158421 11-May-2006 wollman

Merge from vendor branch.

Updates to historic rules only for: part of Alaska, Algeria, Bulgaria,
Colombia, Easter Island, Italy, Malta, Mexico, Mongolia, Montserrat,
Puerto Rico, Poland, Russia, South Korea, Spain, part of North Dakota,
United Kingdom, Uruguay, Uzbekistan

Updates to current and future rules for: Guatemala, Haiti, Honduras,
part of Indiana, Iran, Nicaragua, Palestinian Territories, Sri Lanka,
Tunisia,

Updates to future rules only for: Canada, Thule AFB in Greenland


158418 11-May-2006 wollman

This commit was generated by cvs2svn to compensate for changes in r158417,
which included commits to RCS files with non-trunk default branches.


153761 27-Dec-2005 wollman

Merge tzdata2005r from vendor branch. Only significant change is to
update those Canadian provinces which have announced that they will
follow the new US DST rules.


153759 27-Dec-2005 wollman

This commit was generated by cvs2svn to compensate for changes in r153758,
which included commits to RCS files with non-trunk default branches.


153670 22-Dec-2005 wollman

Merge tzdata2005q from vendor branch. Data changes for the following
locales: Azerbaijan, Brazil, Cuba, Gaza, Georgia, Jordan, Kirgizstan,
Nicaragua, Uruguay.


153668 22-Dec-2005 wollman

This commit was generated by cvs2svn to compensate for changes in r153667,
which included commits to RCS files with non-trunk default branches.


149653 31-Aug-2005 wollman

Move "systemv" into OLDTIMEZONES clause; "backward" is a prerequisite.
("systemv" is even more backward than "backward" is!)

Obliquely pointed out by: jhay


149590 29-Aug-2005 wollman

Merge tzdata200m from vendor branch.


149514 26-Aug-2005 wollman

Merge tzdata2005l update from vendor branch.

MT6: after release
MT5: immediately


149512 26-Aug-2005 wollman

This commit was generated by cvs2svn to compensate for changes in r149511,
which included commits to RCS files with non-trunk default branches.


147771 05-Jul-2005 phk

Update for Bulletin C number 30:

There will be a leapsecond at the end of 2005.

Approved by: re@


140320 15-Jan-2005 wollman

Latest IERS Bulletin C (#29): no leap second on 2005-06-30.

Obtained from: http://hpiers.obspm.fr/eoppc/bul/bulc/bulletinc.dat


138323 02-Dec-2004 wollman

Fix import conflicts from tzdata2004g.

Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata2004g.tar.gz


136709 19-Oct-2004 ru

- Removed the .CURDIR/.OBJDIR magic, it is not necessary here.
- Let the built-in sys.mk rule produce the "yearistype" script.
- Install zone files with mode 444 (now that the -m option of
zic(8) has been fixed).


136638 18-Oct-2004 wollman

MFV tzdata2004e

Users in Brazil and Argentina should run tzsetup(8).

Obtained from: Arthur David Olson
MFC after re approval


136633 17-Oct-2004 wollman

This commit was generated by cvs2svn to compensate for changes in r136632,
which included commits to RCS files with non-trunk default branches.


121098 14-Oct-2003 wollman

MFV: tzdata2003d


118970 15-Aug-2003 wollman

ISO 3166-1 Newsletter V-8 changes YUGOSLAVIA to SERBIA AND MONTENEGRO
with corresponding changes to alpha-2 and alpha-3. (Odd choice of codes,
though.)


114173 28-Apr-2003 wollman

Merge from vendor branch:
- No more DST in Pakistan
- Update some historical information
- New zone for Rothera station in the Antarctic.

PR: misc/51495


114171 28-Apr-2003 wollman

This commit was generated by cvs2svn to compensate for changes in r114170,
which included commits to RCS files with non-trunk default branches.


105196 16-Oct-2002 wollman

Merge from vendor tzdata2002d.

PR: 44004
MFC after: 3 days


105195 16-Oct-2002 wollman

Re-sort to reflect change of East Timor from TP to TL.


100872 29-Jul-2002 ru

Drop support for COPY, -c has been the default mode of install(1)
for a long time now.

Approved by: bde


100313 18-Jul-2002 ru

s/${INSTALL} -c/${INSTALL} ${COPY}/


97615 30-May-2002 wollman

East Timor's alpha-2 code changed.


93799 04-Apr-2002 wollman

Merge from vendor branch.


86464 16-Nov-2001 wollman

Except for a comment in zone.tab (about the location of the ISO 3166 table),
we are now using the vendor files verbatim.


86224 09-Nov-2001 wollman

This commit was generated by cvs2svn to compensate for changes in r86223,
which included commits to RCS files with non-trunk default branches.


86222 09-Nov-2001 wollman

Merge tzdata2001d update from vendor branch.

PR: conf/31851
Obtained from: Arthur David Olson and the timezone database maintainers
MFC after: 1 week


86219 09-Nov-2001 wollman

This commit was generated by cvs2svn to compensate for changes in r86218,
which included commits to RCS files with non-trunk default branches.


83346 11-Sep-2001 ru

Don't create missing directories; that's the duty of mtree(8).

Don't depend on chown(8) in ${INSTALLTMP}; -u/-g have been
supported since at least RELENG_4_BP.


76190 01-May-2001 schweikh

Fixed typos: dependant -> dependent


75267 06-Apr-2001 wollman

Merge tzdata2001b from vendor branch.


75265 06-Apr-2001 wollman

This commit was generated by cvs2svn to compensate for changes in r75264,
which included commits to RCS files with non-trunk default branches.


67578 25-Oct-2000 wollman

Merge from vendor branch.


67576 25-Oct-2000 wollman

This commit was generated by cvs2svn to compensate for changes in r67575,
which included commits to RCS files with non-trunk default branches.


64499 10-Aug-2000 wollman

Merge from vendor branch. Also move FreeBSD Ids away from vendor Id
to make future merges easier.


64497 10-Aug-2000 wollman

This commit was generated by cvs2svn to compensate for changes in r64496,
which included commits to RCS files with non-trunk default branches.


58787 29-Mar-2000 ru

Merge from vendor branch.

PR: 17431
Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata2000d.tar.gz


58783 29-Mar-2000 ru

This commit was generated by cvs2svn to compensate for changes in r58782,
which included commits to RCS files with non-trunk default branches.


52770 01-Nov-1999 grog

Add $FreeBSD$

Correct the date on which DST begins in Victoria and New South Wales
in the year 2000: as the result of some local function in Sydney, DST
will begin on Sunday, 27 August instead of Sunday, 29 Cotober.

This change had already been made, but the date was incorrectly
specified as (Saturday) 26 August.

Submitted by: Howard Lowndes <lannet@lannet.com.au>


50476 28-Aug-1999 peter

$Id$ -> $FreeBSD$


43766 08-Feb-1999 bde

Copy from vendor branch. This mainly undoes most of the backing out of
Russian zones/rules in rev.1.12. ache objected mainly to the changes
in the Moscow zone names in rev.1.11 and those changes have been backed
out in the vendor branch.

Reviewed by: ache


43543 02-Feb-1999 wollman

Merge from vendor branch. Includes functional updates for:

Egypt, Cyprus, Israel, Japan, Australia, Fiji, Brazil,
Mexico, Nicaragua

PR: 8632

Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata1999b


43014 21-Jan-1999 wollman

Merge the 1999a revision of the timezone data files. There are a number
of important changes to European and South and Central American countries
which should be back-ported to 3.x.

Obtained from: ftp://elsie.nci.nih.gov/pub/tzdata1999a.tar.gz


43010 21-Jan-1999 wollman

This commit was generated by cvs2svn to compensate for changes in r43009,
which included commits to RCS files with non-trunk default branches.


43008 21-Jan-1999 wollman

This commit was generated by cvs2svn to compensate for changes in r43007,
which included commits to RCS files with non-trunk default branches.


39898 02-Oct-1998 phk

s/Lesp/Leap/

Caused by: packet loss to freefall


39871 01-Oct-1998 phk

INTERNATIONAL EARTH ROTATION SERVICE (IERS)
SERVICE INTERNATIONAL DE LA ROTATION TERRESTRE

BUREAU CENTRAL DE L'IERS
OBSERVATOIRE DE PARIS
61, Av. de l'Observatoire 75014 PARIS (France)
Tel. : 33 (0) 1 40 51 22 26
FAX : 33 (0) 1 40 51 22 91
Internet : iers@obspm.fr
Paris, 17 July 1998

Bulletin C 16

To authorities responsible for
the measurement and distribution
of time

UTC TIME STEP
on the 1st of January 1999

A positive leap second will be introduced at the end of December 1998.
The sequence of dates of the UTC second markers will be:

1998 December 31, 23h 59m 59s
1998 December 31, 23h 59m 60s
1999 January 1, 0h 0m 0s

The difference between UTC and the International Atomic Time TAI is:

from 1997 July 1, 0h UTC, to 1999 January 1, 0h UTC : UTC-TAI = - 31s
from 1999 January 1, 0h UTC, until further notice : UTC-TAI = - 32s

Leap seconds can be introduced in UTC at the end of the months of
December or June, depending on the evolution of UT1-TAI. Bulletin C mailed
every six months, either to announce a time step in UTC, or to confirm that
there will be no time step at the next possible date.

Daniel GAMBIS
Director
Central Bureau of IERS


37998 01-Aug-1998 des

Fix reference to /usr/share/misc/iso3166.

PR: misc/7459


30711 25-Oct-1997 wollman

Merge changes from vendor branch.


30709 25-Oct-1997 wollman

This commit was generated by cvs2svn to compensate for changes in r30708,
which included commits to RCS files with non-trunk default branches.


23569 09-Mar-1997 bde

Don't use a dot in the chown command. Fixed some minor style bugs.
Building things at install time under ${DESTDIR} was too hard to fix.

Bruce


22988 22-Feb-1997 peter

Revert $FreeBSD$ to $Id$


21673 14-Jan-1997 jkh

Make the long-awaited change from $Id$ to $FreeBSD$

This will make a number of things easier in the future, as well as (finally!)
avoiding the Id-smashing problem which has plagued developers for so long.

Boy, I'm glad we're not using sup anymore. This update would have been
insane otherwise.


21217 02-Jan-1997 wollman

Merge from vendor branch.


20094 02-Dec-1996 wollman

Merge changes from vendor branch.


20092 02-Dec-1996 wollman

This commit was generated by cvs2svn to compensate for changes in r20091,
which included commits to RCS files with non-trunk default branches.


20015 29-Nov-1996 bde

${COPY} -> -c. ${COPY} should never be used for installing sources since
it might be empty.


19994 27-Nov-1996 ache

Add missing ${COPY} to install options, zone.tab


19908 21-Nov-1996 ache

Back out Russian zones/rulez awaiting for new Paul Eggert update
Reviewed by: wollman


19879 19-Nov-1996 wollman

Revert `Factory' to previous message advising use of tzsetup.


19878 19-Nov-1996 wollman

Update to the latest version from the vendor branch. These files are
now identical with the distributed versions, which may cause some
abbreviations to change for people in obscure zones. (The abbreviations
can be changed again if need be.) It also changes the abbreviation
of Central European Time to `CET' from its previous value of `MET'
(a curious German-English hybrid). Finally, we have finally rid
ourselves of those nasty ZONE-DESCR comments, which were a maintenance
nightmare, in favor of the new zone.tab file. We are not using the
distribution's iso3166.tab file because we have our own list.

Obtained from: Arthur David Olson; ftp://elsie.nci.nih.gov


19877 19-Nov-1996 wollman

This commit was generated by cvs2svn to compensate for changes in r19876,
which included commits to RCS files with non-trunk default branches.


19874 19-Nov-1996 wollman

Initial revision


18576 30-Sep-1996 ache

Change RussiaAsia rules too to match recent zone rule change


18557 29-Sep-1996 ache

Moscow DST rule changed, blame goverment for it


17200 17-Jul-1996 wollman

Merged the latest timezone data file release.

Changed zones: Algeria, Egypt, Ghana, Libya, Morocco, Sierra Leone,
South Africa, Sudan, Tunisia, Armenia, Myanmar, China, Taiwan, Hong
Kong, Macao, Cyprus, Georgia, Iran, Israel, Jordan, Kazakhstan,
Kirgizstan, Lebanon, Mongolia, the Phillippines, Syria, Tajikistan,
Turkmenistan, Uzbekistan, Australia, Kiribati, New Caledonia, New
Zealand, Vanuatu, the United Kingdom, Ireland, the Czech Republic,
Finland, France, Greece, Hungary, Iceland, Italy, Luxembourg, the
Netherlands, Norway, Portugal, Romania, Spain, Switzerland, Turkey,
Canada, Mexico, the Bahamas, Barbados, Belize, Costa Rica, Cuba, the
Dominican Republic, El Salvador, Guatemala, Haiti, Nicaragua,
Brazil, the Falkland Islands, Paraguay

Deleted zones: Asia/Tomsk (superseded by Asia/Krasnoyarsk)

Added zones: Asia/Aktau (area formerly part of Asia/Alma-Ata);
Asia/Krasnoyarsk (supersedes Asia/Tomsk); America/Glace_Bay (area
formerly part of America/Halifax); America/Thunder_Bay,
America/Nipigon, America/Rainy_River (areas formerly covered by
America/Montreal); America/Swift_Current (area formerly part of
America/Regina); America/Dawson_Creek (area formerly part of
America/Vancouver); America/Pangnirtung, America/Iqaluit,
America/Rankin_Inlet, America/Yellowknife, America/Inuvik,
America/Dawson (areas formerly part of America/Whitehorse)


16663 24-Jun-1996 jkh

Bring in my changes for removing the pestilent obj links (unless you
really want them) from /usr/src. This is the final version of the
patches, incorporating the feedback I've received from -current.


15309 19-Apr-1996 wollman

Fix timezone names for Mountain time.
Fixes PR 1150

Submitted by: colsen@usa.net


15003 02-Apr-1996 wollman

Spell Bogota correctly.


14712 19-Mar-1996 wollman

Portugal is changing timezone this month. From vendor branch.


14710 19-Mar-1996 wollman

This commit was generated by cvs2svn to compensate for changes in r14709,
which included commits to RCS files with non-trunk default branches.


14343 02-Mar-1996 wollman

Update timezone files to 96c from vendor branch.
Australia/Canberra is dead (use Australia/Sydney).
Asia/Tel_Aviv has been renamed Asia/Jerusalem.


14341 02-Mar-1996 wollman

We have never supported the solar time stuff, so there's no point
in keeping the old files around.


14339 02-Mar-1996 wollman

This commit was generated by cvs2svn to compensate for changes in r14338,
which included commits to RCS files with non-trunk default branches.


14284 27-Feb-1996 wollman

Correctly capitalize `Virgin'.


14283 27-Feb-1996 wollman

Don't list Greenland under Denmark; the Greenanders apparently
don't like that.

Obtained from: tz mailing list


13123 30-Dec-1995 peter

This commit was generated by cvs2svn to compensate for changes in r13122,
which included commits to RCS files with non-trunk default branches.


13122 30-Dec-1995 peter

recording cvs-1.6 file death


12319 16-Nov-1995 gpalmer

Change the handling of the leapseconds so that if LEAPSECONDS isn't
defined, it doesn't call zic with -L /dev/null, and instead doesn't
use -L at all


12261 13-Nov-1995 wollman

Correctly spell Phnom Penh for tzsetup.


9985 07-Aug-1995 wollman

I forgot the reason why I didn't have a period in the `Rep of Palau' the
last time, and mistakenly added it in, thus causing a syntax error in
tzsetup. Fixed.


9908 04-Aug-1995 wollman

Merge timzeone data changes from vendor branch. Most significant change
is 1996 EC harmonization. Also, the following timezones have been renamed:
Asia/Frunze -> Asia/Bishkek
Pacific/Cocos -> Indian/Cocos
Pacific/Belau -> Pacific/Palau
America/Navajo -> America/Shiprock
and one new timezone has been added:
Australia/Canberra


9906 04-Aug-1995 wollman

This commit was generated by cvs2svn to compensate for changes in r9905,
which included commits to RCS files with non-trunk default branches.


8069 25-Apr-1995 wollman

Fix some conflicting descriptions.


8049 24-Apr-1995 wollman

Add more comments for tzsetup and fix some old ones.


8029 23-Apr-1995 wollman

Added parseable comments describing the zone each entry represents.


3104 25-Sep-1994 wollman

Correct Europe/Helsinki specification: usee E-Eur not M-Eur rules.


2761 14-Sep-1994 wollman

Tell unconfigured users to use tzsetup rather than read the zic
manual page (which will only confuse them even more than they already are).


2748 13-Sep-1994 wollman

Don't build Pacific Presidential Election Time; it has no legal standing,
and results in a bogus link and US/ directory.


2747 13-Sep-1994 wollman

New method for installing timezone data files, not nearly as complicated
as the previous one, and better integrated with the build scheme.

Define OLDTIMEZONES to get backward-compatibility links added.
Define LEAPSECONDS if you want leap-second support.


2745 13-Sep-1994 wollman

This commit was generated by cvs2svn to compensate for changes in r2744,
which included commits to RCS files with non-trunk default branches.


2742 13-Sep-1994 wollman

Initial revision


2523 06-Sep-1994 ache

Add russian timezones.
(it is only workaround until proper zoneinfo (f.e. from 1.1.5.1)
will be installed)


2522 06-Sep-1994 ache

Install posix rules as default and leapseconds rules as additional


2025 11-Aug-1994 jkh

Bruce Evans is right - this shouldn't touch /etc *at all* and I should
have nuked it, not fixed it. No longer install /etc/localtime.
Reviewed by:
Submitted by:


2020 11-Aug-1994 jkh

Add a preventative rm of /etc/localtime in the install rule just in
case it's a link (in which case the subsequent install will fall over).
Submitted by: jkh


2019 11-Aug-1994 jkh

Change a .0 to a .5.
Submitted by: jkh


1639 30-May-1994 rgrimes

This commit was generated by cvs2svn to compensate for changes in r1638,
which included commits to RCS files with non-trunk default branches.