Accepting request 48902 from GNOME:Factory

Copy from GNOME:Factory/gdk-pixbuf based on submit request 48902 from user vuntz

OBS-URL: https://build.opensuse.org/request/show/48902
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gdk-pixbuf?expand=0&rev=2
This commit is contained in:
OBS User autobuild
2010-09-23 21:56:21 +00:00
committed by Git OBS Bridge
parent 76a67e53a0
commit 983eb4537f
5 changed files with 46 additions and 16 deletions

View File

@@ -3,4 +3,4 @@ gdk-pixbuf-query-loaders
post "if [ $1 == 1 ]; then test -d %{_libdir}/gdk-pixbuf-2.0/2.10.0; if test $? -eq 0; then %{_bindir}/gdk-pixbuf-query-loaders --update-cache; fi; fi"
libgdk_pixbuf-2_0-0
provides "gdk-pixbuf-<targettype> = <version>"
post "test -f %{_bindir}/gdk-pixbuf-query-loaders && %{_bindir}/gdk-pixbuf-query-loaders --update-cache"
post "if test -f %{_bindir}/gdk-pixbuf-query-loaders; then %{_bindir}/gdk-pixbuf-query-loaders --update-cache; fi"

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:de625133161c651c0f32c1f742826ba8700637c883691664a9152faed0e24d8c
size 1521950

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b8ff6a308f037af6b501246ad8779a951ca92af975efc2e97c354ea6702667cf
size 1538400

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Sep 21 23:24:22 CEST 2010 - vuntz@opensuse.org
- Update to version 2.22.0:
+ Fix a problem with mime type detection
+ Win32: Fix linking on x64
+ Drop gobject-introspection requirement to 0.9.3
+ Updated translations.
-------------------------------------------------------------------
Sat Sep 18 13:48:48 CEST 2010 - vuntz@opensuse.org
- Update the %post scriptlet to not fail if
gdk-pixbuf-query-loaders is not installed. Also make it easier to
read by using a %define to use the right binary for
gdk-pixbuf-query-loaders.
-------------------------------------------------------------------
Fri Sep 10 17:45:06 CEST 2010 - dimstar@opensuse.org
- Update to version 2.21.7:
+ bgo#624712: Fix linking when libpng loader is builtin
+ bgo#604284: Improve the pixbuf loader docs
+ bgo#622940: Fix compat issues wrt to single includes
+ Win32: Link directly to GDI+
+ Require gobject-introspection 0.9.5
+ Updated translations.
-------------------------------------------------------------------
Fri Jul 23 08:31:35 CEST 2010 - vuntz@opensuse.org

View File

@@ -1,5 +1,5 @@
#
# spec file for package gdk-pixbuf (Version 2.21.6)
# spec file for package gdk-pixbuf (Version 2.22.0)
#
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
@@ -18,7 +18,7 @@
Name: gdk-pixbuf
Version: 2.21.6
Version: 2.22.0
Release: 1
License: LGPLv2+
Summary: An image loading library
@@ -109,6 +109,13 @@ touch %{buildroot}%{_libdir}/gdk-pixbuf-2.0/2.10.0/loaders.cache
mkdir -p %{buildroot}%{_sysconfdir}/rpm
cp %{S:1} %{buildroot}%{_sysconfdir}/rpm
# Convenient %define for the scriplets
%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
%endif
# In case libgdk_pixbuf-2_0-0 gets installed before
# gdk-pixbuf-query-loaders, we don't want to fail. So we make the
# call to gdk-pixbuf-query-loaders dependent on the existence of
@@ -117,11 +124,9 @@ cp %{S:1} %{buildroot}%{_sysconfdir}/rpm
%post -n libgdk_pixbuf-2_0-0
/sbin/ldconfig
%if "%_lib" == "lib64"
test -f %{_bindir}/gdk-pixbuf-query-loaders-64 && %{_bindir}/gdk-pixbuf-query-loaders-64 --update-cache
%else
test -f %{_bindir}/gdk-pixbuf-query-loaders && %{_bindir}/gdk-pixbuf-query-loaders --update-cache
%endif
if test -f %{GDK_PIXBUF_QUERY_LOADERS}; then
%{GDK_PIXBUF_QUERY_LOADERS} --update-cache
fi
# If we install gdk-pixbuf-query-loaders for the first time,
# then we should run it in case libgdk_pixbuf-2_0-0 was installed
@@ -132,11 +137,7 @@ cp %{S:1} %{buildroot}%{_sysconfdir}/rpm
if [ $1 == 1 ]; then
test -d %{_libdir}/gdk-pixbuf-2.0/2.10.0
if test $? -eq 0; then
%if "%_lib" == "lib64"
%{_bindir}/gdk-pixbuf-query-loaders-64 --update-cache
%else
%{_bindir}/gdk-pixbuf-query-loaders --update-cache
%endif
%{GDK_PIXBUF_QUERY_LOADERS} --update-cache
fi
fi
@@ -178,4 +179,5 @@ fi
%{_sysconfdir}/rpm/macros.gdk-pixbuf
%files lang -f %{name}.lang
%changelog