Hello community,

here is the log from the commit of package zopfli for openSUSE:Factory checked 
in at 2016-07-14 09:47:30
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/zopfli (Old)
 and      /work/SRC/openSUSE:Factory/.zopfli.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "zopfli"

Changes:
--------
--- /work/SRC/openSUSE:Factory/zopfli/zopfli.changes    2016-05-19 
12:14:50.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.zopfli.new/zopfli.changes       2016-07-14 
09:47:35.000000000 +0200
@@ -1,0 +2,13 @@
+Sun Jul 10 07:03:33 UTC 2016 - mplus...@suse.com
+
+- Update to version 1.0.1+git.20160527:
+  * Fix excessive usage of malloc/free
+  * Avoid min name conflict
+  * Update README.zopflipng
+  * Update README
+  * Update README.zopflipng
+  * Update katajainen.c
+  * standardize code style
+  * try both with and without OptimizeHuffmanForRle, for better compression on 
small files
+
+-------------------------------------------------------------------

Old:
----
  zopfli-1.0.1+git.20160511.tar.xz

New:
----
  zopfli-1.0.1+git.20160527.tar.xz

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

Other differences:
------------------
++++++ zopfli.spec ++++++
--- /var/tmp/diff_new_pack.Yzu6IV/_old  2016-07-14 09:47:37.000000000 +0200
+++ /var/tmp/diff_new_pack.Yzu6IV/_new  2016-07-14 09:47:37.000000000 +0200
@@ -23,7 +23,7 @@
 %define libpngname lib%{name}png1
 
 Name:           zopfli
-Version:        1.0.1+git.20160511
+Version:        1.0.1+git.20160527
 Release:        0
 Summary:        GZip compatible compression utlity
 License:        Apache-2.0

++++++ _service ++++++
--- /var/tmp/diff_new_pack.Yzu6IV/_old  2016-07-14 09:47:37.000000000 +0200
+++ /var/tmp/diff_new_pack.Yzu6IV/_new  2016-07-14 09:47:37.000000000 +0200
@@ -1,14 +1,14 @@
 <services>
-  <service mode="localonly" name="tar_scm">
-    <param name="url">git://github.com/google/zopfli</param>
+  <service mode="disabled" name="tar_scm">
+    <param name="url">https://github.com/google/zopfli</param>
     <param name="scm">git</param>
     <param name="changesgenerate">enable</param>
     <param name="filename">zopfli</param>
     <param name="versionformat">1.0.1+git.%cd</param>
   </service>
-  <service mode="localonly" name="recompress">
+  <service mode="disabled" name="recompress">
     <param name="file">*.tar</param>
     <param name="compression">xz</param>
   </service>
-  <service mode="localonly" name="set_version"/>
+  <service mode="disabled" name="set_version"/>
 </services>

++++++ zopfli-1.0.1+git.20160511.tar.xz -> zopfli-1.0.1+git.20160527.tar.xz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/zopfli-1.0.1+git.20160511/src/zopfli/squeeze.c 
new/zopfli-1.0.1+git.20160527/src/zopfli/squeeze.c
--- old/zopfli-1.0.1+git.20160511/src/zopfli/squeeze.c  2016-05-16 
20:49:08.000000000 +0200
+++ new/zopfli-1.0.1+git.20160527/src/zopfli/squeeze.c  2016-07-10 
09:03:33.000000000 +0200
@@ -197,7 +197,7 @@
   return costmodel(bestlength, bestdist, costcontext);
 }
 
-static size_t min(size_t a, size_t b) {
+static size_t zopfli_min(size_t a, size_t b) {
   return a < b ? a : b;
 }
 
@@ -283,7 +283,7 @@
       }
     }
     /* Lengths. */
-    kend = min(leng, inend-i);
+    kend = zopfli_min(leng, inend-i);
     mincostaddcostj = mincost + costs[j];
     for (k = 3; k <= kend; k++) {
       double newCost;


Reply via email to