~ubuntu-branches/ubuntu/saucy/tzdata/saucy-updates

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
tzdata (2013a-1ubuntu1) raring; urgency=low

  * Resynchronize with Debian, remaining diff:
  * debian/control, debian/rules: build with current openjdk version

 -- Sebastien Bacher <seb128@ubuntu.com>  Mon, 25 Feb 2013 15:00:50 +0100

tzdata (2013a-1) unstable; urgency=low

  * New upstream release.  closes: #702266.

 -- Clint Adams <clint@debian.org>  Wed, 06 Mar 2013 23:13:53 -0500

tzdata (2012j-1) unstable; urgency=low

  * New upstream version.
  * Bump to Standards-Version 3.9.4.

 -- Clint Adams <clint@debian.org>  Sat, 01 Dec 2012 18:54:01 -0500

tzdata (2012i-1) unstable; urgency=low

  * New upstream version.
    - Drop brazil-dst-2012-changes.diff (merged).

 -- Clint Adams <clint@debian.org>  Tue, 06 Nov 2012 12:51:27 -0500

tzdata (2012g-1) unstable; urgency=low

  * New upstream version.
  * Add brazil-dst-2012-changes.diff from Antonio Terceiro to add
    DST 2012 rule for the America/Bahia zone.  Closes: #690606.

 -- Aurelien Jarno <aurel32@debian.org>  Thu, 18 Oct 2012 19:01:18 +0200

tzdata (2012f-1) unstable; urgency=low

  * New upstream version.

 -- Clint Adams <clint@debian.org>  Thu, 13 Sep 2012 10:43:58 -0400

tzdata (2012e-1) unstable; urgency=low

  * New upstream version.

 -- Clint Adams <clint@debian.org>  Fri, 17 Aug 2012 18:30:32 -0400

tzdata (2012d-1) unstable; urgency=low

  [ Debconf translations ]
  * Thai (Theppitak Karoonboonyanan).  Closes: #672213
  * Really add Polish translation. Really Closes: #658403
  * Slovak (Ivan Masár).  Closes: #677910

  [ Clint Adams ]
  * New upstream version.

 -- Clint Adams <clint@debian.org>  Thu, 19 Jul 2012 22:43:21 -0400

tzdata (2012c-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <clint@debian.org>  Tue, 01 May 2012 20:30:36 -0400

tzdata (2012b-1) unstable; urgency=low

  [ Debconf translations ]
  * Indonesian (Mahyuddin Susanto).  Closes: #656706
  * Italian (Francesca Ciceri).  Closes: #656937
  * Polish (Michał Kułach).  Closes: #658403
  * Basque (Iñaki Larrañaga Murgoitio).  Closes: #660645

  [ Clint Adams ]
  * New upstream version.
  * Fix watch file.
  * Bump to Standards-Version 3.9.3.
  * Add Homepage to debian/control.

 -- Clint Adams <clint@debian.org>  Tue, 06 Mar 2012 13:30:10 -0500

tzdata (2011n-2) unstable; urgency=low

  [ Debconf translations ]
  * Dutch (Jeroen Schot).  Closes: #650647
  * Russian (Yuri Kozlov).  Closes: #650868
  * Brazilian Portuguese (Flamarion Jorge).  Closes: #651266
  * German (Holger Wansing).  Closes: #651328
  * Slovak (Ivan Masár).  Closes: #651329
  * Danish (Joe Hansen).  Closes: #651341
  * Swedish (Martin Bagge / brother).  Closes: #651350
  * Thai (Theppitak Karoonboonyanan).  Closes: #651360
  * Gujarati (Kartik Mistry).  Closes: #651366
  * Japanese (Kenshi Muto).  Closes: #651371
  * Portuguese (Miguel Figueiredo).  Closes: #651618
  * Spanish; (Francisco Javier Cuadrado).  Closes: #651632
  * Catalan; (Agustí Grau).  Closes: #652071
  * Czech (Miroslav Kure).  Closes: #652584
  * Hebrew (Omer Zak).  Closes: #653273

 -- Aurelien Jarno <aurel32@debian.org>  Thu, 29 Dec 2011 13:01:02 +0100

tzdata (2011n-1) unstable; urgency=critical

  * New upstream veersion, fixing DST for: 
    - Cuba.
    - Fidji.
    - Pridnestrovian Moldavian Republic.
  * Set urgency to high as some of the above changes are already
    effective.
  * Update French translation.

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 31 Oct 2011 23:32:50 +0100

tzdata (2011m-1) unstable; urgency=critical

  * New upstream version, fixing DST for:
    - Pridnestrovian Moldavian Republic.
    - Ukraine (Closes: #645783).
    - Bahia, Brazil. Drop debian/patches/bahia.diff.
  * Set urgency to critical as the above changes will be effective on the
    night from Saturday to Sunday.

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 25 Oct 2011 05:08:18 +0200

tzdata (2011l-2) unstable; urgency=high

  * Upstream is now ICANN, update debian/watch and debian/copyright.

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 17 Oct 2011 21:51:26 +0200

tzdata (2011l-1.1) unstable; urgency=low

  * Non-maintainer upload.
  * debian/patches/bahia.diff: add DST for America/Bahia (Closes: #645638).
    Next upstream release should also include this change.

 -- Antonio Terceiro <terceiro@debian.org>  Mon, 17 Oct 2011 15:12:38 -0300

tzdata (2011l-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <clint@debian.org>  Tue, 11 Oct 2011 22:41:17 -0400

tzdata (2011k-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * New upstream release:
    - Update DST rules for Ukraine.  Closes: #642232.
    - Update DST rules for Belarus.  Closes: #641846.

  [ Debconf translations ]
  * Spanish (Francisco Javier Cuadrado).  Closes: #642071.

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 26 Sep 2011 20:19:53 +0200

tzdata (2011j-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * New upstream release.

  [ Debconf translations ]
  * Swedish (Martin Bagge / brother).  Closes: #640624
  * Italian (David Paleino).  Closes: #640772
  * Catalan (Jordà Polo).  Closes: #640775
  * Russian (Yuri Kozlov).  Closes: #640820
  * Japanese (Kenshi Muto).  Closes: #641113
  * German (Holger Wansing).  Closes: #641220
  * Danish (Joe Hansen).  Closes: #640833

 -- Aurelien Jarno <aurel32@debian.org>  Wed, 14 Sep 2011 00:53:02 +0200

tzdata (2011i-2) unstable; urgency=medium

  [ Aurelien Jarno ]
  * OpenJDK-6 changed the path to the java binary without warning. Try both
    the old and the new path, to avoid adding a versioned dependency on
    openjdk-6-jre-headless that would prevent migration to testing.  Closes:
    #640276.
  * Set urgency to medium to avoid delaying too much migration to testing 
    with this upload.

  [ Debconf translations ]
  * French updated (Christian Perrier)

 -- Aurelien Jarno <aurel32@debian.org>  Sun, 04 Sep 2011 17:03:02 +0200

tzdata (2011i-1) unstable; urgency=low

  * New upstream version.

 -- Aurelien Jarno <aurel32@debian.org>  Wed, 31 Aug 2011 22:27:16 +0200

tzdata (2011h-4) unstable; urgency=low

  * Add build-arch and build-indep targets. 
  * Remove hardlinks to comply with the policy, by replacing identical
    files with symlinks. It also reduces the package size by 38% and 
    the installed size by 35%.
  * Change the source compression format to "xz", .po files in plenty of
    different languages compress very well.

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 22 Aug 2011 22:25:12 +0200

tzdata (2011h-3) unstable; urgency=low

  * Correctly handle empty debconf values (how is that possible for a 
    select entry?).  Closes: #545146, #631878.

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 04 Jul 2011 19:53:21 +0200

tzdata (2011h-2) unstable; urgency=low

  * Ignore debconf errors, return default values in that case. 
    Closes: #631878.

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 28 Jun 2011 07:23:04 +0200

tzdata (2011h-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * Fix preseeding.  Closes: #510908.

  [ Clint Adams ]
  * New upstream release.
  * Bump to Standards-Version 3.9.2.

 -- Clint Adams <clint@debian.org>  Mon, 27 Jun 2011 14:33:48 -0400

tzdata (2011g-1) unstable; urgency=high

  * New upstream release.  closes: #624154.

 -- Clint Adams <clint@debian.org>  Tue, 26 Apr 2011 00:27:36 -0400

tzdata (2011f-1) unstable; urgency=low

  * New upstream release.
  * Update Danish translation from Joe Dalton.  closes: #601231.

 -- Clint Adams <clint@debian.org>  Thu, 21 Apr 2011 14:37:11 -0400

tzdata (2011e-1) unstable; urgency=high

  * New upstream release.
    - Changes Chilean DST yet again.  closes: #620288.

 -- Clint Adams <clint@debian.org>  Fri, 01 Apr 2011 09:59:29 -0400

tzdata (2011d-1) unstable; urgency=high

  [ Aurelien Jarno ]
  * debian/control: provides tzdata-wheezy instead of tzdata-squeeze.

  [ Clint Adams ]
  * New upstream release.

 -- Clint Adams <clint@debian.org>  Mon, 14 Mar 2011 10:37:14 -0400

tzdata (2011c-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <clint@debian.org>  Mon, 07 Mar 2011 12:29:07 -0500

tzdata (2011b-2) unstable; urgency=low

  * Mark tzdata and tzdata-java as Multi-Arch: foreign.
    closes: #612700.

 -- Clint Adams <clint@debian.org>  Thu, 10 Feb 2011 12:28:15 -0500

tzdata (2011b-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <clint@debian.org>  Thu, 10 Feb 2011 09:58:03 -0500

tzdata (2011a-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <clint@gnu.org>  Mon, 24 Jan 2011 12:33:59 -0500

tzdata (2010o-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Mon, 01 Nov 2010 23:33:41 -0400

tzdata (2010m-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * Danish translation (Joe Hansen).  Closes: #596143.

  [ Clint Adams ]
  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Mon, 27 Sep 2010 10:12:57 -0400

tzdata (2010l-1) unstable; urgency=low

  * New upstream release.
  * gl.po: updated Galician translation from Jorge Barreiro.
    closes: #592814.

 -- Clint Adams <schizo@debian.org>  Wed, 18 Aug 2010 13:29:15 -0400

tzdata (2010k-1) unstable; urgency=low

  * New upstream release.
  * Bump to Standards-Version 3.9.1.

 -- Clint Adams <schizo@debian.org>  Tue, 10 Aug 2010 23:50:20 -0400

tzdata (2010j-1) unstable; urgency=low

  * New upstream version.
  * en.po: rename "Noronha" to "Fernando de Noronha"
    and "Ponape" to "Pohnpei".  closes: #580745.
  * de.po: updated German translation from Holger Wansing.
    closes: #580935.

 -- Clint Adams <schizo@debian.org>  Sun, 09 May 2010 00:18:40 -0400

tzdata (2010i-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Tue, 20 Apr 2010 10:44:01 -0400

tzdata (2010h-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Mon, 05 Apr 2010 11:03:59 -0400

tzdata (2010g-1) unstable; urgency=low

  * New upstream release.
    - Drop russia-2010.diff (obsolete).

 -- Clint Adams <schizo@debian.org>  Mon, 29 Mar 2010 09:31:52 -0400

tzdata (2010f-2) unstable; urgency=low

  * Add russia-2010.diff for March 28 timezone changes.
    closes: #574919.

 -- Clint Adams <schizo@debian.org>  Mon, 22 Mar 2010 19:43:27 -0400

tzdata (2010f-1) unstable; urgency=medium

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Mon, 22 Mar 2010 18:10:55 -0400

tzdata (2010e-1) unstable; urgency=medium

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Tue, 09 Mar 2010 18:17:15 -0500

tzdata (2010d-1) unstable; urgency=low

  * New upstream release.
    - Adjusts Chile 2010 DST dates.  closes: #572715.
  * Bump to Standards-Version 3.8.4.

 -- Clint Adams <schizo@debian.org>  Mon, 08 Mar 2010 11:01:21 -0500

tzdata (2010c-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Fri, 05 Mar 2010 16:37:24 -0500

tzdata (2010b-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Sat, 30 Jan 2010 16:31:22 -0500

tzdata (2010a-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Mon, 18 Jan 2010 08:42:23 -0500

tzdata (2009u-1) unstable; urgency=low

  * New upstream release.
    - Drop bangladesh-openended.diff.

 -- Clint Adams <schizo@debian.org>  Mon, 28 Dec 2009 21:40:51 -0500

tzdata (2009s-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Mon, 16 Nov 2009 18:48:10 -0500

tzdata (2009r-1) unstable; urgency=low

  * New upstream release.
  * Don't remove .pc/ in clean target.

 -- Clint Adams <schizo@debian.org>  Tue, 10 Nov 2009 02:15:03 -0500

tzdata (2009q-2) unstable; urgency=low

  * Fix the "DST" offset of Dhaka, broken by the fix for #552110.

 -- Clint Adams <schizo@debian.org>  Tue, 03 Nov 2009 04:10:24 -0500

tzdata (2009q-1) unstable; urgency=medium

  * New upstream release.
  * Use 3.0 (quilt) source format, drop build dependency on quilt.

 -- Clint Adams <schizo@debian.org>  Mon, 02 Nov 2009 13:54:29 -0500

tzdata (2009p-1) unstable; urgency=low

  * New upstream release.  closes: #551195.
    - Drop argentinas-dst-2009.diff (obsolete).

 -- Clint Adams <schizo@debian.org>  Mon, 26 Oct 2009 12:32:25 -0400

tzdata (2009o-2) unstable; urgency=low

  * debian/patches/bangladesh-openended.diff: Fix broken Asia/Dhaka
    DST.  closes: #552110.

 -- Clint Adams <schizo@debian.org>  Fri, 23 Oct 2009 10:36:14 -0400

tzdata (2009o-1) unstable; urgency=low

  * New upstream release.
  * Rework rules to stop using tarball-in-tarball.

 -- Clint Adams <schizo@debian.org>  Mon, 19 Oct 2009 09:04:43 -0700

tzdata (2009n-2) unstable; urgency=low

  [ Christian Perrier ]
  * Brazilian Portuguese translation (Flamarion Jorge).  Closes: #550846

  [ Clint Adams ]
  * debian/patches/argentinas-dst-2009.diff: patch from Margarita
    Manterola to fix Argentina DST again.  closes: #551195.

 -- Clint Adams <schizo@debian.org>  Fri, 16 Oct 2009 08:17:48 -0700

tzdata (2009n-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Tue, 29 Sep 2009 10:14:23 -0400

tzdata (2009m-1) unstable; urgency=low

  * New upstream release.
  * Bump to Standards-Version 3.8.3.

 -- Clint Adams <schizo@debian.org>  Tue, 08 Sep 2009 22:36:35 -0400

tzdata (2009l-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Thu, 20 Aug 2009 23:17:47 -0400

tzdata (2009k-3) unstable; urgency=low

  * Clarify some wording in postinst and debconf template.  closes: #507164.
  * Re-enable U.S. time zone choices.  closes: #509745.

 -- Clint Adams <schizo@debian.org>  Mon, 03 Aug 2009 22:46:22 -0400

tzdata (2009k-2) unstable; urgency=low

  [ Christian Perrier ]
  * es.po. Spanish translation from Francisco Javier Cuadrado. Closes: #538423
  * ru.po: Russian translation from Yuri Kozlov. Closes: #538649

  [ Aurelien Jarno ]
  * Remove 'Katmandu' from the templates, only keeping 'Kathmandu'.
  * debian/control: add missing depends on ${misc:Depends}.
  * debian/control: bump to Standards-Version 3.8.2.
  * Switch to debhelper 5.

 -- Aurelien Jarno <aurel32@debian.org>  Sun, 26 Jul 2009 23:48:55 +0200

tzdata (2009k-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * New upstream version.

  [ Clint Adams ]
  * sk.po: Slovak translation from Ivan Masár.  closes: #534440.

 -- Aurelien Jarno <aurel32@debian.org>  Fri, 24 Jul 2009 19:51:59 +0200

tzdata (2009j-1) unstable; urgency=low

  * New upstream version.

 -- Clint Adams <schizo@debian.org>  Sun, 21 Jun 2009 12:20:00 -0400

tzdata (2009i-1) unstable; urgency=low

  * New upstream version.

 -- Clint Adams <schizo@debian.org>  Thu, 11 Jun 2009 14:58:36 -0400

tzdata (2009h-1) unstable; urgency=low

  * New upstream version.
  * Include Pacific Presidential Election Time.  closes: #524046.

 -- Clint Adams <schizo@debian.org>  Fri, 29 May 2009 21:35:19 -0400

tzdata (2009g-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * postinst: fix race condition when updating /etc/localtime. Closes:
    bug#516755.

  [ Clint Adams ]
  * New upstream version.

 -- Clint Adams <schizo@debian.org>  Mon, 27 Apr 2009 09:15:36 -0400

tzdata (2009f-1) unstable; urgency=low

  * New upstream version.

 -- Clint Adams <schizo@debian.org>  Sun, 19 Apr 2009 13:44:18 -0400

tzdata (2009e-1) unstable; urgency=low

  [ Christian Perrier ]
  * Debconf translations:
    - Spanish. Closes: #521807

  [ Clint Adams ]
  * New upstream version.

 -- Clint Adams <schizo@debian.org>  Mon, 06 Apr 2009 10:33:21 -0400

tzdata (2009d-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Thu, 26 Mar 2009 10:04:03 -0400

tzdata (2009c-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * debian/control: s/tzdata-lenny/tzdata-squeeze/
  * debian/control: move tzdata-java to section java.

  [ Clint Adams ]
  * New upstream release.
  * debian/control: bump to Standards-Version 3.8.1.

 -- Clint Adams <schizo@debian.org>  Mon, 16 Mar 2009 21:20:07 -0400

tzdata (2009b-1) unstable; urgency=low

  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Sat, 14 Feb 2009 11:41:30 -0500

tzdata (2008i-3) unstable; urgency=low

  * Debconf translations:
  * Italian. Closes: #504139
  * Portuguese. Closes: #504276
  * Finnish. Closes: #504311
  * Turkish. Closes: #504442
  * Czech. Closes: #504401
  * Basque. Closes: #504533
  * Kurdish. Closes: #504545
  * Bulgarian. Closes: #504598
  * Thai. Closes: #504687
  * Russian. Closes: #504890
  * Wolof. Closes: #504915

 -- Christian Perrier <bubulle@debian.org>  Mon, 03 Nov 2008 08:13:32 +0100

tzdata (2008i-2) unstable; urgency=low

  [ Christian Perrier ]
  * Debconf translations:
  * French
  * Belarusian. Closes: #503969
  * Japanese. Closes: #503979
  * Gujarati. Closes: #503988
  * Lithuanian. Closes: #503995
  * Kurdish
  * Swedish. Closes: #504036
  * German. Closes: #504038
  * Catalan. Closes: #504074

  [ Clint Adams ]
  * debian/postinst: apply patch from Martin Orr to restore SELinux
    context of /etc/localtime.  closes: #503028.

 -- Clint Adams <schizo@debian.org>  Sat, 01 Nov 2008 19:45:54 -0400

tzdata (2008i-1) unstable; urgency=low

  * New upstream version.
    - Drop argentina-no-dst.diff (obsolete).
  * debian/po/en.po: add translation for Salta (Argentina).

 -- Clint Adams <schizo@debian.org>  Mon, 27 Oct 2008 21:34:51 -0400

tzdata (2008h-2) unstable; urgency=high

  * Apply patch from Margarita Manterola to fix DST for Argentina this
    weekend.  closes: #502430.

 -- Clint Adams <schizo@debian.org>  Fri, 17 Oct 2008 12:16:57 -0400

tzdata (2008h-1) unstable; urgency=high

  * New upstream version.
  * Remove argentina.diff to enable DST in Argentina for October 19th.
  * Urgency set to high, as the change will happen soon.

 -- Aurelien Jarno <aurel32@debian.org>  Wed, 15 Oct 2008 11:09:34 +0200

tzdata (2008g-1) unstable; urgency=low

  * New upstream version.

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 06 Oct 2008 15:17:28 +0200

tzdata (2008f-2) unstable; urgency=low

  * Fix Argentinian timezone wrt DST.  Closes: #501169

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 06 Oct 2008 13:38:46 +0200

tzdata (2008f-1) unstable; urgency=low

  [ Christian Perrier ]
  * debian/po/pt.po: update from Ricardo Silva. closes: #498963

  [ Clint Adams ]
  * New upstream release.

 -- Clint Adams <schizo@debian.org>  Fri, 26 Sep 2008 12:41:52 -0400

tzdata (2008e-4) unstable; urgency=low

  * Add a README.Debian file explaining the difference between the
    "posix" and the "right" versions of the timezone data.
  * Only build the posix version of the timezone data on emdebian.
  * Don't build solar87, solar88 and solar89 on emdebian as they are
    useless.

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 06 Sep 2008 16:57:41 +0200

tzdata (2008e-3) unstable; urgency=low

  * Provide a tzconfig compatibility script.  Closes: #493978.

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 09 Aug 2008 21:57:23 +0200

tzdata (2008e-2) unstable; urgency=low

  * Build a tzdata-java package, using javazic from openjdk-6.
  * debian/po/fr.po: update from Nicolas François. closes: #492769.
  * debian/po/tr.po: new file from Mert Dirik. closes: #491207.

 -- Aurelien Jarno <aurel32@debian.org>  Thu, 31 Jul 2008 14:15:19 +0200

tzdata (2008e-1) unstable; urgency=low

  * New upstream release.

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 29 Jul 2008 02:12:00 +0200

tzdata (2008d-1) unstable; urgency=medium

  [ Clint Adams ]
  * New upstream release.
  * Bump to Standards-Version 3.8.0.
  * debian/po/en.po: translation of "Santarem".
  * Add Italian translations from David Paleino.  closes: #483917.

  [ Christian Perrier ]
  * Debconf translations (credits are in PO files):
    - French
    - Gujarati. Closes: #490674
    - Malayalam. Closes: #490685
    - Galician. Closes: #490692
    - Catalan. Closes: #490709
    - German. Closes: #490713, #486867
    - Bulgarian. Closes: #490726
    - Basque. Closes: #490731
    - Lithuanian. Closes: #490773
    - Swedish. Closes: #490783
    - Japanese. Closes: #490807
    - Thai. Closes: #490942
    - Finnish. Closes: #490993
    - Vietnamese. Closes: #491047
    - Turkish. Closes: #491207
    - Russian. Closes: #491339
    - Belarusian. Closes: #491444

  [ Aurelien Jarno ]
  * patches/systemv.diff: convert to -p1.  Closes: #485364.

 -- Clint Adams <schizo@debian.org>  Fri, 25 Jul 2008 09:41:04 -0400

tzdata (2008c-1) unstable; urgency=low

  * New upstream release.
  * debian/po/sv.po: updates from Martin Bagge.  closes: #482459.
  * debian/po/es.po: updates from Rudy Godoy Guillén.  closes: #482941

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 31 May 2008 10:00:54 +0200

tzdata (2008b-2) unstable; urgency=medium

  [ Christian Perrier ]
  * Properly spell "Sydney" in debian/config. closes: #478403
  * debian/po/de.po: update from Helge Kreutzmann. German. closes: #472682
  * debian/po/fi.po: update from Esko Arajärvi. Finnish. closes: #475226
  * debian/po/fr.po: update from Christian Perrier. French. closes: #472596
  * debian/po/gu.po: update from Kartik Mistry. Gujarati. closes: #480529
  * debian/po/gl.po: update from Jacobo Tarrio. Galician. closes: #480535
  * debian/po/ca.po: update from Jordà Polo. Catalan. closes: #480554
  * debian/po/sq.po: update from Elian Myftiu. Albanian. closes: #480562
  * debian/po/ja.po: update from Kenshi Muto. Japanese. closes: #480581
  * debian/po/ml.po: update from Praveen. Malayalam. closes: #480582
  * debian/po/vi.po: update from Clytie Siddall. Vietnamese. closes: #480651
  * debian/po/hu.po: update from SZERVÁC Attila. Hungarian. closes: #480665
  * debian/po/bg.po: update from Damyan Ivanov and Yavor Doganov.
                     Bulgarian. closes: #480674
  * debian/po/es.po: update from Rudy Godoy. Spanish. closes: #480745
  * debian/po/be.po: update from Pavel Piatruk. Belarusian.
  * debian/po/id.po: update from Arief S Fitrianto. Indonesian. closes: #480832
  * debian/po/lt.po: update from Kęstutis Biliūnas. Lithuanian. closes: #480836
  * debian/po/eu.po: update from Piarres Beobide. Basque. closes: #480843
  * debian/po/cs.po: update from Miroslav Kure. Czech. closes: #480929
  * Russian. Closes: #481216

  [ Clint Adams ]
  * debian/po/nl.po: update from Bart Cornelis.  closes: #481741.
  * debian/po/ru.po: update from Yuri Kozlov.  closes: #481216.
  * debian/po/en.po: fix fuzzy mistranslation of San Luis to San Juan.

 -- Clint Adams <schizo@debian.org>  Sun, 18 May 2008 07:52:23 -0400

tzdata (2008b-1) unstable; urgency=low

  * New upstream release.
    - Renames Asia/Saigon to Asia/Ho_Chi_Minh. closes: #471305.
  * Add conversion code for Asia/Saigon and Asia/Calcutta to
    Asia/Ho_Chi_Minh and Asia/Kolkata respectively.

 -- Clint Adams <schizo@debian.org>  Mon, 24 Mar 2008 09:42:35 -0400

tzdata (2008a-1) unstable; urgency=low

  * New upstream release.
    - Drop Chile patch (fixed in a different way).

 -- Clint Adams <schizo@debian.org>  Sun, 09 Mar 2008 10:24:05 -0400

tzdata (2007k-4) unstable; urgency=high

  * debian/patches/chile_2008.diff: add Chile DST rule for 2008.
    closes: #469194.
  * Set urgency to high as the DST change will happen in 4 days.
  * debian/po/fi.po: update from Esko Arajärvi.  closes: #468544.
  * debian/po/ru.po: update from Yuri Kozlov.  closes: #466752.

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 04 Mar 2008 12:32:26 +0100

tzdata (2007k-3) unstable; urgency=low

  * Add a Provides: tzdata-lenny.
  * debian/po/nl.po: update from Bart Cornelis.  closes: #463434.

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 04 Feb 2008 22:36:41 +0100

tzdata (2007k-2) unstable; urgency=low

  * debian/po/sv.po: initial translation from Christer Andersson
    closes: #459490.

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 12 Jan 2008 12:52:02 +0100

tzdata (2007k-1) unstable; urgency=low

  * New upstream release.
    - Drop Argentina patch (fixed upstream in a different way).

 -- Clint Adams <schizo@debian.org>  Mon, 31 Dec 2007 12:26:58 -0500

tzdata (2007j-3) unstable; urgency=high

  [ Aurelien Jarno ]
  * debian/po/eu.po: update from Piarres Beobide.  closes: #457288.

  [ Clint Adams ]
  * debian/po/de.po: update from Helge Kreutzmann.  closes: #457747.
  * Add DST for Argentina, closes: #457938.
  * Bump to Standards-Version 3.7.3.

 -- Clint Adams <schizo@debian.org>  Tue, 25 Dec 2007 19:15:23 -0500

tzdata (2007j-2) unstable; urgency=high

  * Urgency set to high, to make sure the version in testing is
    high than in debian-volatile.
  * debian/po/de.po: update from Helge Kreutzmann.  closes: #454335.
  * debian/po/fr.po: update from Christian Perrier.  closes: #454410.

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 11 Dec 2007 14:46:52 +0100

tzdata (2007j-1) unstable; urgency=low

  * New upstream version.

 -- Clint Adams <schizo@debian.org>  Mon, 03 Dec 2007 10:15:33 -0500

tzdata (2007i-2) unstable; urgency=low

  * Remove leading/trailing slashes when reading the timezone.
    closes: #452275.

 -- Aurelien Jarno <aurel32@debian.org>  Sun, 25 Nov 2007 05:22:24 +0100

tzdata (2007i-1) unstable; urgency=low

  * New upstream version.
  * debian/po/de.po: initial translation from Helge Kreutzmann.
    closes: #447173.
  * debian/po/gl.po: update from Jacobo Tarrio.  closes: #447930.
  * debian/po/nl.po: update from Bart Cornelis.  closes: #448016.
  * debian/po/fi.po: initial translation from Esko Arajärvi.
    closes: #448545.

 -- Clint Adams <schizo@debian.org>  Mon, 05 Nov 2007 19:47:10 -0500

tzdata (2007h-2) unstable; urgency=low

  * debian/po/ca.po: update from Jordà Polo. closes: #446397.
  * debian/po/ja.po: update from Kenshi Muto. closes: #446564.

 -- Clint Adams <schizo@debian.org>  Sun, 14 Oct 2007 09:50:48 -0400

tzdata (2007h-1) unstable; urgency=low

  * New upstream version.
    - Includes Venezuelan time zone change.  closes: #443202.
  * debian/po/ru.po: update from Yuri Kozlov. closes: #444040.

 -- Clint Adams <schizo@debian.org>  Wed, 03 Oct 2007 11:36:09 -0400

tzdata (2007g-2) unstable; urgency=low

  * debian/po/fr.po: update from Christian Perrier.  closes: #439883.
  * debian/po/es.po: update from Rudy Godoy Guillén.  closes: #440595.

 -- Clint Adams <schizo@debian.org>  Fri, 21 Sep 2007 08:44:02 -0400

tzdata (2007g-1) unstable; urgency=low

  * New upstream version.

 -- Clint Adams <schizo@debian.org>  Sun, 26 Aug 2007 16:59:29 -0400

tzdata (2007f-12) unstable; urgency=high

  * debian/preinst: remove.
  * debian/config: don't try to detect modified /etc/localtime file.
    closes: #438449.

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 25 Aug 2007 01:10:44 +0200

tzdata (2007f-11) unstable; urgency=high

  * Urgency set to high as it fixes an RC bug.
  * debian/configure: remove comparison of /etc/localtime
    with /usr/share/zoneinfo/.  closes: #438191.
    rework the rest of the script.
  * debian/preinst: new script to compare /etc/localtime
    with /usr/share/zoneinfo/.
  * debian/postinst: don't touch anything if /etc/timezone
    if not there.
  * debian/rules: Remove the Canada area, all cities are
    already in America.

 -- Aurelien Jarno <aurel32@debian.org>  Thu, 16 Aug 2007 14:14:27 -0230

tzdata (2007f-10) unstable; urgency=low

  * New Catalan debconf translation from Jordà Polo.  closes: #431972.
  * debian/postinst: only print "Run 'dpkg-reconfigure tzdata' if you wish
    to change it." message when not using dpkg-reconfigure.  closes:
    #428083.

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 31 Jul 2007 16:17:16 +0200

tzdata (2007f-9) unstable; urgency=low

  * debian/po/wo.po: update from M Mamoune Mbacke.  closes: #427504.
  * debian/config: patch form Ingo Saitz to fix handling of
    cases where /etc/localtime is missing.  closes: #427584.
  * debian/po/vi.po: update from Clytie Siddall.
  * debian/po/fr.po: update from Christian Perrier.  closes: #427733.
  * New Spanish debconf translation from Rudy Godoy Guillén.
    closes: #429414.

 -- Clint Adams <schizo@debian.org>  Tue, 19 Jun 2007 05:52:15 -0400

tzdata (2007f-8) unstable; urgency=high

  * debian/config: reverse the division of area/zone given the hack
    for the 3-level zones in America/ . closes: #427389.

 -- Clint Adams <schizo@debian.org>  Sun, 03 Jun 2007 19:00:32 -0400

tzdata (2007f-7) unstable; urgency=medium

  * debian/po/fr.po: update from Christian Perrier.
    closes: #427305.
  * debian/config: strip off any leading right/ or posix/ ;
    this allows tzdata to install when such a zone is set, but
    makes it more difficult for the user to set a "right"
    time zone.  closes: #427226.

 -- Clint Adams <schizo@debian.org>  Sun, 03 Jun 2007 08:28:04 -0400

tzdata (2007f-6) unstable; urgency=low

  * debian/po/en.po: a few minor cleanups.
  * Remove Asmera as a debconf choice.
  * Convert Antarctica/South_Pole to Antarctica/McMurdo.

 -- Clint Adams <schizo@debian.org>  Fri, 01 Jun 2007 14:36:36 -0400

tzdata (2007f-5) unstable; urgency=medium

  * Handle three-level timezones (including Argentina) in debconf
    selection, as well as converting Argentine compatibility zones
    to their three-level counterparts.  closes: #426914.
  * debian/po/en.po: updates for "new" zones.

 -- Clint Adams <schizo@debian.org>  Thu, 31 May 2007 14:21:48 -0400

tzdata (2007f-4) unstable; urgency=low

  * New Malayalam debconf translation from Praveen A.  closes: #425361.
  * New Lithuanian debconf translation from Kęstutis Biliūnas.
    closes: #425383.
  * debian/po/ru.po: updates from Yuri Kozlov. closes: #424892.
  * debian/po/bg.po: updates from Damyan Ivanov.  closes: #425512.
  * New Hebrew debconf translation from Lior Kaplan.  closes: #425733.

 -- Clint Adams <schizo@debian.org>  Mon, 21 May 2007 11:48:09 -0400

tzdata (2007f-3) unstable; urgency=medium

  * New Czech debconf translation by Miroslav Kure.
    closes: #425134.
  * Fix misspelling of "Cambridge Bay" in en.po.
  * New Basque debconf translation by Piarres Beobide.
    closes: #424983.
  * New Albanian debconf translation by Elian Myftiu.
    closes: #425172.
  * New Belarusian debconf translation by Paul Petruk.
    closes: #424769.
  * debian/po/fr.po: fixes from Christian Perrier.
    closes: #424437.

 -- Clint Adams <schizo@debian.org>  Sat, 19 May 2007 11:50:13 -0400

tzdata (2007f-2) unstable; urgency=low

  * New Indonesian debconf translation by Arief S Fitrianto.
    closes: #423402.
  * debian/config: Use parameter expansion to get substrings,
    thereby eliminating use of sed.
  * debian/config: Ulaanbaatar is the canonical name, not
    Ulan_Bator.
  * debian/config: Asmara is the canonical name for Asmera.
  * debian/po/templates.pot: remove Asmera.
  * New Gujarati debconf translation by Kartik Mistry.
    closes: #423492.

 -- Clint Adams <schizo@debian.org>  Fri, 11 May 2007 11:14:37 -0400

tzdata (2007f-1) unstable; urgency=medium

  * New upstream release.
    - Remove debian/patches/grand_turk.diff (superseded)
  * New Dutch debconf translation by Bart Cornelis. closes: #423064.
  * New Thai debconf translation by Theppitak Karoonboonyanan.
    closes: #422744.
  * New Kurdish debconf translation by Amed Çeko Jiyan.
    closes: #422880.

 -- Clint Adams <schizo@debian.org>  Wed, 09 May 2007 12:43:32 -0400

tzdata (2007e-8) unstable; urgency=low

  * New Bulgarian debconf translation, by Damyan Ivanov (closes:
    bug#422429).
  * New Croatian debconf translation, by Josip Rodin (closes:
    bug#422434).
  * New Hungarian debconf translation, by Attila Szervác (closes:
    bug#422458).
  * New Japanese debconf translation, by Kenshi Muto (closes:
    bug#422460).
  * New Galician debconf translation, by Jacobo Tarrio (closes:
    bug#422519.
  * debian/postinst: also set LC_ALL=C in sub-shells (closes: bug#422551).
  * Don't show backward links in debconf templates for Australian states,
    and for Cities whose names have changed.

 -- Aurelien Jarno <aurel32@debian.org>  Sun, 06 May 2007 23:55:23 +0200

tzdata (2007e-7) unstable; urgency=low

  * debian/po/en.po: fixes two typos. Thanks to Thijs Kinkhorst (closes:
    #421889).
  * New Russian debconf translation, by Yuri Kozlov (closes: bug#421499).
  * New Portuguese debconf translation, by Rui Branco (closes: bug#422329).
  * Partly merge patch from the Debconf templates review (closes:
    bug#422186).
  * debian/config: verify that /etc/localtime symlink points to a file
    in /usr/share/zoneinfo (closes: bug#421280).
  * debian/postinst: print the current local and UTC times even when using
    user defined /etc/localtime.

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 05 May 2007 05:52:04 -0700

tzdata (2007e-6) unstable; urgency=low

  * Remove -x from the config script (closes: #420988).

 -- Aurelien Jarno <aurel32@debian.org>  Wed, 25 Apr 2007 19:35:09 +0200

tzdata (2007e-5) unstable; urgency=low

  * Convert old or single-level timezones into two-level timezones
    (closes: bug#420895).
  * Remove the US area, all cities are already in America.
  * Add Arctic area.

 -- Aurelien Jarno <aurel32@debian.org>  Wed, 25 Apr 2007 09:25:46 -0400

tzdata (2007e-4) unstable; urgency=low

  * Don't ask debconf questions during the first upgrade if the timezone
    is already configured (closes: bug#419276).
  * Set the old timezone in case of cancellation (closes: bug#419344).
  * Don't overwrite /etc/localtime if the user choose to manage it by
    him/herself.
  * Update templates from the current status of the Smith Review
    Project.
  * Add preliminary French templates.

 -- Aurelien Jarno <aurel32@debian.org>  Wed, 25 Apr 2007 00:25:37 +0200

tzdata (2007e-3) unstable; urgency=low

  * Add missing Australia area (closes: bug#419191).

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 14 Apr 2007 12:33:17 +0200

tzdata (2007e-2) unstable; urgency=low

  * Switch to debconf (closes: bug#391529).

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 14 Apr 2007 00:03:20 +0200

tzdata (2007e-1) unstable; urgency=low

  * New upstream release.
    - Fixes for Syria and Honduras.
  * Add watch file.

 -- Clint Adams <schizo@debian.org>  Mon, 09 Apr 2007 19:16:23 -0400

tzdata (2007d-1) unstable; urgency=low

  * New upstream release:
    - Fix timezone change for Turkey (closes: bug#416120).
  * debian/patches/grand_turk.diff: Fix timezone change for Turks & Caicos
    Islands (closes: bug#415007).

 -- Aurelien Jarno <aurel32@debian.org>  Sun, 25 Mar 2007 03:04:44 +0200

tzdata (2007c-1) unstable; urgency=low

  * New upstream release.
    - Fix timezone change for Pulaski County, Indiana, USA (closes:
      bug#414222).

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 10 Mar 2007 22:16:21 +0100

tzdata (2007b-1) unstable; urgency=low

  * New upstream release.

 -- Aurelien Jarno <aurel32@debian.org>  Sun, 18 Feb 2007 19:10:15 +0100

tzdata (2007a-3) unstable; urgency=low

  * Make tzdata an Essential package.
  * Fix postinst script with broken /etc/localtime file (closes: bug#409419).

 -- Aurelien Jarno <aurel32@debian.org>  Fri,  2 Feb 2007 22:37:36 +0100

tzdata (2007a-2) unstable; urgency=low

  * Generate and ship /usr/share/zoneinfo/posixrules (closes: bug#409275).

 -- Aurelien Jarno <aurel32@debian.org>  Thu,  1 Feb 2007 18:39:05 +0100

tzdata (2007a-1) unstable; urgency=low

  * New upstream release.

 -- Aurelien Jarno <aurel32@debian.org>  Sun, 21 Jan 2007 22:28:24 +0100

tzdata (2006p-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * New upstream release.
    - Includes DST rules for West Australia.

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 28 Nov 2006 10:58:53 +0100

tzdata (2006n-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * New upstream release.

 -- Aurelien Jarno <aurel32@debian.org>  Sat, 21 Oct 2006 22:51:50 +0200

tzdata (2006m-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * New upstream release.

 -- Aurelien Jarno <aurel32@debian.org>  Sun,  8 Oct 2006 19:39:42 +0200

tzdata (2006l-1) unstable; urgency=low

  [ Denis Barbier ]
  * New upstream release.
  * debian/rules: Use debian/patches/quiltrc for quilt global settings.

 -- Denis Barbier <barbier@debian.org>  Tue, 19 Sep 2006 22:26:27 +0200

tzdata (2006k-1) unstable; urgency=low

  [ Aurelien Jarno ]
  * New upstream release.

 -- Aurelien Jarno <aurel32@debian.org>  Tue, 29 Aug 2006 22:53:57 +0200

tzdata (2006g-2) unstable; urgency=low

  * patches/systemv.diff: As Indianapolis use DST since 2006, it can no
    more be an alias for SystemV/EST5, replace it with Panama.
    Closes: #367025
  * debian/watch: New file.

 -- Denis Barbier <barbier@debian.org>  Fri,  2 Jun 2006 23:44:21 +0200

tzdata (2006g-1) unstable; urgency=low

  [ Denis Barbier ]
  * New upstream release.
  * debian/control: Bump Standards-Version: 3.7.2  (no changes needed)
  * debian/control: quilt is not run by the 'clean' target, so move it
    into Build-Depends-Indep.

 -- Denis Barbier <barbier@debian.org>  Thu,  1 Jun 2006 22:19:57 +0200

tzdata (2006c-2) unstable; urgency=low

  * Put a copy of the current timezone into /etc/localtime instead of a
    symlink.
  * Add a patching system.
  * patches/systemv.diff: create the SystemV links for compatibility reasons.
  * Drop the dependency on libc-bin.
  * Drop the preinst script, we don't support upgrades from Potato :-)

 -- Aurelien Jarno <aurel32@debian.org>  Mon, 10 Apr 2006 09:13:04 +0200

tzdata (2006c-1) unstable; urgency=low

  * Initial release.
  * For easy updating, this package has been splitted out of the GNU C
    Library.
  * Thanks to the authors of the langpack-locales Ubuntu package, which has
    been used to understand how to process source timezone files.

 -- Aurelien Jarno <aurel32@debian.org>  Sat,  8 Apr 2006 19:00:31 +0200