Hello community,

here is the log from the commit of package bluefish for openSUSE:Factory 
checked in at 2015-05-20 23:55:41
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/bluefish (Old)
 and      /work/SRC/openSUSE:Factory/.bluefish.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "bluefish"

Changes:
--------
--- /work/SRC/openSUSE:Factory/bluefish/bluefish.changes        2014-07-10 
08:17:21.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.bluefish.new/bluefish.changes   2015-05-20 
23:55:42.000000000 +0200
@@ -1,0 +2,33 @@
+Fri May 15 15:16:13 UTC 2015 - [email protected]
+
+- update to version 2.2.7:
+    Bluefish 2.2.7 is mostly a bug fix release. It fixes rare
+    crashes in the autocompletion, the filebrowser, the htmlbar
+    plugin preferences, and in file-load-cancel, fixes a rare case
+    of broken syntax highlighting after multiple search/replace
+    actions.
+  * It furthermore displays better error/warning output when
+    parsing language files.
+  * It also finally fixes javascript regex syntax highlighting.
+  * The loading of files with corrupt encoding has been improved,
+    and project loading over sftp has been improved.
+  * Various HTML5 tags have been added, and HTML5 is the default
+    now for php, cfml and other languages that can include html
+    syntax.
+  * Saving and loading of UTF-16 encoded files was broken and has
+    been fixes.
+  * Various languages have better support, such as javascript, css,
+    html, pascal/deplhi, and html has improved autocompletion.
+  * On OSX the keys for tab switching no longer confict with some
+    keyboard layouts, and behavior at shutdown was improved.
+  * The upload/download feature has a new option to ignore backup
+    files.
+  * The home/end keys now work better on wrapped tekst.
+  * And finally the search and replace dialog correctly shows the
+    number of results when searching in files on disk.
+- point the source URL to the master download server
+- add fix_ptr_from_int.patch: fix pointer from integer assignment,
+  already upstream
+- avoid aliasing warnings: add -fno-strict-aliasing to CFLAGS
+
+-------------------------------------------------------------------

Old:
----
  bluefish-2.2.6.tar.bz2

New:
----
  bluefish-2.2.7.tar.bz2
  fix_ptr_from_int.patch

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

Other differences:
------------------
++++++ bluefish.spec ++++++
--- /var/tmp/diff_new_pack.Rx4ue1/_old  2015-05-20 23:55:43.000000000 +0200
+++ /var/tmp/diff_new_pack.Rx4ue1/_new  2015-05-20 23:55:43.000000000 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bluefish
 #
-# 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 @@
 Summary:        A feature-Rich HTML Editor
 License:        GPL-3.0+
 Group:          Productivity/Publishing/HTML/Editors
-Version:        2.2.6
+Version:        2.2.7
 Release:        0
 Url:            http://bluefish.openoffice.nl/
 Provides:       bluefish-unstable = %{version}-%{release}
@@ -47,8 +47,10 @@
 Recommends:     libxml2-tools
 Requires:       libxml2
 Requires:       sgml-skel
-Source0:        %{name}-%{version}.tar.bz2
+Source0:        
http://www.bennewitz.com/bluefish/stable/source/%{name}-%{version}.tar.bz2
 Source1:        bluefish-rpmlintrc
+# PATCH-FIX-UPSTREAM fix_ptr_from_int.patch -- fix pointer from integer 
assignment, already upstream
+Patch0:         fix_ptr_from_int.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -59,12 +61,15 @@
 
 %prep
 %setup -q 
+%patch0 -p1
 for file in $(find src/plugin_zencoding -name "*.py"); do
        sed -i "s|/usr/bin/env python|%{bindir}/python|g" $file
        chmod +x $file
 done
 
 %build
+# avoid aliasing warnings
+export CFLAGS="%{optflags} -fno-strict-aliasing"
 %configure  --with-icon-path=%{_datadir}/pixmaps \
             --with-gnome2-menu=%{_datadir} \
             --without-freedesktop_org-mime \

++++++ bluefish-2.2.6.tar.bz2 -> bluefish-2.2.7.tar.bz2 ++++++
++++ 205057 lines of diff (skipped)

++++++ fix_ptr_from_int.patch ++++++
fix pointer from integer bug, already commited upstream in [r8489]

Index: bluefish-2.2.7/src/document.c
===================================================================
--- bluefish-2.2.7.orig/src/document.c
+++ bluefish-2.2.7/src/document.c
@@ -2445,7 +2445,7 @@ doc_get_buffer_in_encoding(Tdocument * d
                        }
                }
        } else {
-               newbuflen = strlen(buffer);
+               *newbuflen = strlen(buffer);
        }
        return buffer;
 }

Reply via email to