1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
|
gdk-pixbuf-xlib (2.40.2-5) unstable; urgency=medium
* Avoid explicitly specifying -Wl,--as-needed linker flag
* Bump Standards Version to 4.7.0
* Stop setting dh_missing --fail-missing which is the default for dh13
* Stop using gnome-pkg-tools
* Update debian/upstream/metadata
-- Jeremy Bícha <jbicha@ubuntu.com> Thu, 16 Jan 2025 14:22:14 -0500
gdk-pixbuf-xlib (2.40.2-4) unstable; urgency=medium
* Team upload
[ Amin Bandali ]
* Update packaging branch to debian/latest
[ Simon McVittie ]
* Remove transitional package libgdk-pixbuf2.0-0 (Closes: #1038244)
* Remove transitional libgdk-pixbuf2.0-dev
* Use debhelper compat level 13
* d/salsa-ci.yml: Add Salsa CI pipeline
* d/control: Stop generating from a template
-- Simon McVittie <smcv@debian.org> Thu, 21 Nov 2024 12:11:02 +0000
gdk-pixbuf-xlib (2.40.2-3) unstable; urgency=medium
* Team upload
* d/control.in: Remove unused dh-exec build-dependency
* d/control.in: Don't recommend alternative dependency on transitional
package.
The separate libgdk-pixbuf-2.0-0, libgdk-pixbuf-xlib-2.0-0,
libgdk-pixbuf-2.0-dev and libgdk-pixbuf-xlib-2.0-dev packages were
present in Debian 11 and 12, so the alternative dependency is no
longer necessary, even for packages that are backported. We should
aim to remove libgdk-pixbuf2.0-0 and libgdk-pixbuf2.0-dev during
the Debian 13 cycle.
-- Simon McVittie <smcv@debian.org> Mon, 12 Jun 2023 19:20:11 +0100
gdk-pixbuf-xlib (2.40.2-2) unstable; urgency=medium
* Team upload
* Release to unstable
-- Simon McVittie <smcv@debian.org> Sun, 06 Dec 2020 13:22:41 +0000
gdk-pixbuf-xlib (2.40.2-1) experimental; urgency=medium
* Team upload
* Branch gdk-pixbuf packaging for gdk-pixbuf-xlib
* Take over libgdk-pixbuf-xlib-2.0-0, libgdk-pixbuf-xlib-2.0-dev binary
packages from src:gdk-pixbuf.
Upstream source releases of gdk-pixbuf 2.41+ have removed this
deprecated library, but we need to keep it available in Debian as long
as we have packages that depend on it (19 source packages mention the
pkg-config module gdk-pixbuf-xlib-2.0 and/or the header
<gdk-pixbuf-xlib/gdk-pixbuf-xlib.h>, according to codesearch.debian.net).
* Take over libgdk-pixbuf2.0-0, libgdk-pixbuf2.0-dev transitional binary
packages from src:gdk-pixbuf.
This means they will "naturally" disappear from the distribution when
this source package is no longer needed and can be removed, without
requiring changes to src:gdk-pixbuf.
-- Simon McVittie <smcv@debian.org> Sat, 28 Nov 2020 13:23:35 +0000
gdk-pixbuf (2.40.0+dfsg-6) experimental; urgency=medium
* Team upload
* Branch for experimental
* Split main library away from Xlib integration library (see #974870).
The Xlib integration library has been removed upstream in 2.41.x,
and moved to a separate, deprecated source repository.
To facilitate a transition to separate source packages, split the binary
packages built by this source package, in the same style as the split
that was done in Pango 1.32.5-2:
- libgdk-pixbuf2.0-0:
+ libgdk_pixbuf-2.0.so.0 -> libgdk-pixbuf-2.0-0
+ libgdk_pixbuf_xlib-2.0.so.0 -> libgdk-pixbuf-xlib-2.0-0
- libgdk-pixbuf2.0-dev:
+ gdk-pixbuf-2.0.pc, <gdk-pixbuf/gdk-pixbuf.h>
-> libgdk-pixbuf-2.0-dev
+ deprecated <gdk-pixbuf/gdk-pixdata.h> -> libgdk-pixbuf-2.0-dev
+ gdk-pixbuf-xlib-2.0.pc, <gdk-pixbuf-xlib/gdk-pixbuf-xlib.h>
-> libgdk-pixbuf-xlib-2.0-dev
with transitional packages to help with the upgrade path.
The -bin, -common and -doc packages remain as they were.
* Packages that only require gdk-pixbuf-2.0.pc and
<gdk-pixbuf/gdk-pixbuf.h> should now build-depend on
libgdk-pixbuf-2.0-dev | libgdk-pixbuf2.0-dev.
* Packages that require gdk-pixbuf-xlib-2.0.pc and
<gdk-pixbuf-xlib/gdk-pixbuf-xlib.h> should now build-depend on
libgdk-pixbuf-xlib-2.0-dev | libgdk-pixbuf2.0-dev.
* The above change incidentally also drops the libX11 dependency
from the main library (Closes: #824502)
* d/rules: Trim trailing whitespace
* d/control.in: Use secure URI in Homepage field
* d/upstream/metadata: Add
* d/rules, d/p/tests-Mark-pixbuf-randomly-modified-as-flaky.patch:
Don't run pixbuf-randomly-modified test at build time.
This is basically a crude fuzzer. It isn't really suitable for
build-time acceptance testing, since it frequently produces images for
which gdk-pixbuf will try to allocate more memory than is available,
but if it does, it isn't straightforward to capture the failing image
from an autobuilder that only records build logs. (Closes: #942124)
* Mark pixbuf-randomly-modified test as flaky when run as autopkgtest too
-- Simon McVittie <smcv@debian.org> Tue, 17 Nov 2020 11:13:22 +0000
gdk-pixbuf (2.40.0+dfsg-5) unstable; urgency=medium
* rules: Don't mangle PNGs in gdk-pixbuf-tests (for Ubuntu)
-- Iain Lane <laney@debian.org> Mon, 01 Jun 2020 17:05:16 +0100
gdk-pixbuf (2.40.0+dfsg-4) unstable; urgency=medium
* Do not rebuild the documentation when it's not necessary
* debian/control.in: Bump Standards-Version to 4.5.0
* Ship the installed tests and run them in the dep8 tests
-- Laurent Bigonville <bigon@debian.org> Wed, 08 Apr 2020 14:34:38 +0200
gdk-pixbuf (2.40.0+dfsg-3) unstable; urgency=medium
* debian/rules: Make the tests non-fatal on kfreebsd-amd64
-- Laurent Bigonville <bigon@debian.org> Sun, 08 Mar 2020 18:35:39 +0100
gdk-pixbuf (2.40.0+dfsg-2) unstable; urgency=medium
* Team upload
* d/tests/build: Mark as superficial
* d/tests/build: Make autopkgtest cross-test-friendly.
Use an appropriate cross-compiler and cross-pkg-config when using
proposed autopkgtest cross-testing support.
Thanks to Steve Langasek. (Closes: #946374)
* d/tests/build: Fail on references to unset variables
* d/tests/build: Fix shellcheck warnings
* Bump Standards-Version to 4.4.1
-- Simon McVittie <smcv@debian.org> Thu, 26 Dec 2019 16:33:27 +0000
gdk-pixbuf (2.40.0+dfsg-1) unstable; urgency=medium
* New upstream release
[ Simon McVittie ]
* Re-import upstream source code with non-free test data excluded
* d/gbp.conf: Disable automatic merging of upstream VCS tags.
This doesn't work well with +dfsg versions.
-- Sebastien Bacher <seb128@ubuntu.com> Thu, 10 Oct 2019 17:38:01 +0200
gdk-pixbuf (2.39.2-3) experimental; urgency=medium
* debian/rules:
- use dh_missing --fail-missing
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 14 Aug 2019 21:40:38 +0200
gdk-pixbuf (2.39.2-2) experimental; urgency=medium
* Really remove debian/compat from the upload...
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 14 Aug 2019 20:09:49 +0200
gdk-pixbuf (2.39.2-1) experimental; urgency=medium
* New upstream release
- Render GIF frames on demand
* debian/control.in, debian/compat:
- update to debhelper12
- update the Standards-version to 4.4.0.1
* debian/libgdk-pixbuf2.0-0.symbols:
- new version update
-- Sebastien Bacher <seb128@ubuntu.com> Wed, 14 Aug 2019 16:05:13 +0200
gdk-pixbuf (2.38.1+dfsg-1) unstable; urgency=medium
* New upstream release
- Add variables in the pkg-config files for binary utilities
- Fix error handling in PNG loader
- Fix introspection generation
- Fix OOM in JPEG2000 loader
- Fix thumbnailing of animated GIFs
- Improve reproducibility of the build
- Multiple improvements to the GIF loader
- Speed up saving PNG files
* Drop upstream patches.
- Use-basename-instead-of-filename.patch,
build-Include-gdk-pixdata.c-when-building-GdkPixbuf-2.0.g.patch:
Included in this release
-- Iain Lane <laney@debian.org> Mon, 04 Mar 2019 14:31:35 +0000
gdk-pixbuf (2.38.0+dfsg-7) unstable; urgency=medium
* debian/rules: Stop including gnome-get-source.mk, use uscan instead
* debian/libgdk-pixbuf2.0-0.symbols: Set Build-Depends-Package
* Add -Wl,-O1 -Wl,-z,defs -Wl,--as-needed to our LDFLAGS
* Enable all hardening flags
* Bump Standards-Version to 4.3.0
-- Jeremy Bicha <jbicha@debian.org> Sun, 23 Dec 2018 22:44:55 -0500
gdk-pixbuf (2.38.0+dfsg-6) unstable; urgency=medium
* Team upload
* gir1.2-gdkpixbuf-2.0 Breaks: libgtk3-perl (<< 0.034-2~), to avoid
#908323 being reported as an autopkgtest regression in gtk+3.0
* d/watch: Use dversionmangle to remove +dfsg suffix (thanks, Lintian)
* d/copyright: Correct syntax for matching
contrib/gdk-pixbuf-xlib/gdk-pixbuf-xlibrgb.?. Machine-readable
copyright file format supports * and ? wildcards, but not [ch].
* d/copyright: Remove stanzas for files that are no longer included
* Enable bindnow linker hardening
* gir1.2-gdkpixbuf-2.0 Provides gir1.2-gdkpixdata-2.0, to reflect its
contents
- Remove lintian overrides that are no longer necessary
-- Simon McVittie <smcv@debian.org> Wed, 19 Sep 2018 11:57:58 +0100
gdk-pixbuf (2.38.0+dfsg-5) unstable; urgency=medium
[ Jeremy Bicha ]
* debian/rules: Use meson test --print-errorlogs
dh_auto_test normally does that for us
[ Iain Lane ]
* Add new patch to include gdk-pixdata.c when building the GdkPixbuf gir.
This fixes broken introspection metadata that at least would have broken
libgtk3-perl. (Closes: #908673)
-- Iain Lane <laney@debian.org> Thu, 13 Sep 2018 12:50:53 +0100
gdk-pixbuf (2.38.0+dfsg-4) unstable; urgency=medium
[ Jeremy Bicha ]
* Update debian/gbp.conf
* debian/libgdk-pixbuf2.0-0.install: Use ${DEB_HOST_MULTIARCH} less.
Thanks lintian.
[ John Paul Adrian Glaubitz ]
* debian/rules: Have dh_auto_test override honor nocheck (Closes: #908373)
[ Chris Lamb ]
* Add Use-basename-instead-of-filename.patch:
- Proposed patch for reproducible builds and multi-arch co-installability
(Closes: #908309)
-- Jeremy Bicha <jbicha@debian.org> Sun, 09 Sep 2018 08:12:01 -0400
gdk-pixbuf (2.38.0+dfsg-3) unstable; urgency=medium
[ Sven Joachim ]
* Fix FTBFS on any-i386 (Closes: #908298)
-- Andreas Henriksson <andreas@fatal.se> Sat, 08 Sep 2018 10:54:08 +0200
gdk-pixbuf (2.38.0+dfsg-2) unstable; urgency=medium
* Allow 5× as much time for the tests, to hopefully allow gdk-pixbuf to pass
tests on all of our slower arches.
-- Iain Lane <laney@debian.org> Fri, 07 Sep 2018 17:43:33 +0100
gdk-pixbuf (2.38.0+dfsg-1) unstable; urgency=medium
* New upstream release (LP: #1791301)
- Add test case for buffer overflow in pixdata loader
- Avoid a deprecation warning with recent libjasper
- Deprecate GDK_INTERP_HYPER
- Drop Autotools build and move to Meson
- Drop the MMX assembly optimizations for pixops
- Ensure that GdkPixbuf's storage is safely handled
- Expose the dimensions of the original image from GdkPixbufLoader
- Fix documentation building with X11 disabled
- Fix introspection annotations
- Fix OOB error when dithering
- Generate separate introspection data for GdkPixdata API
- Improve compatibility for the post-install script
- Improve thumbnailer implementation
- Make X11 a dependency if the `x11` build option is enabled
- Plug a memory leak when using GBytes
- Properly install test data
* debian/copyright: Exclude tests/bug753605-atsize.jpg, which is non-free.
This was added for a testcase, but we can't distribute it. The testcase
itself is disabled in debian/patches/Remove-test-for-GNOME-753605.patch
already.
* Remove-test-for-GNOME-753605.patch:
+ Remove "wasn't included in the tarball" It now is in the tarball, but we
+ Don't try to install bug753605-atsize.jpg
are repacking to exclude it.
* Build with meson.
* Don't build the installed tests for this upload. It'd require a trip
through binNEW
* docs: Drop AUTHORS, rename README to README.md
* libgdk-pixbuf2.0-0.symbols: Drop two private symbols. These are in a
private header and weren't meant to be exported. codesearch.d.n shows no
external users.
* Bump Standards-Version to 4.2.1 (no changes required)
* Add Lintian overrides for warnings about GdkPixdata introspection data.
It's intentional that this is in gir1.2-gdkpixbuf-2.0
-- Iain Lane <laney@debian.org> Fri, 07 Sep 2018 14:45:00 +0100
gdk-pixbuf (2.36.12-2) unstable; urgency=medium
* Team upload
[ Hugh McMaster ]
* Move gdk-pixbuf-csource and gdk-pixbuf-pixdata into
libgdk-pixbuf2.0-bin (Closes: #876183, #882785).
* Update the package description for libgdk-pixbuf2.0-bin.
* Mark libgdk-pixbuf2.0-dev Multi-Arch: same (Closes: #689125).
[ Simon McVittie ]
* Update versioned Breaks/Replaces
* Remove /usr/bin/gdk-pixbuf-query-loaders symlink from -dev package.
It has architecture-dependent output and breaks Multi-Arch: same
co-installability. Debian packages do not seem to rely on this tool
being in PATH.
* d/copyright: Update
-- Simon McVittie <smcv@debian.org> Tue, 21 Aug 2018 15:15:42 +0100
gdk-pixbuf (2.36.12-1) unstable; urgency=medium
* Team upload
* New upstream release
- Drop all patches, applied upstream
* d/copyright: Mention gtk-doc.make and m4/gtk-doc.m4
* d/p/Remove-test-for-GNOME-753605.patch:
Patch out test for GNOME#753605. It relies on non-free test data
(that is malformed in the right way to exhibit the bug), which was
not included in the upstream 2.36.12 tarball.
(Note to future maintainers: when packaging versions
2.37+ please check that the non-free file is not included.)
* Set Rules-Requires-Root to no
* Standards-Version: 4.1.5 (no changes required)
* Use debhelper 11 compat level
* d/copyright: Correct syntax
* Upgrade udeb from deprecated priority extra to optional
* Remove ineffective lintian override for the udeb
* d/libgdk-pixbuf2.0-0.lintian-overrides: Document non-SONAME-based
package name
-- Simon McVittie <smcv@debian.org> Thu, 26 Jul 2018 10:44:54 +0100
gdk-pixbuf (2.36.11-2) unstable; urgency=medium
* Team upload
[ Emilio Pozuelo Monfort ]
* Switch triggers to noawait.
[ Simon McVittie ]
* Update Vcs-* for move from Alioth svn to Salsa git
* debian/gbp.conf: Add
* Add patches from upstream to fix crash bugs:
- CVE-2017-6312: out-of-bounds read in ico (Closes: #856444)
- CVE-2017-6313: integer underflow in icns (Closes: #856445)
- CVE-2017-6314: infinite loop in tiff (Closes: #856448)
Thanks to Salvatore Bonaccorso for highlighting the relevant commits.
-- Simon McVittie <smcv@debian.org> Fri, 16 Mar 2018 10:57:57 +0000
gdk-pixbuf (2.36.11-1) unstable; urgency=medium
* New upstream release
* debian/copyright: The non-free images have been replaced
(thanks Olly Betts!) so drop the Files-Excluded line
* Drop git_fix-tiff-build.patch: Applied in new release
-- Jeremy Bicha <jbicha@debian.org> Mon, 02 Oct 2017 12:36:35 -0400
gdk-pixbuf (2.36.10-2) unstable; urgency=medium
* Add git_fix-tiff-build.patch:
- Backport patch to fix tiff loader build (LP: #1718526)
-- Jeremy Bicha <jbicha@debian.org> Wed, 20 Sep 2017 19:04:33 -0400
gdk-pixbuf (2.36.10-1) unstable; urgency=medium
[ Jeremy Bicha ]
* New upstream release 2.36.9.
* Drop obsolete 0001-skip-perturb-for-cve-2015-4491-original-test.patch
* debian/libgdk-pixbuf2.0-0.symbols: Add new symbol
[ Emilio Pozuelo Monfort ]
* New upstream release 2.36.10.
- CVE-2017-2862: fix code execution vulnerability in jpeg loader.
Closes: #874552.
* Switch to copyright format 1.0.
* copyright: exclude non-free test ref images.
* rules: drop obsolete dh_strip --dbgsym-migration switch.
* postinst: make loaders.cache reproducible. Thanks Chris Lamb for the
patch. Closes: #875704.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 19 Sep 2017 23:39:30 +0200
gdk-pixbuf (2.36.5-4) unstable; urgency=medium
* Release to unstable.
* Bump Standards-Version to 4.1.0
-- Jeremy Bicha <jbicha@debian.org> Wed, 30 Aug 2017 21:34:04 -0400
gdk-pixbuf (2.36.5-3) experimental; urgency=medium
[ Jeremy Bicha ]
* Add new libgdk-pixbuf2.0-bin package to install thumbnailer
binary and metadata needed by gnome-desktop 3.23 (LP: #1665602)
* Have libgdk-pibxuf2.0-0 recommend libgdk-pixbuf2.0-bin
* debian/rules: Change dh_install's --list-missing to --fail-missing to
catch this issue sooner next time
[ Iain Lane ]
* debian/rules: Don't use -X.la - it's error prone as it does substring
matching instead of globbing. Instead use `find ... -delete' to remove
*.la files explicitly.
* debian/control.*: Update Vcs-* for branch.
-- Jeremy Bicha <jbicha@ubuntu.com> Tue, 14 Mar 2017 16:05:47 +0000
gdk-pixbuf (2.36.5-2) unstable; urgency=medium
* Unbranch - that was short lived. Upload the stable release to unstable.
-- Iain Lane <laney@debian.org> Thu, 16 Feb 2017 18:02:30 +0000
gdk-pixbuf (2.36.5-1) experimental; urgency=medium
* Branch to experimental - update Vcs-*
* New upstream release 2.36.5
+ Fix mimetypes for thumbnailer
+ Handle fseek failure
+ Fix signed/unsigned handling
+ Fix an overflow check
+ Handle extreme scaling better
* Bump libglib2.0 BD to 2.48.0, per configure.ac
* Try replacing d/p/01-disable-oom-test.patch with
d/p/0001-skip-perturb-for-cve-2015-4491-original-test.patch: This should
ideally allow the test to be run without OOMing, which is better than not
running it at all. (The proper fix is still to be investigated.)
-- Iain Lane <laney@debian.org> Tue, 14 Feb 2017 11:36:07 +0000
gdk-pixbuf (2.36.4-1) unstable; urgency=medium
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 17 Jan 2017 00:45:42 +0100
gdk-pixbuf (2.36.3-1) unstable; urgency=medium
[ Emilio Pozuelo Monfort ]
* New upstream release.
-- Iain Lane <laney@debian.org> Mon, 09 Jan 2017 14:23:04 +0000
gdk-pixbuf (2.36.2-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Thu, 22 Dec 2016 02:20:02 +0100
gdk-pixbuf (2.36.1-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Sat, 17 Dec 2016 02:28:56 +0100
gdk-pixbuf (2.36.0-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Mon, 19 Sep 2016 19:10:55 +0200
gdk-pixbuf (2.35.5-1) unstable; urgency=medium
* New upstream development release.
* Drop 02-tests-Make-sure-to-NULL-terminate-the-arguments-pass.patch, merged
upstream.
* Bump debhelper compat level to 10.
* Use dh_install --list-missing to show uninstalled files and exclude
libtool .la files.
-- Michael Biebl <biebl@debian.org> Tue, 13 Sep 2016 16:17:03 +0200
gdk-pixbuf (2.35.4-4) unstable; urgency=medium
* Move gtk-doc-tools and libglib2.0-doc from Build-Depends-Indep to
Build-Depends.
-- Michael Biebl <biebl@debian.org> Thu, 08 Sep 2016 19:17:54 +0200
gdk-pixbuf (2.35.4-3) unstable; urgency=medium
* Make sure to NULL terminate the arguments passed to g_test_get_filename().
Otherwise the /pixbuf/composite2 test will segfault. (Closes: #837030)
* Make test-suite failures fatal again.
-- Michael Biebl <biebl@debian.org> Thu, 08 Sep 2016 18:59:21 +0200
gdk-pixbuf (2.35.4-2) unstable; urgency=medium
* Make test-suite failures non-fatal for now to not block ongoing
transitions.
* Build gtk-doc documentation via --enable-gtk-doc.
* Bump Standards-Version to 3.9.8.
-- Michael Biebl <biebl@debian.org> Thu, 08 Sep 2016 16:49:06 +0200
gdk-pixbuf (2.35.4-1) unstable; urgency=medium
* New upstream release.
* Update symbols file with new additions. A few private symbols were
dropped.
* Use dh-exec for substituting multiarch paths in libgdk-pixbuf2.0-0.install
and libgdk-pixbuf2.0-dev.links.
* Convert from cdbs to dh.
-- Michael Biebl <biebl@debian.org> Wed, 07 Sep 2016 18:00:22 +0200
gdk-pixbuf (2.34.0-1) unstable; urgency=medium
[ Emilio Pozuelo Monfort ]
* debian/patches/01-disable-oom-test.patch:
+ Disable a test on kfreebsd that fails because it runs out of
memory on those buildds. Closes: #818233.
[ Michael Biebl ]
* New upstream release.
* Drop libgdk-pixbuf2.0-0-dbg package now that we have automatic dbgsym
packages.
* Ensure proper upgrade from libgdk-pixbuf2.0-0-dbg to new dbgsym packages
by using dh_strip --dbgsym-migration. Bump Build-Depends on debhelper
accordingly.
* Tighten dependency on libpng-dev. We need to ensure that
libgdk-pixbuf2.0-dev pulls in the correct version of libpng-dev as it
encodes the libpng API version it was built against in gdk-pixbuf2.0.pc.
(Closes: #819779)
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Sat, 16 Apr 2016 15:39:05 +0200
gdk-pixbuf (2.33.2-1) experimental; urgency=medium
[ Andreas Henriksson ]
* Add share-mime-info dependency (Closes: #790423)
* Bump Standards-Version to 3.9.7
[ Tobias Frost ]
* Move gtk-doc-tools to Build-Depends-Indep (Closes: #808332)
[ Andreas Henriksson ]
* New upstream release.
-- Andreas Henriksson <andreas@fatal.se> Mon, 14 Mar 2016 22:49:34 +0100
gdk-pixbuf (2.32.3-1.2) unstable; urgency=medium
* Non-maintainer upload.
* Change libpng12-dev runtime-dependency to libpng-dev, to ease libpng
transition.
- Change also build-dependency to libpng-dev (Closes: #642265)
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 27 Jan 2016 18:24:08 +0100
gdk-pixbuf (2.32.3-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Tue, 15 Dec 2015 17:53:41 +0100
gdk-pixbuf (2.32.2-1) unstable; urgency=medium
* New upstream release.
* Update watch file to track stable releases only.
-- Michael Biebl <biebl@debian.org> Wed, 11 Nov 2015 02:01:07 +0100
gdk-pixbuf (2.32.1-1) unstable; urgency=medium
* New upstream release 2.32.1
* Drop patch which is applied upstream
-- Iain Lane <laney@debian.org> Mon, 05 Oct 2015 17:51:16 +0100
gdk-pixbuf (2.32.0-1) unstable; urgency=medium
* New upstream release 2.32.0
* debian/patches/0001-Skip-tests-when-we-can-t-run-them-due-to-lack-of-mem.patch:
Cherry-pick patch from upstream. If we can't run some of the new large
tests due to a lack of memory then skip them. (Closes: #799239)
* debian/patches/skip-large-file-tests-instead-of-ooming: Drop - this was a
previous version of the above patch, which has now been sent upstream.
-- Iain Lane <laney@debian.org> Tue, 22 Sep 2015 16:15:30 +0100
gdk-pixbuf (2.31.7-3) experimental; urgency=medium
* debian/patches/skip-large-file-tests-instead-of-ooming: This didn't catch
all cases. Run some tests in a subprocess so that we can skip them if they
abort due to malloc failing.
-- Iain Lane <laney@debian.org> Fri, 18 Sep 2015 22:08:41 +0100
gdk-pixbuf (2.31.7-2) experimental; urgency=medium
* Run the tests with VERBOSE=1
* debian/patches/skip-large-file-tests-instead-of-ooming: Add a new patch to
skip tests which operate on large files that don't fit in memory on some
constrained systems. Not forwarded yet - this upload is to test it on our
buildds.
-- Iain Lane <laney@debian.org> Thu, 17 Sep 2015 14:38:08 +0100
gdk-pixbuf (2.31.7-1) unstable; urgency=medium
[ Michael Biebl ]
* New upstream release.
- Fixes CVE-2015-4491 (crash with malicious BMP files)
* Disable jasper support. It's an abandoned code base with frequent security
issues and JPEG2000 is an exotic fringe format unused in practice.
Closes: #796270
[ Iain Lane ]
* New upstream release 2.31.7
- Fix several integer overflows (Closes: #753569)
- Fix build failure with --disable-modules
- Port animations to GTask
-- Iain Lane <laney@debian.org> Tue, 15 Sep 2015 16:24:31 +0100
gdk-pixbuf (2.31.5-1) unstable; urgency=medium
* New upstream release.
* Remove obsolete Breaks/Replaces from pre-wheezy.
-- Michael Biebl <biebl@debian.org> Wed, 22 Jul 2015 01:19:13 +0200
gdk-pixbuf (2.31.4-2) unstable; urgency=medium
* Install typelib files into multiarch paths.
* Mark gir package as Multi-Arch: same.
* Point Vcs-* to the unstable branch.
-- Michael Biebl <biebl@debian.org> Wed, 27 May 2015 01:31:18 +0200
gdk-pixbuf (2.31.4-1) unstable; urgency=medium
* New upstream release.
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Wed, 20 May 2015 00:07:11 +0200
gdk-pixbuf (2.31.3-1) experimental; urgency=medium
* New upstream release 2.31.3
- Revert an annotation change that broke bindings
- Clean up configure
- Fix Visual Studio build
- Define MAP_ANONYMOUS when needed
- Include gi18n-lib.h where needed
* Drop debian/patches: the revert is upstream in this release.
* premature-end.* are disted properly now - drop our local copy and manual
installation.
-- Iain Lane <laney@debian.org> Wed, 11 Mar 2015 12:38:43 +0000
gdk-pixbuf (2.31.2-2) experimental; urgency=medium
* revert-0001-lib-Annotate-var-arg-gdk_pixbuf_save.patch: Revert upstream
commit which breaks API which applications actually use.
-- Iain Lane <laney@debian.org> Wed, 25 Feb 2015 19:51:11 +0000
gdk-pixbuf (2.31.2-1) experimental; urgency=medium
* debian/watch: Update to find unstable versions too.
* New upstream release 2.31.2
+ API changes:
- Deprecate GdkPixdata
- Add gdk_pixbuf_get_options() helper to list set options
- Annotations fixes for various functions
- Remove incorrect info about area-prepared signal
+ Image format support changes
- Flag multi-page TIFF files
- Fix memory usage for GIF animations, add note about minimum frame
length (LP: #139067)
- Return an error for truncated PNG files
- Add density (DPI) support for JPEG, PNG and TIFF
- Fix reading CMYK JPEG files generated by Photoshop
- Allow saving 1-bit mono TIFF files as used in faxes
- Simplify loader names
- Fix loading GIF files when the first write is short
- Add progressive loading to ICNS files
- Add support for 256x256 ICO files
- Fix reading MS AMCap2 BMP files
+ Other:
- Honour requested depth in Xlib
- Special-case compositing/copying with no scaling
- Add relocation support to OSX and Linux
* Upstream forgot to dist premature-end.* - bring them in temporarily to get
a fully passing testsuite.
* Add new symbol to symbols file.
-- Iain Lane <laney@debian.org> Tue, 24 Feb 2015 18:10:15 +0000
gdk-pixbuf (2.31.1-2) unstable; urgency=medium
* debian/rules: Fix the permissions of "loaders.cache" file in the udeb to
please lintian
* debian/control.in: Bump Standards-Version to 3.9.6 (no further changes)
* Add debian/libgdk-pixbuf2.0-0-udeb.lintian-overrides: Add an override for
package-contains-mime-cache-file as we intend to ship mime.cache
-- Laurent Bigonville <bigon@debian.org> Tue, 07 Oct 2014 22:28:49 +0200
gdk-pixbuf (2.31.1-1) experimental; urgency=medium
* Fix broken Vcs-Browser url.
* New upstream development release.
* Add new symbols to debian/libgdk-pixbuf2.0-0.symbols
-- Andreas Henriksson <andreas@fatal.se> Sat, 06 Sep 2014 10:06:47 -0700
gdk-pixbuf (2.30.8-1) unstable; urgency=medium
* New upstream release.
* Add Depends on shared-mime-info to libgdk-pixbuf2.0-dev. The
gdk-pixbuf-csource utility requires it for image file format detection.
Closes: #758813
-- Michael Biebl <biebl@debian.org> Tue, 02 Sep 2014 00:45:43 +0200
gdk-pixbuf (2.30.7-1) unstable; urgency=medium
* New upstream release.
-- Michael Biebl <biebl@debian.org> Wed, 23 Apr 2014 15:46:48 +0200
gdk-pixbuf (2.30.6-1) unstable; urgency=medium
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 09 Mar 2014 14:15:14 +0100
gdk-pixbuf (2.30.5-1) unstable; urgency=medium
* New upstream release.
* debian/control.in:
+ Build depend on gtk-doc-tools 1.20.
+ Drop unnecessary b-d on autotools-dev.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 20 Feb 2014 20:37:53 +0100
gdk-pixbuf (2.30.4-1) unstable; urgency=low
[ Michael Biebl ]
* Use the official field for udebs: Package-Type.
[ Jackson Doak ]
* New upstream release (2.30.1).
* debian/control:
- Bump required glib version
- Switch to libtiff over libtiff5. Closes: #681099, #736005.
- Use canonical VCS fields
* Update symbols
* Create basic manpage for gdk-pixbuf-pixdata
* debian/rules: Add upstream changelog location
[ Emilio Pozuelo Monfort ]
* New upstream release (2.30.4).
* debian/control.in:
+ Bump glib requirement.
+ Bump shared-mime-info b-d, needed to properly detect tga files and
use the right loader for them. This affects a couple of tests.
+ Standards-Version is 3.9.5, no changes needed.
* debian/rules:
+ Let debhelper install NEWS as the upstream changelog, otherwise we
end up with NEWS installed twice: as NEWS.gz and changelog.gz.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 16 Feb 2014 20:21:48 +0100
gdk-pixbuf (2.28.2-1) unstable; urgency=low
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 08 Jun 2013 18:32:31 +0200
gdk-pixbuf (2.28.1-2) unstable; urgency=low
* debian/rules,
debian/control:
+ Run dh-autoreconf to avoid an rpath issue on hurd.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 02 Jun 2013 15:41:38 +0200
gdk-pixbuf (2.28.1-1) unstable; urgency=low
* New upstream release.
* Track stable releases again.
* Drop explicit Build-Depends on gir1.2-glib-2.0.
* Bump Standards-Version to 3.9.4.
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Thu, 09 May 2013 02:01:16 +0200
gdk-pixbuf (2.28.0-1) experimental; urgency=low
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 26 Mar 2013 13:09:02 +0100
gdk-pixbuf (2.27.3-1) experimental; urgency=low
* New upstream release.
+ d/p/0001-animation-Allow-prepare_func-call-in-stop_load.patch:
- Removed, included upstream.
-- Emilio Pozuelo Monfort <pochu@debian.org> Tue, 19 Mar 2013 00:23:11 +0100
gdk-pixbuf (2.27.2-2) experimental; urgency=low
* d/p/0001-animation-Allow-prepare_func-call-in-stop_load.patch:
+ Backport patch from upstream GIT, fixes a crash with animations.
Closes: #702780, #702517.
-- Emilio Pozuelo Monfort <pochu@debian.org> Thu, 14 Mar 2013 22:19:36 +0100
gdk-pixbuf (2.27.2-1) experimental; urgency=low
[ Martin Pitt ]
* Add debian/tests: Simple compile/link/run autopkgtest. Thanks Rafał
Cieślak! (LP: #1073528)
[ Emilio Pozuelo Monfort ]
* New upstream release.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 02 Mar 2013 18:26:49 +0100
gdk-pixbuf (2.27.1-1) experimental; urgency=low
* New upstream release.
+ debian/control.in:
- Update build dependencies.
+ debian/libgdk-pixbuf2.0-0.symbols:
- Updated for the new symbols.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 23 Feb 2013 19:58:45 +0100
gdk-pixbuf (2.26.4-2) experimental; urgency=low
* Team upload
* Add a -dbg package
* Go to debhelper compat level 9, for compressed symbol files
-- Simon McVittie <smcv@debian.org> Wed, 24 Oct 2012 19:37:52 +0100
gdk-pixbuf (2.26.4-1) experimental; urgency=low
* Team upload
* New upstream bugfix release
-- Simon McVittie <smcv@debian.org> Tue, 23 Oct 2012 16:41:38 +0100
gdk-pixbuf (2.26.1-1) unstable; urgency=low
* New upstream bug fix release:
- Fix srcdir != builddir build.
- Avoid an integer overflow in the xbm loader. (LP: #681150)
- Translation updates.
* debian/control.in: Prefer building against libpng-dev over libpng12-dev,
to be prepared for the libpng 1.5 transition. (Closes: #662344)
* debian/control.in: Bump Standards-Version to 3.9.3 (no changes necessary).
-- Martin Pitt <mpitt@debian.org> Mon, 16 Apr 2012 07:21:41 +0200
gdk-pixbuf (2.26.0-2) unstable; urgency=low
* Upload to unstable.
-- Michael Biebl <biebl@debian.org> Fri, 30 Mar 2012 09:01:26 +0200
gdk-pixbuf (2.26.0-1) experimental; urgency=low
* New upstream release.
-- Michael Biebl <biebl@debian.org> Wed, 21 Mar 2012 01:48:57 +0100
gdk-pixbuf (2.25.2-1) experimental; urgency=low
* New upstream development release.
* debian/libgdk-pixbuf2.0-0.symbols: Add new symbols.
* debian/libgdk-pixbuf2.0-dev.install: Install gdk-pixbuf-pixdata tool.
* debian/control.in: Bump Build-Depends on libglib2.0-dev to (>= 2.31.0).
-- Michael Biebl <biebl@debian.org> Sun, 04 Mar 2012 07:45:41 +0100
gdk-pixbuf (2.24.1-1) unstable; urgency=low
* New upstream release.
* Explicitly enable X11 support.
* Use upper case form of term GDK in package description. (Closes: #622217)
-- Michael Biebl <biebl@debian.org> Mon, 06 Feb 2012 04:39:50 +0100
gdk-pixbuf (2.24.0-2) unstable; urgency=low
[ Michael Biebl ]
* debian/watch:
- Switch to .xz tarballs.
[ Josselin Mouette ]
* Split locales in a separate package for multiarch:
libgdk-pixbuf2.0-common. Make it m-a: foreign.
[ Michael Biebl ]
* Change section of gir1.2-gdkpixbuf-2.0 to introspection.
-- Michael Biebl <biebl@debian.org> Wed, 14 Dec 2011 22:12:21 +0100
gdk-pixbuf (2.24.0-1) unstable; urgency=low
* New upstream bug fix release.
-- Martin Pitt <mpitt@debian.org> Fri, 02 Sep 2011 12:05:31 +0200
gdk-pixbuf (2.23.5-3) unstable; urgency=low
* debian/rules:
- Trap errors in for loop using 'set -e'.
* debian/libgdk-pixbuf2.0-0.postinst.in:
- Don't hide error messages from gdk-pixbuf-query-loaders.
- Handle more gracefully the case where the non-multiarch loaders
directory is empty or doesn't exist.
-- Michael Biebl <biebl@debian.org> Thu, 28 Jul 2011 18:18:06 +0200
gdk-pixbuf (2.23.5-2) unstable; urgency=low
[ Steve Langasek ]
* Multiarch support. (Closes: #632354)
[ Michael Biebl ]
* debian/libgdk-pixbuf2.0-dev.install:
- Don't ship libtool .la file as this breaks multiarch.
* debian/control.in:
- Change Build-Depends on libjpeg62-dev to libjpeg-dev in preparation of
the libjpeg8 transition. (Closes: #633940)
-- Michael Biebl <biebl@debian.org> Sat, 16 Jul 2011 01:25:32 +0200
gdk-pixbuf (2.23.5-1) unstable; urgency=low
* New upstream release.
* debian/watch: Switch to .bz2 tarballs.
* Refresh debian/patches/041_ia32-libs.patch.
* Bump Standards-Version to 3.9.2. No further changes.
* Bump debhelper compatiblility level to 8.
- Update Build-Depends on debhelper.
- Strip debian/tmp/ from .install files.
-- Michael Biebl <biebl@debian.org> Sat, 02 Jul 2011 00:45:36 +0200
gdk-pixbuf (2.23.3-3.1) unstable; urgency=high
* Non-maintainer upload by the Security Team.
* Fix improper check of gif_main_loop() resulting in DoS conditions
on specially crafted GIF images (CVE-2011-2485; Closes: #631524)
-- Nico Golde <nion@debian.org> Tue, 28 Jun 2011 21:59:16 +0200
gdk-pixbuf (2.23.3-3) unstable; urgency=low
* Move the mime.cache generation from gtk+ udebs to this one, since
this file is actually needed for gdk_pixbuf.
* Add related build-dependencies on shared-mime-info and xsltproc.
-- Josselin Mouette <joss@debian.org> Sun, 10 Apr 2011 18:04:19 +0200
gdk-pixbuf (2.23.3-2) unstable; urgency=low
* Upload to unstable.
-- Josselin Mouette <joss@debian.org> Sun, 10 Apr 2011 15:27:42 +0200
gdk-pixbuf (2.23.3-1) experimental; urgency=low
[ Laurent Bigonville ]
* New Upstream release
- Bump libglib2.0-dev build-dependency
* Make libgdk-pixbuf2.0-dev Breaks/Replaces libgtk2.0-bin (<< 2.21.3)
(Closes: #612580)
* debian/control.in, debian/rules: Rely on cdbs to call dh_girepository
[ Josselin Mouette ]
* Make the -dev package depend on the gir package.
* Add missing Replaces on gir1.2-gtk-2.0. Closes: #620572.
-- Laurent Bigonville <bigon@debian.org> Tue, 05 Apr 2011 11:21:38 +0200
gdk-pixbuf (2.23.0-2) experimental; urgency=low
* Re-add .la files, too much other packages are still referencing it.
(Closes: #607000, LP: #665768)
-- Laurent Bigonville <bigon@debian.org> Tue, 04 Jan 2011 20:54:56 +0100
gdk-pixbuf (2.23.0-1) experimental; urgency=low
* New upstream development release.
- debian/libgdk-pixbuf2.0-0.symbols:
+ Updated.
* debian/rules:
- Blindly bump the shlibs version. We've got a symbols file anyway and
updating the version is error prone.
- Run the test suite during the build.
-- Emilio Pozuelo Monfort <pochu@debian.org> Fri, 24 Dec 2010 20:10:44 +0000
gdk-pixbuf (2.22.1-4) experimental; urgency=low
* Update to the new gir policy:
- Rename gir1.0-gdkpixbuf-2.0 to gir1.2-gdkpixbuf-2.0.
- Bump the gobject-introspection build dependency.
- Build depend on gir1.2 packages.
-- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 11 Dec 2010 19:24:49 +0100
gdk-pixbuf (2.22.1-3) experimental; urgency=low
* debian/control.in:
- Add Replaces: gir-repository-dev for
libgdk-pixbuf2.0-dev package (Closes: #605734)
- Use Breaks instead of Conflicts when required
-- Laurent Bigonville <bigon@debian.org> Sun, 05 Dec 2010 19:04:56 +0100
gdk-pixbuf (2.22.1-2) experimental; urgency=low
* debian/watch: Fix URL pattern
-- Laurent Bigonville <bigon@debian.org> Tue, 23 Nov 2010 20:36:29 +0100
gdk-pixbuf (2.22.1-1) experimental; urgency=low
[ Emilio Pozuelo Monfort ]
* Add a gir package, based on the Ubuntu changes.
[ Laurent Bigonville ]
* New upstream stable release.
- Bump build-dependencies
* debian/control.in:
- Bump Standards-Version to 3.9.1 (no further changes)
- Use Debian GNOME Maintainers team as Maintainer
- Add Vcs-Svn and Vcs-Browser fields
- Add dependency against libpng12-dev on libgdk-pixbuf2.0-dev package
(as required by the .pc file)
* debian/rules: Pass --enable-introspection to configure
* debian/libgdk-pixbuf2.0-dev.install: Install .gir file
-- Laurent Bigonville <bigon@debian.org> Mon, 22 Nov 2010 19:14:29 +0100
gdk-pixbuf (2.22.0-1) experimental; urgency=low
* New upstream stable release.
-- Sebastian Dröge <slomo@debian.org> Tue, 21 Sep 2010 20:49:40 +0200
gdk-pixbuf (2.21.7-1) experimental; urgency=low
* New upstream development release:
+ debian/patches/041_ia32-libs.patch:
- Refreshed.
-- Sebastian Dröge <slomo@debian.org> Fri, 10 Sep 2010 15:41:43 +0200
gdk-pixbuf (2.21.6-2) experimental; urgency=low
* debian/control.in:
+ Add Breaks for libwmf0.2-7 (<< 0.2.8.4-7) and librsvg2-2 (<< 2.26.3-2)
because of the new location for the pixbuf loaders.
-- Sebastian Dröge <slomo@debian.org> Fri, 23 Jul 2010 07:49:08 +0200
gdk-pixbuf (2.21.6-1) experimental; urgency=low
[ Robert Ancell ]
* Initial release
[ Sebastian Dröge ]
* debian/control.in:
+ Fix GTK+2.0 replaces/conflicts versions to << 2.21.3.
+ Rename packages to include the 2.0 API version.
* debian/rules,
debian/libgdk-pixbuf2.0-0.symbols:
+ Add symbols file and pass correct parameters to dh_makeshlibs.
* debian/copyright:
+ Update with all copyright holders.
* debian/control.in,
debian/rules,
debian/libgdk-pixbuf2.0-0-udeb.install:
+ Add udeb package.
* debian/rules:
+ Enable libjasper JPEG2000 loader.
* debian/rules:
+ Generate loader files for the udeb.
* debian/libgdk-pixbuf2.0-0.triggers,
debian/libgdk-pixbuf2.0-0.postinst,
debian/libgdk-pixbuf2.0-0.postrm:
+ Use triggers for the pixbuf loaders.
* debian/libgdk-pixbuf2.0-0.install,
debian/libgdk-pixbuf2.0-dev.links:
+ Put gdk-pixbuf-query-loaders into a versioned directory
and put a link to it for /usr/bin into the -dev package.
+ Move manpage into the -dev package too.
* debian/control.in,
+ Add libx11-dev and libglib2.0-dev to the -dev package dependencies.
+ Build depend on libx11-dev.
-- Sebastian Dröge <slomo@debian.org> Thu, 22 Jul 2010 17:20:30 +0200
|