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
|
zlib (1:1.2.11.dfsg-2+deb11u2) bullseye-security; urgency=high
* Non-maintainer upload by the Security Team.
* Fix a bug when getting a gzip header extra field with inflate()
(CVE-2022-37434) (Closes: #1016710)
* Fix extra field processing bug that dereferences NULL state->head
-- Salvatore Bonaccorso <carnil@debian.org> Tue, 23 Aug 2022 20:54:06 +0200
zlib (1:1.2.11.dfsg-2+deb11u1) bullseye-security; urgency=high
* Non-maintainer upload by the Security Team.
* Fix a bug that can crash deflate on some input when using Z_FIXED
(CVE-2018-25032) (Closes: #1008265)
-- Salvatore Bonaccorso <carnil@debian.org> Fri, 25 Mar 2022 22:45:28 +0100
zlib (1:1.2.11.dfsg-2) unstable; urgency=low
* Acknowledge previous NMUs (closes: #949388).
* Remove zlib1g-dbg in favour of dbgsym (closes: #497831, #926161).
* Rename stage1 to nobiarch, patch no longer applies due to
uncoordinated NMUs (closes: #892762).
* Debhelper has renamed -s to -a.
* Policy 4.5.0 (no changes).
-- Mark Brown <broonie@debian.org> Mon, 24 Feb 2020 21:07:12 +0000
zlib (1:1.2.11.dfsg-1.2) unstable; urgency=medium
* Non-maintainer upload.
* Fix ftbfs on mips64el caused by the previous NMU by
remove it from 32-ARCHS to keep NMU minial.
-- YunQiang Su <syq@debian.org> Mon, 03 Feb 2020 12:00:47 +0800
zlib (1:1.2.11.dfsg-1.1) unstable; urgency=medium
* Non-maintainer upload.
* Enable lib64 for mipsn32 mipsn32el mipsr6 mipsr6el mipsn32r6 mipsn32r6el x32
help to add binutils-host64 for 32bit architectures (Closes: 949388)
* Remove outdated binutils version requirement for mips/mipsel.
-- YunQiang Su <syq@debian.org> Tue, 28 Jan 2020 19:55:38 +0800
zlib (1:1.2.11.dfsg-1) unstable; urgency=low
* New upstream release (closes: #883180).
* Use debian/patches/series to cope with yet more tooling issues with
patches format (closes: #896078).
* Use DEP-5 format (closes: #862260).
-- Mark Brown <broonie@debian.org> Mon, 25 Sep 2017 12:03:05 -0700
zlib (1:1.2.8.dfsg-5) unstable; urgency=low
* Add loud warnings to the descriptions of all the multilib packages
to try to discurage anyone from using them in error, the *only* user
is the D compiler which does this because apparently D users will
want to do cross builds but will be unable to install multilib
packages. No new packages should add usage, it is difficult to see
any sensible use case (closes: #787956, #845793, #709623, #853087).
-- Mark Brown <broonie@debian.org> Sun, 29 Jan 2017 17:22:23 +0000
zlib (1:1.2.8.dfsg-4.1) unstable; urgency=medium
* Non-maintainer upload.
* Revert "Install zconf.h in multiarch path"; this broke lib{32,64}z1-dev
and is not necessary with upstream version 1.2.8 (Closes: #787956)
* Revert "Fix cross 32 builds."; this broke lib64z1-dev (Closes: #845793)
* Add stage1 profile that excludes multilib packages (Closes: #709623)
-- Ben Hutchings <ben@decadent.org.uk> Sun, 29 Jan 2017 16:29:42 +0000
zlib (1:1.2.8.dfsg-4) unstable; urgency=high
* Apply upstream fix for CVE-2016-9840.
-- Mark Brown <broonie@debian.org> Wed, 07 Dec 2016 15:43:42 +0000
zlib (1:1.2.8.dfsg-3) unstable; urgency=high
* Apply upstream fix for CVE-2016-9841 (closes: #847270).
* Apply upstream fix for CVE-2016-9842 (closes: #847274).
* Apply upstream fix for CVE-2016-9843 (closes: #847275).
* Standards version 3.9.8 (no changes).
-- Mark Brown <broonie@debian.org> Wed, 07 Dec 2016 09:15:05 +0000
zlib (1:1.2.8.dfsg-2) unstable; urgency=low
* Drop zlib-bin package as minizip has now been packaged separately,
delay due to lack of notice regarding upload (closes: #753070).
-- Mark Brown <broonie@debian.org> Sat, 16 Aug 2014 15:12:11 +0100
zlib (1:1.2.8.dfsg-1) unstable; urgency=low
* New upstream release.
* Policy 3.9.4.
* Tweak version for gzseek64 and gztell64 (closes: #687076).
* Install zconf.h in multiarch path (closes: #698648).
-- Mark Brown <broonie@debian.org> Fri, 03 May 2013 16:30:36 +0100
zlib (1:1.2.7.dfsg-13) unstable; urgency=low
* Yet more s390x cleanup. Thanks to the s390x porters for thei
prompt an efficient buildd monitoring (closes: #678511).
-- Mark Brown <broonie@debian.org> Fri, 22 Jun 2012 16:55:56 +0100
zlib (1:1.2.7.dfsg-12) unstable; urgency=low
* Clean up breakage from binnmu since with multiarch binnmus of zlib
and other multiarch enabled library packages aren't actually
installable. Hopefully the multiarch people will get round to
cleaning up the infrastructure at some point (closes: #678172).
-- Mark Brown <broonie@debian.org> Wed, 20 Jun 2012 10:00:42 +0100
zlib (1:1.2.7.dfsg-11) unstable; urgency=low
* Third time lucky. I love double negative logic on strings. It's a
shame the patch for s390x didn't take care of s390...
-- Mark Brown <broonie@debian.org> Tue, 22 May 2012 14:07:04 +0100
zlib (1:1.2.7.dfsg-10) unstable; urgency=low
* Nope, here we go again...
-- Mark Brown <broonie@debian.org> Tue, 22 May 2012 11:22:36 +0100
zlib (1:1.2.7.dfsg-9) unstable; urgency=low
* Let's try a different bodge for s390...
-- Mark Brown <broonie@debian.org> Tue, 22 May 2012 10:07:49 +0100
zlib (1:1.2.7.dfsg-8) unstable; urgency=low
* Yet another special case for s390.
-- Mark Brown <broonie@debian.org> Mon, 21 May 2012 23:58:53 +0100
zlib (1:1.2.7.dfsg-7) unstable; urgency=low
* Fix cross 32 builds.
-- Mark Brown <broonie@debian.org> Mon, 21 May 2012 15:20:02 +0100
zlib (1:1.2.7.dfsg-6) unstable; urgency=low
* Pass LDFLAGS to minizip too, but don't bother with TEST_LDFLAGS
for the main build since it accomplishes nothing (closes: #672310).
* Disallow simutaneous 64 and 32 bit cross package builds.
-- Mark Brown <broonie@debian.org> Mon, 21 May 2012 10:25:15 +0100
zlib (1:1.2.7.dfsg-5) unstable; urgency=low
* s390x doesn't actually have 32 bit, only 31 bit, and making the
compiler options consistent is too hard.
-- Mark Brown <broonie@debian.org> Sun, 20 May 2012 22:55:16 +0100
zlib (1:1.2.7.dfsg-4) unstable; urgency=low
* Move primary shared library to /lib for wpa_supplicant (closes: #591013).
-- Mark Brown <broonie@debian.org> Sun, 20 May 2012 16:39:00 +0100
zlib (1:1.2.7.dfsg-3) unstable; urgency=low
* Clean up ironic breakage in patch for hardening (closes: #672310).
* Support biarch on s390x (closes: #637898).
-- Mark Brown <broonie@debian.org> Sun, 20 May 2012 16:17:27 +0100
zlib (1:1.2.7.dfsg-2) unstable; urgency=low
* Enable hardening flags, yet another release goal which we've
suddenly decided to start work on close to the end of the release
cycle. Patch from Moritz Mühlenhoff (closes: #672310).
-- Mark Brown <broonie@debian.org> Sat, 19 May 2012 19:52:14 +0100
zlib (1:1.2.7.dfsg-1) unstable; urgency=low
* New upstream release.
-- Mark Brown <broonie@debian.org> Thu, 03 May 2012 10:08:05 +0100
zlib (1:1.2.6.dfsg-2) unstable; urgency=low
* Break texlive-binaries before 2009-12 due to gzeof() behaviour
change (closes: #659681).
-- Mark Brown <broonie@debian.org> Thu, 23 Feb 2012 23:28:27 +0000
zlib (1:1.2.6.dfsg-1) unstable; urgency=low
* New upstream release.
* OMG!!!!! MULTIARCH!!!#!!! (closes: #569697).
* Break older libxml (closes: #589134).
* Drop bzr repo, it's adding nothing and painful to use.
-- Mark Brown <broonie@debian.org> Sun, 12 Feb 2012 02:05:41 +0000
zlib (1:1.2.5.dfsg-1) experimental; urgency=low
* New upstream release.
-- Mark Brown <broonie@debian.org> Thu, 13 May 2010 11:21:01 +0100
zlib (1:1.2.3.5.dfsg-1) experimental; urgency=low
* New upstream release.
* Remove most of the contrib directory so we don't have to waste time
writing a copyright file for code we don't build (closes: #561432).
-- Mark Brown <broonie@debian.org> Sun, 10 Jan 2010 22:27:09 +0000
zlib (1:1.2.3.4.dfsg-3) unstable; urgency=low
* Only check for EOF on transparent streams if we have done a zero
byte read to avoid reporting EOF early to applications. This was
breaking R.
-- Mark Brown <broonie@debian.org> Mon, 28 Dec 2009 19:00:35 +0000
zlib (1:1.2.3.4.dfsg-2) unstable; urgency=low
* Revert explict EOF indication to avoid triggering an infinite loop
in man-db while rebuilding the caches (closes: #562518).
-- Mark Brown <broonie@debian.org> Fri, 25 Dec 2009 15:02:23 +0000
zlib (1:1.2.3.4.dfsg-1) unstable; urgency=low
* New upstream release.
* This release contains refactored handling of 64 bit types which should
stop warnings being generated in some configurations (closes: #439980).
* This release also fixes handling of EOF in gzio (closes: #301283).
* Fix symbol version for inflateUndermine.
* Move -dbg to debug section.
* Add upstream home page.
* Policy 3.8.3.
-- Mark Brown <broonie@debian.org> Thu, 24 Dec 2009 17:35:16 +0000
zlib (1:1.2.3.3.dfsg-16) unstable; urgency=low
* Concert to 3.0 (quilt) format.
-- Mark Brown <broonie@debian.org> Tue, 08 Dec 2009 20:43:49 +0000
zlib (1:1.2.3.3.dfsg-15) unstable; urgency=low
* Using Conflicts instead of Replaces for the amd64 lib32 transition
since that's the latest idea for making it work (closes: #539278).
-- Mark Brown <broonie@debian.org> Tue, 04 Aug 2009 19:34:11 +0100
zlib (1:1.2.3.3.dfsg-14) unstable; urgency=low
* amd64 has finally abandoned /emul/ia32-linux so install the 32 bit
binaries in lib32 as for other architectures (closes: #533015).
-- Mark Brown <broonie@debian.org> Thu, 25 Jun 2009 12:49:05 +0100
zlib (1:1.2.3.3.dfsg-13) unstable; urgency=low
* Add LPIA to the list of unaligned architectures to reduce the Ubuntu
diff a little (closes: #517403).
-- Mark Brown <broonie@debian.org> Sun, 01 Mar 2009 20:43:18 +0000
zlib (1:1.2.3.3.dfsg-12) unstable; urgency=low
* Apply patch from Arthur Loiret <arthur.loiret@u-psud.fr> implementing
triarch support for MIPS (closes: #474097).
-- Mark Brown <broonie@debian.org> Sun, 06 Apr 2008 19:09:18 +0100
zlib (1:1.2.3.3.dfsg-11) unstable; urgency=low
* Correct library names for cross libraries.
* Turns out all our 64 bit architectures do off64_t.
-- Mark Brown <broonie@debian.org> Sat, 19 Jan 2008 22:33:06 +0000
zlib (1:1.2.3.3.dfsg-10) unstable; urgency=low
* dpkg-shlibdeps doesn't deal well with unbuilt packages (closes: 461474).
* Support packages using 64 bit cross symbols even when off_t is 64
bits.
-- Mark Brown <broonie@debian.org> Fri, 18 Jan 2008 22:56:48 +0000
zlib (1:1.2.3.3.dfsg-9) unstable; urgency=low
* Remove Debian revisions from symbol files.
-- Mark Brown <broonie@debian.org> Wed, 16 Jan 2008 10:53:27 +0000
zlib (1:1.2.3.3.dfsg-8) unstable; urgency=low
* Add symbols files. Version information is provided by the upstream
map file. Architecture lists may need some adjustment.
* Fix udeb contents.
* Policy 3.7.3 (no changes).
-- Mark Brown <broonie@debian.org> Sun, 16 Dec 2007 14:38:47 +0000
zlib (1:1.2.3.3.dfsg-7) unstable; urgency=low
* Hard code uname to GNU so configure script can cope with non-Linux
ports (closes: #448651).
-- Mark Brown <broonie@debian.org> Tue, 30 Oct 2007 22:01:55 +0000
zlib (1:1.2.3.3.dfsg-6) unstable; urgency=low
* Configure the compiler and linker to use for the vanilla build too so that
cross compilation works (closes: #444727).
-- Mark Brown <broonie@debian.org> Sun, 30 Sep 2007 23:34:54 +0100
zlib (1:1.2.3.3.dfsg-5) unstable; urgency=low
* x86_64 uses a non-standard directory for the 32 bit runtime so we need
to do something completely different there (closes: #432262).
-- Mark Brown <broonie@debian.org> Mon, 09 Jul 2007 09:30:52 +0100
zlib (1:1.2.3.3.dfsg-4) unstable; urgency=low
* dh_makeshlibs needs to be handheld when building multiple library
packages (closes: #431873).
-- Mark Brown <broonie@debian.org> Fri, 06 Jul 2007 19:26:23 +0100
zlib (1:1.2.3.3.dfsg-3) unstable; urgency=low
* Support building with UNALIGNED_OK and enable it on i386 and amd64.
This seems to provide a small speedup in my tests (closes: #386357).
* Build 32 bit version on KFreeBSD-amd64 (closes: #406018).
* Provide versioned dependency shlibs (closes: #431124).
-- Mark Brown <broonie@debian.org> Sat, 30 Jun 2007 11:49:23 +0100
zlib (1:1.2.3.3.dfsg-2) unstable; urgency=low
* Add XS-VCS-Bzr.
-- Mark Brown <broonie@debian.org> Fri, 22 Jun 2007 13:36:26 +0100
zlib (1:1.2.3.3.dfsg-1) unstable; urgency=low
* New upstream release.
* Repackage without DBS, use quilt to manage patches instead.
* Drop checks for epoch support in dpkg.
* Upstream now supports _FILE_OFFSET_BITS (closes: #234237).
* Remove Provides: zlib1g from udeb (closes: #419603).
* Add -dbg packages.
-- Mark Brown <broonie@debian.org> Tue, 19 Jun 2007 10:40:29 +0100
zlib (1:1.2.3-15) unstable; urgency=low
* Apparently gcc-multilib is actually a replacement for the arch-specific
GCCs (closes: #424657).
-- Mark Brown <broonie@debian.org> Wed, 16 May 2007 20:56:52 +0100
zlib (1:1.2.3-14) unstable; urgency=low
* The vibrations tell me that cross builds need to build depend on
gcc-multilib.
* Remove Provides: zlib1g from udeb (closes: #419603).
-- Mark Brown <broonie@debian.org> Sat, 12 May 2007 11:10:32 +0100
zlib (1:1.2.3-13) unstable; urgency=low
* Add dependency from lib32z1-dev to lib32c-dev (closes: #376854).
-- Mark Brown <broonie@debian.org> Sat, 8 Jul 2006 10:02:32 +0100
zlib (1:1.2.3-12) unstable; urgency=low
* Apply patch from Volker Grabsch <vog@notjusthosting.com> fixing cross
compilation.
-- Mark Brown <broonie@debian.org> Wed, 21 Jun 2006 10:23:18 +0100
zlib (1:1.2.3-11) unstable; urgency=low
* Add udeb line to shlibs (closes: #355293).
-- Mark Brown <broonie@debian.org> Mon, 6 Mar 2006 22:14:08 +0000
zlib (1:1.2.3-10) unstable; urgency=low
* Add a note to the gzerror() documentation specifying the rules for access
to the returned string (closes: #353407).
* Add a note to the gzclose() documentation pointing out that since the
function will always free the stream gzerror() can't be used to translate
the error message into plain text (closes: #354310).
* Change build dep to libc6-dev-i386 on amd64 (closes: #355170).
-- Mark Brown <broonie@debian.org> Fri, 3 Mar 2006 19:27:26 +0000
zlib (1:1.2.3-9) unstable; urgency=low
* Remove build dep on amd64-libs (closes: #344009).
-- Mark Brown <broonie@debian.org> Tue, 20 Dec 2005 14:12:58 +0000
zlib (1:1.2.3-8) unstable; urgency=low
* Replace old ia32-libs (closes: #339105).
-- Mark Brown <broonie@debian.org> Tue, 15 Nov 2005 21:20:31 +0000
zlib (1:1.2.3-7) unstable; urgency=low
* Check for EOF properly in gzio (closes: #130557).
-- Mark Brown <broonie@debian.org> Sun, 30 Oct 2005 11:02:24 +0000
zlib (1:1.2.3-6) unstable; urgency=low
* Most of the changes in this version are based heavily on work done for
Ubuntu by Matthias Klose <doko@cs.tu-berlin.de>. Thanks!
* Build biarch packages on PowerPC (closes: #325560).
* Build biarch packages on i386, replacing amd64-libs prior to 1.4 which
included its own copy and adding a theoretically spurious build dep
on amd64-libs to work around binutils troubles (closes: #334013).
* Drop build dep on GCC 3.4 on amd64 - we already stopped using it.
* Update all the lib64 development dependencies to use lib64c-dev rather
than the specific libc-${ARCH}-dev package.
* Don't test lib64 builds - there's a good chance they'll fail due to the
system not being able to execute 64 bit code. Similarly, don't worry if
dh_shlibdeps fails and hard code an unversioned dependency on the
appropriate libc.
-- Mark Brown <broonie@debian.org> Sun, 16 Oct 2005 19:38:11 +0100
zlib (1:1.2.3-5) unstable; urgency=low
* Since GCC no longer ICEs at -O3 on m68k revert to using -O3 there like
we do elsewhere.
-- Mark Brown <broonie@debian.org> Wed, 28 Sep 2005 23:00:52 +0100
zlib (1:1.2.3-4) unstable; urgency=low
* Add ppc64 biarch support using patch included in the report by Andreas
Jochens <aj@andaco.de> (closes: #323591).
-- Mark Brown <broonie@debian.org> Mon, 29 Aug 2005 12:30:04 +0100
zlib (1:1.2.3-3) unstable; urgency=low
* Fix minizip build (closes: #321355).
-- Mark Brown <broonie@debian.org> Fri, 5 Aug 2005 18:52:09 +0100
zlib (1:1.2.3-2) unstable; urgency=low
* Fix noopt (closes: #320999).
* Apply CFLAGS to minizip too.
* Policy 3.6.2 (no changes).
-- Mark Brown <broonie@debian.org> Wed, 3 Aug 2005 23:31:47 +0100
zlib (1:1.2.3-1) unstable; urgency=high
* New upstream release.
* This release includes a fix for CAN-2005-1849.
-- Mark Brown <broonie@debian.org> Mon, 18 Jul 2005 23:02:31 +0100
zlib (1:1.2.2-9) unstable; urgency=low
* Work around an ICE on m68k by building at -O2 there.
* Implement noopt support while we're at it.
-- Mark Brown <broonie@debian.org> Thu, 14 Jul 2005 18:06:21 +0300
zlib (1:1.2.2-8) unstable; urgency=low
* Remove GCC 3.4 hack for amd64 since the default compiler is now supposed
to be able to do biarch.
-- Mark Brown <broonie@debian.org> Sun, 10 Jul 2005 13:10:15 +0300
zlib (1:1.2.2-7) unstable; urgency=high
* Add patch fixing CAN-2005-2096 in inflate.
-- Mark Brown <broonie@debian.org> Mon, 4 Jul 2005 23:58:05 +0100
zlib (1:1.2.2-6) unstable; urgency=low
* Fix some build failures on amd64 (closes: #316779). The package still
fails to build but this appears to be due to toolchain issues.
-- Mark Brown <broonie@debian.org> Mon, 4 Jul 2005 21:49:55 +0100
zlib (1:1.2.2-5) unstable; urgency=low
* Build a 32 bit copy on amd64 (closes: #311618).
* Hack build with GCC 3.4 on amd64 since the default 3.3 is broken for
biarch builds. This should be removed once the default compiler does
this properly.
* Remove libc5 support and therefore revert to using plain gcc when not
cross-compiling.
* Upgrade to Debhelper interface 4.
-- Mark Brown <broonie@debian.org> Tue, 21 Jun 2005 09:52:45 +0100
zlib (1:1.2.2-4) unstable; urgency=low
* Run dh_installdeb before dh_shlibdeps (closes: #282882).
* Specify the shlibs for the library directly to dpkg-shlibs.
-- Mark Brown <broonie@debian.org> Tue, 7 Dec 2004 14:37:32 +0000
zlib (1:1.2.2-3) unstable; urgency=low
* Generate shared libraries sensibly for zlib-bin (closes: #278977).
-- Mark Brown <broonie@debian.org> Sat, 30 Oct 2004 19:40:57 +0100
zlib (1:1.2.2-2) unstable; urgency=low
* Remove shlibs from udeb.
-- Mark Brown <broonie@debian.org> Sat, 9 Oct 2004 19:06:41 +0100
zlib (1:1.2.2-1) unstable; urgency=low
* New upstream release.
-- Mark Brown <broonie@debian.org> Wed, 6 Oct 2004 20:10:10 +0100
zlib (1:1.2.1.2-1) unstable; urgency=low
* New upstream release.
* Upstream now includes patch improving error reporting when gzio is used on
empty files (closes: #258087).
* Upstream have fixed a valgrind warning. Other valgrind warnings remain
but have been analysed and found safe - uninitialised memory is read from
a buffer allocated by zlib during deflate but bounds checking is
subsequently performed and the output unaffected (closes: #270070).
-- Mark Brown <broonie@debian.org> Sat, 11 Sep 2004 10:59:41 +0100
zlib (1:1.2.1.1-7) unstable; urgency=high
* Once more, with feeling.
-- Mark Brown <broonie@debian.org> Thu, 26 Aug 2004 20:49:42 +0100
zlib (1:1.2.1.1-6) testing; urgency=high
* Fix the error handling in the new inflate implementation to avoid
incorrectly continuing to process in the error state. Thanks to Johan
Thelmén <johan.thelmen@cygate.se> for his help in finding and fixing this
bug. This is CAN-2004-0797 (closes: #252253).
-- Mark Brown <broonie@debian.org> Sat, 21 Aug 2004 23:30:57 +0100
zlib (1:1.2.1.1-5) unstable; urgency=low
* Build a 64 bit libz on s390 and sparc. Original patch provided by Bastian
Blank <waldi@debian.org> but since modified (closes: #257940).
* Mark the udeb as such for Debhelper but note that the udeb support appears
not to cope with epochs so leave the code to build it.
* Apply patch from David Weinehall <tao@debian.org> avoiding some XSIisms in
the package scripts (closes: #256363).
* Policy 3.6.1 (no changes).
-- Mark Brown <broonie@debian.org> Sun, 11 Jul 2004 20:47:25 +0100
zlib (1:1.2.1.1-4) unstable; urgency=low
* Incorporate current upstream patch to minizip. This supercedes most of
the current Debian patches (8,14,15 and 17) and has some additional
bugfixes.
-- Mark Brown <broonie@debian.org> Sat, 12 Jun 2004 10:31:57 +0100
zlib (1:1.2.1.1-3) unstable; urgency=low
* Fix -fPIC provision for HPPA (closes: #249289).
* Provide -D_REENTRANT while we're at it.
-- Mark Brown <broonie@debian.org> Sun, 16 May 2004 18:54:08 +0100
zlib (1:1.2.1.1-2) unstable; urgency=low
* Build with debug symbols.
* Revert partially done 64 bit support.
-- Mark Brown <broonie@debian.org> Sun, 16 May 2004 12:22:14 +0100
zlib (1:1.2.1.1-1) unstable; urgency=low
* New upstream release with bugfix for inflate (closes: #221590).
-- Mark Brown <broonie@debian.org> Sat, 8 May 2004 11:27:44 +0100
zlib (1:1.2.1-5) unstable; urgency=low
* Apparently udebs shouldn't call ldconfig (closes: #237345).
-- Mark Brown <broonie@debian.org> Thu, 11 Mar 2004 21:27:09 +0000
zlib (1:1.2.1-4) unstable; urgency=low
* Make checks when minizip is skipping arguments less likely to generate
false positives (closes: #231036).
-- Mark Brown <broonie@debian.org> Sat, 7 Feb 2004 18:48:41 +0000
zlib (1:1.2.1-3) unstable; urgency=low
* Use dpkg-architecture to get the target architecture and use the compiler
it tells us to.
* Don't run the testsuite when we're cross-compiling.
-- Mark Brown <broonie@debian.org> Sat, 6 Dec 2003 14:49:48 +0000
zlib (1:1.2.1-2) unstable; urgency=low
* Version build dependency on the DBS package (closes: #221599).
-- Mark Brown <broonie@debian.org> Fri, 21 Nov 2003 14:13:40 +0000
zlib (1:1.2.1-1) unstable; urgency=low
* New upstream release.
* The override fie tells me zlib1g is now required.
* Use dbs package to build rather than carting around our own copy.
* Many patches have been incorporated upstream.
* Upstream no longer has a readme.txt for zlib-bin.
* Check the return value of scanf() in miniunzip.
-- Mark Brown <broonie@debian.org> Mon, 17 Nov 2003 23:49:22 +0000
zlib (1:1.1.4-17) unstable; urgency=low
* Support GNU/KFreeBSD (closes: #220844).
-- Mark Brown <broonie@debian.org> Sat, 15 Nov 2003 12:00:24 +0000
zlib (1:1.1.4-16) unstable; urgency=low
* Check the return value of scanf in minizip (closes: #215658).
* Issue a diagnostic if minizip has no ZIP file to work on (closes: #215657).
-- Mark Brown <broonie@debian.org> Thu, 16 Oct 2003 19:02:39 +0100
zlib (1:1.1.4-15) unstable; urgency=low
* Replace "udeb" with "for Debian installer" in the short description for
the udeb (closes: #211019).
* Fix conflicts between real binary package and udeb.
-- Mark Brown <broonie@debian.org> Tue, 16 Sep 2003 07:38:47 +0100
zlib (1:1.1.4-14) unstable; urgency=low
* Remove the libc5 libraries from the control file. Apparently the archive
software isn't too keen on having packages built for the null set of
architectures.
-- Mark Brown <broonie@debian.org> Sat, 12 Jul 2003 09:02:39 +0100
zlib (1:1.1.4-13) unstable; urgency=low
* Nothing's actually appeared that uses the fact that zlib is in /lib so
move it back to /usr/lib.
* Drop libc5 support since it's breaking builds. The infrastructure is
still there so if we do decided to continue building libc5 stuff after all
it can be added back.
-- Mark Brown <broonie@debian.org> Sat, 21 Jun 2003 14:07:39 +0100
zlib (1:1.1.4-12) unstable; urgency=low
* Change section of zlib1g-dev to libdevel.
* GCC has now complains about improper usage of functions even without
prototypes so fix vsnprintf() test to call vsnprintf() with the
correct arguments (closes: #194828).
-- Mark Brown <broonie@debian.org> Tue, 27 May 2003 08:32:02 +0100
zlib (1:1.1.4-11) unstable; urgency=low
* The "Premature implementation is the root of all evil" release.
* Change udeb name to zlib1g-udeb (closes: #183296).
* Make the udeb provide zlib1g.
-- Mark Brown <broonie@debian.org> Mon, 3 Mar 2003 22:00:21 +0000
zlib (1:1.1.4-10) unstable; urgency=low
* Fix buffer overflow in gzprintf() by adding configure test for
vsnprintf() and failing the build out if it's not used.
* Use snprintf() for printing file descriptor name in gzdopen().
* Remove Emacs variables from changelog.
-- Mark Brown <broonie@debian.org> Sun, 23 Feb 2003 17:37:38 +0000
zlib (1:1.1.4-9) unstable; urgency=low
* Build a zlib-udeb package. The changes are a modified version of some
provided by Sebastian Ley <sebastian.ley@mmweg.rwth-aachen.de>.
* Updated Standards-Version to 3.5.8 (no changes).
* Don't check for the preprocessor constant i386 in zconf.h, use the
better namespaced __i386__ instead.
-- Mark Brown <broonie@debian.org> Mon, 30 Dec 2002 20:54:25 +0000
zlib (1:1.1.4-8) unstable; urgency=low
* Leave libz.so in /usr/lib (closes: #169924).
-- Mark Brown <broonie@debian.org> Wed, 20 Nov 2002 21:04:58 +0000
zlib (1:1.1.4-7) unstable; urgency=low
* Install libz.so in /lib rather than /usr/lib (closes: #168797).
-- Mark Brown <broonie@debian.org> Tue, 19 Nov 2002 00:01:34 +0000
zlib (1:1.1.4-6) unstable; urgency=low
* Depend on libc-dev rather than libc6-dev (closes: #164649).
-- Mark Brown <broonie@debian.org> Mon, 14 Oct 2002 11:35:09 +0100
zlib (1:1.1.4-5) unstable; urgency=low
* Include patch from Joel Baker <lucifer@lightbearer.com> forcing -Dunix
when building minizip for NetBSD (closes: #164060).
* Don't set /usr/doc link in zlib1-altdev.
-- Mark Brown <broonie@debian.org> Sat, 12 Oct 2002 19:32:25 +0100
zlib (1:1.1.4-4) unstable; urgency=low
* Complete sentance in minzip.1 (closes: #160929).
-- Mark Brown <broonie@debian.org> Sun, 15 Sep 2002 15:02:06 +0100
zlib (1:1.1.4-3) unstable; urgency=low
* Update upstream URL in copyright file (closes: #154940).
-- Mark Brown <broonie@debian.org> Wed, 31 Jul 2002 12:26:13 +0100
zlib (1:1.1.4-2) unstable; urgency=low
* Build glibc static library without PIC (closes: #149939).
-- Mark Brown <broonie@debian.org> Wed, 17 Jul 2002 20:37:50 +0100
zlib (1:1.1.4-1) unstable; urgency=low
* New upstream release.
-- Mark Brown <broonie@debian.org> Mon, 11 Mar 2002 21:44:13 +0000
zlib (1:1.1.3-19.1) unstable; urgency=high
* Non-maintainer upload
* Apply patch for double-free bug
-- Matt Zimmerman <mdz@debian.org> Sun, 10 Mar 2002 23:52:20 -0500
zlib (1:1.1.3-19) unstable; urgency=low
* Include patch to minizip from Steve Kemp <skx@tardis.ed.ac.uk>
fixing various stability issues with minizip.
-- Mark Brown <broonie@debian.org> Sat, 19 Jan 2002 13:19:22 +0000
zlib (1:1.1.3-18) unstable; urgency=low
* Fix -d option support so that archives can be extracted without
using -d (closes: #119898).
* s/pkzip/PKZIP/ in control file.
-- Mark Brown <broonie@debian.org> Sat, 17 Nov 2001 13:42:23 +0000
zlib (1:1.1.3-17) unstable; urgency=low
* Add patch from Dirk Eddelbuettel <edd@debian.org> supporting an
additional "-d extractdir" option and correcting the miniunzip
manual page (closes: #118658).
-- Mark Brown <broonie@debian.org> Wed, 7 Nov 2001 23:00:03 +0000
zlib (1:1.1.3-16) unstable; urgency=low
* Add to LD_LIBRARY_PATH rather than setting it since fakeroot now
relies on setting it (closes: #108553).
-- Mark Brown <broonie@debian.org> Mon, 27 Aug 2001 13:52:57 +0100
zlib (1:1.1.3-15) unstable; urgency=low
* Call tar with --force-local in debian/rules to force it to interpret
filenames as filenames (closes: #96078).
* Supply manual pages for minizip and miniunzip.
* Update description of libc5 packages to mention that they are
libc5 variants.
-- Mark Brown <broonie@debian.org> Wed, 2 May 2001 23:28:54 +0100
zlib (1:1.1.3-14) unstable; urgency=low
* Update debian/rules for m68k again (closes: #91863).
* Upgrade priority of zlib1g to standard.
* Update to policy 3.5.2 (no changes).
-- Mark Brown <broonie@debian.org> Thu, 22 Mar 2001 20:54:11 +0000
zlib (1:1.1.3-13) unstable; urgency=low
* Don't build libc5 packages on m68k any more (closes: #90639).
-- Mark Brown <broonie@debian.org> Thu, 22 Mar 2001 10:49:32 +0000
zlib (1:1.1.3-12) unstable; urgency=low
* Install zlib.3 in zlib1g-dev (closes: #78122).
* Update to policy 3.2.1 (no changes).
-- Mark Brown <broonie@debian.org> Mon, 1 Jan 2001 15:52:58 +0000
zlib (1:1.1.3-11) unstable; urgency=low
* Build-depends on debhelper (closes: #72400).
-- Mark Brown <broonie@debian.org> Mon, 25 Sep 2000 14:17:46 +0100
zlib (1:1.1.3-10) unstable; urgency=low
* Fix bashism in build.vars (closes: #71756).
-- Mark Brown <broonie@debian.org> Fri, 22 Sep 2000 14:04:10 +0100
zlib (1:1.1.3-9) unstable; urgency=low
* Fix source dependancies (closes: #68469).
-- Mark Brown <broonie@debian.org> Fri, 4 Aug 2000 01:24:49 +0100
zlib (1:1.1.3-8) unstable; urgency=low
* New maintainer.
* Initialise DH_OPTIONS in debian/rules (closes: #67113).
* Add source dependancies.
* Update copyright information.
-- Mark Brown <broonie@debian.org> Wed, 2 Aug 2000 18:05:16 +0100
zlib (1:1.1.3-7) unstable; urgency=low
* Fixed zlib1g shlibs. Closes: #67164.
-- Adam Heath <doogie@debian.org> Fri, 14 Jul 2000 11:06:06 -0500
zlib (1:1.1.3-6) unstable; urgency=low
* Joel is taking a leave of absence(indefinate). He has given the package
to me.
* Ported to dbs, an enhanced source management system.
* Ported to debhelper.
* Fix broken libz.so link in -altdev. Closes: #54573.
* Incorrect shlibs file on hurd. Fixed in -5. Closes: #56125.
-- Adam Heath <doogie@debian.org> Mon, 10 Jul 2000 16:38:02 -0500
zlib (1:1.1.3-5) unstable; urgency=low
* Remove sparc from libc5-compat architectures.
* control: zlib1g: Provide libz1.
zlib1g-dev: Provide libz-dev.
* shlibs-libc6: Use libz1.
* /usr/doc symlinks.
* Correct zlib-bin description in debian/control.
* Only call ldconfig when configuring (closes:Bug#42518).
* Add hurd configure patch (closes:Bug#46899).
* Ensure contrib.tar.gz is really tarred *and* gzipped (closes:Bug#30367,#32001).
* zlib1g-dev has had the man page since 1.1.3-1 (closes:Bug#23802).
* Fix URL in minizip (closes:Bug#43888).
* Install example.c and minigzip.c in zlib1g-dev examples (closes:Bug#32002).
-- Joel Klecker <espy@debian.org> Sat, 30 Oct 1999 12:25:25 -0700
zlib (1:1.1.3-4) unstable; urgency=low
* Policy 3.0.1.
* dpkg-architecture variables.
* zlib-bin: `miniunz' -> `miniunzip'.
* Source package is zlib again.
-- Joel Klecker <espy@debian.org> Sat, 31 Jul 1999 21:01:58 -0700
zlib1 (1:1.1.3-3) unstable; urgency=low
* Made zlib-bin package containing `minizip' and `miniunz'.
-- Joel Klecker <espy@debian.org> Thu, 11 Mar 1999 13:16:58 -0800
zlib1 (1:1.1.3-2) unstable; urgency=low
* Fix incorrect dependency in shlibs files (Bug:#28083).
-- Joel Klecker <espy@debian.org> Fri, 16 Oct 1998 23:58:41 -0700
zlib1 (1:1.1.3-1) unstable; urgency=low
* New maintainer (hijacking the package due to non-response of
active maintainer to repeated queries).
* New upstream release.
* (shlibs-libc6): Paranoia: depend on >= 1:1.1.3.
(shlibs-libc5): likewise.
* (debian/control): changed source package to 'zlib1'.
* Fix /usr/doc/libz*
* Add contrib directory as .tar.gz in zlib1g-dev.
* Add man page.
* Add README, FAQ and algorithm.txt.
* lintian clean.
* Added sparc to libc5-compat architectures.
-- Joel Klecker <espy@debian.org> Tue, 13 Oct 1998 19:30:29 -0700
zlib (1:1.1.2-0.1) unstable; urgency=low
* New upstream bugfix release.
* libc5 compat packages are now built on only i386 and m68k.
-- Joel Klecker <jk@espy.org> Mon, 11 May 1998 18:33:46 -0700
zlib (1:1.1.1-0.1) unstable; urgency=low
* Non maintainer release.
* New upstream release.
* Made symlink in zlib1-altdev relative (fixes lintian warning).
* Removed executable bit on shared libs (fixes several lintian warnings).
-- Joel Klecker <jk@espy.org> Fri, 13 Mar 1998 20:19:15 -0800
zlib (1:1.0.4-7.1) unstable; urgency=low
* Updated for libc6
* Compiled with -D_REENTRANT.
* Non mantainer release.
-- Enrique Zanardi <ezanardi@molec1.dfis.ull.es> Wed, 17 Sep 1997 01:28:05 +0100
zlib (1:1.0.4-7) stable unstable; urgency=low
* Include --assert-working-epoch so people can't try to install with
bogus dpkg. (Bug#6848)
* Correct zlib1-dev description. (Bug#6061).
-- Michael Alan Dorman <mdorman@debian.org> Sun, 26 Jan 1997 16:49:19 -0500
zlib (1:1.0.4-6) stable unstable; urgency=high
* Recompile with correct libc requirement.
* Correct zlib1-dev deps to include zlib1.
-- Michael Alan Dorman <mdorman@debian.org> Tue, 21 Jan 1997 17:57:22 -0500
zlib (1:1.0.4-5) stable; urgency=low
* Add epoch, to make dselect happier
-- Michael Alan Dorman <mdorman@debian.org> Sat, 28 Dec 1996 11:02:43 -0500
zlib (1.0.4-4) stable; urgency=high
* Remember to copy shlibs file to DEBIAN directory (thanks to Christoph
Lameter
-- Michael Alan Dorman <mdorman@debian.org> Sun, 15 Dec 1996 10:12:44 -0500
zlib (1.0.4-3) unstable; urgency=low
* Added shlibs file
* Insured that shared library was stripped (Bug#5316)
-- Michael Alan Dorman <mdorman@debian.org> Sat, 23 Nov 1996 16:52:19 -0500
zlib (1.0.4-2) unstable; urgency=low
* Accomodate the fact that dpkg-source doesn't properly preserve
permissions on scripts when extracting package.
-- Michael Alan Dorman <mdorman@calder.med.miami.edu> Mon, 23 Sep 1996 09:17:57 -0400
zlib (1.0.4-1) unstable; urgency=low
* New upstream version.
* Moved to new source packaging format.
-- Michael Alan Dorman <mdorman@calder.med.miami.edu> Thu, 12 Sep 1996 15:19:35 -0400
|