Hello community,

here is the log from the commit of package libpng15 for openSUSE:Factory 
checked in at 2011-12-06 16:23:03
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/libpng15 (Old)
 and      /work/SRC/openSUSE:Factory/.libpng15.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "libpng15", Maintainer is ""

Changes:
--------
--- /work/SRC/openSUSE:Factory/libpng15/libpng15.changes        2011-11-05 
11:24:48.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.libpng15.new/libpng15.changes   2011-12-06 
16:23:05.000000000 +0100
@@ -1,0 +2,69 @@
+Thu Dec  1 10:48:53 UTC 2011 - [email protected]
+
+- Name field shouldn't contain a macro 
+
+-------------------------------------------------------------------
+Thu Dec  1 10:26:43 UTC 2011 - [email protected]
+
+- add libtool as buildrequire to avoid implicit dependency
+
+-------------------------------------------------------------------
+Thu Nov  3 09:10:05 UTC 2011 - [email protected]
+
+- updated to 1.5.6:
+  Fixed some 64-bit type conversion warnings in pngrtran.c
+  Moved row_info from png_struct to a local variable.
+  The various interlace mask arrays have been made into arrays of
+    bytes and made PNG_CONST and static (previously some arrays were
+    marked PNG_CONST and some weren't).
+  Additional checks have been added to the transform code to validate the
+    pixel depths after the transforms on both read and write.
+  Removed some redundant code from pngwrite.c, in png_desgtroy_write_struct().
+  Changed chunk reading/writing code to use png_uint_32 instead of png_byte[4].
+    This removes the need to allocate temporary strings for chunk names on
+    the stack in the read/write code.  Unknown chunk handling still uses the
+    string form because this is exposed in the API.
+  Added a note in the manual the png_read_update_info() must be called only
+    once with a particular info_ptr.
+  Revised test-pngtest.sh to report FAIL when pngtest fails.
+  Added "--strict" option to pngtest, to report FAIL when the failure is
+    only because the resulting valid files are different.
+  Revised CMakeLists.txt to work with mingw and removed some material from
+    CMakeLists.txt that is no longer useful in libpng-1.5.
+  Fixed typo in Makefile.in and Makefile.am ("-M Wl" should be "-M -Wl")."
+  Speed up png_combine_row() for interlaced images. This reduces the generality
+    of the code, allowing it to be optimized for Adam7 interlace.  The masks
+    passed to png_combine_row() are now generated internally, avoiding
+    some code duplication and localizing the interlace handling somewhat.
+  Align png_struct::row_buf - previously it was always unaligned, caused by
+    a bug in the code that attempted to align it; the code needs to subtract
+    one from the pointer to take account of the filter byte prepended to
+    each row.
+  Optimized png_combine_row() when rows are aligned. This gains a small
+    percentage for 16-bit and 32-bit pixels in the typical case where the
+    output row buffers are appropriately aligned. The optimization was not
+    previously possible because the png_struct buffer was always misaligned.
+  Removed two redundant tests for unitialized row.
+  Fixed a relatively harmless memory overwrite in compressed text writing
+    with a 1 byte zlib buffer.
+  Add ability to call png_read_update_info multiple times to pngvalid.c
+  Fixes for multiple calls to png_read_update_info. These fixes attend to
+    most of the errors revealed in pngvalid, however doing the gamma work
+    twice results in inaccuracies that can't be easily fixed.  There is now
+    a warning in the code if this is going to happen.
+  Turned on multiple png_read_update_info in pngvalid transform tests.
+  Prevent libpng from overwriting unused bits at the end of the image when
+    it is not byte aligned, while reading. Prior to libpng-1.5.6 libpng would
+    overwrite the partial byte at the end of each row if the row width was not
+    an exact multiple of 8 bits and the image is not interlaced.
+  Made png_ptr->prev_row an aligned pointer into png_ptr->big_prev_row
+    (Mans Rullgard).
+  Changed misleading "Missing PLTE before cHRM" warning to "Out of place cHRM"
+  Added PNG_LSR() and PNG_LSL() macros to defend against buggy compilers that
+    evaluate non-taken code branches and complain about out-of-range shifts. 
+  Renamed the local variable 'byte' because it appears in a MSYS header
+    file.
+  Added #define PNG_ALIGN_TYPE PNG_ALIGN_NONE to contrib/pngminim/*/pngusr.h
+
+
+-------------------------------------------------------------------

Old:
----
  libpng-1.5.5.tar.bz2

New:
----
  libpng-1.5.6.tar.bz2

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ libpng15.spec ++++++
--- /var/tmp/diff_new_pack.18bD6Q/_old  2011-12-06 16:23:07.000000000 +0100
+++ /var/tmp/diff_new_pack.18bD6Q/_new  2011-12-06 16:23:07.000000000 +0100
@@ -15,32 +15,32 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
 
+#
 %define major   1
 %define minor   5
-%define micro   5
+%define micro   6
 %define branch  %{major}%{minor}
 %define libname libpng%{branch}-%{branch}
 
-Name:           libpng%{branch}
+Name:           libpng15
 License:        Zlib License
 Group:          System/Libraries
 Url:            http://www.libpng.org/pub/png/libpng.html
 Version:        %{major}.%{minor}.%{micro}
-Release:        1
+Release:        0
 Summary:        Library for the Portable Network Graphics Format (PNG)
 Source:         libpng-%{version}.tar.bz2
 Source2:        baselibs.conf
-BuildRequires:  pkg-config zlib-devel
+BuildRequires:  libtool
+BuildRequires:  pkg-config
+BuildRequires:  zlib-devel
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 %define debug_package_requires %{libname} = %{version}-%{release}
 
 %package -n %{libname}
 
 Summary:        Library for the Portable Network Graphics Format (PNG)
-License:        Zlib License
-Group:          System/Libraries
 # bug437293
 %ifarch ppc64
 Obsoletes:      libpng-64bit
@@ -50,7 +50,6 @@
 Provides:       libpng = %{version}-%{release}
 
 %package devel
-License:        Zlib License
 Group:          Development/Libraries/C and C++
 Summary:        Development Tools for applications which will use the Libpng
 Requires:       zlib-devel glibc-devel %{libname} = %{version} pkg-config
@@ -62,7 +61,6 @@
 #
 
 %package compat-devel
-License:        Zlib License
 Group:          Development/Libraries/C and C++
 Summary:        Development Tools for applications which will use the Libpng
 Requires:       libpng%{branch}-devel = %{version}

++++++ libpng-1.5.5.tar.bz2 -> libpng-1.5.6.tar.bz2 ++++++
++++ 6489 lines of diff (skipped)

-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to