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
|
libdatetime-timezone-perl (1:2.09-1+2019c) stretch; urgency=medium
* Update to Olson database version 2019c.
This update contains contemporary changes for Fiji and Norfolk Island.
-- gregor herrmann <gregoa@debian.org> Sat, 14 Sep 2019 16:09:21 +0200
libdatetime-timezone-perl (1:2.09-1+2019b) stretch; urgency=medium
* Update to Olson database version 2019b.
This update contains contemporary changes for Brazil and Palestine.
-- gregor herrmann <gregoa@debian.org> Tue, 09 Jul 2019 17:45:44 +0200
libdatetime-timezone-perl (1:2.09-1+2019a) stretch; urgency=medium
* Update to Olson database version 2019a.
This update contains contemporary changes for Palestine and Metlakatla.
-- gregor herrmann <gregoa@debian.org> Tue, 26 Mar 2019 18:22:03 +0100
libdatetime-timezone-perl (1:2.09-1+2018i) stretch; urgency=medium
* Update to Olson database version 2018i.
This update contains contemporary changes for São Tomé and Príncipe.
-- gregor herrmann <gregoa@debian.org> Mon, 31 Dec 2018 16:38:55 +0100
libdatetime-timezone-perl (1:2.09-1+2018h) stretch; urgency=medium
* Update to Olson database version 2018h.
This update contains contemporary changes for Kazakhstan, Alaska, Morocco,
and Iran.
-- gregor herrmann <gregoa@debian.org> Sun, 30 Dec 2018 17:40:45 +0100
libdatetime-timezone-perl (1:2.09-1+2018g) stretch; urgency=medium
* Update to Olson database version 2018g.
This update contains contemporary changes for Morocco.
-- gregor herrmann <gregoa@debian.org> Sat, 27 Oct 2018 15:44:52 +0200
libdatetime-timezone-perl (1:2.09-1+2018f) stretch; urgency=medium
* Update to Olson database version 2018f.
This update contains contemporary changes for Russia (Volograd), Fiji, and
Chile.
-- gregor herrmann <gregoa@debian.org> Thu, 18 Oct 2018 23:52:22 +0200
libdatetime-timezone-perl (1:2.09-1+2018e) stretch; urgency=medium
* Update to Olson database version 2018e.
This update contains contemporary changes for North Korea.
-- gregor herrmann <gregoa@debian.org> Fri, 04 May 2018 18:50:12 +0200
libdatetime-timezone-perl (1:2.09-1+2018d) stretch; urgency=medium
* Update to Olson database version 2018d.
This update contains contemporary changes for Palestine and Casey Station.
-- gregor herrmann <gregoa@debian.org> Fri, 30 Mar 2018 14:41:11 +0200
libdatetime-timezone-perl (1:2.09-1+2018b) stretch; urgency=medium
* Update to Olson database version 2018b.
This update contains contemporary changes for São Tomé and Príncipe,
Brazil, and Ireland.
-- gregor herrmann <gregoa@debian.org> Sat, 10 Feb 2018 15:01:05 +0100
libdatetime-timezone-perl (1:2.09-1+2017c) stretch; urgency=medium
* Update to Olson database version 2017c.
This update contains contemporary changes for Northern Cyprus, Fiji,
Namibia, Sudan, Tonga, and Turks & Caicos.
-- gregor herrmann <gregoa@debian.org> Tue, 24 Oct 2017 16:32:02 +0200
libdatetime-timezone-perl (1:2.09-1+2017b) unstable; urgency=medium
* Update to Olson database version 2017b.
This update contains contemporary changes for Haiti.
-- gregor herrmann <gregoa@debian.org> Fri, 24 Mar 2017 20:02:23 +0100
libdatetime-timezone-perl (1:2.09-1+2017a) unstable; urgency=medium
* Update to Olson database version 2017a.
This update contains contemporary changes for Mongolia and Chile.
* Update helper script debian/tools/update-tzdata.sh to match how the
timezone data files look since 2.07. Previously we added a separate
version for each module but this version is gone now. Drop the routine
from our manually invoked helper script.
-- gregor herrmann <gregoa@debian.org> Fri, 03 Mar 2017 00:24:02 +0100
libdatetime-timezone-perl (1:2.09-1+2016j) unstable; urgency=medium
* Import upstream version 2.09.
Based on version 2016j of the Olson database.
Includes contemporary changes for Russia (Europe/Saratov).
-- gregor herrmann <gregoa@debian.org> Thu, 24 Nov 2016 19:11:06 +0100
libdatetime-timezone-perl (1:2.08-1+2016i) unstable; urgency=medium
* Import upstream version 2.08.
* Update debian/upstream/metadata.
-- gregor herrmann <gregoa@debian.org> Thu, 17 Nov 2016 23:02:19 +0100
libdatetime-timezone-perl (1:2.07-1+2016i) unstable; urgency=medium
* Import upstream version 2.07.
Based on version 2016i of the Olson database.
* Update debian/upstream/metadata.
* Update (build) dependencies.
* Drop patches, this release contains the current Olson datebase data.
* Add debian/tests/pkg-perl/syntax-skip.
-- gregor herrmann <gregoa@debian.org> Fri, 04 Nov 2016 15:20:52 +0100
libdatetime-timezone-perl (1:2.01-1+2016h) unstable; urgency=high
* Update to Olson DB 2016h.
This includes contemporary changes for Palestine.
* Set urgency to high, the changes are effective in 2.5 hours from now.
-- gregor herrmann <gregoa@debian.org> Thu, 20 Oct 2016 23:25:17 +0200
libdatetime-timezone-perl (1:2.01-1+2016g) unstable; urgency=medium
* Remove Jonathan Yu from Uploaders. Thanks for your work!
* Update to Olson DB 2016g.
This includes contemporary changes for Turkey.
-- gregor herrmann <gregoa@debian.org> Sun, 25 Sep 2016 23:29:51 +0200
libdatetime-timezone-perl (1:2.01-1+2016f) unstable; urgency=medium
* Import upstream version 2.01.
Based on version 2016f of the Olson database.
* Drop patches which brought the package to newer Olson database
releases. 2016e and 2016f are now included.
-- gregor herrmann <gregoa@debian.org> Mon, 18 Jul 2016 02:44:00 +0200
libdatetime-timezone-perl (1:2.00-1+2016f) unstable; urgency=high
* Update to Olson db version 2016f via a quilt patch. This release
contains contemporary changes for Africa/Cairo and Asia/Novosibirsk.
* Set urgency to high, the changes in Egypt are effective two days from now.
-- gregor herrmann <gregoa@debian.org> Tue, 05 Jul 2016 18:20:21 +0200
libdatetime-timezone-perl (1:2.00-1+2016e) unstable; urgency=medium
* Update to Olson db version 2016e via a quilt patch. This release
contains contemporary changes for Africa/Cairo.
-- gregor herrmann <gregoa@debian.org> Sun, 26 Jun 2016 11:57:46 +0200
libdatetime-timezone-perl (1:2.00-1+2016d) unstable; urgency=medium
* Import upstream version 2.00.
-- gregor herrmann <gregoa@debian.org> Wed, 08 Jun 2016 16:36:10 +0200
libdatetime-timezone-perl (1:1.99-1+2016d) unstable; urgency=medium
* debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
* debian/upstream/metadata: change GitHub/CPAN URL(s) to HTTPS.
* Import upstream version 1.99.
-- gregor herrmann <gregoa@debian.org> Tue, 07 Jun 2016 16:49:16 +0200
libdatetime-timezone-perl (1:1.98-1+2016d) unstable; urgency=high
* Import upstream version 1.98.
Based on version 2016d of the Olson database. This release includes
contemporary changes for Russia and Venezuela.
* Set urgency to high since one change is already in effect.
* Drop alternative Test::More build dependency. The version in oldstable
is new enough.
* Declare compliance with Debian Policy 3.9.8.
-- gregor herrmann <gregoa@debian.org> Thu, 28 Apr 2016 12:34:45 +0200
libdatetime-timezone-perl (1:1.97-1+2016c) unstable; urgency=high
* Import upstream version 1.97.
Based on version 2016c of the Olson database. This release includes
contemporary changes for Azerbaijan and Chile.
* Set urgency to high because of the imminent changes for Asia/Baku
(this weekend).
* Install new CONTRIBUTING.md file.
-- gregor herrmann <gregoa@debian.org> Thu, 24 Mar 2016 20:11:21 +0100
libdatetime-timezone-perl (1:1.96-1+2016b) unstable; urgency=medium
* Import upstream version 1.96.
Based on version 2016b of the Olson database. This release includes
contemporary changes for Russia, Haiti, and Palestine.
* Fix spelling of Chita in the previous changelog entry.
Thanks to Stepan Golosunov for the bug report.
(Closes: #813631)
-- gregor herrmann <gregoa@debian.org> Thu, 17 Mar 2016 20:09:08 +0100
libdatetime-timezone-perl (1:1.95-1+2016a) unstable; urgency=medium
[ Salvatore Bonaccorso ]
* debian/control: Use HTTPS transport protocol for Vcs-Git URI
[ gregor herrmann ]
* Import upstream version 1.95.
Based on version 2016a of the Olson database. This release includes
contemporary changes for the Cayman Islands, Iran, and Chita, Russia.
* Update years of upstream and packaging copyright.
* Declare compliance with Debian Policy 3.9.7.
-- gregor herrmann <gregoa@debian.org> Wed, 03 Feb 2016 18:43:44 +0100
libdatetime-timezone-perl (1:1.94-1+2015g) unstable; urgency=high
* Import upstream version 1.94.
Based on version 2015g of the Olson database. This release includes
contemporary changes for Turkey, Norfolk, Fiji, and Fort Nelson.
* Set urgency to high, one change is already in effect.
* Bump debhelper compatibility level to 9.
-- gregor herrmann <gregoa@debian.org> Sat, 24 Oct 2015 15:14:45 +0200
libdatetime-timezone-perl (1:1.93-1+2015f) unstable; urgency=high
* Import upstream version 1.92.
* Import upstream version 1.93.
Based on version 2015f of the Olson database. This release includes
contemporary changes for Moldova, North Korea, and Uruguay.
* Set urgency to high, changes are effective the coming weekend.
* Update (build) dependencies.
-- gregor herrmann <gregoa@debian.org> Tue, 11 Aug 2015 11:05:42 +0200
libdatetime-timezone-perl (1:1.91-1+2015e) unstable; urgency=high
* Import upstream version 1.91.
Based on version 2015e of the Olson database; contains contemporary
changes for Morocco.
* Set urgency to high, changes are effective this weekend.
-- gregor herrmann <gregoa@debian.org> Sun, 14 Jun 2015 01:19:03 +0200
libdatetime-timezone-perl (1:1.90-1) unstable; urgency=medium
* Import upstream version 1.90.
Only a change in the test suite.
-- gregor herrmann <gregoa@debian.org> Thu, 21 May 2015 19:34:27 +0200
libdatetime-timezone-perl (1:1.89-1+2015d) unstable; urgency=medium
* Import upstream version 1.89.
* Drop android-syntax.patch, fixed upstream.
-- gregor herrmann <gregoa@debian.org> Thu, 14 May 2015 21:49:04 +0200
libdatetime-timezone-perl (1:1.88-1+2015d) unstable; urgency=high
* Import upstream version 1.88.
Based on version 2015d of the Olson database; contains contemporary
changes for Egypt.
* Update build and runtime dependencies.
* Drop patches. They were updates of the Olson database and are not
needed now that we are back to using new upstream releases.
* Update years of upstream and packaging copyright.
* debian/rules: drop override_dh_auto_install. The files we removed are
not included in the upstream release anymore.
* Add patch to fix syntax errors in DateTime/TimeZone/Local/Android.pm.
* Set urgency to high due to the imminent changes.
-- gregor herrmann <gregoa@debian.org> Wed, 29 Apr 2015 21:16:48 +0200
libdatetime-timezone-perl (1:1.75-2+2015c) unstable; urgency=medium
* Update to Olson database version 2015c.
Add patch debian/patches olson-2015c, which updates the timezone *.pm
files, using upstream's tools/parse_olson script.
This update contains contemporary changes for Egypt.
-- gregor herrmann <gregoa@debian.org> Tue, 14 Apr 2015 18:49:09 +0200
libdatetime-timezone-perl (1:1.75-2+2015b) unstable; urgency=medium
* Update to Olson database version 2015b.
Add patch debian/patches/olson-2015b, which updates the timezone *.pm
files, using upstream's tools/parse_olson script.
This update includes contemporary changes for Mongolia and Palestine which
will be effective on the last Saturday in March 2015.
-- gregor herrmann <gregoa@debian.org> Sat, 21 Mar 2015 17:36:52 +0100
libdatetime-timezone-perl (1:1.75-2+2015a) unstable; urgency=high
* Update to Olson database version 2015a.
Add patch debian/patches/olson-2015a, which updates the timezone *.pm
files, using upstream's tools/parse_olson script.
* Set urgency to high.
A change for America/Cancun becomes effective today.
-- gregor herrmann <gregoa@debian.org> Sun, 01 Feb 2015 17:15:22 +0100
libdatetime-timezone-perl (1:1.75-2+2014j) unstable; urgency=high
* Update to Olson database version 2014j.
Add patch debian/patches/olson-2014j, which updates the timezone *.pm
files, using upstream's tools/parse_olson script.
* Set urgency to high.
A change planned for America/Grand_Turk on 2014-11-02 at 02:00
was cancelled.
-- gregor herrmann <gregoa@debian.org> Thu, 13 Nov 2014 15:16:50 +0100
libdatetime-timezone-perl (1:1.75-2+2014i) unstable; urgency=high
* debian/tools/update-tzdata.sh:
- fix URLs
- change logic when the Debian db version differs from the upstream db
version: propose to continue with the latter
- add $DateTime::TimeZone::*::VERSION to created files
* Update to Olson database version 2014i.
* Set urgency to high, Belarus changes its time zone abbreviation on
2014-10-26 at 01:00.
-- gregor herrmann <gregoa@debian.org> Sat, 25 Oct 2014 21:14:17 +0200
libdatetime-timezone-perl (1:1.75-1+2014h) unstable; urgency=medium
* Imported upstream version 1.75.
Based on version 2014h of the Olson database; only changes to historical
data.
* Drop debian/tests/control, add Testsuite field to debian/control
instead.
* Declare compliance with Debian Policy 3.9.6.
-- gregor herrmann <gregoa@debian.org> Wed, 01 Oct 2014 17:52:54 +0200
libdatetime-timezone-perl (1:1.74-3+2014g) unstable; urgency=medium
* Move libdatetime-perl from Depends to Recommends to avoid a circular
dependency.
-- gregor herrmann <gregoa@debian.org> Sat, 13 Sep 2014 00:51:16 +0200
libdatetime-timezone-perl (1:1.74-2+2014g) unstable; urgency=medium
* debian/tests/control: add stanza for new runtime-deps-and-recommends
tests.
* Add libdatetime-perl to Depends.
-- gregor herrmann <gregoa@debian.org> Fri, 12 Sep 2014 16:36:46 +0200
libdatetime-timezone-perl (1:1.74-1+2014g) unstable; urgency=medium
[ Salvatore Bonaccorso ]
* Update Vcs-Browser URL to cgit web frontend
[ gregor herrmann ]
* Add debian/upstream/metadata
* New upstream release, based on version 2014g of the Olson database.
* Add autopkgtest control file.
-- gregor herrmann <gregoa@debian.org> Sun, 07 Sep 2014 14:20:17 +0200
libdatetime-timezone-perl (1:1.73-1+2014f) unstable; urgency=medium
* New upstream release, based on version 2014f of the Olson database.
-- gregor herrmann <gregoa@debian.org> Sat, 09 Aug 2014 16:09:23 +0200
libdatetime-timezone-perl (1:1.72-1+2014e) unstable; urgency=medium
* New upstream release.
-- gregor herrmann <gregoa@debian.org> Mon, 04 Aug 2014 00:29:07 +0200
libdatetime-timezone-perl (1:1.71-1+2014e) unstable; urgency=high
* New upstream release, based on version 2014e of the Olson database.
* Add (build) dependency on liblist-allutils-perl.
* Set urgency to high due to imminent changes.
-- gregor herrmann <gregoa@debian.org> Sun, 22 Jun 2014 10:18:06 +0200
libdatetime-timezone-perl (1:1.70-1+2014d) unstable; urgency=medium
* New upstream release, based on version 2014d of the Olson database.
No actual changes to the timezone data.
-- gregor herrmann <gregoa@debian.org> Mon, 02 Jun 2014 01:29:34 +0200
libdatetime-timezone-perl (1:1.69-1+2014c) unstable; urgency=high
* New upstream release, based on version 2014c of the Olson database.
* Add build-dependency on libtest-taint-perl. Enables another test.
* Set urgency to high, changes to Africa/Cairo are effective tomorrow.
-- gregor herrmann <gregoa@debian.org> Wed, 14 May 2014 17:32:14 +0200
libdatetime-timezone-perl (1:1.65-1+2014a) unstable; urgency=medium
* debian/control: remove Nicholas Bamber from Uploaders on request of
the MIA team.
* Strip trailing slash from metacpan URLs.
* New upstream release, based on version 2014a of the Olson database.
-- gregor herrmann <gregoa@debian.org> Mon, 10 Mar 2014 17:11:27 +0100
libdatetime-timezone-perl (1:1.64-1+2013h) unstable; urgency=medium
* Drop xz compression for {binary,source} package, set by default by
dpkg since 1.17.{0,6}.
* New upstream release.
Fixes "DateTime::TimeZone::Local malfunctions under taint mode
(perl -T)" (Closes: #737265)
* Update years of copyright.
* Add new build dependencies.
-- gregor herrmann <gregoa@debian.org> Fri, 14 Feb 2014 22:15:34 +0100
libdatetime-timezone-perl (1:1.63-1+2013h) unstable; urgency=low
* New upstream release, based on version 2013h of the Olson database.
* Declare compliance with Debian Policy 3.9.5.
-- gregor herrmann <gregoa@debian.org> Mon, 28 Oct 2013 19:20:50 +0100
libdatetime-timezone-perl (1:1.62-1+2013f) unstable; urgency=low
* New upstream release, based on version 2013f of the Olson database.
* Remove unversioned "perl" from Depends.
* debian/control: drop Pre-Depends on old dpkg version.
-- gregor herrmann <gregoa@debian.org> Mon, 30 Sep 2013 15:36:15 +0200
libdatetime-timezone-perl (1:1.60-1+2013d) unstable; urgency=low
* New upstream release, based on version 2013d of the Olson database.
-- gregor herrmann <gregoa@debian.org> Mon, 08 Jul 2013 19:51:28 +0200
libdatetime-timezone-perl (1:1.59-1+2013c) unstable; urgency=low
[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs
[ gregor herrmann ]
* New upstream release, based on version 2013c of the Olson database.
* Set Standards-Version to 3.9.4 (no changes).
-- gregor herrmann <gregoa@debian.org> Sat, 11 May 2013 22:11:15 +0200
libdatetime-timezone-perl (1:1.58-1+2013b) unstable; urgency=low
* New upstream release, based on version 2013b of the Olson database.
-- gregor herrmann <gregoa@debian.org> Tue, 12 Mar 2013 16:44:46 +0100
libdatetime-timezone-perl (1:1.57-1+2013a) unstable; urgency=low
* New upstream release, based on version 2013a of the Olson database.
* debian/copyright: update years of upstream and packaging copyright.
-- gregor herrmann <gregoa@debian.org> Mon, 04 Mar 2013 18:31:17 +0100
libdatetime-timezone-perl (1:1.56-1+2012j) unstable; urgency=low
* New upstream release, based on version 2012j of the Olson database.
-- gregor herrmann <gregoa@debian.org> Sun, 02 Dec 2012 15:11:59 +0100
libdatetime-timezone-perl (1:1.53-1+2012i) unstable; urgency=low
* New upstream release, based on version 2012i of the Olson database.
-- gregor herrmann <gregoa@debian.org> Wed, 07 Nov 2012 18:00:41 +0100
libdatetime-timezone-perl (1:1.51-1+2012g) unstable; urgency=low
* New upstream release, based on version 2012g of the Olson database.
-- gregor herrmann <gregoa@debian.org> Fri, 19 Oct 2012 02:46:13 +0200
libdatetime-timezone-perl (1:1.49-1+2012f) unstable; urgency=low
* New upstream release, based on version 2012f of the Olson database.
-- gregor herrmann <gregoa@debian.org> Fri, 14 Sep 2012 13:12:04 +0200
libdatetime-timezone-perl (1:1.48-1+2012e) unstable; urgency=low
* New upstream release, based on version 2012e of the Olson database.
-- gregor herrmann <gregoa@debian.org> Sat, 18 Aug 2012 14:13:30 +0200
libdatetime-timezone-perl (1:1.47-1+2012d) unstable; urgency=low
* debian/control: update {versioned,alternative} (build) dependencies.
* New upstream release, based on version 2012d of the Olson database.
-- gregor herrmann <gregoa@debian.org> Mon, 30 Jul 2012 22:59:13 +0200
libdatetime-timezone-perl (1:1.46-1+2012c) unstable; urgency=low
* New upstream release, based on version 2012c of the Olson database.
-- gregor herrmann <gregoa@debian.org> Thu, 05 Apr 2012 19:06:19 +0200
libdatetime-timezone-perl (1:1.45-1+2012b) unstable; urgency=low
* New upstream release, based on version 2012b of the Olson database.
-- gregor herrmann <gregoa@debian.org> Fri, 09 Mar 2012 19:12:37 +0100
libdatetime-timezone-perl (1:1.43-1+2012a) unstable; urgency=low
* New upstream release, based on version 2012a of the Olson database.
* Add a Pre-Depends on dpkg (>= 1.15.6~) for the xz compression.
* Update years of upstream and packaging copyright.
* Update debian/copyright to copyright-format 1.0.
* Bump Standards-Version to 3.9.3 (no changes).
-- gregor herrmann <gregoa@debian.org> Fri, 02 Mar 2012 14:59:25 +0100
libdatetime-timezone-perl (1:1.42-1+2011n) unstable; urgency=low
* New upstream release, based on version 2011n of the Olson database.
* Remove 2011n.patch.
-- gregor herrmann <gregoa@debian.org> Thu, 10 Nov 2011 20:26:50 +0100
libdatetime-timezone-perl (1:1.41-2+2011m) unstable; urgency=high
[ Ansgar Burchardt ]
* Use XZ compression for source and binary packages.
[ gregor herrmann ]
* 2011n.patch: backport changes to America/Havana, Pacific/Fiji,
Europe/Tiraspol.
* Set urgency to high, some changes are already effective.
-- gregor herrmann <gregoa@debian.org> Tue, 01 Nov 2011 15:59:06 +0100
libdatetime-timezone-perl (1:1.41-1+2011m) unstable; urgency=high
* New upstream release, based on version 2011m of the Olson database.
* Remove bahia.patch.
* Set urgency to high, some DST changes will be effective on the next
weekend.
-- gregor herrmann <gregoa@debian.org> Tue, 25 Oct 2011 13:58:29 +0200
libdatetime-timezone-perl (1:1.40-2+2011l) unstable; urgency=low
* Add patch bahia.patch: add DST for America/Bahia (cf. #645638). Taken
from bahia.patch in the tzdata package.
* Update URL of Olson database in several places.
* Update debian/README.source.
-- gregor herrmann <gregoa@debian.org> Tue, 18 Oct 2011 17:06:11 +0200
libdatetime-timezone-perl (1:1.40-1+2011l) unstable; urgency=low
* New upstream release, based on version 2011l of the Olson database.
* Update host in debian/tools/update-tzdata.sh script.
-- gregor herrmann <gregoa@debian.org> Sat, 15 Oct 2011 20:40:38 +0200
libdatetime-timezone-perl (1:1.39-1+2001k) unstable; urgency=low
* New upstream release, based on version 2011k of the Olson database.
-- gregor herrmann <gregoa@debian.org> Tue, 27 Sep 2011 16:48:56 +0200
libdatetime-timezone-perl (1:1.37-1+2011j) unstable; urgency=low
* New upstream release, based on version 2011j of the Olson database.
-- gregor herrmann <gregoa@debian.org> Wed, 14 Sep 2011 17:20:56 +0200
libdatetime-timezone-perl (1:1.36-1+2011i) unstable; urgency=low
[ Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.
* Remove Piotr Roszatycki <dexter@debian.org> from Uploaders.
(Closes: #636742)
[ Salvatore Bonaccorso ]
* debian/copyright: Replace DEP5 Format-Specification URL from
svn.debian.org to anonscm.debian.org URL.
[ gregor herrmann ]
* New upstream release, based on version 2011i of the Olson database.
* Simplify debian/rules a bit.
* Bump debhelper compatibility level to 8.
-- gregor herrmann <gregoa@debian.org> Tue, 30 Aug 2011 18:46:19 +0200
libdatetime-timezone-perl (1:1.35-1+2011h) unstable; urgency=low
* New upstream release, based on version 2011h of the Olson database.
-- Nicholas Bamber <nicholas@periapt.co.uk> Mon, 04 Jul 2011 13:42:17 +0100
libdatetime-timezone-perl (1:1.34-1+2011g) unstable; urgency=low
* New upstream release, based on version 2011g of the Olson database.
* Raised standards version to 3.9.2
-- Nicholas Bamber <nicholas@periapt.co.uk> Tue, 26 Apr 2011 19:01:46 +0100
libdatetime-timezone-perl (1:1.33-1+2011f) unstable; urgency=low
* New upstream release, based on version 2011f of the Olson database.
-- Nicholas Bamber <nicholas@periapt.co.uk> Tue, 12 Apr 2011 08:49:29 +0100
libdatetime-timezone-perl (1:1.32-1+2011e) unstable; urgency=low
* New upstream release, based on version 2011e of the Olson database.
-- Nicholas Bamber <nicholas@periapt.co.uk> Sat, 02 Apr 2011 16:09:28 +0100
libdatetime-timezone-perl (1:1.30-1+2011d) unstable; urgency=low
* New upstream release, based on version 2011d of the Olson database.
* Remove upstream version mangle (haven't had a four-digit version
number for a long time)
-- Jonathan Yu <jawnsy@cpan.org> Mon, 14 Mar 2011 21:07:20 -0400
libdatetime-timezone-perl (1:1.29-1+2011c) unstable; urgency=low
* Added myself to Uploaders
* New upstream release, based on version 2011c of the Olson database
(according to the files, and contrary to the upstream Changes file)
* Removed DateTime::TimeZone::Local::Win32.pm as it does not do anything
on Linux and was causing lintian errors because of a long line
* Renamed README.NMU to README.source and rewrote it and tweaked prepare rule
* Updated copyright
* Removed debian/tzdata directory
-- Nicholas Bamber <nicholas@periapt.co.uk> Wed, 09 Mar 2011 13:42:44 +0000
libdatetime-timezone-perl (1:1.28-1+2011b) unstable; urgency=low
* New upstream release, based on version 2011b of the Olson database.
+ No longer requires Module::Build to install
* Refresh copyright information
-- Jonathan Yu <jawnsy@cpan.org> Fri, 18 Feb 2011 22:00:06 -0500
libdatetime-timezone-perl (1:1.27-1+2011a) unstable; urgency=low
* Change priority to optional so other optional packages can depend on us
(e.g. bugzilla3) (closes: #603582).
* New upstream release, based on version 2011a of the Olson database.
* debian/copyright: update year of upstream and packaging copyright.
* debian/control: add newer libmodule-build-perl to Build-Depends; add
(build) dependency on parent and Class::Load.
* Update lintian override.
-- gregor herrmann <gregoa@debian.org> Thu, 10 Feb 2011 22:44:40 +0100
libdatetime-timezone-perl (1:1.23-1+2010n) unstable; urgency=low
* New upstream release, based on version 2010n of the Olson database.
* Add myself to Uploaders.
-- Ansgar Burchardt <ansgar@debian.org> Thu, 28 Oct 2010 12:47:53 +0200
libdatetime-timezone-perl (1:1.22-1+2010m) unstable; urgency=low
* New upstream release, based on version 2010m of the Olson database.
* Update license stanzas in debian/copyright.
-- gregor herrmann <gregoa@debian.org> Tue, 28 Sep 2010 23:24:57 +0200
libdatetime-timezone-perl (1:1.21-1+2010l) unstable; urgency=low
* New upstream release, based on version 2010l of the Olson database.
-- gregor herrmann <gregoa@debian.org> Sat, 21 Aug 2010 18:34:59 +0200
libdatetime-timezone-perl (1:1.20-1+2010k) unstable; urgency=low
* New upstream release, based on version 2010k of the Olson database.
* debian/copyright: minor updates.
* Set Standards-Version to 3.9.1 (no changes).
-- gregor herrmann <gregoa@debian.org> Wed, 28 Jul 2010 13:52:26 -0400
libdatetime-timezone-perl (1:1.19-1+2010j) unstable; urgency=low
[ Jonathan Yu ]
* New upstream release, based on version 2010j of the Olson database.
[ gregor herrmann ]
* Add build dependency on Test::More 0.88.
-- Jonathan Yu <jawnsy@cpan.org> Thu, 13 May 2010 18:36:35 -0400
libdatetime-timezone-perl (1:1.18-1+2010i) unstable; urgency=low
* New upstream release, based on version 2010i of the Olson database.
-- Jonathan Yu <jawnsy@cpan.org> Tue, 20 Apr 2010 13:53:01 -0400
libdatetime-timezone-perl (1:1.17-1+2010h) unstable; urgency=low
* New upstream release.
-- gregor herrmann <gregoa@debian.org> Fri, 16 Apr 2010 21:11:31 +0200
libdatetime-timezone-perl (1:1.16-1+2010h) unstable; urgency=low
* New upstream release, based on version 2010h of the Olson database
-- Jonathan Yu <jawnsy@cpan.org> Tue, 06 Apr 2010 16:37:13 -0400
libdatetime-timezone-perl (1:1.15-1+2010g) unstable; urgency=low
* New upstream release, based on version 2010g of the Olson database.
* Remove build dependency on libtest-pod-perl and libfile-find-rule-perl.
* Convert to source format 3.0 (quilt).
* debian/rules: remove test override.
-- gregor herrmann <gregoa@debian.org> Tue, 30 Mar 2010 00:29:44 +0200
libdatetime-timezone-perl (1:1.14-1+2010f) unstable; urgency=low
* New upstream release, based on version 2010f of the Olson database
(according to the files, and contrary to the upstream Changes file).
* Get latest Olson database, patch debian/tzdata/europe to fix
Russian timezones (cf. #574919).
-- gregor herrmann <gregoa@debian.org> Tue, 23 Mar 2010 17:37:58 +0100
libdatetime-timezone-perl (1:1.13-1+2010e) unstable; urgency=low
* New upstream release, based on version 2010e of the Olson database
* Rewrite short description
* Use an override for dh_auto_test
-- Jonathan Yu <jawnsy@cpan.org> Tue, 09 Mar 2010 10:46:16 -0500
libdatetime-timezone-perl (1:1.11-1+2010c) unstable; urgency=low
* New upstream release, based on version 2010c of the Olson database
(according to the files, and contrary to the upstream Changes file).
* Set Standards-Version to 3.8.4 (no changes).
* Add a new lintian override for a spelling correction proposal.
-- gregor herrmann <gregoa@debian.org> Tue, 02 Mar 2010 20:38:30 +0100
libdatetime-timezone-perl (1:1.10-1+2010b) unstable; urgency=low
* New upstream release, based on version 2010b of the Olson database
-- Jonathan Yu <jawnsy@cpan.org> Tue, 26 Jan 2010 20:51:36 -0500
libdatetime-timezone-perl (1:1.09-1+2010a) unstable; urgency=low
* New upstream release, based on version 2010a of the Olson database
* Update to new DEP5 copyright format
-- Jonathan Yu <jawnsy@cpan.org> Mon, 18 Jan 2010 15:49:36 -0500
libdatetime-timezone-perl (1:1.08-1+2009u) unstable; urgency=low
* New upstream release, based on version 2009u of the Olson database
-- Jonathan Yu <jawnsy@cpan.org> Mon, 28 Dec 2009 15:00:32 -0500
libdatetime-timezone-perl (1:1.05-1+2009s) unstable; urgency=low
* New upstream release, based on version 2009s of the Olson database
-- Jonathan Yu <jawnsy@cpan.org> Mon, 16 Nov 2009 21:24:05 -0500
libdatetime-timezone-perl (1:1.04-1+2009r) unstable; urgency=low
* New upstream release, based on version 2009r of the Olson database
-- Jonathan Yu <jawnsy@cpan.org> Tue, 10 Nov 2009 07:31:10 -0500
libdatetime-timezone-perl (1:1.03-1+2009q) unstable; urgency=low
* New upstream release, based on version 2009q of the Olson database
-- Jonathan Yu <jawnsy@cpan.org> Tue, 03 Nov 2009 15:47:53 -0500
libdatetime-timezone-perl (1:1.01-1+2009o) unstable; urgency=low
* New upstream release, based on version 2009o of the Olson database
-- Jonathan Yu <jawnsy@cpan.org> Tue, 20 Oct 2009 13:52:24 -0400
libdatetime-timezone-perl (1:0.99-2+2009n) unstable; urgency=low
* Get latest Olson database, patch debian/tzdata/southamerica to fix
Argentina's DST so that it doesn't change next Sunday, recreate
lib/DateTime/TimeZone/America/Argentina/*; patch from Margarita Manterola
grabbed from tzdata (cf. #551195).
* debian/copyright: add information about debian/tzdata/*.
-- gregor herrmann <gregoa@debian.org> Sat, 17 Oct 2009 14:31:58 +0200
libdatetime-timezone-perl (1:0.99-1+2009n) unstable; urgency=low
* New upstream release, based on version 2009n of the Olson database
-- Jonathan Yu <jawnsy@cpan.org> Wed, 30 Sep 2009 04:58:26 -0400
libdatetime-timezone-perl (1:0.98-1+2009m) unstable; urgency=low
* New upstream release, based on version 2009m of the Olson database
* Add myself to Uploaders and Copyright
* Clean up control description
* Refreshed copyright information from changelog trailers
-- Jonathan Yu <jawnsy@cpan.org> Mon, 21 Sep 2009 12:12:05 -0400
libdatetime-timezone-perl (1:0.96-1+2009l) unstable; urgency=low
* New upstream release, based on version 2009l of the Olson database.
* Set Standards-Version to 3.8.3 (no changes).
-- gregor herrmann <gregoa@debian.org> Thu, 20 Aug 2009 21:26:23 +0200
libdatetime-timezone-perl (1:0.93-1+2009j) unstable; urgency=low
[ Nathan Handler ]
* debian/watch: Update to ignore development releases.
[ gregor herrmann ]
* New upstream release, based on version 2009j of the Olson database.
* Simplify debian/rules.
* Set Standards-Version to 3.8.2 (no changes).
-- gregor herrmann <gregoa@debian.org> Sat, 08 Aug 2009 02:03:06 +0200
libdatetime-timezone-perl (1:0.91-1+2009h) unstable; urgency=low
* New upstream release, based on version 2009h of the Olson database.
* debian/control: improve short description.
-- gregor herrmann <gregoa@debian.org> Wed, 27 May 2009 18:33:41 +0200
libdatetime-timezone-perl (1:0.90-1+2009g) unstable; urgency=low
* New upstream release, based on version 2009g of the Olson database.
-- gregor herrmann <gregoa@debian.org> Tue, 28 Apr 2009 04:30:46 +0200
libdatetime-timezone-perl (1:0.89-1+2009f) unstable; urgency=low
* New upstream release, based on version 2009f of the Olson database.
-- gregor herrmann <gregoa@debian.org> Wed, 22 Apr 2009 21:08:59 +0200
libdatetime-timezone-perl (1:0.88-1+2009e) unstable; urgency=low
* New upstream release, based on DB 2009e.
* Set Standards-Version to 3.8.1 (no changes).
* Add a build dependency on libtest-output-perl to enable an additional
test.
* Add a lintian override for a manpage problem that is caused by a long
string.
-- gregor herrmann <gregoa@debian.org> Thu, 09 Apr 2009 19:45:22 +0200
libdatetime-timezone-perl (1:0.84-1+2009b) unstable; urgency=low
* debian/control:
- switch Vcs-Browser field to ViewSVN
- add ${misc:Depends} and ${perl:Depends} to Depends: field
- remove libmodule-build-perl from Build-Depends, dh7 prefers
ExtUtils::MakeMaker
* debian/watch: use dist-based URL.
* Remove remaining yada fragments (debian/rules.yada, debian/packages,
build dependency in debian/control).
* debian/rules: improve prepare target: call to tools/parse_olson moved to
debian/tools/update-tzdata.sh, debian/tools/update-tzdata.sh now also
checks for the current upstream version of the Olsen DB.
* New upstream release.
* Update to new Olson DB 2009b.
* Activate POD test by setting IS_MAINTAINER in debian/rules and adding
libtest-pod-perl in debian/control.
* Update debian/copyright.
* Add /me to Uploaders.
-- gregor herrmann <gregoa@debian.org> Fri, 06 Mar 2009 17:15:34 +0100
libdatetime-timezone-perl (1:0.83-1+2008i) unstable; urgency=low
* New upstream release, database rebuild from 2008i package
* New Olsen DB release: 2008h
* debian/control:
+ Changed headers Vcs-Svn and Vcs-Browser
+ Updated Maintainer header
+ Added me to Uploaders
+ Standards-Version updated to 3.8.0
* debian/compat: create with value 7
* debian/copyright: create from scratch
-- Krzysztof Krzyżaniak (eloy) <eloy@debian.org> Fri, 31 Oct 2008 11:21:43 +0100
libdatetime-timezone-perl (1:0.77.01-1+2008d) UNRELEASED; urgency=low
* Take over for the Debian Perl Group on maintainer's request
(http://lists.debian.org/debian-perl/2008/09/msg00111.html)
-- Damyan Ivanov <dmn@debian.org> Wed, 17 Sep 2008 22:32:36 +0300
libdatetime-timezone-perl (1:0.77.01-1+2008c) unstable; urgency=medium
* New upstream release.
* New Olsen DB release:
- 2008c: the major changes in this release are for Morocco, Mongolia, and
Pakistan.
- 2008b: the major changes in this release are for San Luis in Argentina,
Cuba, Iraq, and Syria.
- 2008a: the major changes in this release are for Argentina and Chile.
-- Piotr Roszatycki <dexter@debian.org> Wed, 04 Jun 2008 13:16:13 +0200
libdatetime-timezone-perl (1:0.72-1+2007k) unstable; urgency=medium
* New upstream release.
* New Olsen DB release:
- DST for Argentina.
* Standards-Version: 3.7.3
-- Piotr Roszatycki <dexter@debian.org> Tue, 08 Jan 2008 16:24:42 +0100
libdatetime-timezone-perl (1:0.70-1+2007j) unstable; urgency=low
* New upstream release.
* New Olsen DB release.
-- Piotr Roszatycki <dexter@debian.org> Sat, 08 Dec 2007 23:30:10 +0100
libdatetime-timezone-perl (1:0.69.04-1+2007i) unstable; urgency=low
* New upstream release.
* New Olsen DB release.
* Replace dot character with plus character to separate Olson DB version
number.
* Use current library if uses parse_olson script.
-- Piotr Roszatycki <dexter@debian.org> Sun, 18 Nov 2007 14:10:35 +0100
libdatetime-timezone-perl (1:0.68-1.2007h) unstable; urgency=low
* New upstream release.
* Source package includes copy of Olsen DB.
* The library is now recreated from Olsen DB at build time.
-- Piotr Roszatycki <dexter@debian.org> Tue, 30 Oct 2007 16:01:07 +0100
libdatetime-timezone-perl (1:0.67-1) unstable; urgency=low
* New upstream release. Closes: #402894.
* Remove patch for AKST9AKDT timezone which is already supported by
upstream.
-- Piotr Roszatycki <dexter@debian.org> Thu, 6 Sep 2007 12:46:00 +0200
libdatetime-timezone-perl (1:0.42-1) unstable; urgency=low
* New upstream release.
-- Piotr Roszatycki <dexter@debian.org> Mon, 3 Apr 2006 22:39:06 +0200
libdatetime-timezone-perl (1:0.37-1) unstable; urgency=low
* New uptream release. Closes: #329529.
* Support Alaska standard timezone AKST9AKDT. Closes: #320819.
-- Piotr Roszatycki <dexter@debian.org> Tue, 4 Oct 2005 12:03:52 +0200
libdatetime-timezone-perl (1:0.36-1) unstable; urgency=low
* New upstream release.
-- Piotr Roszatycki <dexter@debian.org> Mon, 18 Jul 2005 17:14:31 +0200
libdatetime-timezone-perl (1:0.30-1) unstable; urgency=low
* New upstream release.
-- Piotr Roszatycki <dexter@debian.org> Tue, 26 Oct 2004 12:29:51 +0200
libdatetime-timezone-perl (1:0.28-1) unstable; urgency=low
* New upstream release.
-- Piotr Roszatycki <dexter@debian.org> Mon, 9 Aug 2004 11:28:56 +0200
libdatetime-timezone-perl (1:0.27-1) unstable; urgency=low
* New upstream release.
-- Piotr Roszatycki <dexter@debian.org> Thu, 1 Jul 2004 12:23:01 +0200
libdatetime-timezone-perl (0.2507-1) unstable; urgency=low
* New upstream release.
-- Piotr Roszatycki <dexter@debian.org> Thu, 11 Mar 2004 20:14:02 +0100
libdatetime-timezone-perl (0.2505-1) unstable; urgency=low
* New upstream release.
-- Piotr Roszatycki <dexter@debian.org> Fri, 31 Oct 2003 18:34:59 +0100
libdatetime-timezone-perl (0.2502-1) unstable; urgency=low
* New upstream release.
-- Piotr Roszatycki <dexter@debian.org> Wed, 10 Sep 2003 12:39:47 +0200
libdatetime-timezone-perl (0.2501-1) unstable; urgency=low
* Initial Debian version.
-- Piotr Roszatycki <dexter@debian.org> Mon, 11 Aug 2003 23:07:42 +0200
|