Hello community, here is the log from the commit of package imlib2 for openSUSE:Factory checked in at 2015-03-29 20:14:56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/imlib2 (Old) and /work/SRC/openSUSE:Factory/.imlib2.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "imlib2" Changes: -------- --- /work/SRC/openSUSE:Factory/imlib2/imlib2.changes 2014-11-05 15:54:42.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.imlib2.new/imlib2.changes 2015-03-29 20:14:57.000000000 +0200 @@ -1,0 +2,12 @@ +Sat Feb 28 08:29:42 UTC 2015 - [email protected] + +- Cleanup spec file with spec-cleaner +- Update to 1.4.6 + * TGA loader: Fix for corrupt RLE format. + * Fix drawing of closed polygons in certain situations. + * Set warning options when using gcc. + * Silence compiler warnings. + * Don't set -std=gnu99. + * XPM loader: Simplify and fix certain case of cpp > 2. + +------------------------------------------------------------------- Old: ---- imlib2-1.4.5.tar.bz2 New: ---- imlib2-1.4.6.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ imlib2.spec ++++++ --- /var/tmp/diff_new_pack.AKX1Xq/_old 2015-03-29 20:14:58.000000000 +0200 +++ /var/tmp/diff_new_pack.AKX1Xq/_new 2015-03-29 20:14:58.000000000 +0200 @@ -1,7 +1,7 @@ # # spec file for package imlib2 # -# 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 @@ -16,15 +16,17 @@ # +%define lname libImlib2-1 Name: imlib2 -Version: 1.4.5 +Version: 1.4.6 Release: 0 Summary: Image handling and conversion library License: BSD-3-Clause Group: Development/Libraries/X11 Url: http://sourceforge.net/projects/enlightenment/ Source: http://downloads.sourceforge.net/project/enlightenment/imlib2-src/%{version}/%{name}-%{version}.tar.bz2 -%define lname libImlib2-1 +Patch1: imlib2-bswap.patch +Patch2: imlib2-giflib5.patch BuildRequires: freetype2-devel BuildRequires: giflib-devel BuildRequires: libid3tag-devel @@ -38,8 +40,6 @@ BuildRequires: pkgconfig(bzip2) Recommends: imlib2-loaders BuildRoot: %{_tmppath}/%{name}-%{version}-build -Patch1: imlib2-bswap.patch -Patch2: imlib2-giflib5.patch %description Imlib2 is an advanced replacement library for libraries like libXpm @@ -48,11 +48,11 @@ RGBA space rendering and blending, dynamic binary filters, scripting, and more. -%package -n %lname +%package -n %{lname} Summary: Image handling and conversion library Group: System/Libraries -%description -n %lname +%description -n %{lname} Imlib2 is an advanced replacement library for libraries like libXpm that provides many more features with much greater flexibility and speed than standard libraries, including font rasterization, rotation, @@ -62,7 +62,7 @@ %package devel Summary: Imlib 2 - development libraries Group: Development/Libraries/X11 -Requires: %lname = %{version} +Requires: %{lname} = %{version} Requires: xorg-x11-libX11-devel %description devel @@ -71,7 +71,7 @@ %package filters Summary: Imlib 2 - plugin filters Group: Development/Libraries/X11 -Requires: %lname = %{version} +Requires: %{lname} = %{version} %description filters This package has the basic set of plugin filters that come with Imlib2. @@ -98,7 +98,8 @@ %prep %setup -q %patch1 -%patch -P 2 -p1 +%patch2 -p1 + %build %if 0%{?suse_version} >= 1140 autoreconf --force --install @@ -128,13 +129,13 @@ ln -s $i imlib2-config done popd -find %{buildroot} -type f -name "*.la" -print -delete +find %{buildroot} -type f -name "*.la" -delete -print #Heads up ! clean up madness here.. sed -i -e 's@-lfreetype@@g' -e 's@-lz@@g' -e 's@-lXext@@g' -e 's@-ldl@@g' -e 's@-lm@@g' %{buildroot}%{_bindir}/imlib2-config -%post -n %lname -p /sbin/ldconfig +%post -n %{lname} -p /sbin/ldconfig -%postun -n %lname -p /sbin/ldconfig +%postun -n %{lname} -p /sbin/ldconfig %files %defattr(-,root,root,0755) @@ -151,7 +152,7 @@ %attr(755,root,root) %dir %{_datadir}/imlib2 %{_datadir}/imlib2/* -%files -n %lname +%files -n %{lname} %defattr(-,root,root) %{_libdir}/libImlib2.so.1* @@ -163,10 +164,12 @@ %{_bindir}/imlib2-config %files filters +%defattr(-,root,root) %attr(755,root,root) %dir %{_libdir}/imlib2 %attr(755,root,root) %{_libdir}/imlib2/filters %files loaders +%defattr(-,root,root) %attr(755,root,root) %dir %{_libdir}/imlib2 %attr(755,root,root) %{_libdir}/imlib2/loaders ++++++ imlib2-1.4.5.tar.bz2 -> imlib2-1.4.6.tar.bz2 ++++++ ++++ 49103 lines of diff (skipped) ++++++ imlib2-giflib5.patch ++++++ --- /var/tmp/diff_new_pack.AKX1Xq/_old 2015-03-29 20:14:58.000000000 +0200 +++ /var/tmp/diff_new_pack.AKX1Xq/_new 2015-03-29 20:14:58.000000000 +0200 @@ -2,10 +2,10 @@ src/modules/loaders/loader_gif.c | 9 +++++++++ 1 file changed, 9 insertions(+) -Index: imlib2-1.4.5/src/modules/loaders/loader_gif.c +Index: imlib2-1.4.6/src/modules/loaders/loader_gif.c =================================================================== ---- imlib2-1.4.5.orig/src/modules/loaders/loader_gif.c -+++ imlib2-1.4.5/src/modules/loaders/loader_gif.c +--- imlib2-1.4.6.orig/src/modules/loaders/loader_gif.c ++++ imlib2-1.4.6/src/modules/loaders/loader_gif.c @@ -7,6 +7,11 @@ #include <sys/stat.h> #include <fcntl.h> -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
