commit gdk-pixbuf for openSUSE:Factory

2020-07-28 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2020-07-28 17:24:27

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.3592 (New)


Package is "gdk-pixbuf"

Tue Jul 28 17:24:27 2020 rev:79 rq:822966 version:2.40.0

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2020-02-29 
21:21:09.894118774 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.3592/gdk-pixbuf.changes  
2020-07-28 17:25:04.273886551 +0200
@@ -1,0 +2,7 @@
+Mon Jul 27 06:56:15 UTC 2020 - Jia Zhaocong 
+
+- Add gdk-pixbuf-boo1174307-io-gif-overflow.patch: Avoid overflows
+  by checking the memset length argument (boo#1174307).
+- Raise dependency glib-2.0 version.
+
+---

New:

  gdk-pixbuf-boo1174307-io-gif-overflow.patch



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.ebrKz2/_old  2020-07-28 17:25:05.861888353 +0200
+++ /var/tmp/diff_new_pack.ebrKz2/_new  2020-07-28 17:25:05.865888357 +0200
@@ -37,6 +37,9 @@
 Source3:gdk-pixbuf-rpmlintrc
 Source99:   baselibs.conf
 
+# PATCH-FIX-UPSTREAM gdk-pixbuf-boo1174307-io-gif-overflow.patch boo#1174307 
glgo#GNOME/gdk-pixbuf#132 zc...@suse.com -- Avoid overflows by checking the 
memset length argument
+Patch0: gdk-pixbuf-boo1174307-io-gif-overflow.patch
+
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gtk-doc
 BuildRequires:  libjpeg-devel
@@ -46,7 +49,7 @@
 BuildRequires:  translation-update-upstream
 BuildRequires:  unzip
 BuildRequires:  xsltproc
-BuildRequires:  pkgconfig(glib-2.0) >= 2.48.0
+BuildRequires:  pkgconfig(glib-2.0) >= 2.56.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)
@@ -135,6 +138,7 @@
 %setup -c -T -q
 unzip -P gecko %{SOURCE0}
 translation-update-upstream
+%patch0 -p1
 %if "%{_lib}" == "lib64"
 cp -a %{SOURCE2} .
 %endif


++ gdk-pixbuf-boo1174307-io-gif-overflow.patch ++
>From 43ec8f286e3d499d82735c16bbca83d7a1c03efa Mon Sep 17 00:00:00 2001
From: Emmanuele Bassi 
Date: Wed, 1 Apr 2020 18:11:55 +0100
Subject: [PATCH] Check the memset length argument

Avoid overflows by using the checked multiplication macro for gsize.

Fixes: #132
---
 gdk-pixbuf/io-gif-animation.c | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gdk-pixbuf/io-gif-animation.c b/gdk-pixbuf/io-gif-animation.c
index a3155e065..d74296337 100644
--- a/gdk-pixbuf/io-gif-animation.c
+++ b/gdk-pixbuf/io-gif-animation.c
@@ -411,11 +411,15 @@ gdk_pixbuf_gif_anim_iter_get_pixbuf 
(GdkPixbufAnimationIter *anim_iter)
 
 /* If no rendered frame, render the first frame */
 if (anim->last_frame == NULL) {
+gsize len = 0;
 if (anim->last_frame_data == NULL)
 anim->last_frame_data = gdk_pixbuf_new 
(GDK_COLORSPACE_RGB, TRUE, 8, anim->width, anim->height);
 if (anim->last_frame_data == NULL)
 return NULL;
-memset (gdk_pixbuf_get_pixels (anim->last_frame_data), 0, 
gdk_pixbuf_get_rowstride (anim->last_frame_data) * anim->height);
+if (g_size_checked_mul (, gdk_pixbuf_get_rowstride 
(anim->last_frame_data), anim->height))
+memset (gdk_pixbuf_get_pixels (anim->last_frame_data), 
0, len);
+else
+return NULL;
 composite_frame (anim, g_list_nth_data (anim->frames, 0));
 }
 
-- 
GitLab




commit gdk-pixbuf for openSUSE:Factory

2020-02-29 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2020-02-29 21:21:00

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.26092 (New)


Package is "gdk-pixbuf"

Sat Feb 29 21:21:00 2020 rev:78 rq:779892 version:2.40.0

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2020-02-03 
11:26:55.534138004 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.26092/gdk-pixbuf.changes 
2020-02-29 21:21:09.894118774 +0100
@@ -1,0 +2,17 @@
+Mon Feb 24 01:29:03 UTC 2020 - Yifan Jiang 
+
+- A file tests/test-images/gif-test-suite/max-width.gif from the
+  test suite is correctly identified by clamav to be a malicious
+  BC.Gif.Exploit.Agent-1425366.Agent. This is an intentional part
+  of the test suite to ensure it has no negative side effects.
+
+  On SLE, the package is built with clamav scanning, which then
+  prevents a successful build. This change repacks the source
+  package to a password-protected zip to bypass the clamav scanning
+  for SLE (bsc#1159337), with following update:
+
+  + Download upstream tarball through source service
+  + Add pre_checkin.sh to convert tarball to zip file
+  + Update spec-file to use the zip file as main source
+
+---

Old:

  gdk-pixbuf-2.40.0.tar.xz

New:

  _service
  gdk-pixbuf-2.40.0.zip
  pre_checkin.sh



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.udetm4/_old  2020-02-29 21:21:11.774122495 +0100
+++ /var/tmp/diff_new_pack.udetm4/_new  2020-02-29 21:21:11.798122542 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gdk-pixbuf
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,7 +27,11 @@
 Group:  Development/Libraries/GNOME
 URL:https://www.gnome.org/
 
-Source0:
https://download.gnome.org/sources/gdk-pixbuf/2.40/%{name}-%{version}.tar.xz
+# A filefrom the test suite is correctly identified by clamav to be a
+# malicious BC.Gif.Exploit.Agent-1425366.Agent. This is an intentional part of
+# the test suite to ensure it has no negative side effects. Change the Source0
+# from tar.xz to zip to bypass clamav scanning on SLE.
+Source0:%{name}-%{version}.zip
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source3:gdk-pixbuf-rpmlintrc
@@ -40,6 +44,7 @@
 BuildRequires:  meson
 BuildRequires:  pkgconfig
 BuildRequires:  translation-update-upstream
+BuildRequires:  unzip
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(glib-2.0) >= 2.48.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
@@ -127,7 +132,8 @@
 %lang_package
 
 %prep
-%autosetup -p1
+%setup -c -T -q
+unzip -P gecko %{SOURCE0}
 translation-update-upstream
 %if "%{_lib}" == "lib64"
 cp -a %{SOURCE2} .

++ _service ++

 
   https
   download.gnome.org
   sources/gdk-pixbuf/2.40/gdk-pixbuf-2.40.0.tar.xz
 
 


++ pre_checkin.sh ++
#!/bin/sh

# To update the package:
## 1. update the version tags in _service
## 2. run `osc service ra`;# get the upstream release, and set 
the version string in spec
## 3. run `./pre_checkin.sh`;  # generate the zip file
## 4. edit changelog and commit the change # the tar.xz file generated by the 
step 2 is not necessarily to commit

EXTRACTDIR=$(mktemp -d);
BASENAME=$(grep ^Name\: gdk-pixbuf.spec | cut -d: -f2 | sed 's/[[:space:]]//g');
VERSION=$(grep ^Version\: gdk-pixbuf.spec | cut -d: -f2 | sed 
's/[[:space:]]//g');

tar xvfJ $BASENAME-$VERSION.tar.xz -C $EXTRACTDIR;
pushd $EXTRACTDIR/$BASENAME-$VERSION && zip -r -P gecko $BASENAME-$VERSION.zip 
* && popd && mv $EXTRACTDIR/$BASENAME-$VERSION/$BASENAME-$VERSION.zip .;
rm -fr $EXTRACTDIR && rm -fr $BASENAME-$VERSION.tar.xz;



commit gdk-pixbuf for openSUSE:Factory

2020-02-03 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2020-02-03 11:26:53

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.26092 (New)


Package is "gdk-pixbuf"

Mon Feb  3 11:26:53 2020 rev:77 rq:768715 version:2.40.0

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2019-10-17 
12:58:14.249465110 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.26092/gdk-pixbuf.changes 
2020-02-03 11:26:55.534138004 +0100
@@ -1,0 +2,5 @@
+Thu Jan 30 12:17:20 UTC 2020 - Dominique Leuenberger 
+
+- No longer recommend -lang: supplements are in use
+
+---



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.KYlOv3/_old  2020-02-03 11:26:57.554138091 +0100
+++ /var/tmp/diff_new_pack.KYlOv3/_new  2020-02-03 11:26:57.558138091 +0100
@@ -56,7 +56,6 @@
 # Provide %%{name} to make the lang package installable
 Group:  System/Libraries
 Requires(post): gdk-pixbuf-query-loaders
-Recommends: %{name}-lang = %{version}
 Conflicts:  gtk2 < 2.21.3
 Provides:   %{name} = %{version}
 




commit gdk-pixbuf for openSUSE:Factory

2019-10-17 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2019-10-17 12:58:11

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.2352 (New)


Package is "gdk-pixbuf"

Thu Oct 17 12:58:11 2019 rev:76 rq:736514 version:2.40.0

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2019-09-11 
10:18:22.711525764 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.2352/gdk-pixbuf.changes  
2019-10-17 12:58:14.249465110 +0200
@@ -1,0 +2,19 @@
+Tue Oct  8 11:52:24 UTC 2019 - Bjørn Lie 
+
+- Update to version 2.40.0:
+  + Allow creating a GdkPixbuf instance without any property.
+
+---
+Mon Sep  9 08:46:09 UTC 2019 - mgo...@suse.com
+
+- Update to version 2.39.2:
+  + Add gdk_pixbuf_init_modules() for applications with GdkPixbuf
+loader modules in a separate directory.
+  + Add subproject fallback for dependencies.
+  + Handle large XPM without crashing.
+  + Use the appropriate gdk-pixbuf-query-loaders on install.
+  + Disable deprecation warnings introduced by GLib 2.62.
+  + Escape GIF version in error messages.
+  + Render GIF frames on demand.
+
+---

Old:

  gdk-pixbuf-2.38.2.tar.xz

New:

  gdk-pixbuf-2.40.0.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.0idWaM/_old  2019-10-17 12:58:14.877463520 +0200
+++ /var/tmp/diff_new_pack.0idWaM/_new  2019-10-17 12:58:14.881463509 +0200
@@ -20,14 +20,14 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.38.2
+Version:2.40.0
 Release:0
 Summary:An image loading library
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
 URL:https://www.gnome.org/
 
-Source0:
https://download.gnome.org/sources/gdk-pixbuf/2.38/%{name}-%{version}.tar.xz
+Source0:
https://download.gnome.org/sources/gdk-pixbuf/2.40/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source3:gdk-pixbuf-rpmlintrc

++ gdk-pixbuf-2.38.2.tar.xz -> gdk-pixbuf-2.40.0.tar.xz ++
 12211 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2019-09-11 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2019-09-11 10:18:22

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.7948 (New)


Package is "gdk-pixbuf"

Wed Sep 11 10:18:22 2019 rev:75 rq:729387 version:2.38.2

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2019-05-16 
21:56:19.546881459 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.7948/gdk-pixbuf.changes  
2019-09-11 10:18:22.711525764 +0200
@@ -1,0 +2,17 @@
+Mon Sep  9 08:46:08 UTC 2019 - Bjørn Lie 
+
+- Update to version 2.38.2:
+  + build: Remove unnecessary argument.
+  + gif: Suppress last deprecation warning.
+  + tests:
+- Disable deprecation warnings for GTimeVal.
+- Add test for issue 95.
+- Add test image for invalid XPM data.
+  + Disable deprecation warnings for GTimeVal.
+  + Use the monotonic clock instead of wall one.
+  + xpm:
+- Fail when XPM file doesn't contain enough data.
+- Simplify error path.
+- Sanity check XPM file dimensions.
+
+---

Old:

  gdk-pixbuf-2.38.1.tar.xz

New:

  gdk-pixbuf-2.38.2.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.zKizmx/_old  2019-09-11 10:18:23.315525689 +0200
+++ /var/tmp/diff_new_pack.zKizmx/_new  2019-09-11 10:18:23.315525689 +0200
@@ -18,18 +18,21 @@
 
 # When updating the binary version, do not forget to also update baselibs.conf
 %define gdk_pixbuf_binary_version 2.10.0
+
 Name:   gdk-pixbuf
-Version:2.38.1
+Version:2.38.2
 Release:0
 Summary:An image loading library
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
 URL:https://www.gnome.org/
+
 Source0:
https://download.gnome.org/sources/gdk-pixbuf/2.38/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source3:gdk-pixbuf-rpmlintrc
 Source99:   baselibs.conf
+
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gtk-doc
 BuildRequires:  libjpeg-devel

++ gdk-pixbuf-2.38.1.tar.xz -> gdk-pixbuf-2.38.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gdk-pixbuf-2.38.1/gdk-pixbuf/gdk-pixbuf-animation.c 
new/gdk-pixbuf-2.38.2/gdk-pixbuf/gdk-pixbuf-animation.c
--- old/gdk-pixbuf-2.38.1/gdk-pixbuf/gdk-pixbuf-animation.c 2019-02-28 
17:22:57.0 +0100
+++ new/gdk-pixbuf-2.38.2/gdk-pixbuf/gdk-pixbuf-animation.c 2019-09-09 
00:28:00.0 +0200
@@ -21,6 +21,7 @@
  */
 
 #include "config.h"
+#define GLIB_DISABLE_DEPRECATION_WARNINGS
 #include 
 #include "gdk-pixbuf-private.h"
 #include "gdk-pixbuf-animation.h"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gdk-pixbuf-2.38.1/gdk-pixbuf/gdk-pixbuf-animation.h 
new/gdk-pixbuf-2.38.2/gdk-pixbuf/gdk-pixbuf-animation.h
--- old/gdk-pixbuf-2.38.1/gdk-pixbuf/gdk-pixbuf-animation.h 2019-02-28 
17:22:57.0 +0100
+++ new/gdk-pixbuf-2.38.2/gdk-pixbuf/gdk-pixbuf-animation.h 2019-09-09 
00:28:00.0 +0200
@@ -106,9 +106,12 @@
 GDK_PIXBUF_AVAILABLE_IN_ALL
 GdkPixbuf  *gdk_pixbuf_animation_get_static_image (GdkPixbufAnimation 
*animation);
 
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
 GDK_PIXBUF_AVAILABLE_IN_ALL
 GdkPixbufAnimationIter *gdk_pixbuf_animation_get_iter
(GdkPixbufAnimation *animation,
   
const GTimeVal *start_time);
+G_GNUC_END_IGNORE_DEPRECATIONS
+
 GDK_PIXBUF_AVAILABLE_IN_ALL
 GType   gdk_pixbuf_animation_iter_get_type   
(void) G_GNUC_CONST;
 GDK_PIXBUF_AVAILABLE_IN_ALL
@@ -117,9 +120,11 @@
 GdkPixbuf  *gdk_pixbuf_animation_iter_get_pixbuf 
(GdkPixbufAnimationIter *iter);
 GDK_PIXBUF_AVAILABLE_IN_ALL
 gbooleangdk_pixbuf_animation_iter_on_currently_loading_frame 
(GdkPixbufAnimationIter *iter);
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
 GDK_PIXBUF_AVAILABLE_IN_ALL
 gbooleangdk_pixbuf_animation_iter_advance
(GdkPixbufAnimationIter *iter,
   
const GTimeVal *current_time);
+G_GNUC_END_IGNORE_DEPRECATIONS
 
 
 #ifdef GDK_PIXBUF_ENABLE_BACKEND
@@ -150,6 +155,7 @@
 
 };
 
+G_GNUC_BEGIN_IGNORE_DEPRECATIONS
 struct _GdkPixbufAnimationClass {
 GObjectClass parent_class;
 
@@ -167,6 +173,7 @@
  const GTimeVal *start_time);
 
 };

commit gdk-pixbuf for openSUSE:Factory

2019-05-16 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2019-05-16 21:56:18

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.5148 (New)


Package is "gdk-pixbuf"

Thu May 16 21:56:18 2019 rev:74 rq:701851 version:2.38.1

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2019-03-04 
09:14:41.708662308 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.5148/gdk-pixbuf.changes  
2019-05-16 21:56:19.546881459 +0200
@@ -1,0 +2,5 @@
+Wed May  8 09:33:53 UTC 2019 - Dominique Leuenberger 
+
+- Move RPM macros to %_rpmmacrodir.
+
+---



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.eg1hon/_old  2019-05-16 21:56:20.322881126 +0200
+++ /var/tmp/diff_new_pack.eg1hon/_new  2019-05-16 21:56:20.342881118 +0200
@@ -25,13 +25,11 @@
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
 URL:https://www.gnome.org/
-
 Source0:
https://download.gnome.org/sources/gdk-pixbuf/2.38/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source3:gdk-pixbuf-rpmlintrc
 Source99:   baselibs.conf
-
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gtk-doc
 BuildRequires:  libjpeg-devel
@@ -160,8 +158,8 @@
   mv %{buildroot}%{_mandir}/man1/gdk-pixbuf-query-loaders.1 
%{buildroot}%{_mandir}/man1/gdk-pixbuf-query-loaders-64.1
 %endif
 # Install rpm macros
-mkdir -p %{buildroot}%{_sysconfdir}/rpm
-cp %{SOURCE1} %{buildroot}%{_sysconfdir}/rpm
+mkdir -p %{buildroot}%{_rpmmacrodir}
+cp %{SOURCE1} %{buildroot}%{_rpmmacrodir}
 
 #
 # Note: when updating scriptlets, don't forget to also update baselibs.conf #
@@ -248,7 +246,7 @@
 %{_datadir}/gir-1.0/GdkPixbuf-2.0.gir
 %{_datadir}/gir-1.0/GdkPixdata-2.0.gir
 %doc %{_datadir}/gtk-doc/html/gdk-pixbuf
-%{_sysconfdir}/rpm/macros.gdk-pixbuf
+%{_rpmmacrodir}/macros.gdk-pixbuf
 
 %files lang -f %{name}.lang
 




commit gdk-pixbuf for openSUSE:Factory

2019-03-04 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2019-03-04 09:14:36

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.28833 (New)


Package is "gdk-pixbuf"

Mon Mar  4 09:14:36 2019 rev:73 rq:680625 version:2.38.1

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2018-10-17 
08:10:33.995150788 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new.28833/gdk-pixbuf.changes 
2019-03-04 09:14:41.708662308 +0100
@@ -1,0 +2,14 @@
+Thu Feb 28 17:49:05 UTC 2019 - Bjørn Lie 
+
+- Update to version 2.38.1:
+  + Fix OOM in JPEG2000 loader.
+  + Fix thumbnailing of animated GIFs.
+  + Multiple improvements to the GIF loader.
+  + Fix introspection generation.
+  + Fix error handling in PNG loader.
+  + Improve reproducibility of the build.
+  + Speed up saving PNG files.
+  + Add variables in the pkg-config files for binary utilities.
+  + Build fixes.
+
+---

Old:

  gdk-pixbuf-2.38.0.tar.xz

New:

  gdk-pixbuf-2.38.1.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.MnGlWG/_old  2019-03-04 09:14:42.392662185 +0100
+++ /var/tmp/diff_new_pack.MnGlWG/_new  2019-03-04 09:14:42.396662185 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gdk-pixbuf
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,24 +12,26 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 # When updating the binary version, do not forget to also update baselibs.conf
 %define gdk_pixbuf_binary_version 2.10.0
 Name:   gdk-pixbuf
-Version:2.38.0
+Version:2.38.1
 Release:0
 Summary:An image loading library
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
 URL:https://www.gnome.org/
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.38/%{name}-%{version}.tar.xz
+
+Source0:
https://download.gnome.org/sources/gdk-pixbuf/2.38/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source3:gdk-pixbuf-rpmlintrc
 Source99:   baselibs.conf
+
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gtk-doc
 BuildRequires:  libjpeg-devel
@@ -125,7 +127,7 @@
 %lang_package
 
 %prep
-%setup -q
+%autosetup -p1
 translation-update-upstream
 %if "%{_lib}" == "lib64"
 cp -a %{SOURCE2} .

++ gdk-pixbuf-2.38.0.tar.xz -> gdk-pixbuf-2.38.1.tar.xz ++
 33403 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2018-10-17 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2018-10-17 08:10:31

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Wed Oct 17 08:10:31 2018 rev:72 rq:636750 version:2.38.0

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2018-07-14 
20:14:20.786518594 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2018-10-17 08:10:33.995150788 +0200
@@ -1,0 +2,14 @@
+Sun Sep  9 07:32:39 UTC 2018 - antoine.belv...@opensuse.org
+
+- Update to version 2.38.0:
+  + Stable release.
+  + Documentation fixes.
+
+---
+Wed Aug 22 12:57:37 UTC 2018 - bjorn@gmail.com
+
+- Update to version 2.37.92:
+  + Ensure that GdkPixbuf's storage is safely handled.
+  + Add test case for buffer overflow in pixdata loader.
+
+---
@@ -5,0 +20,20 @@
+
+---
+Wed Jun 20 02:10:46 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 2.37.0:
+  + Plug a memory leak when using GBytes (bgo#787626).
+  + Fix introspection annotations (bgo#789935).
+  + Fix OOB error when dithering (bgo#748211).
+  + Drop the MMX assembly optimizations for pixops.
+  + Improve compatibility for the post-install script (bgo#795705).
+  + Expose the dimensions of the original image from
+GdkPixbufLoader (bgo#778517).
+  + Improve thumbnailer implementation (bgo#778517).
+  + Generate separate introspection data for GdkPixdata API
+(glgo#GNOME/gdk-pixbuf#72).
+  + Deprecate GDK_INTERP_HYPER (glgo#GNOME/gdk-pixbuf#3).
+- Pass installed_tests as false to meson to make sure we don't ship
+  unnecessary tests.
+- Add typelib-1_0-GdkPixdata GI subpackage and require it on the
+  devel package, following upstream changes.

Old:

  gdk-pixbuf-2.36.12.tar.xz

New:

  gdk-pixbuf-2.38.0.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.dHRv1V/_old  2018-10-17 08:10:34.571150533 +0200
+++ /var/tmp/diff_new_pack.dHRv1V/_new  2018-10-17 08:10:34.575150531 +0200
@@ -19,13 +19,13 @@
 # When updating the binary version, do not forget to also update baselibs.conf
 %define gdk_pixbuf_binary_version 2.10.0
 Name:   gdk-pixbuf
-Version:2.36.12
+Version:2.38.0
 Release:0
 Summary:An image loading library
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
 URL:https://www.gnome.org/
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.36/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.38/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source3:gdk-pixbuf-rpmlintrc
@@ -63,7 +63,7 @@
 Clutter.
 
 %package -n typelib-1_0-GdkPixbuf-2_0
-Summary:Introspection bindins for gdk-pixbuf
+Summary:Introspection bindings for gdk-pixbuf
 Group:  System/Libraries
 
 %description -n typelib-1_0-GdkPixbuf-2_0
@@ -73,6 +73,17 @@
 
 This package provides the GObject Introspection bindings for gdk-pixbuf.
 
+%package -n typelib-1_0-GdkPixdata-2_0
+Summary:Introspection bindings for gdk-pixdata
+Group:  System/Libraries
+
+%description -n typelib-1_0-GdkPixdata-2_0
+gdk-pixbuf is an image loading library that can be extended by loadable
+modules for new image formats. It is used by toolkits such as GTK+ or
+Clutter.
+
+This package provides the GObject Introspection bindings for gdk-pixdata.
+
 %package query-loaders
 Summary:Utility to create a cache of gdk-pixbuf loaders
 Group:  System/X11/Utilities
@@ -102,6 +113,7 @@
 Group:  Development/Languages/C and C++
 Requires:   libgdk_pixbuf-2_0-0 = %{version}
 Requires:   typelib-1_0-GdkPixbuf-2_0 = %{version}
+Requires:   typelib-1_0-GdkPixdata-2_0 = %{version}
 
 %description devel
 gdk-pixbuf is an image loading library that can be extended by loadable
@@ -132,6 +144,7 @@
-Dman=true \
-Drelocatable=false \
-Dnative_windows_loaders=false \
+   -Dinstalled_tests=false \
%{nil}
 %meson_build
 
@@ -196,7 +209,7 @@
 
 %files -n libgdk_pixbuf-2_0-0
 %license COPYING
-%doc AUTHORS NEWS
+%doc NEWS
 %if "%{_lib}" == "lib64"
 %doc README.SUSE
 %endif
@@ -211,6 +224,9 @@
 %files -n typelib-1_0-GdkPixbuf-2_0
 %{_libdir}/girepository-1.0/GdkPixbuf-2.0.typelib
 
+%files -n typelib-1_0-GdkPixdata-2_0
+%{_libdir}/girepository-1.0/GdkPixdata-2.0.typelib
+
 %files query-loaders
 

commit gdk-pixbuf for openSUSE:Factory

2018-07-14 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2018-07-14 20:14:19

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Sat Jul 14 20:14:19 2018 rev:71 rq:621675 version:2.36.12

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2018-04-19 
15:24:31.639182173 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2018-07-14 20:14:20.786518594 +0200
@@ -1,0 +2,6 @@
+Sun Jul  8 21:07:28 UTC 2018 - bjorn@gmail.com
+
+- Pass all options to meson, ensure we build gdk-pixbuf with the
+  features we want.
+
+---



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.peBjMd/_old  2018-07-14 20:14:21.466520317 +0200
+++ /var/tmp/diff_new_pack.peBjMd/_new  2018-07-14 20:14:21.466520317 +0200
@@ -120,7 +120,19 @@
 %endif
 
 %build
-%meson -D docs=true
+%meson \
+   -Dpng=true \
+   -Dtiff=true \
+   -Djpeg=true \
+   -Djasper=false \
+   -Dx11=true \
+   -Dbuiltin_loaders=none \
+   -Ddocs=true \
+   -Dgir=true \
+   -Dman=true \
+   -Drelocatable=false \
+   -Dnative_windows_loaders=false \
+   %{nil}
 %meson_build
 
 %install




commit gdk-pixbuf for openSUSE:Factory

2018-04-19 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2018-04-19 15:24:27

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Thu Apr 19 15:24:27 2018 rev:70 rq:596158 version:2.36.12

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2018-03-26 
12:52:02.477201750 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2018-04-19 15:24:31.639182173 +0200
@@ -1,0 +2,16 @@
+Tue Apr 10 02:44:36 UTC 2018 - luc1...@linuxmail.org
+
+- Update to version 2.36.12:
+  + gif, ico, jpeg, tiff, icns: various fixes (bgo#778584,
+bgo#779012, bgo#753605, bgo#779020, bgo#779016).
+  + Implement async loading without threads.
+  + Updated translations.
+- Rename with_docs meson option to docs, following usptream change.
+- Drop fixed upstream patches:
+  gdk-pixbuf-bgo779012-ico-overflow.patch,
+  gdk-pixbuf-gif-negative-array-indexes.patch,
+  gdk-pixbuf-gif-uninitialized-variable.patch,
+  gdk-pixbuf-tiff-overflow.patch and
+  gdk-pixbuf-icns-handle-short-blocklen.patch.
+
+---

Old:

  gdk-pixbuf-2.36.11.tar.xz
  gdk-pixbuf-bgo779012-ico-overflow.patch
  gdk-pixbuf-gif-negative-array-indexes.patch
  gdk-pixbuf-gif-uninitialized-variable.patch
  gdk-pixbuf-icns-handle-short-blocklen.patch
  gdk-pixbuf-tiff-overflow.patch

New:

  gdk-pixbuf-2.36.12.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.LeMHzO/_old  2018-04-19 15:24:32.399151375 +0200
+++ /var/tmp/diff_new_pack.LeMHzO/_new  2018-04-19 15:24:32.403151213 +0200
@@ -19,27 +19,17 @@
 # When updating the binary version, do not forget to also update baselibs.conf
 %define gdk_pixbuf_binary_version 2.10.0
 Name:   gdk-pixbuf
-Version:2.36.11
+Version:2.36.12
 Release:0
 Summary:An image loading library
 License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
 URL:https://www.gnome.org/
-Source: 
https://download.gnome.org/sources/gdk-pixbuf/2.36/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.36/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source3:gdk-pixbuf-rpmlintrc
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM gdk-pixbuf-bgo779012-ico-overflow.patch boo#1027026 
mgo...@suse.com -- fix potential integer overflow (CVE-2017-6312).
-Patch0: gdk-pixbuf-bgo779012-ico-overflow.patch
-# PATCH-FIX-UPSTREAM gdk-pixbuf-gif-negative-array-indexes.patch bgo#778584 
mgo...@suse.com -- gif: prevent access to negative array indexes.
-Patch1: gdk-pixbuf-gif-negative-array-indexes.patch
-# PATCH-FIX-UPSTREAM gdk-pixbuf-gif-uninitialized-variable.patch bgo#778584 
mgo...@suse.com -- fix uninitialized variable.
-Patch2: gdk-pixbuf-gif-uninitialized-variable.patch
-# PATCH-FIX-UPSTREAM gdk-pixbuf-tiff-overflow.patch bgo#779020 mgo...@suse.com 
-- avoid overflow during size computation.
-Patch3: gdk-pixbuf-tiff-overflow.patch
-# PATCH-FIX-UPSTREAM gdk-pixbuf-icns-handle-short-blocklen.patch boo#1027024 
bgo#779016 mgo...@suse.com -- icns: protect against too short blocklen 
(CVE-2017-6313).
-Patch4: gdk-pixbuf-icns-handle-short-blocklen.patch
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gtk-doc
 BuildRequires:  libjpeg-devel
@@ -125,17 +115,12 @@
 %prep
 %setup -q
 translation-update-upstream
-%patch0 -p1
-%patch1 -p1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
 %if "%{_lib}" == "lib64"
 cp -a %{SOURCE2} .
 %endif
 
 %build
-%meson -D with_docs=true
+%meson -D docs=true
 %meson_build
 
 %install

++ gdk-pixbuf-2.36.11.tar.xz -> gdk-pixbuf-2.36.12.tar.xz ++
 35991 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2018-03-26 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2018-03-26 12:50:56

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Mon Mar 26 12:50:56 2018 rev:69 rq:590029 version:2.36.11

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2018-03-08 
10:43:11.228252937 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2018-03-26 12:52:02.477201750 +0200
@@ -1,0 +2,7 @@
+Tue Mar 20 17:34:41 UTC 2018 - dims...@opensuse.org
+
+- Unconditionally enable translation-update-upstream: on
+  Tumbleweed, this results in a NOP and for Leap in SLE paid
+  translations being used (boo#1086036).
+
+---



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.Zq5y3s/_old  2018-03-26 12:52:05.817081229 +0200
+++ /var/tmp/diff_new_pack.Zq5y3s/_new  2018-03-26 12:52:05.825080941 +0200
@@ -46,14 +46,12 @@
 BuildRequires:  libtiff-devel
 BuildRequires:  meson
 BuildRequires:  pkgconfig
+BuildRequires:  translation-update-upstream
 BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(glib-2.0) >= 2.48.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
 
 %description
 gdk-pixbuf is an image loading library that can be extended by loadable
@@ -126,9 +124,7 @@
 
 %prep
 %setup -q
-%if !0%{?is_opensuse}
 translation-update-upstream
-%endif
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1




commit gdk-pixbuf for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2018-03-08 10:43:09

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Thu Mar  8 10:43:09 2018 rev:68 rq:582711 version:2.36.11

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2018-01-16 
09:27:54.422299032 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2018-03-08 10:43:11.228252937 +0100
@@ -1,0 +2,5 @@
+Wed Feb 28 16:25:54 UTC 2018 - dims...@opensuse.org
+
+- Modernize spec-file by calling spec-cleaner
+
+---



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.r8Nsl8/_old  2018-03-08 10:43:12.352212468 +0100
+++ /var/tmp/diff_new_pack.r8Nsl8/_new  2018-03-08 10:43:12.356212324 +0100
@@ -22,9 +22,9 @@
 Version:2.36.11
 Release:0
 Summary:An image loading library
-License:LGPL-2.1+
+License:LGPL-2.1-or-later
 Group:  Development/Libraries/GNOME
-Url:https://www.gnome.org/
+URL:https://www.gnome.org/
 Source: 
https://download.gnome.org/sources/gdk-pixbuf/2.36/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
@@ -134,7 +134,7 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
-%if "%_lib" == "lib64"
+%if "%{_lib}" == "lib64"
 cp -a %{SOURCE2} .
 %endif
 
@@ -147,7 +147,7 @@
 rm -rf %{buildroot}{%{_libexecdir},%{_datadir}}/installed-tests/
 %find_lang %{name}
 touch 
%{buildroot}%{_libdir}/gdk-pixbuf-2.0/%{gdk_pixbuf_binary_version}/loaders.cache
-%if "%_lib" == "lib64"
+%if "%{_lib}" == "lib64"
   mv %{buildroot}%{_bindir}/gdk-pixbuf-query-loaders 
%{buildroot}%{_bindir}/gdk-pixbuf-query-loaders-64
   mv %{buildroot}%{_mandir}/man1/gdk-pixbuf-query-loaders.1 
%{buildroot}%{_mandir}/man1/gdk-pixbuf-query-loaders-64.1
 %endif
@@ -160,7 +160,7 @@
 #
 
 # Convenient %%define for the scriplets
-%if "%_lib" == "lib64"
+%if "%{_lib}" == "lib64"
 %define _gdk_pixbuf_query_loaders %{_bindir}/gdk-pixbuf-query-loaders-64
 %else
 %define _gdk_pixbuf_query_loaders %{_bindir}/gdk-pixbuf-query-loaders
@@ -202,9 +202,9 @@
 %postun -n libgdk_pixbuf-2_0-0 -p /sbin/ldconfig
 
 %files -n libgdk_pixbuf-2_0-0
-%defattr(-, root, root)
-%doc AUTHORS COPYING NEWS
-%if "%_lib" == "lib64"
+%license COPYING
+%doc AUTHORS NEWS
+%if "%{_lib}" == "lib64"
 %doc README.SUSE
 %endif
 %{_libdir}/libgdk_pixbuf-2.0.so.0*
@@ -216,22 +216,18 @@
 %ghost %{_libdir}/gdk-pixbuf-2.0/%{gdk_pixbuf_binary_version}/loaders.cache
 
 %files -n typelib-1_0-GdkPixbuf-2_0
-%defattr(-,root,root)
 %{_libdir}/girepository-1.0/GdkPixbuf-2.0.typelib
 
 %files query-loaders
-%defattr(-, root, root)
 %{_bindir}/gdk-pixbuf-query-loaders*
 %{_mandir}/man1/gdk-pixbuf-query-loaders*.1*
 
 %files thumbnailer
-%defattr(-, root, root)
 %{_bindir}/gdk-pixbuf-thumbnailer
 %dir %{_datadir}/thumbnailers
 %{_datadir}/thumbnailers/gdk-pixbuf-thumbnailer.thumbnailer
 
 %files devel
-%defattr(-, root, root)
 %{_bindir}/gdk-pixbuf-csource
 %{_bindir}/gdk-pixbuf-pixdata
 %{_mandir}/man1/gdk-pixbuf-csource.1*




commit gdk-pixbuf for openSUSE:Factory

2018-01-16 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2018-01-16 09:27:52

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Tue Jan 16 09:27:52 2018 rev:67 rq:562495 version:2.36.11

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-10-06 
11:01:32.642640297 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2018-01-16 09:27:54.422299032 +0100
@@ -1,0 +2,14 @@
+Fri Jan  5 17:38:55 UTC 2018 - mgo...@suse.com
+
+- Add gdk-pixbuf-bgo779012-ico-overflow.patch: fix a potential
+  integer overflow (boo#1027026 CVE-2017-6312).
+- Add gdk-pixbuf-gif-negative-array-indexes.patch and
+  gdk-pixbuf-gif-uninitialized-variable.patch: protect against
+  access to negative array indexes (BGO#778584).
+- Add gdk-pixbuf-tiff-overflow.patch: avoid overflow during size
+  computation (bgo#779020).
+- Add gdk-pixbuf-icns-handle-short-blocklen.patch: protect against
+  short block length when reading icns (boo#1027024
+  CVE-2017-6313).
+
+---

New:

  gdk-pixbuf-bgo779012-ico-overflow.patch
  gdk-pixbuf-gif-negative-array-indexes.patch
  gdk-pixbuf-gif-uninitialized-variable.patch
  gdk-pixbuf-icns-handle-short-blocklen.patch
  gdk-pixbuf-tiff-overflow.patch



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.Nne12t/_old  2018-01-16 09:27:55.294258236 +0100
+++ /var/tmp/diff_new_pack.Nne12t/_new  2018-01-16 09:27:55.298258050 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gdk-pixbuf
 #
-# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,6 +30,16 @@
 Source2:README.SUSE
 Source3:gdk-pixbuf-rpmlintrc
 Source99:   baselibs.conf
+# PATCH-FIX-UPSTREAM gdk-pixbuf-bgo779012-ico-overflow.patch boo#1027026 
mgo...@suse.com -- fix potential integer overflow (CVE-2017-6312).
+Patch0: gdk-pixbuf-bgo779012-ico-overflow.patch
+# PATCH-FIX-UPSTREAM gdk-pixbuf-gif-negative-array-indexes.patch bgo#778584 
mgo...@suse.com -- gif: prevent access to negative array indexes.
+Patch1: gdk-pixbuf-gif-negative-array-indexes.patch
+# PATCH-FIX-UPSTREAM gdk-pixbuf-gif-uninitialized-variable.patch bgo#778584 
mgo...@suse.com -- fix uninitialized variable.
+Patch2: gdk-pixbuf-gif-uninitialized-variable.patch
+# PATCH-FIX-UPSTREAM gdk-pixbuf-tiff-overflow.patch bgo#779020 mgo...@suse.com 
-- avoid overflow during size computation.
+Patch3: gdk-pixbuf-tiff-overflow.patch
+# PATCH-FIX-UPSTREAM gdk-pixbuf-icns-handle-short-blocklen.patch boo#1027024 
bgo#779016 mgo...@suse.com -- icns: protect against too short blocklen 
(CVE-2017-6313).
+Patch4: gdk-pixbuf-icns-handle-short-blocklen.patch
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gtk-doc
 BuildRequires:  libjpeg-devel
@@ -119,6 +129,11 @@
 %if !0%{?is_opensuse}
 translation-update-upstream
 %endif
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
+%patch4 -p1
 %if "%_lib" == "lib64"
 cp -a %{SOURCE2} .
 %endif

++ gdk-pixbuf-bgo779012-ico-overflow.patch ++
>From dec9ca22d70c0f0d4492333b4e8147afb038afd2 Mon Sep 17 00:00:00 2001
From: Dhiru Kholia 
Date: Thu, 30 Nov 2017 02:36:26 +0100
Subject: [PATCH] ico: Fix potential integer overflow

Which relies on undefined behaviour. Instead of checking for an
overflowed integer after the fact, check whether the addition would
be possible at all.

Fixes: CVE-2017-6312

https://bugzilla.gnome.org/show_bug.cgi?id=779012
---
 gdk-pixbuf/io-ico.c | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/gdk-pixbuf/io-ico.c b/gdk-pixbuf/io-ico.c
index 8729a0fb9..a86725751 100644
--- a/gdk-pixbuf/io-ico.c
+++ b/gdk-pixbuf/io-ico.c
@@ -333,10 +333,8 @@ static void DecodeHeader(guchar *Data, gint Bytes,
for (l = State->entries; l != NULL; l = g_list_next (l)) {
entry = l->data;
 
-   /* We know how many bytes are in the "header" part. */
-   State->HeaderSize = entry->DIBoffset + INFOHEADER_SIZE;
-
-   if (State->HeaderSize < 0) {
+   /* Avoid invoking undefined behavior in the State->HeaderSize 
calculation below */
+   if (entry->DIBoffset > G_MAXINT - INFOHEADER_SIZE) {
g_set_error (error,
 GDK_PIXBUF_ERROR,
 

commit gdk-pixbuf for openSUSE:Factory

2017-10-06 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-10-06 11:00:58

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Fri Oct  6 11:00:58 2017 rev:66 rq:531691 version:2.36.11

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-09-13 
21:50:31.215795524 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-10-06 11:01:32.642640297 +0200
@@ -1,0 +2,16 @@
+Tue Oct  3 21:36:15 UTC 2017 - luc1...@linuxmail.org
+
+- Update to version 2.36.11:
+  + Build:
+- Fix tiff loader build (bgo#786342).
+- Prefer newer libpng (bgo#786035).
+  + Use a free reference images for tests (bgo#787050).
+  + gif: fail quickly if image dimensions are too big (bgo#785973).
+  + xlib: Avoid an out-of-bounds error on bigendian (bgo#775896).
+  + Updated translations.
+- Drop u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch: fixed
+  upstream.
+- Add gdk-pixbuf-rpmlintrc: filter gdk-pixbuf-devel.*: W:
+  non-conffile-in-etc /etc/rpm/macros.gdk-pixbuf.
+
+---

Old:

  gdk-pixbuf-2.36.10.tar.xz
  u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch

New:

  gdk-pixbuf-2.36.11.tar.xz
  gdk-pixbuf-rpmlintrc



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.iOSX0O/_old  2017-10-06 11:01:33.274544745 +0200
+++ /var/tmp/diff_new_pack.iOSX0O/_new  2017-10-06 11:01:33.278544140 +0200
@@ -19,18 +19,17 @@
 # When updating the binary version, do not forget to also update baselibs.conf
 %define gdk_pixbuf_binary_version 2.10.0
 Name:   gdk-pixbuf
-Version:2.36.10
+Version:2.36.11
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  Development/Libraries/GNOME
-Url:http://www.gnome.org/
+Url:https://www.gnome.org/
 Source: 
https://download.gnome.org/sources/gdk-pixbuf/2.36/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
+Source3:gdk-pixbuf-rpmlintrc
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch boo#929462 
bsc#1010497 bgo#775896 msta...@suse.com -- Fix RGBA conversion for big endian 
X11 environments
-Patch0: u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gtk-doc
 BuildRequires:  libjpeg-devel
@@ -120,7 +119,6 @@
 %if !0%{?is_opensuse}
 translation-update-upstream
 %endif
-%patch0 -p1
 %if "%_lib" == "lib64"
 cp -a %{SOURCE2} .
 %endif
@@ -142,9 +140,9 @@
 mkdir -p %{buildroot}%{_sysconfdir}/rpm
 cp %{SOURCE1} %{buildroot}%{_sysconfdir}/rpm
 
-###
-# Note: when updating scriptlets, don't forget to also update baselibs.conf
-###
+#
+# Note: when updating scriptlets, don't forget to also update baselibs.conf #
+#
 
 # Convenient %%define for the scriplets
 %if "%_lib" == "lib64"

++ gdk-pixbuf-2.36.10.tar.xz -> gdk-pixbuf-2.36.11.tar.xz ++
 3346 lines of diff (skipped)

++ gdk-pixbuf-rpmlintrc ++
addFilter("gdk-pixbuf.* non-conffile-in-etc")



commit gdk-pixbuf for openSUSE:Factory

2017-09-13 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-09-13 21:50:29

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Wed Sep 13 21:50:29 2017 rev:65 rq:523361 version:2.36.10

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-08-24 
18:24:57.097392752 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-09-13 21:50:31.215795524 +0200
@@ -1,0 +2,27 @@
+Mon Sep 11 15:55:29 UTC 2017 - zai...@opensuse.org
+
+- Update to version 2.36.10:
+  + build: meson build improvements.
+  + build: win32 build fixes.
+  + tests: show error before failing (bgo#786259).
+  + Updated translations.
+
+---
+Fri Sep  8 22:35:48 UTC 2017 - jeng...@inai.de
+
+- Update summaries and RPM categories.
+
+---
+Tue Aug 22 13:25:02 UTC 2017 - dims...@opensuse.org
+
+- Migrate to meosn build system:
+  + Add meson BuildRequires: new dependency.
+  + Add xsltproc, gdk-doc and docbook-xsl-stylesheets
+BuildRequires: new dependencies, as gtk-doc and man pages are
+no longer pre-built.
+  + Replace configure, make, make_install calls for respective
+meson, meson_build and meson_install macros.
+- Drop libjasper-devel BuildRequires: drop JPEG2000 support: it is
+  not enabled per default by upstream.
+
+---

Old:

  gdk-pixbuf-2.36.9.tar.xz

New:

  gdk-pixbuf-2.36.10.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.AoF9MA/_old  2017-09-13 21:50:32.135666103 +0200
+++ /var/tmp/diff_new_pack.AoF9MA/_new  2017-09-13 21:50:32.135666103 +0200
@@ -18,13 +18,12 @@
 
 # When updating the binary version, do not forget to also update baselibs.conf
 %define gdk_pixbuf_binary_version 2.10.0
-
 Name:   gdk-pixbuf
-Version:2.36.9
+Version:2.36.10
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
-Group:  System/Libraries
+Group:  Development/Libraries/GNOME
 Url:http://www.gnome.org/
 Source: 
https://download.gnome.org/sources/gdk-pixbuf/2.36/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
@@ -32,16 +31,20 @@
 Source99:   baselibs.conf
 # PATCH-FIX-UPSTREAM u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch boo#929462 
bsc#1010497 bgo#775896 msta...@suse.com -- Fix RGBA conversion for big endian 
X11 environments
 Patch0: u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch
-BuildRequires:  libjasper-devel
+BuildRequires:  docbook-xsl-stylesheets
+BuildRequires:  gtk-doc
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
-%if !0%{?is_opensuse}
-BuildRequires:  translation-update-upstream
-%endif
+BuildRequires:  meson
+BuildRequires:  pkgconfig
+BuildRequires:  xsltproc
 BuildRequires:  pkgconfig(glib-2.0) >= 2.48.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)
+%if !0%{?is_opensuse}
+BuildRequires:  translation-update-upstream
+%endif
 
 %description
 gdk-pixbuf is an image loading library that can be extended by loadable
@@ -52,10 +55,10 @@
 Summary:An image loading library
 # Provide %%{name} to make the lang package installable
 Group:  System/Libraries
-Provides:   %{name} = %{version}
 Requires(post): gdk-pixbuf-query-loaders
 Recommends: %{name}-lang = %{version}
 Conflicts:  gtk2 < 2.21.3
+Provides:   %{name} = %{version}
 
 %description  -n libgdk_pixbuf-2_0-0
 gdk-pixbuf is an image loading library that can be extended by loadable
@@ -63,7 +66,7 @@
 Clutter.
 
 %package -n typelib-1_0-GdkPixbuf-2_0
-Summary:An image loading library -- Introspection bindings
+Summary:Introspection bindins for gdk-pixbuf
 Group:  System/Libraries
 
 %description -n typelib-1_0-GdkPixbuf-2_0
@@ -74,8 +77,8 @@
 This package provides the GObject Introspection bindings for gdk-pixbuf.
 
 %package query-loaders
-Summary:An image loading library - Utility to create loaders cache
-Group:  System/Libraries
+Summary:Utility to create a cache of gdk-pixbuf loaders
+Group:  System/X11/Utilities
 
 %description query-loaders
 gdk-pixbuf is an image loading library that can be extended by loadable
@@ -87,7 +90,7 @@
 
 %package thumbnailer
 Summary:System helper creating thumbnails
-Group:  System/Libraries
+Group:  System/X11/Utilities
 Supplements:libgdk_pixbuf-2_0-0
 
 

commit gdk-pixbuf for openSUSE:Factory

2017-08-24 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-08-24 18:24:55

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Thu Aug 24 18:24:55 2017 rev:64 rq:518080 version:2.36.9

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-08-18 
14:58:01.612019952 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-08-24 18:24:57.097392752 +0200
@@ -1,0 +2,10 @@
+Sat Aug 19 17:37:46 UTC 2017 - zai...@opensuse.org
+
+- Update to version 2.36.9:
+  + build: meson build improvements.
+  + OS X: don't require shared-mime-info (bgo#786167).
+  + gif: fix a coverity warning (bgo#785696).
+  + build: make queryloaders output reproducible (bgo#783592).
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.36.8.tar.xz

New:

  gdk-pixbuf-2.36.9.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.2rhdkD/_old  2017-08-24 18:24:58.253229907 +0200
+++ /var/tmp/diff_new_pack.2rhdkD/_new  2017-08-24 18:24:58.269227653 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.36.8
+Version:2.36.9
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.36.8.tar.xz -> gdk-pixbuf-2.36.9.tar.xz ++
 9232 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2017-08-18 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-08-18 14:57:59

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Fri Aug 18 14:57:59 2017 rev:63 rq:516855 version:2.36.8

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-08-10 
13:44:07.252819229 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-08-18 14:58:01.612019952 +0200
@@ -1,0 +2,13 @@
+Mon Aug  7 19:49:06 UTC 2017 - zai...@opensuse.org
+
+- Update to version 2.36.8:
+  + jpeg: restore grayscale image support (bgo#785171).
+  + bmp: Tighten image dimension checks (bgo#776694).
+  + ico: Fixo icon quality sorting (bgo#785447).
+  + Various other leak and overflow fixes (bgo#765094, bgo#783538,
+bgo#778204).
+  + Add some assertion to help static analysis (bgo#778943).
+  + Remove support for building on various obsolete platforms.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.36.7.tar.xz

New:

  gdk-pixbuf-2.36.8.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.HpH7Dk/_old  2017-08-18 14:58:02.571884828 +0200
+++ /var/tmp/diff_new_pack.HpH7Dk/_new  2017-08-18 14:58:02.591882013 +0200
@@ -20,13 +20,13 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.36.7
+Version:2.36.8
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.36/%{name}-%{version}.tar.xz
+Source: 
https://download.gnome.org/sources/gdk-pixbuf/2.36/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf

++ gdk-pixbuf-2.36.7.tar.xz -> gdk-pixbuf-2.36.8.tar.xz ++
 10594 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2017-08-10 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-08-10 13:44:05

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Thu Aug 10 13:44:05 2017 rev:62 rq:511904 version:2.36.7

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-07-17 
09:00:22.871001037 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-08-10 13:44:07.252819229 +0200
@@ -1,0 +2,14 @@
+Tue Jul 18 17:10:16 UTC 2017 - zai...@opensuse.org
+
+- Update to version 2.36.7:
+  + Add tests for recent bug fixes.
+  + ico, bmp, tiff: avoid integer overflows (bgo#776040,
+bgo#776694, bgo#780269).
+  + jpeg: error out if wrong # of channels (bgo#784866).
+  + Misc.bugfixes (bgo#784583).
+  + Support mimetypes: image/wmf, image/emf.
+  + Updated translations.
+- Drop gdk-pixbuf-cve-2017-2862-jpeg-channels.patch and
+  gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch: Fixed upstream.
+
+---

Old:

  gdk-pixbuf-2.36.6.tar.xz
  gdk-pixbuf-cve-2017-2862-jpeg-channels.patch
  gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch

New:

  gdk-pixbuf-2.36.7.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.eEV0tw/_old  2017-08-10 13:44:08.496644133 +0200
+++ /var/tmp/diff_new_pack.eEV0tw/_new  2017-08-10 13:44:08.500643570 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.36.6
+Version:2.36.7
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
@@ -32,10 +32,6 @@
 Source99:   baselibs.conf
 # PATCH-FIX-UPSTREAM u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch boo#929462 
bsc#1010497 bgo#775896 msta...@suse.com -- Fix RGBA conversion for big endian 
X11 environments
 Patch0: u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch
-# PATCH-FIX-UPSTREAM gdk-pixbuf-cve-2017-2862-jpeg-channels.patch bsc#1048289 
bgo#784866 CVE-2017-2862 h...@suse.com -- fix heap overwrite when JPEG channels 
is not 3 or 4.
-Patch1: gdk-pixbuf-cve-2017-2862-jpeg-channels.patch
-# PATCH-FIX-UPSTREAM gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch 
bgo#780269 CVE-2017-2870 h...@suse.com -- fix reliance on undefined behavior to 
handle integer overflows.
-Patch2: gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch
 BuildRequires:  libjasper-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
@@ -121,8 +117,6 @@
 translation-update-upstream
 %endif
 %patch0 -p1
-%patch1 -p1
-%patch2 -p1
 %if "%_lib" == "lib64"
 cp -a %{S:2} .
 %endif

++ gdk-pixbuf-2.36.6.tar.xz -> gdk-pixbuf-2.36.7.tar.xz ++
 12179 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2017-07-17 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-07-17 09:00:18

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Mon Jul 17 09:00:18 2017 rev:61 rq:510609 version:2.36.6

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-05-18 
20:37:56.371158099 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-07-17 09:00:22.871001037 +0200
@@ -1,0 +2,8 @@
+Sun Jul 16 20:57:27 CEST 2017 - h...@suse.com
+
+- Add fixes for crashes, taken from upstream git (CVE-2017-2862,
+  CVE-2017-2870, bgo#784866, bgo#780269):
+  gdk-pixbuf-cve-2017-2862-jpeg-channels.patch
+  gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch
+
+---

New:

  gdk-pixbuf-cve-2017-2862-jpeg-channels.patch
  gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.awTGTS/_old  2017-07-17 09:00:23.506911495 +0200
+++ /var/tmp/diff_new_pack.awTGTS/_new  2017-07-17 09:00:23.510910932 +0200
@@ -32,6 +32,10 @@
 Source99:   baselibs.conf
 # PATCH-FIX-UPSTREAM u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch boo#929462 
bsc#1010497 bgo#775896 msta...@suse.com -- Fix RGBA conversion for big endian 
X11 environments
 Patch0: u_contrib-gdk-pixbuf-xlib-Fix-rgb888amsb.patch
+# PATCH-FIX-UPSTREAM gdk-pixbuf-cve-2017-2862-jpeg-channels.patch bsc#1048289 
bgo#784866 CVE-2017-2862 h...@suse.com -- fix heap overwrite when JPEG channels 
is not 3 or 4.
+Patch1: gdk-pixbuf-cve-2017-2862-jpeg-channels.patch
+# PATCH-FIX-UPSTREAM gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch 
bgo#780269 CVE-2017-2870 h...@suse.com -- fix reliance on undefined behavior to 
handle integer overflows.
+Patch2: gdk-pixbuf-cve-2017-2870-tiff-mul-overflow.patch
 BuildRequires:  libjasper-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
@@ -117,6 +121,8 @@
 translation-update-upstream
 %endif
 %patch0 -p1
+%patch1 -p1
+%patch2 -p1
 %if "%_lib" == "lib64"
 cp -a %{S:2} .
 %endif

++ gdk-pixbuf-cve-2017-2862-jpeg-channels.patch ++
commit c2a40a92fe3df4111ed9da51fe3368c079b86926
Author: Tobias Mueller 
Date:   Wed Jul 12 20:36:11 2017 +0200

jpeg: Throw error when number of color components is unsupported

Explicitly check "3" or "4" output color components.

gdk-pixbuf assumed that the value of output_components to be either
3 or 4, but not an invalid value (9) or an unsupported value (1).

The way the buffer size was deduced was using a naive "== 4" check,
with a 1, 3 or 9 color component picture getting the same buffer size,
a size just sufficient for 3 color components, causing invalid writes
later when libjpeg-turbo was decoding the image.

CVE-2017-2862

Sent by from Marcin 'Icewall' Noga of Cisco Talos

https://bugzilla.gnome.org/show_bug.cgi?id=784866

diff --git a/gdk-pixbuf/io-jpeg.c b/gdk-pixbuf/io-jpeg.c
index dd88a350a..1c0eba1a9 100644
--- a/gdk-pixbuf/io-jpeg.c
+++ b/gdk-pixbuf/io-jpeg.c
@@ -1051,6 +1051,7 @@ gdk_pixbuf__jpeg_image_load_increment (gpointer data,
if (!context->got_header) {
int rc;
gchar* comment;
+   gboolean has_alpha;

jpeg_save_markers (cinfo, JPEG_APP0+1, 0x);
jpeg_save_markers (cinfo, JPEG_APP0+2, 0x);
@@ -1089,10 +1090,24 @@ gdk_pixbuf__jpeg_image_load_increment (gpointer data,
}
}
jpeg_calc_output_dimensions (cinfo);
-   
-   context->pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, 
- 
cinfo->output_components == 4 ? TRUE : FALSE,
- 8, 
+
+   if (cinfo->output_components == 3) {
+   has_alpha = FALSE;
+   } else if (cinfo->output_components == 4) {
+   has_alpha = TRUE;
+   } else {
+   g_set_error (error,
+GDK_PIXBUF_ERROR,
+GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
+_("Unsupported number of color 
components (%d)"),
+cinfo->output_components);
+  

commit gdk-pixbuf for openSUSE:Factory

2017-05-18 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-05-18 20:37:47

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Thu May 18 20:37:47 2017 rev:60 rq:494241 version:2.36.6

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-04-11 
12:39:34.274001035 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-05-18 20:37:56.371158099 +0200
@@ -1,0 +2,5 @@
+Wed May 10 09:10:45 UTC 2017 - dims...@opensuse.org
+
+- Supplement libgdk_pixbuf-2_0-0 by the thumbnailers (boo#1037100).
+
+---
@@ -65 +70 @@
-- Split the external thumbnailer into gdk-pixbug-thumbnailer.
+- Split the external thumbnailer into gdk-pixbuf-thumbnailer.



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.9hpWFW/_old  2017-05-18 20:37:57.554991033 +0200
+++ /var/tmp/diff_new_pack.9hpWFW/_new  2017-05-18 20:37:57.554991033 +0200
@@ -88,6 +88,7 @@
 %package thumbnailer
 Summary:System helper creating thumbnails
 Group:  System/Libraries
+Supplements:libgdk_pixbuf-2_0-0
 
 %description thumbnailer
 gdk-pixbuf is an image loading library that can be extended by loadable




commit gdk-pixbuf for openSUSE:Factory

2017-04-11 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-04-11 12:39:32

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Tue Apr 11 12:39:32 2017 rev:59 rq:482925 version:2.36.6

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-02-19 
00:39:05.104854843 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-04-11 12:39:34.274001035 +0200
@@ -1,0 +2,9 @@
+Sun Mar 26 12:49:49 UTC 2017 - zai...@opensuse.org
+
+- Update to version 2.36.6:
+  + jpeg: Support the EXIF tag (bgo#143608).
+  + ico: Make option parsing locale-independent (bgo#776990).
+  + Fix build on Windows.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.36.5.tar.xz

New:

  gdk-pixbuf-2.36.6.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.L8NeGn/_old  2017-04-11 12:39:35.489829244 +0200
+++ /var/tmp/diff_new_pack.L8NeGn/_new  2017-04-11 12:39:35.493828679 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.36.5
+Version:2.36.6
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.36.5.tar.xz -> gdk-pixbuf-2.36.6.tar.xz ++
 23252 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2017-02-18 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-02-19 00:39:04

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-01-23 
11:19:48.667462493 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-02-19 00:39:05.104854843 +0100
@@ -1,0 +2,11 @@
+Mon Feb 13 19:06:14 UTC 2017 - zai...@opensuse.org
+
+- Update to version 2.36.5:
+  + Fix mimetypes for thumbnailer (bgo#778451).
+  + Handle fseek failure (bgo#776990).
+  + Fix signed/unsigned handling (bgo#777374).
+  + Fix an overflow check (bgo#777315).
+  + Handle extreme scaling better (bgo#80925).
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.36.4.tar.xz

New:

  gdk-pixbuf-2.36.5.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.BXdrAv/_old  2017-02-19 00:39:05.852749654 +0100
+++ /var/tmp/diff_new_pack.BXdrAv/_new  2017-02-19 00:39:05.852749654 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.36.4
+Version:2.36.5
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
@@ -38,7 +38,7 @@
 %if !0%{?is_opensuse}
 BuildRequires:  translation-update-upstream
 %endif
-BuildRequires:  pkgconfig(glib-2.0) >= 2.37.2
+BuildRequires:  pkgconfig(glib-2.0) >= 2.48.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)

++ gdk-pixbuf-2.36.4.tar.xz -> gdk-pixbuf-2.36.5.tar.xz ++
 38205 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2017-01-23 Thread root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2017-01-23 11:19:46

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2017-01-10 
10:40:04.552154817 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2017-01-23 11:19:48.667462493 +0100
@@ -1,0 +2,9 @@
+Mon Jan 16 20:35:07 UTC 2017 - zai...@opensuse.org
+
+- Update to version 2.36.4:
+  + Add a fastpath for no-op scales.
+  + Documentation improvements (bgo#442452).
+  + Fix some coverity warnings (bgo#776945, bgo#768062).
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.36.3.tar.xz

New:

  gdk-pixbuf-2.36.4.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.2kB3e9/_old  2017-01-23 11:19:49.307371652 +0100
+++ /var/tmp/diff_new_pack.2kB3e9/_new  2017-01-23 11:19:49.311371085 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.36.3
+Version:2.36.4
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.36.3.tar.xz -> gdk-pixbuf-2.36.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gdk-pixbuf-2.36.3/NEWS new/gdk-pixbuf-2.36.4/NEWS
--- old/gdk-pixbuf-2.36.3/NEWS  2017-01-04 19:11:59.0 +0100
+++ new/gdk-pixbuf-2.36.4/NEWS  2017-01-16 19:31:07.0 +0100
@@ -1,3 +1,11 @@
+2.36.4
+==
+
+* Add a fastpath for no-op scales
+* Documentation improvements (#442452)
+* Fix some coverity warnings (#776945, #768062)
+* Translation updates
+
 2.36.3
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gdk-pixbuf-2.36.3/build/win32/vs10/gdk-pixbuf-version-paths.props 
new/gdk-pixbuf-2.36.4/build/win32/vs10/gdk-pixbuf-version-paths.props
--- old/gdk-pixbuf-2.36.3/build/win32/vs10/gdk-pixbuf-version-paths.props   
2017-01-04 19:13:43.0 +0100
+++ new/gdk-pixbuf-2.36.4/build/win32/vs10/gdk-pixbuf-version-paths.props   
2017-01-16 19:32:28.0 +0100
@@ -4,7 +4,7 @@
 10
 2
 36
-3
+4
 2.0
 
$(SolutionDir)\..\..\..\..\vs$(VSVer)\$(Platform)
 $(GlibEtcInstallRoot)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gdk-pixbuf-2.36.3/build/win32/vs11/gdk-pixbuf-version-paths.props 
new/gdk-pixbuf-2.36.4/build/win32/vs11/gdk-pixbuf-version-paths.props
--- old/gdk-pixbuf-2.36.3/build/win32/vs11/gdk-pixbuf-version-paths.props   
2017-01-04 19:23:12.0 +0100
+++ new/gdk-pixbuf-2.36.4/build/win32/vs11/gdk-pixbuf-version-paths.props   
2017-01-16 19:55:41.0 +0100
@@ -4,7 +4,7 @@
 11
 2
 36
-3
+4
 2.0
 
$(SolutionDir)\..\..\..\..\vs$(VSVer)\$(Platform)
 $(GlibEtcInstallRoot)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gdk-pixbuf-2.36.3/build/win32/vs12/gdk-pixbuf-version-paths.props 
new/gdk-pixbuf-2.36.4/build/win32/vs12/gdk-pixbuf-version-paths.props
--- old/gdk-pixbuf-2.36.3/build/win32/vs12/gdk-pixbuf-version-paths.props   
2017-01-04 19:23:12.0 +0100
+++ new/gdk-pixbuf-2.36.4/build/win32/vs12/gdk-pixbuf-version-paths.props   
2017-01-16 19:55:41.0 +0100
@@ -4,7 +4,7 @@
 12
 2
 36
-3
+4
 2.0
 
$(SolutionDir)\..\..\..\..\vs$(VSVer)\$(Platform)
 $(GlibEtcInstallRoot)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gdk-pixbuf-2.36.3/build/win32/vs14/gdk-pixbuf-version-paths.props 
new/gdk-pixbuf-2.36.4/build/win32/vs14/gdk-pixbuf-version-paths.props
--- old/gdk-pixbuf-2.36.3/build/win32/vs14/gdk-pixbuf-version-paths.props   
2017-01-04 19:23:13.0 +0100
+++ new/gdk-pixbuf-2.36.4/build/win32/vs14/gdk-pixbuf-version-paths.props   
2017-01-16 19:55:41.0 +0100
@@ -4,7 +4,7 @@
 14
 2
 36
-3
+4
 2.0
 
$(SolutionDir)\..\..\..\..\vs$(VSVer)\$(Platform)
 $(GlibEtcInstallRoot)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/gdk-pixbuf-2.36.3/build/win32/vs9/gdk-pixbuf-version-paths.vsprops 
new/gdk-pixbuf-2.36.4/build/win32/vs9/gdk-pixbuf-version-paths.vsprops
--- old/gdk-pixbuf-2.36.3/build/win32/vs9/gdk-pixbuf-version-paths.vsprops  
2017-01-04 19:13:43.0 +0100
+++ new/gdk-pixbuf-2.36.4/build/win32/vs9/gdk-pixbuf-version-paths.vsprops   

commit gdk-pixbuf for openSUSE:Factory

2016-09-21 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2016-09-21 18:36:56

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2016-09-05 
21:15:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2016-09-21 18:36:58.0 +0200
@@ -1,0 +2,58 @@
+Mon Sep 19 17:22:31 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.36.0:
+  + Updated translations.
+
+---
+Tue Sep 13 16:08:17 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.35.5:
+  + Fix undefined behavior in overflow checks (bgo#770986).
+  + Fix a typo (bgo#770756).
+  + Avoid segfault in some tests (bgo#771026).
+  + Updated translations.
+
+---
+Tue Aug 30 18:39:13 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.35.4:
+  + Updated translations.
+- Conditionally apply translations-update-upstream BuildRequires
+  and macro for non-openSUSE only.
+- Escape some macros in comments to silence rpmlint.
+
+---
+Tue Aug 30 18:39:12 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.35.3:
+  + Add API to determine supported save options (bgo#683371).
+  + Add helper API for pixbuf options (bgo#768043).
+  + Fix invalid gettext use (bgo#758552).
+  + Fix a compiler warning in the xpm loader (bgo#768042).
+  + Fix integer overflows in the bmp loader (bgo#768688,
+bgo#768738).
+  + Fix a crash in the ico loader (bgo#769170).
+  + Updated translations.
+- Drop gdk-pixbuf-bgo768688-bmp-overflow.patch,
+  gdk-pixbuf-bgo768484-ico-set-errors.patch,
+  gdk-pixbuf-bgo769738-bmp-overflow.patch and
+  gdk-pixbuf-bgo769170-ico-headers.patch: Fixed upstream.
+
+---
+Tue Aug 30 18:39:11 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.35.2:
+  + Use compiler directives for exporting symbols (bgo#767164).
+  + Fix a problem with nearest scaling (bgo#766842).
+  + Avoid redundant property notification.
+  + Updated translations.
+
+---
+Tue Aug 30 18:39:10 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.35.1:
+  + Add non-varargs variant to save to stream (bgo#683063).
+  + Add a common autotools module (bgo#765034).
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.34.0.tar.xz
  gdk-pixbuf-bgo768484-ico-set-errors.patch
  gdk-pixbuf-bgo768688-bmp-overflow.patch
  gdk-pixbuf-bgo769170-ico-headers.patch
  gdk-pixbuf-bgo769738-bmp-overflow.patch

New:

  gdk-pixbuf-2.36.0.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.4TGYrq/_old  2016-09-21 18:36:59.0 +0200
+++ /var/tmp/diff_new_pack.4TGYrq/_new  2016-09-21 18:36:59.0 +0200
@@ -20,28 +20,22 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.34.0
+Version:2.36.0
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.34/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.36/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM gdk-pixbuf-bgo768688-bmp-overflow.patch bgo#768688 
mgo...@suse.com -- fix a bmp overflow.
-Patch0: gdk-pixbuf-bgo768688-bmp-overflow.patch
-# PATCh-FIX-UPSTREAM gdk-pixbuf-bgo768484-ico-set-errors.patch bgo#768484 
mgo...@suse.com -- ico: always set errors.
-Patch1: gdk-pixbuf-bgo768484-ico-set-errors.patch
-# PATCH-FIX-UPSTREAM gdk-pixbuf-bgo769738-bmp-overflow.patch bsc#988745 
bgo#769738 mgo...@suse.com -- fix another bmp overflow.
-Patch2: gdk-pixbuf-bgo769738-bmp-overflow.patch
-# PATCh-FIX-UPSTREAM gdk-pixbuf-bgo769170-ico-headers.patch bsc#991450 
bgo#769170 CVE-2016-6352 mgo...@suse.com -- be more careful when parsing ico 
headers.
-Patch3: gdk-pixbuf-bgo769170-ico-headers.patch
 BuildRequires:  libjasper-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
+%if !0%{?is_opensuse}
 BuildRequires:  translation-update-upstream
+%endif
 BuildRequires:  pkgconfig(glib-2.0) >= 2.37.2
 BuildRequires:  

commit gdk-pixbuf for openSUSE:Factory

2016-09-05 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2016-09-05 21:15:15

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2016-08-17 
12:01:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2016-09-05 21:15:17.0 +0200
@@ -1,0 +2,10 @@
+Tue Aug 30 18:39:06 UTC 2016 - mgo...@suse.com
+
+- Add fixes for some crashes, taken from upstream git (bsc#988745
+  bsc#991450 CVE-2016-6352):
+  gdk-pixbuf-bgo768688-bmp-overflow.patch
+  gdk-pixbuf-bgo768484-ico-set-errors.patch
+  gdk-pixbuf-bgo769738-bmp-overflow.patch
+  gdk-pixbuf-bgo769170-ico-headers.patch
+
+---

New:

  gdk-pixbuf-bgo768484-ico-set-errors.patch
  gdk-pixbuf-bgo768688-bmp-overflow.patch
  gdk-pixbuf-bgo769170-ico-headers.patch
  gdk-pixbuf-bgo769738-bmp-overflow.patch



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.4GbxHq/_old  2016-09-05 21:15:18.0 +0200
+++ /var/tmp/diff_new_pack.4GbxHq/_new  2016-09-05 21:15:18.0 +0200
@@ -30,6 +30,14 @@
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf
+# PATCH-FIX-UPSTREAM gdk-pixbuf-bgo768688-bmp-overflow.patch bgo#768688 
mgo...@suse.com -- fix a bmp overflow.
+Patch0: gdk-pixbuf-bgo768688-bmp-overflow.patch
+# PATCh-FIX-UPSTREAM gdk-pixbuf-bgo768484-ico-set-errors.patch bgo#768484 
mgo...@suse.com -- ico: always set errors.
+Patch1: gdk-pixbuf-bgo768484-ico-set-errors.patch
+# PATCH-FIX-UPSTREAM gdk-pixbuf-bgo769738-bmp-overflow.patch bsc#988745 
bgo#769738 mgo...@suse.com -- fix another bmp overflow.
+Patch2: gdk-pixbuf-bgo769738-bmp-overflow.patch
+# PATCh-FIX-UPSTREAM gdk-pixbuf-bgo769170-ico-headers.patch bsc#991450 
bgo#769170 CVE-2016-6352 mgo...@suse.com -- be more careful when parsing ico 
headers.
+Patch3: gdk-pixbuf-bgo769170-ico-headers.patch
 BuildRequires:  libjasper-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
@@ -98,6 +106,10 @@
 %prep
 %setup -q
 translation-update-upstream
+%patch0 -p1
+%patch1 -p1
+%patch2 -p1
+%patch3 -p1
 %if "%_lib" == "lib64"
 cp -a %{S:2} .
 %endif

++ gdk-pixbuf-bgo768484-ico-set-errors.patch ++
>From 0cff83e985fba5350695c00ed1ac30fc31ec5960 Mon Sep 17 00:00:00 2001
From: Hanno Boeck 
Date: Wed, 6 Jul 2016 13:05:00 +
Subject: [PATCH] ico: Always set errors

When the ico header turn out to be bad, always set an
error when we fail. Otherwise, applications will get
confused.

This commit also adds an example image with a bad ico header.

https://bugzilla.gnome.org/show_bug.cgi?id=768484
---
 gdk-pixbuf/io-ico.c|  14 --
 tests/test-images/randomly-modified/bad-header.ico | Bin 0 -> 6 bytes
 2 files changed, 12 insertions(+), 2 deletions(-)
 create mode 100644 tests/test-images/randomly-modified/bad-header.ico

diff --git a/gdk-pixbuf/io-ico.c b/gdk-pixbuf/io-ico.c
index 86714af..82d3e4e 100644
--- a/gdk-pixbuf/io-ico.c
+++ b/gdk-pixbuf/io-ico.c
@@ -258,8 +258,13 @@ static void DecodeHeader(guchar *Data, gint Bytes,
State->HeaderBuf = tmp;
State->BytesInHeaderBuf = State->HeaderSize;
}
-   if (Bytes < State->HeaderSize)
+   if (Bytes < State->HeaderSize) {
+   g_set_error_literal (error,
+ GDK_PIXBUF_ERROR,
+ GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
+ _("Not enough bytes for header"));
return;
+   }
 
/* Now iterate through the ICONDIRENTRY structures, and sort them by
 * which one we think is "best" (essentially the largest) */
@@ -399,8 +404,13 @@ static void DecodeHeader(guchar *Data, gint Bytes,
State->HeaderBuf = tmp;
State->BytesInHeaderBuf = State->HeaderSize;
}
-   if (Bytes < State->HeaderSize)
+   if (Bytes < State->HeaderSize) {
+   g_set_error_literal (error,
+ GDK_PIXBUF_ERROR,
+ GDK_PIXBUF_ERROR_CORRUPT_IMAGE,
+ _("Not enough bytes for header"));
return;
+   }
 
/* Negative heights mean top-down pixel-order */
if (State->Header.height < 0) {
++ gdk-pixbuf-bgo768688-bmp-overflow.patch ++
>From b69009f2a2de151103ed87e9594615ba0fe72daf Mon Sep 17 00:00:00 2001
From: Tobias 

commit gdk-pixbuf for openSUSE:Factory

2016-08-17 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2016-08-17 12:01:10

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2016-03-29 
14:49:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2016-08-17 12:01:11.0 +0200
@@ -1,0 +2,13 @@
+Wed Apr 13 10:35:15 UTC 2016 - idon...@suse.com
+
+- Update to GNOME 3.20  Fate#318572
+- Remove upstreamed patches: gdk-pixbuf-bgo758991.patch,
+  0001-pixops-Don-t-overflow-variables-when-shifting-them.patch,
+  gdk-pixbuf-bgo747605.patch, gdk-pixbuf-bgo752297.patch,
+  0001-ico-Protect-against-overflow.patch,
+  0001-pixops-use-gint64-in-more-places-to-avoid-overflow-w.patch,
+  gdk-pixbuf-bsc960155-divide-by-zero.patch,
+  gdk-pixbuf-bsc948790-tga-dos.patch and
+  gdk-pixbuf-2-32-overflow-fixes.patch.
+
+---
@@ -8,0 +22,11 @@
+Mon Jan  4 16:00:35 UTC 2016 - mgo...@suse.com
+
+- Add gdk-pixbuf-bsc960155-divide-by-zero.patch -- fix a possible
+  divide by zero (bsc#960155).
+
+- Add gdk-pixbuf-2-32-overflow-fixes.patch,
+  0001-ico-Protect-against-overflow.patch,
+  gdk-pixbuf-bgo747605.patch, and gdk-pixbuf-bgo758991.patch:
+  fix various overflows (bsc#958963 CVE-2015-7552).
+
+---
@@ -34,0 +59,7 @@
+Wed Nov 25 21:54:00 UTC 2015 - mgo...@suse.com
+
+- Add
+  0001-pixops-use-gint64-in-more-places-to-avoid-overflow-w.patch:
+  Fix some more overflows scaling a gif (bsc#948791 CVE-2015-7673).
+
+---
@@ -41,0 +73,9 @@
+Mon Oct  5 19:16:58 UTC 2015 - mgo...@suse.com
+
+- Add gdk-pixbuf-bsc948790-tga-dos.patch: fix an overflow and DoS
+  with a TGA (bsc#948790 CVE-2015-7673).
+- Add
+0001-pixops-Don-t-overflow-variables-when-shifting-them.patch: Fix
+  overflow when scaling a gif (bsc#948791 CVE-2015-7674).
+
+---
@@ -59,0 +100,7 @@
+
+---
+Mon Sep 14 19:07:18 UTC 2015 - mgo...@suse.com
+
+- Add gdk-pixbuf-bgo752297.patch: Check for overflow before
+  allocating memory when scaling (bsc#942801 CVE-2015-4491).
+  Taken from upstream.



Other differences:
--



commit gdk-pixbuf for openSUSE:Factory

2016-03-29 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2016-03-29 14:49:50

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2015-12-25 
13:05:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2016-03-29 14:49:52.0 +0200
@@ -1,0 +2,25 @@
+Fri Mar 25 00:07:03 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.34.0:
+  + Don't force no static builds on Win32 (bgo#760369).
+  + Updated translations.
+
+---
+Tue Dec 22 20:15:18 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.33.2:
+  + Fix two crashes in the bmp loader (bgo#747605, bgo#758991).
+  + Updated translations.
+
+---
+Mon Dec 22 18:01:04 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.33.1:
+  + Improve various tests.
+  + ico: integer overflow fixes.
+  + tga: rewrite the loader, introducing a buffer queue
+abstraction.
+  + gif: fix thumbnailing animations.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.32.3.tar.xz

New:

  gdk-pixbuf-2.34.0.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.yiuzFe/_old  2016-03-29 14:49:53.0 +0200
+++ /var/tmp/diff_new_pack.yiuzFe/_new  2016-03-29 14:49:53.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gdk-pixbuf
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,13 +20,13 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.32.3
+Version:2.34.0
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.32/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.34/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf

++ gdk-pixbuf-2.32.3.tar.xz -> gdk-pixbuf-2.34.0.tar.xz ++
 30225 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2015-12-25 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2015-12-25 13:05:22

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2015-11-22 
10:58:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2015-12-25 13:05:23.0 +0100
@@ -1,0 +2,8 @@
+Mon Dec 21 18:01:04 UTC 2015 - mgo...@suse.com
+
+- Update to version 2.32.3: 
+  + Fix two crashes in the bmp loader (bgo#747605, bgo#758991).
+  + ico: integer overflow fixes.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.32.2.tar.xz

New:

  gdk-pixbuf-2.32.3.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.zZR8jK/_old  2015-12-25 13:05:24.0 +0100
+++ /var/tmp/diff_new_pack.zZR8jK/_new  2015-12-25 13:05:24.0 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.32.2
+Version:2.32.3
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.32.2.tar.xz -> gdk-pixbuf-2.32.3.tar.xz ++
 3506 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2015-11-22 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2015-11-22 10:58:19

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2015-10-06 
16:36:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2015-11-22 10:58:21.0 +0100
@@ -1,0 +2,7 @@
+Mon Nov  9 19:35:03 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.32.2:
+  + Avoid some integer overflow possibilities in scaling code.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.32.1.tar.xz

New:

  gdk-pixbuf-2.32.2.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.wlSRuH/_old  2015-11-22 10:58:22.0 +0100
+++ /var/tmp/diff_new_pack.wlSRuH/_new  2015-11-22 10:58:22.0 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.32.1
+Version:2.32.2
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.32.1.tar.xz -> gdk-pixbuf-2.32.2.tar.xz ++
 5014 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2015-10-06 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2015-10-06 16:36:15

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is "gdk-pixbuf"

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2015-08-21 
08:24:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2015-10-06 16:36:16.0 +0200
@@ -1,0 +2,29 @@
+Fri Sep 25 18:12:18 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.32.1:
+  + Make relocations optional.
+  + Fix a crash due to overflow when scaling.
+  + Drop loaders for some rare image formats: wbmp, ras, pcx.
+  + Prevent testsuite failures due to lack of memory.
+  + Updated translations.
+
+---
+Tue Sep 22 06:39:04 UTC 2015 - dims...@opensuse.org
+
+- Update to version 2.32.0:
+  + Fix build issues (bgo#754154).
+  + Fix animation loading (bgo#755269).
+  + More overflow fixes in the scaling code (bgo#754387).
+  + Fix a crash in the tga loader.
+  + Updated translations.
+
+---
+Wed Sep  2 11:55:06 UTC 2015 - dims...@opensuse.org
+
+- Update to version 2.31.7:
+  + Fix several integer overflows (bgo#753908, bgo#753569).
+  + Fix build failure with --disable-modules (bgo#740912).
+  + Port animations to GTask.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.31.6.tar.xz

New:

  gdk-pixbuf-2.32.1.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.ncmS8i/_old  2015-10-06 16:36:17.0 +0200
+++ /var/tmp/diff_new_pack.ncmS8i/_new  2015-10-06 16:36:17.0 +0200
@@ -20,13 +20,13 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.31.6
+Version:2.32.1
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:http://www.gnome.org/
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.31/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.32/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf

++ gdk-pixbuf-2.31.6.tar.xz -> gdk-pixbuf-2.32.1.tar.xz ++
 21259 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2015-08-21 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2015-08-21 08:24:29

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2015-05-18 
21:35:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2015-08-21 08:24:31.0 +0200
@@ -1,0 +2,20 @@
+Wed Aug 19 08:36:31 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.31.6:
+  + Really fix bgo#752297. This is CVE-2015-4491.
+  + Updated translations.
+
+---
+Tue Jul 21 01:12:26 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.31.5:
+  + Add support for g_autoptr for all object types (bgo#750497).
+  + Avoid a possible divide-by-zero in the pixbuf loader
+(bgo#750440).
+  + Remove gettext .pot file hack (bgo#743574).
+  + Be more careful about integer overflow (bgo#752297).
+  + Updated translations.
+- Drop README from docs as it is now empty.
+- Add generic www.gnome.org URL to silence a few lint warnings.
+
+---

Old:

  gdk-pixbuf-2.31.4.tar.xz

New:

  gdk-pixbuf-2.31.6.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.fKTfVd/_old  2015-08-21 08:24:32.0 +0200
+++ /var/tmp/diff_new_pack.fKTfVd/_new  2015-08-21 08:24:32.0 +0200
@@ -20,11 +20,12 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.31.4
+Version:2.31.6
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
+Url:http://www.gnome.org/
 Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.31/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
@@ -170,7 +171,7 @@
 
 %files -n libgdk_pixbuf-2_0-0
 %defattr(-, root, root)
-%doc AUTHORS COPYING NEWS README
+%doc AUTHORS COPYING NEWS
 %if %_lib == lib64
 %doc README.SUSE
 %endif

++ gdk-pixbuf-2.31.4.tar.xz - gdk-pixbuf-2.31.6.tar.xz ++
 177143 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2015-05-18 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2015-05-18 21:35:32

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2015-03-30 
19:12:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2015-05-18 21:35:33.0 +0200
@@ -1,0 +2,9 @@
+Tue May 12 10:47:00 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.31.4:
+  + SVGZ icons in notification GNOME3 (bgo#648815).
+  + gdk_pixbuf_apply_embedded_orientation is not working
+(bgo#725582).
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.31.3.tar.xz

New:

  gdk-pixbuf-2.31.4.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.XJEPdH/_old  2015-05-18 21:35:34.0 +0200
+++ /var/tmp/diff_new_pack.XJEPdH/_new  2015-05-18 21:35:34.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.31.3
+Version:2.31.4
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.31.3.tar.xz - gdk-pixbuf-2.31.4.tar.xz ++
 17133 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2015-03-30 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2015-03-30 19:12:33

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2014-11-26 
22:55:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2015-03-30 19:12:34.0 +0200
@@ -1,0 +2,12 @@
+Sun Mar  8 10:23:12 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.31.3:
+  + API changes: Revert an annotation change that broke bindings.
+  + Build fixes:
+- Clean up configure
+- Fix Visual Studio build
+- Define MAP_ANONYMOUS when needed
+- Include gi18n-lib.h where needed
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.31.2.tar.xz

New:

  gdk-pixbuf-2.31.3.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.fkljBW/_old  2015-03-30 19:12:35.0 +0200
+++ /var/tmp/diff_new_pack.fkljBW/_new  2015-03-30 19:12:35.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gdk-pixbuf
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.31.2
+Version:2.31.3
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.31.2.tar.xz - gdk-pixbuf-2.31.3.tar.xz ++
 30312 lines of diff (skipped)




commit gdk-pixbuf for openSUSE:Factory

2014-11-26 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2014-11-26 20:57:23

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2014-11-13 
09:17:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2014-11-26 22:55:56.0 +0100
@@ -1,0 +2,28 @@
+Sat Nov 22 09:56:09 UTC 2014 - zai...@opensuse.org
+
+- Update to version 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.
+- 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.
+- Prefer gdk-pixbuf's loaders to the GDI+ ones on Windows.
+
+---

Old:

  gdk-pixbuf-2.31.1.tar.xz

New:

  gdk-pixbuf-2.31.2.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.2vPsmS/_old  2014-11-26 22:55:57.0 +0100
+++ /var/tmp/diff_new_pack.2vPsmS/_new  2014-11-26 22:55:57.0 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.31.1
+Version:2.31.2
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.31.1.tar.xz - gdk-pixbuf-2.31.2.tar.xz ++
 106957 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2014-11-13 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2014-11-13 09:16:53

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2014-09-30 
19:37:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2014-11-13 09:17:10.0 +0100
@@ -1,0 +2,5 @@
+Sun Nov 09 03:48:00 UTC 2014 - Led led...@gmail.com
+
+- fix bashism in post script
+
+---



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.NSBwkg/_old  2014-11-13 09:17:11.0 +0100
+++ /var/tmp/diff_new_pack.NSBwkg/_new  2014-11-13 09:17:11.0 +0100
@@ -153,7 +153,7 @@
 # %{_libdir}/gdk-pixbuf-2.0/%{gdk_pixbuf_binary_version} already exists) which
 # means gdk-pixbuf-query-loaders couldn't run there.
 %endif
-if [ $1 == 1 ]; then
+if [ $1 = 1 ]; then
   test -d %{_libdir}/gdk-pixbuf-2.0/%{gdk_pixbuf_binary_version}
   if test $? -eq 0; then
 %{_gdk_pixbuf_query_loaders_update_cache}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2014-09-30 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2014-09-30 19:36:49

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2014-07-04 
17:18:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2014-09-30 19:37:01.0 +0200
@@ -1,0 +2,18 @@
+Mon Sep  1 22:34:07 UTC 2014 - zai...@opensuse.org
+
+- Update to version 2.31.1:
+  + Add gdk_pixbuf_get_file_info_async.
+  + Updated translations.
+
+---
+Mon Jul 21 17:23:55 UTC 2014 - dims...@opensuse.org
+
+- Update to version 2.31.0:
+  + To improve the situation for language bindings, pixbufs can now
+be constructed from data in GBytes, and pixbuf data can also be
+extracted in this form. The GBytes data is treated as readonly,
+and gdk_pixbuf_get_pixels() will create a copy. To avoid this
+copy, a new function gdk_pixbuf_read_pixels() was introduced
+which returns a const pointer to the data without copying.
+
+---

Old:

  gdk-pixbuf-2.30.8.tar.xz

New:

  gdk-pixbuf-2.31.1.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.rEgojh/_old  2014-09-30 19:37:02.0 +0200
+++ /var/tmp/diff_new_pack.rEgojh/_new  2014-09-30 19:37:02.0 +0200
@@ -20,12 +20,12 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.30.8
+Version:2.31.1
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.30/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.31/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf

++ gdk-pixbuf-2.30.8.tar.xz - gdk-pixbuf-2.31.1.tar.xz ++
 16508 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2014-07-04 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2014-07-04 17:18:32

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2014-04-05 
16:50:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2014-07-04 17:18:39.0 +0200
@@ -1,0 +2,8 @@
+Tue Jul  1 19:19:56 UTC 2014 - dims...@opensuse.org
+
+- Update to version 2.30.8:
+  + Add missing nullability annotations.
+  + Documentation improvements.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.30.7.tar.xz

New:

  gdk-pixbuf-2.30.8.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.M8cxSp/_old  2014-07-04 17:18:39.0 +0200
+++ /var/tmp/diff_new_pack.M8cxSp/_new  2014-07-04 17:18:39.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.30.7
+Version:2.30.8
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.30.7.tar.xz - gdk-pixbuf-2.30.8.tar.xz ++
 15016 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2014-04-05 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2014-04-05 16:50:04

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2014-03-06 
19:29:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2014-04-05 16:50:07.0 +0200
@@ -1,0 +2,6 @@
+Wed Mar 26 18:16:30 UTC 2014 - zai...@opensuse.org
+
+- Update to version 2.30.7:
+  + Documentation fixes.
+
+---

Old:

  gdk-pixbuf-2.30.6.tar.xz

New:

  gdk-pixbuf-2.30.7.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.mSlK4J/_old  2014-04-05 16:50:08.0 +0200
+++ /var/tmp/diff_new_pack.mSlK4J/_new  2014-04-05 16:50:08.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.30.6
+Version:2.30.7
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.30.6.tar.xz - gdk-pixbuf-2.30.7.tar.xz ++
 8509 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2014-03-06 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2014-03-06 19:29:32

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2014-02-21 
19:52:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2014-03-06 19:29:34.0 +0100
@@ -1,0 +2,8 @@
+Mon Mar  3 19:57:14 UTC 2014 - dims...@opensuse.org
+
+- Update to version 2.30.6:
+  + Add annotations to gdk_pixbuf_save_to_buffer.
+  + Win32 build fixes.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.30.5.tar.xz

New:

  gdk-pixbuf-2.30.6.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.s2BHrt/_old  2014-03-06 19:29:35.0 +0100
+++ /var/tmp/diff_new_pack.s2BHrt/_new  2014-03-06 19:29:35.0 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.30.5
+Version:2.30.6
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.30.5.tar.xz - gdk-pixbuf-2.30.6.tar.xz ++
 5346 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2014-02-21 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2014-02-21 19:52:35

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2014-02-07 
10:25:49.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2014-02-21 19:52:36.0 +0100
@@ -1,0 +2,7 @@
+Tue Feb 18 11:30:56 UTC 2014 - zai...@opensuse.org
+
+- Update to version 2.30.5:
+  + Convert documentation to markdown.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.30.4.tar.xz

New:

  gdk-pixbuf-2.30.5.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.2btocg/_old  2014-02-21 19:52:37.0 +0100
+++ /var/tmp/diff_new_pack.2btocg/_new  2014-02-21 19:52:37.0 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.30.4
+Version:2.30.5
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.30.4.tar.xz - gdk-pixbuf-2.30.5.tar.xz ++
 34938 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2014-02-07 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2014-02-07 10:25:48

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2014-01-23 
15:42:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2014-02-07 10:25:49.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb  4 17:14:11 UTC 2014 - dims...@opensuse.org
+
+- Update to version 2.30.4:
+  + Make test suite robust against disabled formats.
+  + Fix test failure when using libpng without iTXt support.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.30.3.tar.xz

New:

  gdk-pixbuf-2.30.4.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.Z7iplo/_old  2014-02-07 10:25:49.0 +0100
+++ /var/tmp/diff_new_pack.Z7iplo/_new  2014-02-07 10:25:49.0 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.30.3
+Version:2.30.4
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.30.3.tar.xz - gdk-pixbuf-2.30.4.tar.xz ++
 130388 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2014-01-23 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2014-01-16 15:37:15

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2013-12-30 
09:53:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2014-01-23 15:42:59.0 +0100
@@ -1,0 +2,12 @@
+Tue Jan 14 07:44:12 UTC 2014 - dims...@opensuse.org
+
+- Update to version 2.30.3:
+  + Expand the test suite.
+  + Enable coverage testing with --enable-coverage.
+  + Unify sniff buffer sizes across loaders: 4k everywhere.
+  + Port to GTask (bgo#712704).
+  + xpm: Fix scaling (bgo#686514).
+  + xpm: Update colors from pango (bgo#678996).
+  + qtif: fix fread() error check (bgo#721371).
+
+---

Old:

  gdk-pixbuf-2.30.2.tar.xz

New:

  gdk-pixbuf-2.30.3.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.0mXeau/_old  2014-01-23 15:43:00.0 +0100
+++ /var/tmp/diff_new_pack.0mXeau/_new  2014-01-23 15:43:00.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gdk-pixbuf
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.30.2
+Version:2.30.3
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.30.2.tar.xz - gdk-pixbuf-2.30.3.tar.xz ++
 54377 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2013-12-30 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2013-12-30 09:53:31

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2013-11-13 
10:16:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2013-12-30 09:53:33.0 +0100
@@ -1,0 +2,8 @@
+Tue Dec 17 11:38:54 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.30.2:
+  + jpeg: fix icc profile loading and improve error handling.
+  + Make --update-cache work better.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.30.1.tar.xz

New:

  gdk-pixbuf-2.30.2.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.Y1WbxV/_old  2013-12-30 09:53:33.0 +0100
+++ /var/tmp/diff_new_pack.Y1WbxV/_new  2013-12-30 09:53:33.0 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.30.1
+Version:2.30.2
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.30.1.tar.xz - gdk-pixbuf-2.30.2.tar.xz ++
 10753 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2013-11-13 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2013-11-13 10:16:49

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2013-09-27 
17:10:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2013-11-13 10:16:50.0 +0100
@@ -1,0 +2,9 @@
+Mon Nov 11 18:52:47 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.30.1:
+  + Only use RLIMIT_AS when available (bgo#708666).
+  + Only use setrlimit when available (bgo#710690).
+  + Avoid a bashism (bgo#711600).
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.30.0.tar.xz

New:

  gdk-pixbuf-2.30.1.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.3SBnY0/_old  2013-11-13 10:16:51.0 +0100
+++ /var/tmp/diff_new_pack.3SBnY0/_new  2013-11-13 10:16:51.0 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.30.0
+Version:2.30.1
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.30.0.tar.xz - gdk-pixbuf-2.30.1.tar.xz ++
 3700 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2013-09-27 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2013-09-27 17:10:18

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2013-08-16 
12:25:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2013-09-27 17:10:19.0 +0200
@@ -1,0 +2,7 @@
+Mon Sep 23 14:17:15 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.30.0:
+  + Visual C++ build fixes.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.29.3.tar.xz

New:

  gdk-pixbuf-2.30.0.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.ys5JG5/_old  2013-09-27 17:10:20.0 +0200
+++ /var/tmp/diff_new_pack.ys5JG5/_new  2013-09-27 17:10:20.0 +0200
@@ -20,12 +20,12 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.29.3
+Version:2.30.0
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.29/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.30/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf

++ gdk-pixbuf-2.29.3.tar.xz - gdk-pixbuf-2.30.0.tar.xz ++
 6048 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2013-08-16 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2013-08-16 12:25:50

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2013-06-29 
19:39:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2013-08-16 12:25:58.0 +0200
@@ -1,0 +2,8 @@
+Tue Jul 30 07:05:58 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.29.3:
+  + Use GLib setup for installed tests.
+  + Make installed tests find data files.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.29.2.tar.xz

New:

  gdk-pixbuf-2.29.3.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.juFUi9/_old  2013-08-16 12:25:59.0 +0200
+++ /var/tmp/diff_new_pack.juFUi9/_new  2013-08-16 12:25:59.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.29.2
+Version:2.29.3
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.29.2.tar.xz - gdk-pixbuf-2.29.3.tar.xz ++
 5172 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2013-06-29 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2013-06-29 19:39:24

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2013-06-05 
11:51:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2013-06-29 19:39:26.0 +0200
@@ -1,0 +2,8 @@
+Sat Jun 22 14:31:04 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.29.2:
+  + Install some tests.
+  + ANI: Set an error if we fail to produce an animation.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.29.0.tar.xz

New:

  gdk-pixbuf-2.29.2.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.x9VVxq/_old  2013-06-29 19:39:27.0 +0200
+++ /var/tmp/diff_new_pack.x9VVxq/_new  2013-06-29 19:39:27.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.29.0
+Version:2.29.2
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
@@ -33,7 +33,7 @@
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  translation-update-upstream
-BuildRequires:  pkgconfig(glib-2.0) = 2.37.0
+BuildRequires:  pkgconfig(glib-2.0) = 2.37.2
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)

++ gdk-pixbuf-2.29.0.tar.xz - gdk-pixbuf-2.29.2.tar.xz ++
 8010 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2013-06-05 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2013-06-05 11:51:55

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2013-04-26 
15:42:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2013-06-05 11:51:56.0 +0200
@@ -1,0 +2,9 @@
+Sun May  5 08:46:21 UTC 2013 - zai...@opensuse.org
+
+- Update to version 2.29.0:
+  + Add gdk_pixbuf_loader_write_bytes (bgo#696917).
+  + Update GIcon implementation (bgo#688820).
+  + Fix libpng linking issues (bgo#698093).
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.28.1.tar.xz

New:

  gdk-pixbuf-2.29.0.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.Gofa0N/_old  2013-06-05 11:51:57.0 +0200
+++ /var/tmp/diff_new_pack.Gofa0N/_new  2013-06-05 11:51:57.0 +0200
@@ -20,12 +20,12 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.28.1
+Version:2.29.0
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.28/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.29/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf
@@ -33,7 +33,7 @@
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  translation-update-upstream
-BuildRequires:  pkgconfig(glib-2.0) = 2.34.0
+BuildRequires:  pkgconfig(glib-2.0) = 2.37.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)

++ gdk-pixbuf-2.28.1.tar.xz - gdk-pixbuf-2.29.0.tar.xz ++
 19531 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2013-04-26 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2013-04-26 15:42:51

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2013-04-02 
11:43:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2013-04-26 15:42:53.0 +0200
@@ -1,0 +2,6 @@
+Mon Apr 15 17:32:38 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.28.1:
+  + Fix build with libpng 1.6.
+
+---

Old:

  gdk-pixbuf-2.28.0.tar.xz

New:

  gdk-pixbuf-2.28.1.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.X1lWFN/_old  2013-04-26 15:43:05.0 +0200
+++ /var/tmp/diff_new_pack.X1lWFN/_new  2013-04-26 15:43:05.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.28.0
+Version:2.28.1
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

++ gdk-pixbuf-2.28.0.tar.xz - gdk-pixbuf-2.28.1.tar.xz ++
 6575 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2013-04-02 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2013-04-02 11:43:55

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2012-11-26 
18:56:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2013-04-02 11:43:57.0 +0200
@@ -1,0 +2,37 @@
+Tue Mar 26 10:47:01 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.28.0:
+  + Updated translations.
+
+---
+Tue Mar 19 20:19:57 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.27.3:
+  + Allow prepare_func call in stop_load (bgo#695228).
+  + Updated translations.
+
+---
+Sun Mar  3 21:42:36 UTC 2013 - zai...@opensuse.org
+
+- Update to version 2.27.2:
+  + Make gdk_pixbuf_animation_new_from_file load png files
+(bgo#694148).
+  + Fix string formatting for l10n extraction (bgo#693534).
+  + Updated translations.
+
+---
+Mon Feb  4 22:24:37 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.27.1:
+  + Allow loading animations from streams.
+  + Allow loading animations from resources.
+  + Fix cross-compiling for Windows and Wine (bgo#692072).
+  + Updated translations.
+
+---
+Tue Jan 15 20:05:35 UTC 2013 - dims...@opensuse.org
+
+- Update to version 2.27.0:
+  + The broken locking mechanism for loaders has been removed.
+
+---

Old:

  gdk-pixbuf-2.26.5.tar.xz

New:

  gdk-pixbuf-2.28.0.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.QrBdYy/_old  2013-04-02 11:43:58.0 +0200
+++ /var/tmp/diff_new_pack.QrBdYy/_new  2013-04-02 11:43:58.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gdk-pixbuf
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,12 +20,12 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.26.5
+Version:2.28.0
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.26/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.28/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf

++ gdk-pixbuf-2.26.5.tar.xz - gdk-pixbuf-2.28.0.tar.xz ++
 45524 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2012-11-26 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2012-11-26 18:54:14

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2012-11-22 
16:12:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2012-11-26 18:56:30.0 +0100
@@ -1,0 +2,8 @@
+Wed Nov 21 20:59:31 UTC 2012 - dims...@opensuse.org
+
+- Do not provide typelib-1_0-GdkPixbuf-2_0-32bit (baselibs.conf):
+  this only results in a big mess of duplicate provides. Adding
+  ($HOSTTYPE) to the typelib() symbols does not work, as we'd
+  otherwise no longer be able to use them against noarch packages.
+
+---



Other differences:
--
++ baselibs.conf ++
--- /var/tmp/diff_new_pack.RLz8aF/_old  2012-11-26 18:56:41.0 +0100
+++ /var/tmp/diff_new_pack.RLz8aF/_new  2012-11-26 18:56:41.0 +0100
@@ -1,7 +1,6 @@
 gdk-pixbuf-devel
   requires -gdk-pixbuf-targettype
   requires libgdk_pixbuf-2_0-0-targettype = version
-  requires typelib-1_0-GdkPixbuf-2_0-targettype = version
 gdk-pixbuf-query-loaders
   +/usr/bin/gdk-pixbuf-query-loaders(-64)?
   post %if %_lib == lib64
@@ -17,5 +16,3 @@
   post %else
   post if test -f prefix%{_bindir}/gdk-pixbuf-query-loaders; then 
prefix%{_bindir}/gdk-pixbuf-query-loaders --update-cache; fi
   post %endif
-typelib-1_0-GdkPixbuf-2_0
-  +/usr/lib(64)?/girepository-1.0


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2012-11-22 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2012-11-22 16:12:33

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2012-11-02 
07:30:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2012-11-22 16:12:37.0 +0100
@@ -1,0 +2,18 @@
+Mon Nov 12 21:46:37 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.26.5:
+  + Improve error message for missing cache file (bgo#686844).
+  + Ensure we link to gobject (bgo#686822).
+  + Silence custom make rule (bgo#686605).
+  + Prevent an error pileup (bgo#686139).
+  + Don't use AC_PATH_PROG (bgo#671516).
+  + Updated translations.
+- Drop gdk-pixbuf-link-gobject.patch: fixed upstream.
+
+---
+Thu Oct 25 12:46:24 UTC 2012 - dims...@opensuse.org
+
+- Add gdk-pixbuf-link-gobject.patch: Ensure to link against
+  libgobject.
+
+---

Old:

  gdk-pixbuf-2.26.4.tar.xz

New:

  gdk-pixbuf-2.26.5.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.UnR4Wi/_old  2012-11-22 16:12:38.0 +0100
+++ /var/tmp/diff_new_pack.UnR4Wi/_new  2012-11-22 16:12:38.0 +0100
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.26.4
+Version:2.26.5
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
@@ -33,7 +33,7 @@
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  translation-update-upstream
-BuildRequires:  pkgconfig(glib-2.0) = 2.31.0
+BuildRequires:  pkgconfig(glib-2.0) = 2.34.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2012-11-02 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2012-11-02 07:30:34

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2012-10-03 
07:14:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2012-11-02 07:30:38.0 +0100
@@ -1,0 +2,6 @@
+Wed Oct 24 20:43:17 UTC 2012 - jeng...@inai.de
+
+- Make gdk-pixbuf-devel-32bit available on all archs
+  (baselibs.conf).
+
+---



Other differences:
--
++ baselibs.conf ++
--- /var/tmp/diff_new_pack.uYTHFb/_old  2012-11-02 07:30:39.0 +0100
+++ /var/tmp/diff_new_pack.uYTHFb/_new  2012-11-02 07:30:39.0 +0100
@@ -1,3 +1,7 @@
+gdk-pixbuf-devel
+  requires -gdk-pixbuf-targettype
+  requires libgdk_pixbuf-2_0-0-targettype = version
+  requires typelib-1_0-GdkPixbuf-2_0-targettype = version
 gdk-pixbuf-query-loaders
   +/usr/bin/gdk-pixbuf-query-loaders(-64)?
   post %if %_lib == lib64
@@ -13,3 +17,5 @@
   post %else
   post if test -f prefix%{_bindir}/gdk-pixbuf-query-loaders; then 
prefix%{_bindir}/gdk-pixbuf-query-loaders --update-cache; fi
   post %endif
+typelib-1_0-GdkPixbuf-2_0
+  +/usr/lib(64)?/girepository-1.0


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2012-10-02 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2012-10-03 07:14:28

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2012-08-15 
11:17:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2012-10-03 07:14:30.0 +0200
@@ -1,0 +2,20 @@
+Tue Sep 18 15:19:55 UTC 2012 - zai...@opensuse.org
+
+- Update to version 2.26.4:
+  + Make tiff loader threadsafe.
+  + Support saving ICC profiles in jpeg (bgo#604610).
+  + Add some missing annotations (bgo#683064).
+  + Documentation improvements (bgo#676430).
+  + Updated translations.
+- Clean up spec, remove source service checkout support.
+
+---
+Mon Aug 20 20:57:43 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.26.3:
+  + Fix a minor string leak (bgo#681943)
+  + Bail out as soon as a module is found (bgo#681943)
+  + Add an option to disable GIO mime detection (bgo#676726)
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.26.2.tar.xz

New:

  gdk-pixbuf-2.26.4.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.NaQbMU/_old  2012-10-03 07:14:33.0 +0200
+++ /var/tmp/diff_new_pack.NaQbMU/_new  2012-10-03 07:14:33.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.26.2
+Version:2.26.4
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
@@ -37,9 +37,6 @@
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)
-%if 0%{?BUILD_FROM_VCS}
-BuildRequires:  gtk-doc
-%endif
 
 %description
 gdk-pixbuf is an image loading library that can be extended by loadable
@@ -105,15 +102,9 @@
 %endif
 
 %build
-%if 0%{?BUILD_FROM_VCS}
-[ -x ./autogen.sh ]  NOCONFIGURE=1 ./autogen.sh
-%endif
 %configure \
 --disable-static \
 --enable-introspection \
-%if 0%{?BUILD_FROM_VCS}
---enable-gtk-doc \
-%endif
 --with-libjasper \
 --with-x11
 %{__make} %{?_smp_mflags}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2012-08-15 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2012-08-15 11:17:41

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2012-04-20 
15:14:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2012-08-15 11:17:43.0 +0200
@@ -1,0 +2,10 @@
+Mon Aug  6 19:40:38 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.26.2:
+  + Various functions have been added to the docs
+  + Fix introspection of gdk_pixbuf_new_from_xpm_data (bg0#668956)
+  + Improve the gif loaders handling of animations with varying
+frame sizes (bgo#613595)
+  + Updated translatons.
+
+---

Old:

  gdk-pixbuf-2.26.1.tar.xz

New:

  gdk-pixbuf-2.26.2.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.hVH6ls/_old  2012-08-15 11:17:51.0 +0200
+++ /var/tmp/diff_new_pack.hVH6ls/_new  2012-08-15 11:17:51.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.26.1
+Version:2.26.2
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2012-04-20 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2012-04-20 15:14:07

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2012-03-29 
11:39:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2012-04-20 15:14:31.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr 14 18:58:33 UTC 2012 - dims...@opensuse.org
+
+- Update to version 2.26.1:
+  + Fix srcdir != builddir build (bgo#672133)
+  + Avoid an integer overflow in the xbm loader (bgo#672811)
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.26.0.tar.xz

New:

  gdk-pixbuf-2.26.1.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.F72Nny/_old  2012-04-20 15:14:33.0 +0200
+++ /var/tmp/diff_new_pack.F72Nny/_new  2012-04-20 15:14:33.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.26.0
+Version:2.26.1
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2012-03-29 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2012-03-29 11:39:49

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2012-02-16 
16:13:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2012-03-29 11:39:58.0 +0200
@@ -1,0 +2,8 @@
+Tue Mar 20 20:32:43 UTC 2012 - vu...@opensuse.org
+
+- Update to version 2.26.0:
+  + Correctly load .ANI files without sequence chunks.
+  + Win32 build fixes.
+  + Updated translations.
+
+---

Old:

  gdk-pixbuf-2.25.2.tar.xz

New:

  gdk-pixbuf-2.26.0.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.PW2t9P/_old  2012-03-29 11:40:00.0 +0200
+++ /var/tmp/diff_new_pack.PW2t9P/_new  2012-03-29 11:40:00.0 +0200
@@ -15,16 +15,17 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 # When updating the binary version, do not forget to also update baselibs.conf
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.25.2
+Version:2.26.0
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
 Group:  System/Libraries
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.25/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.26/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2012-02-16 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2012-02-16 16:13:13

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2012-01-06 
11:43:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2012-02-16 16:13:15.0 +0100
@@ -1,0 +2,18 @@
+Tue Feb  7 16:53:33 UTC 2012 - vu...@opensuse.org
+
+- Remove xz BuildRequires now that it comes for free in the build
+  system.
+
+---
+Sun Feb  5 18:52:47 UTC 2012 - zai...@opensuse.org
+
+- Update to version 2.25.2:
+  + New functions to load pixbufs from resources:
+gdk_pixbuf_new_from_resource,
+gdk_pixbuf_new_from_resource_at_scale.
+  + gdk-pixbuf-pixdata is a new program that generates raw binary
+GdkPixdata files, and there is a new loader for these.
+  + Updated translations.
+- Drop gdk-pixbuf-missing-include.patch: fixed upstream.
+
+---

Old:

  gdk-pixbuf-2.25.0.tar.xz
  gdk-pixbuf-missing-include.patch

New:

  gdk-pixbuf-2.25.2.tar.xz



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.Wabv8S/_old  2012-02-16 16:13:18.0 +0100
+++ /var/tmp/diff_new_pack.Wabv8S/_new  2012-02-16 16:13:18.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gdk-pixbuf
 #
-# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.25.0
+Version:2.25.2
 Release:0
 Summary:An image loading library
 License:LGPL-2.1+
@@ -28,14 +28,10 @@
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM gdk-pixbuf-missing-include.patch bgo#666518 
vu...@opensuse.org -- Add missing include
-Patch0: gdk-pixbuf-missing-include.patch
 BuildRequires:  libjasper-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  translation-update-upstream
-# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
-BuildRequires:  xz
 BuildRequires:  pkgconfig(glib-2.0) = 2.31.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
@@ -106,10 +102,8 @@
 %if %_lib == lib64
 cp -a %{S:2} .
 %endif
-%patch0 -p1
 
 %build
-# Needed for patch0 or when BUILD_FROM_VCS is set
 %if 0%{?BUILD_FROM_VCS}
 [ -x ./autogen.sh ]  NOCONFIGURE=1 ./autogen.sh
 %endif
@@ -208,6 +202,7 @@
 %files devel
 %defattr(-, root, root)
 %{_bindir}/gdk-pixbuf-csource
+%{_bindir}/gdk-pixbuf-pixdata
 %{_mandir}/man1/gdk-pixbuf-csource.1*
 %{_includedir}/gdk-pixbuf-2.0
 %{_libdir}/pkgconfig/*.pc

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2012-01-06 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2012-01-06 11:43:51

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/gdk-pixbuf/gdk-pixbuf.changes2011-09-23 
01:59:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.gdk-pixbuf.new/gdk-pixbuf.changes   
2012-01-06 11:43:55.0 +0100
@@ -1,0 +2,27 @@
+Mon Dec 19 11:43:36 UTC 2011 - vu...@opensuse.org
+
+- Update to version 2.25.0:
+  + Fix some string problems in the qtif loader (bgo#629396)
+  + Fix various introspection annotations (bgo#659888)
+  + Fix introspectability of gdk_pixbuf_get_pixels (bgo#662009)
+  + Skip compressed icons in ICOs (bgo#652498)
+  + Fix thread-safety issues with animations
+  + Fix gif animation delays between frames (bgo#655755)
+  + Work around gtk-doc limitations (bgo#663554)
+  + Add a --with-x11 configure options (bgo#657569)
+  + Fix build problem on NetBSD (bgo#640405)
+  + Fix mingw build (bgo#657876)
+  + Updated translations.
+- Add gdk-pixbuf-missing-include.patch: add missing include.
+- Add xz BuildRequires because we can't build a package for a
+  xz-compressed tarball without explicitly specifying that... See
+  bnc#697467 for more details.
+- Pass new --with-x11 option to configure.
+
+---
+Thu Dec  8 19:48:50 UTC 2011 - dims...@opensuse.org
+
+- Split typelib file in typelib-1_0-GdkPixbuf-2_0 subpackage.
+- Add typelib-1_0-GdkPixbuf-2_0 Requires to devel subpackage.
+
+---

Old:

  gdk-pixbuf-2.24.0.tar.bz2

New:

  gdk-pixbuf-2.25.0.tar.xz
  gdk-pixbuf-missing-include.patch



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.4Qmn0W/_old  2012-01-06 11:43:56.0 +0100
+++ /var/tmp/diff_new_pack.4Qmn0W/_new  2012-01-06 11:43:56.0 +0100
@@ -15,25 +15,28 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
 # When updating the binary version, do not forget to also update baselibs.conf
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.24.0
-Release:1
-License:LGPL-2.1+
+Version:2.25.0
+Release:0
 Summary:An image loading library
+License:LGPL-2.1+
 Group:  System/Libraries
-Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.24/%{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.25/%{name}-%{version}.tar.xz
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf
+# PATCH-FIX-UPSTREAM gdk-pixbuf-missing-include.patch bgo#666518 
vu...@opensuse.org -- Add missing include
+Patch0: gdk-pixbuf-missing-include.patch
 BuildRequires:  libjasper-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
 BuildRequires:  translation-update-upstream
-BuildRequires:  pkgconfig(glib-2.0)
+# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
+BuildRequires:  xz
+BuildRequires:  pkgconfig(glib-2.0) = 2.31.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)
@@ -47,7 +50,6 @@
 Clutter.
 
 %package -n libgdk_pixbuf-2_0-0
-License:LGPL-2.1+
 Summary:An image loading library
 Group:  System/Libraries
 # Provide %{name} to make the lang package installable
@@ -61,8 +63,18 @@
 modules for new image formats. It is used by toolkits such as GTK+ or
 Clutter.
 
+%package -n typelib-1_0-GdkPixbuf-2_0
+Summary:An image loading library -- Introspection bindings
+Group:  System/Libraries
+
+%description -n typelib-1_0-GdkPixbuf-2_0
+gdk-pixbuf is an image loading library that can be extended by loadable
+modules for new image formats. It is used by toolkits such as GTK+ or
+Clutter.
+
+This package provides the GObject Introspection bindings for gdk-pixbuf.
+
 %package query-loaders
-License:LGPL-2.1+
 Summary:An image loading library - Utility to create loaders cache
 Group:  System/Libraries
 
@@ -75,10 +87,10 @@
 loadable modules.
 
 %package devel
-License:LGPL-2.1+
 Summary:An image loading library - Development Files
 Group:  Development/Languages/C and C++
 Requires:   libgdk_pixbuf-2_0-0 = %{version}
+Requires:   typelib-1_0-GdkPixbuf-2_0 = %{version}
 
 %description devel
 gdk-pixbuf is an image loading library that can be extended by loadable
@@ 

commit gdk-pixbuf for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory 
checked in at 2011-12-06 18:11:50

Comparing /work/SRC/openSUSE:Factory/gdk-pixbuf (Old)
 and  /work/SRC/openSUSE:Factory/.gdk-pixbuf.new (New)


Package is gdk-pixbuf, Maintainer is gnome-maintain...@suse.de

Changes:




Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.Htav9Q/_old  2011-12-06 18:17:09.0 +0100
+++ /var/tmp/diff_new_pack.Htav9Q/_new  2011-12-06 18:17:09.0 +0100
@@ -22,7 +22,7 @@
 Name:   gdk-pixbuf
 Version:2.24.0
 Release:1
-License:LGPLv2+
+License:LGPL-2.1+
 Summary:An image loading library
 Group:  System/Libraries
 Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.24/%{name}-%{version}.tar.bz2
@@ -47,7 +47,7 @@
 Clutter.
 
 %package -n libgdk_pixbuf-2_0-0
-License:LGPLv2+
+License:LGPL-2.1+
 Summary:An image loading library
 Group:  System/Libraries
 # Provide %{name} to make the lang package installable
@@ -62,7 +62,7 @@
 Clutter.
 
 %package query-loaders
-License:LGPLv2+
+License:LGPL-2.1+
 Summary:An image loading library - Utility to create loaders cache
 Group:  System/Libraries
 
@@ -75,7 +75,7 @@
 loadable modules.
 
 %package devel
-License:LGPLv2+
+License:LGPL-2.1+
 Summary:An image loading library - Development Files
 Group:  Development/Languages/C and C++
 Requires:   libgdk_pixbuf-2_0-0 = %{version}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2011-09-09 Thread h_root

Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory
checked in at Fri Sep 9 11:14:14 CEST 2011.




--- GNOME/gdk-pixbuf/gdk-pixbuf.changes 2011-06-28 09:50:47.0 +0200
+++ /mounts/work_src_done/STABLE/gdk-pixbuf/gdk-pixbuf.changes  2011-08-31 
09:59:52.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 31 09:52:33 CEST 2011 - vu...@opensuse.org
+
+- Update to version 2.24.0:
+  + Clean up dependencies in the .pc file
+  + Win32 build fixes
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gdk-pixbuf-2.23.5.tar.bz2

New:

  gdk-pixbuf-2.24.0.tar.bz2



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.dKW0wQ/_old  2011-09-09 11:14:09.0 +0200
+++ /var/tmp/diff_new_pack.dKW0wQ/_new  2011-09-09 11:14:09.0 +0200
@@ -20,12 +20,12 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.23.5
+Version:2.24.0
 Release:1
 License:LGPLv2+
 Summary:An image loading library
 Group:  System/Libraries
-Source: %{name}-%{version}.tar.bz2
+Source: 
http://download.gnome.org/sources/gdk-pixbuf/2.24/%{name}-%{version}.tar.bz2
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf

++ gdk-pixbuf-2.23.5.tar.bz2 - gdk-pixbuf-2.24.0.tar.bz2 ++
 5203 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2011-07-01 Thread h_root

Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory
checked in at Fri Jul 1 16:10:22 CEST 2011.




--- GNOME/gdk-pixbuf/gdk-pixbuf.changes 2011-04-04 11:28:35.0 +0200
+++ /mounts/work_src_done/STABLE/gdk-pixbuf/gdk-pixbuf.changes  2011-06-28 
09:50:47.0 +0200
@@ -1,0 +2,16 @@
+Tue Jun 28 09:48:11 CEST 2011 - dims...@opensuse.org
+
+- Update to version 2.23.5:
+  + Prevent the return of partically initialized pixbuf structures
+from the gif loader in some error cases (CVE-2011-2485)
+  + Win32 build updates.
+
+---
+Tue Jun 14 19:48:30 CEST 2011 - vu...@opensuse.org
+
+- Update to version 2.23.4:
+  + Drop use of G_CONST_RETURN
+  + Win32 build fixes
+  + Updated translations.
+
+---

calling whatdependson for head-i586


Old:

  gdk-pixbuf-2.23.3.tar.bz2

New:

  gdk-pixbuf-2.23.5.tar.bz2



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.hZlKDR/_old  2011-07-01 16:07:55.0 +0200
+++ /var/tmp/diff_new_pack.hZlKDR/_new  2011-07-01 16:07:55.0 +0200
@@ -20,7 +20,7 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.23.3
+Version:2.23.5
 Release:1
 License:LGPLv2+
 Summary:An image loading library

++ gdk-pixbuf-2.23.3.tar.bz2 - gdk-pixbuf-2.23.5.tar.bz2 ++
 9253 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit gdk-pixbuf for openSUSE:Factory

2011-05-02 Thread h_root

Hello community,

here is the log from the commit of package gdk-pixbuf for openSUSE:Factory
checked in at Mon May 2 12:18:27 CEST 2011.




--- GNOME/gdk-pixbuf/gdk-pixbuf.changes 2011-02-14 17:46:48.0 +0100
+++ /mounts/work_src_done/STABLE/gdk-pixbuf/gdk-pixbuf.changes  2011-04-04 
11:28:35.0 +0200
@@ -1,0 +2,43 @@
+Mon Apr  4 09:23:54 UTC 2011 - fcro...@novell.com
+
+- Update to version 2.23.3:
+  + Fix release tarball
+  + More win32 build fixes
+- Changes from version 2.23.2:
+  + bgo#636138: Fix possible crashes when loading jpegs
+  + Introspection annotation fixes
+  + Update build files on Win32
+  + Updated translations.
+
+---
+Mon Mar  7 09:19:54 UTC 2011 - fcro...@novell.com
+
+- Update to version 2.23.1:
+  + Introspection:
+- Add package information
+- Don't include backend API
+  + Fix build against libpng 1.5
+  + Bugs fixed:
+- bgo#634659: gdk-pixbuf 2.22 can't find localisation
+- bgo#635364: Add C include and exported packages information
+  to GIR
+- bgo#639922: Proposed Visual C++ 2008 Project Files
+- bgo#640407: Unportable test(1) construct in configure script.
+  + Updated translations.
+
+---
+Wed Feb 16 08:01:37 UTC 2011 - fcro...@novell.com
+
+- Update to version 2.23.0:
+  + New API: gdk_pixbuf_new_from_stream_async
+  + Updated translations.
+- Drop gdk-pixbuf-add-gir_PACKAGES.patch: fixed upstream. Also
+  remove gnome-common BuildRequires and call to gnome-autogen.sh
+  that were needed for the patch.
+- Add support for source service checkout, with %BUILD_FROM_VCS:
+  + Add gtk-doc BuildRequires.
+  + Add call to ./autogen.sh.
+  + Enforce gtk-doc html generation by passing --enable-gtk-doc to
+configure.
+
+---

calling whatdependson for head-i586


Old:

  gdk-pixbuf-2.22.1.tar.bz2
  gdk-pixbuf-add-gir_PACKAGES.patch

New:

  gdk-pixbuf-2.23.3.tar.bz2



Other differences:
--
++ gdk-pixbuf.spec ++
--- /var/tmp/diff_new_pack.GnC1Ca/_old  2011-05-02 12:17:37.0 +0200
+++ /var/tmp/diff_new_pack.GnC1Ca/_new  2011-05-02 12:17:37.0 +0200
@@ -20,8 +20,8 @@
 %define gdk_pixbuf_binary_version 2.10.0
 
 Name:   gdk-pixbuf
-Version:2.22.1
-Release:7
+Version:2.23.3
+Release:1
 License:LGPLv2+
 Summary:An image loading library
 Group:  System/Libraries
@@ -29,10 +29,6 @@
 Source1:macros.gdk-pixbuf
 Source2:README.SUSE
 Source99:   baselibs.conf
-# PATCH-FIX-UPSTREAM gdk-pixbuf-add-gir_PACKAGES.patch bgo#635364 
dims...@opensuse.org -- Add gir_PACKAGES. This helps vapigen 0.12 to add proper 
package information, needed to bind .vapi and .gir files, in case both are 
installed.
-Patch0: gdk-pixbuf-add-gir_PACKAGES.patch
-# Needed for patch0
-BuildRequires:  gnome-common
 BuildRequires:  libjasper-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
@@ -41,6 +37,9 @@
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
 BuildRequires:  pkgconfig(libpng)
 BuildRequires:  pkgconfig(x11)
+%if 0%{?BUILD_FROM_VCS}
+BuildRequires:  gtk-doc
+%endif
 
 %description
 gdk-pixbuf is an image loading library that can be extended by loadable
@@ -95,14 +94,18 @@
 %if %_lib == lib64
 cp -a %{S:2} .
 %endif
-%patch0 -p1
 
 %build
-# Needed for patch0
-NOCONFIGURE=1 gnome-autogen.sh
+# Needed for patch0 or when BUILD_FROM_VCS is set
+%if 0%{?BUILD_FROM_VCS}
+[ -x ./autogen.sh ]  NOCONFIGURE=1 ./autogen.sh
+%endif
 %configure \
 --disable-static \
 --enable-introspection \
+%if 0%{?BUILD_FROM_VCS}
+--enable-gtk-doc \
+%endif
 --with-libjasper
 %{__make} %{?_smp_mflags}
 

++ gdk-pixbuf-2.22.1.tar.bz2 - gdk-pixbuf-2.23.3.tar.bz2 ++
 62778 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org