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 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683
|
tzdata (2020a-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following future timestamps:
- Morocco springs forward on 2020-05-31, not 2020-05-24.
- Canada's Yukon advanced to -07 year-round on 2020-03-08.
-- Aurelien Jarno <aurel32@debian.org> Mon, 27 Apr 2020 21:56:05 +0200
tzdata (2019c-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following future timestamps:
- Fiji's next DST transitions will be 2019-11-10 and 2020-01-12
instead of 2019-11-03 and 2020-01-19.
- Norfolk Island will observe Australian-style DST starting in
spring 2019. The first transition is on 2019-10-06.
-- Aurelien Jarno <aurel32@debian.org> Wed, 18 Sep 2019 00:40:44 +0200
tzdata (2019b-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following past and future timestamps:
- Brazil has canceled DST and will stay on standard time indefinitely.
- Predictions for Morocco now go through 2087 instead of 2037.
- Palestine's 2019 spring transition was 03-29 at 00:00, not 03-30
at 01:00. Guess future transitions to be March's last Friday at 00:00.
- Many corrections to historical Hong Kong transitions from 1941 to 1947.
-- Aurelien Jarno <aurel32@debian.org> Mon, 12 Aug 2019 11:45:17 +0200
tzdata (2019a-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following past and future
timestamps:
- Palestine will not start DST until 2019-03-30, instead of 2019-03-23
as previously predicted.
- Metlakatla ended its observance of Pacific standard time, rejoining
Alaska Time, on 2019-01-20 at 02:00.
-- Aurelien Jarno <aurel32@debian.org> Wed, 27 Mar 2019 21:34:20 +0100
tzdata (2018i-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following future timestamps:
- São Tomé and Príncipe switches from +01 to +00 on 2019-01-01.
-- Aurelien Jarno <aurel32@debian.org> Mon, 31 Dec 2018 10:43:58 +0100
tzdata (2018h-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following past and future
timestamps:
- Qyzylorda, Kazakhstan moved from +06 to +05 on 2018-12-21. A new
zone Asia/Qostanay has been added, because Qostanay, Kazakhstan
didn't move.
- Metlakatla, Alaska observes PST this winter only.
-- Aurelien Jarno <aurel32@debian.org> Sun, 30 Dec 2018 14:11:33 +0100
tzdata (2018g-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following future timestamp:
- Morocco switches to permanent +01 on 2018-10-27.
-- Aurelien Jarno <aurel32@debian.org> Sat, 27 Oct 2018 15:20:17 +0200
tzdata (2018f-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following future timestamp:
- Volgograd moves from +03 to +04 on 2018-10-28.
- Fiji ends DST 2019-01-13, not 2019-01-20.
- Most of Chile changes DST dates, effective 2019-04-06.
-- Aurelien Jarno <aurel32@debian.org> Thu, 18 Oct 2018 21:38:55 +0200
tzdata (2018e-0+deb9u1) stretch; urgency=medium
[ Aurelien Jarno ]
* New upstream version, affecting the following future timestamp:
- North Korea switches back to +09 on 2018-05-05.
-- Aurelien Jarno <aurel32@debian.org> Fri, 04 May 2018 20:22:35 +0200
tzdata (2018d-0+deb9u1) stretch; urgency=medium
* New upstream version.
-- Clint Adams <clint@debian.org> Mon, 26 Mar 2018 18:43:38 -0400
tzdata (2018c-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following past and future timestamps:
- São Tomé and Príncipe switched from +00 to +01 on 2018-01-01 at 01:00.
- Southern Brazil will begin DST on 2018-11-04 instead of 2018-10-21.
* debian/control: Update Vcs-Git and Vcs-Browser fields following the move
to Salsa.
-- Aurelien Jarno <aurel32@debian.org> Sat, 10 Feb 2018 12:43:04 +0100
tzdata (2017c-0+deb9u1) stretch; urgency=medium
* New upstream version, affecting the following future timestamp:
- Northern Cyprus resumed EU rules starting 2017-10-29.
- Namibia will switch from +01 with DST to +02 all year, affecting
UT offsets starting 2018-04-01.
- Sudan will switch from +03 to +02 on 2017-11-01.
- Tonga will not observe DST on 2017-11-05.
- Turks & Caicos will switch from -04 all year to -05 with US DST,
affecting UT offset starting 2018-11-04.
-- Aurelien Jarno <aurel32@debian.org> Wed, 25 Oct 2017 01:22:36 +0200
tzdata (2017b-1) unstable; urgency=medium
[ Aurelien Jarno ]
* New upstream version, affecting the following future timestamp:
- Haiti resumed observance of DST in 2017.
-- Aurelien Jarno <aurel32@debian.org> Thu, 06 Apr 2017 11:31:27 +0200
tzdata (2017a-1) unstable; urgency=medium
[ Aurelien Jarno ]
* New upstream version, affecting the following future timestamp:
- Mongolia no longer observes DST.
- Magallanes region diverges from Santiago starting 2017-05-13,
the America/Punta_Arenas zone has been added.
* Update Dutch debconf translation, by Frans Spiesschaert. Closes:
#849234.
* Update Japanese debconf translation, by victory <victory.deb@gmail.com>.
* Update French debconf translation, by Baptiste Jammet. Closes: #851589.
* Remove /etc/localtime on purge. Closes: #854141.
* Update Danish debconf translation, by Joe Hansen. Closes: #856785.
-- Aurelien Jarno <aurel32@debian.org> Sun, 12 Mar 2017 21:39:11 +0100
tzdata (2016j-2) unstable; urgency=medium
[ Aurelien Jarno ]
* Allow partially translated choices in debconf templates.
* Update Dutch debconf translation, by Frans Spiesschaert. Closes:
#845691.
-- Aurelien Jarno <aurel32@debian.org> Fri, 25 Nov 2016 23:03:59 +0100
tzdata (2016j-1) unstable; urgency=medium
[ Aurelien Jarno ]
* New upstream version, affecting the following future timestamp:
- Saratov, Russia switches from +03 to +04 on 2016-12-04 at 02:00.
* Update templates and translations.
-- Aurelien Jarno <aurel32@debian.org> Thu, 24 Nov 2016 20:54:54 +0100
tzdata (2016i-1) unstable; urgency=high
[ Aurelien Jarno ]
* New upstream version, affecting the following past and future timestamps:
- Pacific/Tongatapu (DST starting on 2016-11-06 at 02:00).
- Northern Cyprus is now +03 year round, the Asia/Famagusta zone has
been added.
- Antarctica/Casey (switched from +08 to +11 on 2016-10-22).
* Update templates and translations.
-- Aurelien Jarno <aurel32@debian.org> Sat, 05 Nov 2016 23:55:01 +0100
tzdata (2016h-1) unstable; urgency=high
[ Aurelien Jarno ]
* New upstream version, affecting the following future timestamp:
- Asia/Gaza and Asia/Hebron (DST ending on 2016-10-29 at 01:00, not
2016-10-21 at 00:00).
* Convert Asia/Rangoon into Asia/Yangon, as the former is now deprecaed.
-- Aurelien Jarno <aurel32@debian.org> Thu, 20 Oct 2016 23:29:12 +0200
tzdata (2016g-1) unstable; urgency=medium
[ Aurelien Jarno ]
* Update Danish debconf translation, by Joe Hansen. Closes: #830591.
* Update German debconf translation, by Holger Wansing. Closes: #835538.
[ Clint Adams ]
* New upstream version.
-- Clint Adams <clint@debian.org> Thu, 22 Sep 2016 16:08:33 -0400
tzdata (2016f-1) unstable; urgency=medium
* New upstream version, affecting the following future time stamp:
- Africa/Cairo (DST starting on 2016-07-07 cancelled).
- Asia/Novosibirsk (on 2016-07-24).
* debian/control: Update Standards-Version to 3.9.8, no changes.
* debian/rules: install NEWS as upstream changelog.
-- Aurelien Jarno <aurel32@debian.org> Tue, 05 Jul 2016 19:35:18 +0200
tzdata (2016e-1) unstable; urgency=medium
* New upstream version, affecting the following future time stamp:
Africa/Cairo
* Update Dutch debconf translation, by Frans Spiesschaert. Closes:
#823442.
-- Aurelien Jarno <aurel32@debian.org> Sun, 26 Jun 2016 14:34:16 +0200
tzdata (2016d-2) unstable; urgency=medium
* Update Japanese debconf translation, by Takuma Yamada. Closes:
#819599.
* Update French debconf translation, by Christian Perrier. Closes:
#819949.
* Update Dutch debconf translation, by Frans Spiesschaert. Closes:
#821439.
-- Aurelien Jarno <aurel32@debian.org> Thu, 21 Apr 2016 13:04:30 +0200
tzdata (2016d-1) unstable; urgency=medium
* New upstream version, affecting the following future time stamps:
- America/Caracas. Closes: #821147.
- Asia/Magadan
- Asia/Tomsk (new timezone).
* Update templates and translations.
-- Aurelien Jarno <aurel32@debian.org> Wed, 20 Apr 2016 20:37:29 +0200
tzdata (2016c-1) unstable; urgency=medium
* New upstream version, affecting the following future time stamps:
- America/Santiago
- Asia/Baku
-- Aurelien Jarno <aurel32@debian.org> Fri, 25 Mar 2016 23:19:01 +0100
tzdata (2016b-1) unstable; urgency=medium
* New upstream version, affecting the following future time stamps:
- America/Port-au-Prince
- Asia/Gaza
- Asia/Hebron
* debian/rules: remove emdebian ifdefs.
* debian/compat, debian/control, debian/rules: rewrite using dh and
debhelper compatibility 9.
* Update French debconf translation, by Christian Perrier. Closes:
#814831.
* Update Japanese debconf translation, by Takuma Yamada. Closes:
#815386.
* Drop the tzdata-java package. Closes: #814073.
* debian/control: Update Standards-Version to 3.9.7, no changes.
-- Aurelien Jarno <aurel32@debian.org> Mon, 14 Mar 2016 21:45:24 +0100
tzdata (2016a-1) unstable; urgency=medium
[ Aurelien Jarno ]
* Add Vcs-Git and Vcs-Browser fields to debian/control.
* New upstream version, affecting the following future time stamps:
- America/Cayman
- Asia/Chita
- Asia Tehran
* Change /etc/localtime into a symlink (closes: #803144)
-- Aurelien Jarno <aurel32@debian.org> Fri, 29 Jan 2016 17:26:32 +0100
tzdata (2015g-1) unstable; urgency=medium
[ Aurelien Jarno ]
* New upstream version, affecting the following future time stamps:
- Fiji
- Fort Nelson, British Columbia
- Norfolk Island
- Turkey (closes: #801172)
-- Aurelien Jarno <aurel32@debian.org> Wed, 07 Oct 2015 15:51:25 +0200
tzdata (2015f-1) unstable; urgency=high
[ Aurelien Jarno ]
* New upstream version, affecting the following future time stamps:
- North Korea switches to +0830 on 2015-08-15.
- Uruguay no longer observes DST.
-- Aurelien Jarno <aurel32@debian.org> Tue, 11 Aug 2015 19:56:35 +0200
tzdata (2015e-1) unstable; urgency=medium
[ Aurelien Jarno ]
* New upstream version:
- DST suspension from 2015-06-14 03:00 through 2015-07-19 02:00 in
Morroco.
* Change the Provides: to tzdata-stretch from tzdata-jessie.
-- Aurelien Jarno <aurel32@debian.org> Tue, 16 Jun 2015 20:38:21 +0200
tzdata (2015d-1) unstable; urgency=medium
[ Adam Conrad ]
* New upstream release with yet another urgent DST change for Egypt.
* Install leap-seconds.list to /usr/share/zoneinfo (Closes: #775166)
[ Aurelien Jarno ]
* Install zone1970.tab. Closes: #782646.
-- Adam Conrad <adconrad@0c3.net> Sun, 26 Apr 2015 23:17:21 +0100
tzdata (2015c-1) unstable; urgency=high
* New upstream release, with an urgent change for Egypt in ten days.
-- Adam Conrad <adconrad@0c3.net> Tue, 14 Apr 2015 08:35:34 -0600
tzdata (2015b-1) unstable; urgency=high
* New upstream release with urgent updates for Mongolia and Palestine.
-- Adam Conrad <adconrad@0c3.net> Sat, 21 Mar 2015 12:25:26 -0600
tzdata (2015a-1) unstable; urgency=medium
* New upstream release.
-- Clint Adams <clint@debian.org> Fri, 30 Jan 2015 21:53:01 -0500
tzdata (2014j-1) unstable; urgency=high
* New upstream release, with an ammendment for a change that was
meant to occur ten days ago for America/Grand_Turk, but didn't.
-- Adam Conrad <adconrad@0c3.net> Wed, 12 Nov 2014 19:37:38 -0700
tzdata (2014i-1) unstable; urgency=critical
* New upstream release with zone changes in 4 days for Belarus.
-- Adam Conrad <adconrad@0c3.net> Wed, 22 Oct 2014 16:31:47 -0600
tzdata (2014h-2) unstable; urgency=medium
[ Debconf translations ]
* Dutch (Frans Spiesscha). Closes: #763458
[ Aurelien Jarno ]
* debian/control: Update Standards-Version to 3.9.6, no changes.
-- Aurelien Jarno <aurel32@debian.org> Tue, 07 Oct 2014 23:41:18 +0200
tzdata (2014h-1) unstable; urgency=medium
* New upstream release.
-- Aurelien Jarno <aurel32@debian.org> Sun, 28 Sep 2014 20:29:16 +0200
tzdata (2014g-1) unstable; urgency=medium
* New upstream release.
-- Adam Conrad <adconrad@0c3.net> Sat, 30 Aug 2014 14:24:21 -0600
tzdata (2014f-1) unstable; urgency=medium
[ Debconf translations ]
* Turkish (Mert Dirik). Closes: #756755
[ Clint Adams ]
* New upstream version.
-- Clint Adams <clint@debian.org> Fri, 08 Aug 2014 11:26:29 -0400
tzdata (2014e-1) unstable; urgency=high
* New upstream release, with more Egypt zone changes in 13 days.
* debian/control: Update our section to match archive overrides.
* debian/control: Update Standards-Version to 3.9.5, no changes.
-- Adam Conrad <adconrad@0c3.net> Fri, 13 Jun 2014 16:02:45 -0600
tzdata (2014d-1) unstable; urgency=medium
* New upstream release.
-- Adam Conrad <adconrad@0c3.net> Thu, 29 May 2014 05:57:38 -0600
tzdata (2014c-1) unstable; urgency=critical
* New upstream release, critical urgency due to Egypt zone
changes happening on May 15th (only two days from now).
-- Adam Conrad <adconrad@0c3.net> Tue, 13 May 2014 10:47:46 -0600
tzdata (2014b-1) unstable; urgency=medium
* New upstream release.
-- Adam Conrad <adconrad@0c3.net> Wed, 02 Apr 2014 01:00:33 -0600
tzdata (2014a-1) unstable; urgency=medium
[ Christian Perrier ]
* Use umlaut in French translation of "Büsingen"
[ Clint Adams ]
* New upstream version.
- New DST for Chile. closes: #741265.
-- Clint Adams <clint@debian.org> Mon, 10 Mar 2014 10:54:28 -0400
tzdata (2013i-1) unstable; urgency=medium
* New upstream release.
* Remove solar87, solar88 and solar89 from the list of timezones, as
they have been removed upstream.
-- Aurelien Jarno <aurel32@debian.org> Tue, 24 Dec 2013 22:56:13 +0100
tzdata (2013h-2) unstable; urgency=medium
* Switch to default-jre-headless (closes: #732233)
* Add myself to uploaders.
-- Adam Conrad <adconrad@0c3.net> Mon, 16 Dec 2013 02:20:13 -0700
tzdata (2013h-1) unstable; urgency=low
* New upstream version.
-- Aurelien Jarno <aurel32@debian.org> Fri, 29 Nov 2013 18:50:05 +0100
tzdata (2013d-1) unstable; urgency=low
* New upstream version.
-- Clint Adams <clint@debian.org> Sat, 27 Jul 2013 12:26:36 -0400
tzdata (2013c-2) unstable; urgency=low
* Use rdfind + symlinks instead of fdupes + handcoded shell script to
get rid of hardlinks.
* Provides: tzdata-jessie instead of tzdata-wheezy.
* debian/rules: use dh_prep instead of dh_clean -k.
-- Aurelien Jarno <aurel32@debian.org> Wed, 22 May 2013 06:29:13 +0200
tzdata (2013c-1) experimental; urgency=low
* New upstream version.
-- Clint Adams <clint@debian.org> Fri, 03 May 2013 00:02:25 -0400
tzdata (2013b-2) unstable; urgency=low
[ Debconf translations ]
* French (Christian Perrier).
* Danish (Joe Hansen). closes: #703059.
* German (Holger Wansing). closes: #703069.
* Japanese (Kenshi Muto). closes: #703018.
* Portuguese (Miguel Figueiredo). closes: #703066.
* Hebrew (Omer Zak).
* Brazilian Portuguese (Marcelo Gomes de Santana). Closes: #703167
* Russian (Yuri Kozlov). Closes: #703223
* Italian (Francesca Ciceri). Closes: #703243
* Basque (Iñaki Larrañaga Murgoitio). Closes: #703304
* Swedish (Martin Bagge / brother). Closes: #703398
* Czech (Miroslav Kure). Closes: #703532
* Galician (Jorge Barreiro). Closes: #703576
* Spanish; (Matías Bellone). Closes: #703966
* Hungarian (Dr. Nagy Elemér Károly).
-- Clint Adams <clint@debian.org> Thu, 28 Mar 2013 00:11:48 -0400
tzdata (2013b-1) unstable; urgency=low
* New upstream release.
* Update English translations.
-- Clint Adams <clint@debian.org> Mon, 11 Mar 2013 19:05:55 -0400
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
|