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
|
geoip (1.6.12-11.1) unstable; urgency=medium
* Non-maintainer upload.
* Rename libraries for 64-bit time_t transition. Closes: #1062098
-- Steve Langasek <vorlon@debian.org> Wed, 28 Feb 2024 16:54:53 +0000
geoip (1.6.12-11) unstable; urgency=medium
* Update debian/copyright.
* Remove old bogus README.Debian.
* Remove unmaintained and not required generator scripts and sources from the
package. With this changes the FTBFS is also fixed.
Closes: #1037673
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 04 Jul 2023 15:32:46 +0200
geoip (1.6.12-10) unstable; urgency=medium
* Adjust debian/watch to work again with GitHub.
* Bump Standards-Version to 4.6.2.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 12 Jan 2023 11:08:03 +0100
geoip (1.6.12-9) unstable; urgency=medium
* Bump Standards-Version to 4.6.1.
* Adjust renamed lintian tag name in override.
* Adjust lintian overrides.
* Update debian/copyright.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 14 Sep 2022 14:37:32 +0200
geoip (1.6.12-8) unstable; urgency=medium
* debian/watch: Adjust github URL.
* Bump Standards-Version to 4.6.0.
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 19 Oct 2021 09:43:09 +0200
geoip (1.6.12-7) unstable; urgency=medium
* Adjust lintian overrides.
* Bump Standards-Version to 4.5.1.
* Bump debhelper-compat to level 13.
- Add no required files to debian/not-installed.
* Update debian/watch file standard to version 4.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 19 Nov 2020 14:57:03 +0100
geoip (1.6.12-6) unstable; urgency=medium
* Merge patch from Vagrant Cascadian to allow reproducible builds on systems
with a merged /usr.
Closes: #949273
* Use the new debhelper-compat notation, and drop the d/compat file.
* Add Rules-Requires-Root no.
* Bump Standards-Version to 4.5.0.
* Adjust source lintian-overrides.
* Remove example Makefile whichn references the build path.
Closes: #949275
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 23 Jan 2020 16:32:51 +0100
geoip (1.6.12-5) unstable; urgency=high
* For the new country code of Kosovo (XK) use the old RS again, because XK is
not supported by the legacy API.
Closes: #940581
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 18 Sep 2019 09:20:02 +0200
geoip (1.6.12-4) unstable; urgency=medium
* Bump debian/compat to level 12.
* Prefer the geoname_id field over the registered_country_geoname_id.
Closes: #939878
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 17 Sep 2019 13:31:42 +0200
geoip (1.6.12-3) unstable; urgency=medium
* Make a new source only upload.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 22 Jul 2019 11:29:33 +0200
geoip (1.6.12-2) unstable; urgency=medium
* Bump Standards-Version to 4.4.0.
* Add countryInfo.txt to geoip-bin package from www.geonames.org, it is
required for the converter.
* Add new script geolite2-to-legacy-csv.sh from
https://github.com/mschmitt/GeoLite2xtables/: It converts the GeoLite2 CSV
source to the legacy CSV database. It works with the IPv4 and IPv6 country
database.
Closes: #918709
* Move lintian-overrides file to source directory.
* Fix renamed lintian overrides tag.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 08 Jul 2019 12:51:20 +0200
geoip (1.6.12-1) unstable; urgency=medium
* New upstream release.
* Bump Standards-Version to 4.1.3 (no changes required).
* Bump debian/compat level to 11.
* Remove trailing whitespaces from debian/changelog.
* Remove useless autotools-dev and dh-autoreconf build dependency.
* Use pkg-info.mk instead of dpkg-parsechangelog.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 24 Jan 2018 14:47:06 +0100
geoip (1.6.11-3) unstable; urgency=medium
* Bump Standards-Version to 4.1.1 (no changes required).
* Add patch from Steve Langasek to fix compatibility with g++7. Much thanks!
Closes: #878024
* Use secure homepage URI.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 06 Nov 2017 14:56:05 +0100
geoip (1.6.11-2) unstable; urgency=medium
* Bump Standards-Version to 4.0.0 (no changes required).
* Drop dbg package.
* Uploading to unstable.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 03 Jul 2017 09:36:15 +0200
geoip (1.6.11-1) experimental; urgency=low
* New upstream release.
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 16 May 2017 10:53:01 +0200
geoip (1.6.10-1) experimental; urgency=low
* New upstream release.
-- Patrick Matthäi <pmatthaei@debian.org> Fri, 31 Mar 2017 09:56:16 +0200
geoip (1.6.9-4) unstable; urgency=medium
* Add patch from Yuriy M. Kaminskiy to fix mangled ASN database output due to
CSV missparsing.
Closes: #840510
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 17 Oct 2016 09:32:44 +0200
geoip (1.6.9-3) unstable; urgency=medium
* Fix FTCBS: Use triplet prefixed CXX. Thanks to Helmut Grohne for his patch.
Closes: #836461
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 06 Sep 2016 11:29:10 +0200
geoip (1.6.9-2) unstable; urgency=high
* Bump Standards-Version to 3.9.8 (no changes required).
* Enable full hardening.
* Compile GeoIP generators with C++98 to fix a FTBFS with GCC 6. Thanks to
Adrian Bunk for his patch.
Closes: #811767
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 22 Aug 2016 11:14:56 +0200
geoip (1.6.9-1) unstable; urgency=medium
* New upstream release.
* Merge 1.6.7-2~bpo8+1 and 1.6.7-2~bpo7+1 changelog.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 13 Jan 2016 09:16:48 +0100
geoip (1.6.7-2~bpo8+1) jessie-backports; urgency=medium
* Rebuild for jessie-backports.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 11 Jan 2016 12:55:09 +0100
geoip (1.6.7-2~bpo7+1) wheezy-backports-sloppy; urgency=medium
* Rebuild for wheezy-backports-sloppy.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 11 Jan 2016 13:15:07 +0100
geoip (1.6.7-2) unstable; urgency=medium
* Add patch from Aaron Gibson to fix the ASN database generator.
Closes: #792827
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 04 Jan 2016 11:53:41 +0100
geoip (1.6.7-1) unstable; urgency=medium
* New upstream release.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 02 Nov 2015 11:25:24 +0100
geoip (1.6.6-1) unstable; urgency=medium
* New upstream release.
* Fix lintian warning static-library-has-unneeded-section.
* Fix lintian warning spelling-error-in-copyright.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 29 Jul 2015 16:37:12 +0200
geoip (1.6.5-2) unstable; urgency=low
* Merge 1.6.2-4~bpo70+1 changelog.
* Upload to unstable.
* Update to DEP5 debian/copyright format.
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 26 Apr 2015 14:24:14 +0200
geoip (1.6.5-1) experimental; urgency=low
* New upstream release.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 26 Feb 2015 14:15:18 +0100
geoip (1.6.4-2) experimental; urgency=low
* Merge changes from 1.6.2-4.
Closes: #775851
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 27 Jan 2015 19:12:37 +0100
geoip (1.6.4-1) experimental; urgency=low
* New upstream release.
- Remove TODO docs file.
* Add 1.6.2-3 changelog.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 19 Jan 2015 19:22:59 +0100
geoip (1.6.2-4~bpo70+1) wheezy-backports; urgency=low
* Rebuild for wheezy-backports.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 19 Mar 2015 10:31:32 +0100
geoip (1.6.2-4) unstable; urgency=high
* Fix for generating v6 and city database.
Closes: #775851
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 27 Jan 2015 12:20:30 +0100
geoip (1.6.3-2) experimental; urgency=low
* Fix download location in debian/copyright.
* geoip-generator: Add support for skipping locations if the location ID is
not correctly ordered in the upstream CSV.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 13 Nov 2014 21:38:03 +0100
geoip (1.6.3-1) experimental; urgency=low
* New upstream release.
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 09 Nov 2014 21:14:14 +0100
geoip (1.6.2-3) unstable; urgency=low
* geoip-generator: Add support for skipping locations if the location ID is
not correctly ordered in the upstream CSV.
Closes: #774611
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 05 Jan 2015 10:04:40 +0100
geoip (1.6.2-2) unstable; urgency=low
* Add patch for geoip-csv-to-dat to add support for building GeoIP city DB.
Many thanks to Andrew Moise for contributing!
* Add and install geoip-generator-asn, which is able to build the ASN DB. It
is a modified version from the original geoip-generator. Much thanks for
contributing also to Aaron Gibson!
* Bump Standards-Version to 3.9.6 (no changes required).
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 27 Oct 2014 19:15:25 +0100
geoip (1.6.2-1) unstable; urgency=medium
* New upstream release.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 09 Jul 2014 10:09:39 +0200
geoip (1.6.1-1) unstable; urgency=medium
* New upstream release.
* Switch away from hardening-wrapper.
* Overwrite debian-watch-may-check-gpg-signature warning. There is no GPG
signature available.
* Use default build flags for geoip-generator.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 07 Jul 2014 13:57:26 +0200
geoip (1.6.0-1) unstable; urgency=low
* New upstream release.
- The tool geoipupdate has been removed.
- README has been renamed to README.md.
* Bump Standards-Version to 3.9.5 (no changes needed).
* Don't explicitly request xz compression - dpkg 1.17 does this by default.
* Fix lintian error pkg-config-multi-arch-wrong-dir.
* Remove old touch hack from debian/rules.
-- Patrick Matthäi <pmatthaei@debian.org> Fri, 08 Nov 2013 12:16:41 +0100
geoip (1.5.1-2) unstable; urgency=low
* Do not overwrite DEB_BUILD_OPTIONS.
Closes: #718808
* Build geoip-csv-to-dat with debugging symbols.
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 13 Aug 2013 10:53:19 +0200
geoip (1.5.1-1) unstable; urgency=low
* New upstream release.
* Merge 1.5.0-3~bpo60+1 and 1.5.0-3~bpo70+1 changelog.
* Update debian/watch to use the new location on GitHub.
* Build with nocheck and remove patches. The new GeoIP tests would depend on
geoip-database.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 18 Jul 2013 13:31:35 +0200
geoip (1.5.0-3~bpo70+1) wheezy-backports; urgency=low
* Rebuild for wheezy-backports.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 11 Jul 2013 11:34:53 +0200
geoip (1.5.0-3~bpo60+1) squeeze-backports-sloppy; urgency=low
* Rebuild for squeeze-backports-sloppy.
- Remove multiarch support.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 11 Jul 2013 10:46:59 +0200
geoip (1.5.0-3) unstable; urgency=low
* Add patch 01-disable-name-test to disable name lookup tests at build time,
which requires internet connectivity.
Closes: #708732
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 18 May 2013 21:02:34 +0200
geoip (1.5.0-2) unstable; urgency=low
* Uploading to unstable.
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 05 May 2013 20:34:02 +0200
geoip (1.5.0-1) experimental; urgency=low
* New upstream release.
- Use geoip.pc from upstream.
* No longer build a dfsg version, since the GeoIP.dat file is not used at
all.
* Maxmind has got the opinion, that directory listing should be leaved
disabled, so on removing content from debian/watch. Much thanks, Maxmind!
* Use wildcards in libgeoip1 lintian overrides.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 28 Mar 2013 11:15:58 +0100
geoip (1.4.8+dfsg-5) experimental; urgency=low
* Bump Standards-Version to 3.9.4 (no changes needed).
* Migrate package from cdbs to debhelper.
* Switch to xz compression and add a Pre-Depends on dpkg.
* Add new geoip-dbg package.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 31 Dec 2012 10:22:56 +0100
geoip (1.4.8+dfsg-4) unstable; urgency=low
* Add multiarch support.
* Add lintian override for false positive hardening-no-fortify-functions
usr/lib/geoip/geoip-generator.
* Wrap all debian/control fields.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 11 Jul 2012 21:15:46 +0200
geoip (1.4.8+dfsg-3) unstable; urgency=low
* Sync 1.4.8+dfsg-2~bpo60+1 changelog.
* Bump Standards-Version to 3.9.3 (no changes needed).
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 25 Feb 2012 22:01:26 +0100
geoip (1.4.8+dfsg-2~bpo60+1) squeeze-backports; urgency=low
* Rebuild for squeeze-backports.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 16 Feb 2012 11:30:48 +0100
geoip (1.4.8+dfsg-2) unstable; urgency=low
* Apply patch from Sebastian Carneiro, to fix the broken libtool.
Closes: #638395
-- Patrick Matthäi <pmatthaei@debian.org> Fri, 26 Aug 2011 21:09:59 +0200
geoip (1.4.8+dfsg-1) unstable; urgency=low
* New upstream release.
* Overwrite no-symbols-control-file lintian warnings.
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 25 Jun 2011 14:00:58 +0200
geoip (1.4.7+dfsg-2) unstable; urgency=low
* Build with hardening-wrapper.
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 30 Apr 2011 16:12:59 +0200
geoip (1.4.7+dfsg-1) unstable; urgency=low
* New upstream release.
* Wrap build dependencies.
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 16 Apr 2011 12:58:12 +0200
geoip (1.4.7~beta14+dfsg-1) unstable; urgency=low
* New upstream beta release.
* Bump Standards-Version to 3.9.2 (no changes needed).
* Convert the deprecated AN country code to CW in the geoip-generator. This
fixes a FTBFS at the geoip-database package.
* Fix lintian warning description-synopsis-starts-with-article.
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 12 Apr 2011 20:29:20 +0200
geoip (1.4.7~beta13+dfsg-1) unstable; urgency=low
* New upstream beta release.
-- Patrick Matthäi <pmatthaei@debian.org> Fri, 01 Apr 2011 20:35:40 +0200
geoip (1.4.7~beta12+dfsg-1) unstable; urgency=low
* New upstream beta release.
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 15 Mar 2011 19:55:07 +0100
geoip (1.4.7~beta11+dfsg-1) unstable; urgency=low
* New upstream beta release.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 10 Mar 2011 20:26:15 +0100
geoip (1.4.7~beta10+dfsg-4) unstable; urgency=low
* Uploading to unstable.
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 06 Feb 2011 16:30:26 +0100
geoip (1.4.7~beta10+dfsg-3) experimental; urgency=low
* Drop geoip-database package, it will be split to an extra source package.
Closes: #610161
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 18 Jan 2011 21:38:37 +0100
geoip (1.4.7~beta10+dfsg-2) experimental; urgency=low
* Install our database generator scripts to /usr/lib/geoip/ with the
geoip-bin package and set geoip-bin as a dependency for libgeoip-dev.
This change prepares the split of the library and database package.
* Remove database update script examples. They are superseded by the
geoip-database-contrib package.
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 15 Jan 2011 19:21:55 +0100
geoip (1.4.7~beta10+dfsg-1) experimental; urgency=low
* New upstream beta release.
* Update both databases to the 4.1.2011 version.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 12 Jan 2011 21:07:24 +0100
geoip (1.4.7~beta9+dfsg-1) experimental; urgency=low
* New upstream beta release.
* Merge 1.4.7~beta6+dfsg-1~bpo50+1 changelog.
* Remove temporary directory at the end of the database update scripts.
Closes: #601965
* Bump Standards-Version to 3.9.1 (no changes needed).
* Update both databases to the 2.11.2010 version.
* Bump debhelper to version 7.
* Some little format fixes in debian/README.Debian-source.
* Update my copyright.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 08 Nov 2010 19:56:14 +0100
geoip (1.4.7~beta6+dfsg-1~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
- Revert the 3.0 (quilt) format.
-- Patrick Matthäi <pmatthaei@debian.org> Fri, 16 Jul 2010 20:40:41 +0200
geoip (1.4.7~beta6+dfsg-1) unstable; urgency=low
* New upstream beta release.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 14 Jul 2010 12:49:43 +0200
geoip (1.4.7~beta5+dfsg-2) unstable; urgency=low
* Bump Standards-Version to 3.9.0.
- Replace Conflicts with Breaks.
* Update both databases to the 2.7.2010 version.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 08 Jul 2010 18:32:18 +0200
geoip (1.4.7~beta5+dfsg-1) unstable; urgency=low
* New upstream beta release.
* Merge 1.4.7~beta3+dfsg-2~bpo50+1 changelog.
* Update IPv4 database to the 2.6.2010 version.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 03 Jun 2010 21:06:48 +0200
geoip (1.4.7~beta3+dfsg-2~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
* Switch back to the 1.0 format.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 13 May 2010 11:09:06 +0200
geoip (1.4.7~beta3+dfsg-2) unstable; urgency=low
* Mangle +dfsg instead of .dfsg in debian/watch.
* Generate the version number in geoip.pc on build time.
* Update both databases to the 3.5.2010 version.
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 11 May 2010 13:27:08 +0200
geoip (1.4.7~beta3+dfsg-1) unstable; urgency=low
* New upstream beta release.
- Drop all patches, they have been merged by upstream.
- Change version in debian/geoip.pc.
* Add lintian overrides for the false positives spelling errors.
* Update both databases to the 2.4.2010 version.
* Mention in README.Debian, that the geoip-bin package is needed for having
the configuration file.
Closes: #579449
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 29 Apr 2010 18:58:54 +0200
geoip (1.4.6.dfsg-19) unstable; urgency=low
* Update IPv6 database to the 8.2.2010 version.
* Drop patch 03-map_ipv6to4_tunnel_ips_to_v4_db, add script v4-to-v6-layout
and build the IPv6 database now from a converted v4tov6 and IPv6 database.
* Rediff hunky 04-asnum_to_utf8 patch.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 08 Feb 2010 14:58:57 +0100
geoip (1.4.6.dfsg-18) unstable; urgency=low
* Fix little spelling error in README.Debian. Thanks lintian.
* Bump Standards-Version to 3.8.4 (no changes needed).
* Add patch 04-asnum_to_utf8.diff, which converts ASNum records from latin-1
to UTF-8. Much thanks for this patch to Piotr Kaczuba.
Closes: #567825
* Add patch 05-free_record_after_use.diff, which frees the GeoIP record,
after it has been used. Thanks again for this patch to Piotr Kaczuba.
Closes: #567828
* Update IPv4 database to the 2.2.2010 version.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 03 Feb 2010 19:00:54 +0100
geoip (1.4.6.dfsg-17) unstable; urgency=low
* Add new revision of the 03-map_ipv6to4_tunnel_ips_to_v4_db.diff patch,
which also fixes a memory leak. Thanks again to Stephen Gran.
* Update both databases to the 6.1.2010 version.
-- Patrick Matthäi <pmatthaei@debian.org> Fri, 08 Jan 2010 12:07:35 +0100
geoip (1.4.6.dfsg-16) unstable; urgency=low
* Map IPv6 6to4 addresses to the IPv4 database. Much thanks for the patch
to Stephen Gran <sgran@debian.org>.
Closes: #561886
* Merge 1.4.6.dfsg-15~bpo50+1 changelog.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 21 Dec 2009 20:36:13 +0100
geoip (1.4.6.dfsg-15~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
* Do not use DebSrc 3.0.
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 20 Dec 2009 11:56:39 +0100
geoip (1.4.6.dfsg-15) unstable; urgency=low
* Update both databases to the 2.12.2009 version.
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 06 Dec 2009 20:40:58 +0100
geoip (1.4.6.dfsg-14) unstable; urgency=low
* Update both databases to the 2.11.2009 version.
* Note in debian/copyright, from where the databases are downloaded.
* Convert package to the 3.0 (quilt) format and drop dpatch.
-- Patrick Matthäi <pmatthaei@debian.org> Fri, 13 Nov 2009 13:19:13 +0100
geoip (1.4.6.dfsg-13) unstable; urgency=low
* Merge 1.4.6.dfsg-12~bpo40+1 and 1.4.6.dfsg-12~bpo50+1 changelog.
* Fix patch description for the 02-add_asnum_support. Thanks to Kalle Olavi
Niemitalo.
Closes: #547629
* Update GeoIP Country v4 database to the 1.10.2009 version.
* Update GeoIP Country v6 database to the 2.10.2009 version.
* Update debian/README.Debian and note there, that the example scripts for
downloading databases is not secure.
Closes: #546945
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 05 Oct 2009 18:36:29 +0200
geoip (1.4.6.dfsg-12~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 12 Sep 2009 20:04:55 +0200
geoip (1.4.6.dfsg-12~bpo40+1) etch-backports; urgency=low
* Rebuild for etch-backports.
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 12 Sep 2009 20:08:25 +0200
geoip (1.4.6.dfsg-12) unstable; urgency=high
* All files in debian/databases/ are licensed under the terms of the Open
Data License.
* Add missing license for debian/src/geoip-csv-to-dat.cpp.
Closes: #545678
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 08 Sep 2009 18:20:50 +0200
geoip (1.4.6.dfsg-11) unstable; urgency=low
* Remove deprecated debian/mkgeoip_country_v4.pl build script.
* Double the dollar sign in debian/rules for the info argument. Only one sign
breaks the version string in the database.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 07 Sep 2009 13:14:19 +0200
geoip (1.4.6.dfsg-10) unstable; urgency=low
* Add src/geoip-csv-to-dat.cpp and build IPv4 and IPv6 database from source
with the rewritten c++ build script.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 07 Sep 2009 12:27:18 +0200
geoip (1.4.6.dfsg-9) unstable; urgency=low
* Adopt optimizing of the database from Kalle Olavi Niemitalo.
* Update GeoIPCountryWhois.csv to the state of the 1. Sep 2009.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 02 Sep 2009 19:06:17 +0200
geoip (1.4.6.dfsg-8) unstable; urgency=high
* Fix typo in long description of geoip-database, s/Ceo/Geo/.
Closes: #541454
* Bump Standards-Version to 3.8.3.
- Update debian/README.source.
* Remove deprecated build date in long descriptions.
* Build the GeoIP.dat from source (csv) now, with the reverse engineered
build script debian/mkgeoip_country_v4.pl. Much much thanks to Kalle Olavi
Niemitalo <kon@iki.fi> for doing this job!
Closes: #543865
* Move geolitecityupdate.sh to debian/scripts/.
* Add geoliteasnum.sh, geolitecountryv4.sh and geolitecountryv6.sh as
examples. Now you can update all your databases about cron. This also
fixes #535570, because the script will get the most up to date database
with the missing netblock.
Closes: #535570
* Add missing OPEN DATA LICENSE for debian/databases/GeoIPCountryWhois.csv
and data/GeoIP.dat to debian/copyright.
Closes: #543866
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 27 Aug 2009 18:13:39 +0200
geoip (1.4.6.dfsg-7) unstable; urgency=low
* Merge 1.4.6.dfsg-6~bpo50+1 changelog.
* Replace old email artifact from debian/copyright.
* Add patch 02-add_asnum_support from Piotr Kaczuba to add support for the
ASNUM edition.
Closes: #535852
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 13 Aug 2009 18:34:11 +0200
geoip (1.4.6.dfsg-6~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 25 Jul 2009 23:32:06 +0200
geoip (1.4.6.dfsg-6) unstable; urgency=high
* Merge 1.4.6.dfsg-5~bpo50+1 and 1.4.4.dfsg-3+lenny1 changelog.
* Bump Standards-Version to 3.8.2 (no changes needed).
* Add missing versioned replaces, because of the clashing
/etc/GeoIP.conf.default file in libgeoip1 and geoip-bin. Also bump severity
to high.
Closes: #534459
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 15 Jul 2009 00:27:50 +0200
geoip (1.4.6.dfsg-5~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
-- Patrick Matthäi <pmatthaei@debian.org> Mon, 08 Jun 2009 11:05:08 +0200
geoip (1.4.6.dfsg-5) unstable; urgency=low
* Downgrade dependency from libgeoip1 on geoip-database to recommends.
Closes: #530803
* Add 01-fix_exit_code_and_v_flag.dpatch, which adds a missing break and lets
geoipupdate exit with a former exit code.
Thanks to Thom May <thom@debian.org> for his patch.
Closes: #530778
* Set the right (>= ${source:Version}) shlibs if a package is built against
libgeoip1. Thanks to Stephen Gran.
Closes: #530801
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 28 May 2009 21:47:25 +0200
geoip (1.4.6.dfsg-4) unstable; urgency=low
* Fix long description of geoip-database. It does not contain any binaries,
just the free GeoLiteCountry database. Thanks Alex Hermann.
Closes: #525421
* Merge 1.4.4.dfsg-1~bpo40+1 and 1.4.6.dfsg-2~bpo50+1 changelog.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 14 May 2009 12:12:04 +0200
geoip (1.4.6.dfsg-3) unstable; urgency=low
* Bump Standards-Version to 3.8.1 (no changes needed).
* Change my email address.
* Remove DM-Upload-Allowed control field.
* Add an example script to get weekly an update of the GeoIP city database.
Closes: #511552
* Refer in debian/copyright to the LGPL-2 file instead of LGPL.
This fixes the lintian warning copyright-refers-to-symlink-license.
* Add my own copyright for the packaging to debian/copyright.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 22 Apr 2009 15:39:47 +0200
geoip (1.4.6.dfsg-2~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
-- Patrick Matthäi <patrick.matthaei@web.de> Tue, 24 Mar 2009 21:38:25 +0200
geoip (1.4.6.dfsg-2) unstable; urgency=low
* Also increment the version in the geoip.pc file.
-- Patrick Matthäi <patrick.matthaei@web.de> Wed, 4 Mar 2009 19:17:35 +0200
geoip (1.4.6.dfsg-1) unstable; urgency=low
* New upstream release.
- Drop all patches. They have been merged by upstream.
-- Patrick Matthäi <patrick.matthaei@web.de> Tue, 3 Mar 2009 21:26:58 +0200
geoip (1.4.5.dfsg-4) unstable; urgency=low
* Uploading to unstable.
-- Patrick Matthäi <patrick.matthaei@web.de> Tue, 17 Feb 2009 18:18:59 +0200
geoip (1.4.5.dfsg-3) experimental; urgency=low
* Add missing conflicts against libgeoip (<< 1.4.5.dfsg) to the new
geoip-database package.
Closes: #513318
* Fix binary-control-field-duplicates-source warning.
Thanks lintian.
-- Patrick Matthäi <patrick.matthaei@web.de> Mon, 2 Feb 2009 19:04:49 +0200
geoip (1.4.5.dfsg-2) experimental; urgency=low
* Add missing ${misc:Depends}. Thanks lintian.
* Add for all install files the destination dir explicity.
* Add geoip.pc file for pkgconfig.
Closes: #508099
-- Patrick Matthäi <patrick.matthaei@web.de> Sat, 6 Dec 2008 23:29:36 +0200
geoip (1.4.5.dfsg-1) experimental; urgency=low
* New upstream release.
- Rediff of 01-manpages-fix.
- Drop 02-manpage-typo-path-fix (merged upstream).
- Add 02-add-geoiplookup6-man patch from upstream CVS. It adds a missing
manual page in this release.
- Add again chrpath (RPATH issue is back).
- Updated shlibs.local.
* Move the GeoIP database to NEW package geoip-database.
Thanks lintian.
* We can deliver now Makefile.{netware,win32}. The non dfsg-free statements
are removed.
-- Patrick Matthäi <patrick.matthaei@web.de> Sun, 9 Nov 2008 20:53:00 +0200
geoip (1.4.4.dfsg-3+lenny1) stable; urgency=low
* Change my email address.
* Add missing versioned replaces, because of the clashing
/etc/GeoIP.conf.default file in libgeoip1 and geoip-bin.
Closes: #534459
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 15 Jul 2009 00:03:07 +0200
geoip (1.4.4.dfsg-3) unstable; urgency=low
* Removed chrpath because we do not need it anymore at GeoIP.
* Moved /etc/GeoIP.conf.default from libgeoip1 to geoip-bin because
geoipupdate needs the configuration.
-- Patrick Matthäi <patrick.matthaei@web.de> Sun, 6 Jul 2008 19:26:31 +0200
geoip (1.4.4.dfsg-2) unstable; urgency=low
* Added 02-manpage-typo-path-fix.dpatch which fixes an non-existent path on
Debian and a typo reported by A. Costa.
Closes: #488922
* Added missing dpatch information in 01-manpages-fix.dpatch.
* Added DM-Upload-Allowed control field.
* Some long description tune ups. Using new paragraphs instead of double
spaces.
* Removed versioned suggesting from libgeoip1 on geoip-bin.
* Added Debian versionmangle in debian/watch to remove the dfsg tag.
Thanks lintian.
* Bumped Standards-Version to 3.8.0.
- Added README.source.
-- Patrick Matthäi <patrick.matthaei@web.de> Wed, 2 Jul 2008 18:37:00 +0200
geoip (1.4.4.dfsg-1~bpo40+1) etch-backports; urgency=low
* Rebuild for etch-backports.
-- Patrick Matthäi <patrick.matthaei@web.de> Fri, 15 May 2008 20:28:03 +0100
geoip (1.4.4.dfsg-1) unstable; urgency=low
* New upstream release.
- Updated shlibs.local file.
* Removed *.links file. It is now handled by better *.install files.
* Changed documented sed removal command in README.Debian-source.
-- Patrick Matthäi <patrick.matthaei@web.de> Wed, 23 Jan 2008 18:17:00 +0100
geoip (1.4.3.dfsg-1) unstable; urgency=low
* Created an DFSG tarball, for more informations read README.Debian-source.
* Added debian/README.Debian-source, which will be installed as doc, too.
* Changed license from GPL to LGPL in debian/copyright, it has been changed
with the new upstream release.
Closes: #456190
* Bumped Standards-Version to 3.7.3.
* Changed Section of libgeoip-dev from devel to libdevel.
-- Patrick Matthäi <patrick.matthaei@web.de> Wed, 19 Dec 2007 20:55:00 +0100
geoip (1.4.3-1) unstable; urgency=low
* New upstream release.
Closes: #394319, #397938, #426292
* Set me as the new maintainer of this package.
Closes: #411676
* Using now cdbs at build time and make the package binNMU safe.
Closes: #408612
* Changed debian/compat to 5 instead of 4.
* debian/control: Control uses now the new homepage field and setted
the standards version to 3.7.2.
* Removed not needed debian/*.dirs files.
* Added cdbs, dpatch and chrpath to the build dependencies.
* Removed useless whitespaces in debian/copyright.
-- Patrick Matthäi <patrick.matthaei@web.de> Fri, 26 Oct 2007 16:10:30 +0200
geoip (1.3.17-1.1) unstable; urgency=high
* Non-maintainer upload by security team.
* Added patch for CVE-2007-0159: libgeoip1:
"GeoIP_update_database_general()" Remote Directory Traversal Vulnerability
(Closes: #406628)
* Removed automatically copying of config.status and config.sub - this
creates a bloated diff for security updates.
-- Neil McGovern <neilm@debian.org> Sat, 27 Jan 2007 10:23:23 +0000
geoip (1.3.17-1) unstable; urgency=low
* The latest upstream version
-- Marek Habersack <grendel@debian.org> Fri, 26 May 2006 23:15:29 +0200
geoip (1.3.16-1) unstable; urgency=low
* The latest upstream version
-- Marek Habersack <grendel@debian.org> Tue, 9 May 2006 21:28:24 +0200
geoip (1.3.14-2) unstable; urgency=low
* geoip_1.3.14-1(unstable/arm/grieg): needs libtool update for arm
(Closes: #343461)
Updated the libtool version to the latest available in Debian.
-- Marek Habersack <grendel@debian.org> Fri, 16 Dec 2005 12:46:08 +0100
geoip (1.3.14-1) unstable; urgency=low
* New upstream version 1.3.14 (Closes: #334417)
-- Marek Habersack <grendel@debian.org> Sun, 30 Oct 2005 23:52:05 +0100
geoip (1.3.13-1) unstable; urgency=low
* The latest upstream version
* Updated the Standards-Version. No changes.
-- Marek Habersack <grendel@debian.org> Tue, 23 Aug 2005 11:30:59 +0200
geoip (1.3.11-1) unstable; urgency=high
* The latest upstream release
* Closes: #315425: geoip(GNU/k*BSD): FTBFS: out of date libtool
scripts
* Closes: #261263: exporting does not work. geoipexport has been removed
since it is out of date and doesn't support the current database
format.
-- Marek Habersack <grendel@debian.org> Tue, 19 Jul 2005 13:40:35 +0200
geoip (1.3.10-1) unstable; urgency=low
* Closes: #305143: New upstream version 1.3.10
* Closes: #291242: No manual page geoipexportlocations.1
* Closes: #266448: Error un geoipupdate
-- Marek Habersack <grendel@debian.org> Tue, 14 Jun 2005 02:55:41 +0200
geoip (1.3.8-1) unstable; urgency=low
* The latest upstream version
-- Marek Habersack <grendel@debian.org> Sun, 14 Nov 2004 05:07:31 +0100
geoip (1.3.6-1) unstable; urgency=high
* The latest upstream release. Upstream changes
* Made GeoIP City code thread safe
* Fixed bug with geoipupdate read in product ids
* Added support for GeoIP Netspeed lookup
* Fix memleak in lookupaddress (Ludwig Nussel/SUSE)
* Add prototype for _full_path_to to make 64bit clean
(Ludwig Nussel/SUSE)
* Add return values to test programs (Ludwig Nussel/SUSE)
-- Marek Habersack <grendel@debian.org> Mon, 6 Sep 2004 16:49:36 +0200
geoip (1.3.5-1) unstable; urgency=low
* The latest upstream version
* Modified the geoiplookup(1) manpage to match the program behavior
(closes: Bug#258378)
* Fixed geoipexportlocations to check the number of arguments it is
passed (closes: Bug#258379)
* Changed the location of the SYSCONFDIR (closes: Bug#258380)
-- Marek Habersack <grendel@debian.org> Fri, 9 Jul 2004 17:39:58 +0200
geoip (1.3.2-1) unstable; urgency=low
* The latest upstream release
* Updated the standards version. No changes.
-- Marek Habersack <grendel@debian.org> Tue, 4 May 2004 15:45:28 +0200
geoip (1.3.1-1) unstable; urgency=low
* The latest upstream release (closes: Bug#228225)
-- Marek Habersack <grendel@debian.org> Sat, 17 Jan 2004 16:33:28 +0100
geoip (1.3.0-1) unstable; urgency=low
* Latest upstream release.
* This release contains an important API change:
1.3.x and above users for GeoIP Region database
GeoIPRegion.region is no longer a pointer but an in-structure
array so test the first byte of region == 0 rather testing if
the region pointer is NULL.
-- Marek Habersack <grendel@debian.org> Tue, 21 Oct 2003 03:22:18 +0200
geoip (1.2.2-1) unstable; urgency=low
* Latest upstream release. Upstream changes:
* Added support for GeoIP ISP Edition identifier
* Fixed bug in GeoIP_database_info (Jason Linhart)
* Added support for GeoIP AS Number Edition
! renamed GeoIP_org_by_* functions to GeoIP_name_by_* to reduce
confusion since these functions are used by GeoIP ISP and
GeoIP ASNum as well as GeoIP Organization
* Added support for GeoIP Proxy Edition
! renamed GeoIP_country_id_by_* functions to GeoIP_id_by_*
-- Marek Habersack <grendel@debian.org> Tue, 2 Sep 2003 20:10:26 -0400
geoip (1.2.0-1) unstable; urgency=low
* Latest upstream release.
-- Marek Habersack <grendel@debian.org> Thu, 22 May 2003 02:32:41 +0200
geoip (1.1.9-1) unstable; urgency=low
* Latest upstream release.
* First upload to Debian.
-- Marek Habersack <grendel@debian.org> Fri, 28 Mar 2003 22:42:24 +0100
geoip (1.1.1-1) unstable; urgency=low
* Initial Release.
-- Marek Habersack <grendel@debian.org> Mon, 11 Nov 2002 19:25:35 +0100
|