Hello community,

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

Package is "jsoncpp"

Changes:
--------
--- /work/SRC/openSUSE:Factory/jsoncpp/jsoncpp.changes  2015-03-18 
13:04:47.000000000 +0100
+++ /work/SRC/openSUSE:Factory/.jsoncpp.new/jsoncpp.changes     2015-04-05 
02:04:28.000000000 +0200
@@ -1,0 +2,7 @@
+Sat Apr  4 10:33:42 UTC 2015 - mplus...@suse.com
+
+- Update to 1.6.1
+  * Fix compilation error for snprintf() for some compilers.
+- Update category for documentation
+
+-------------------------------------------------------------------

Old:
----
  1.6.0.tar.gz

New:
----
  1.6.1.tar.gz

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

Other differences:
------------------
++++++ jsoncpp.spec ++++++
--- /var/tmp/diff_new_pack.1HRzfR/_old  2015-04-05 02:04:28.000000000 +0200
+++ /var/tmp/diff_new_pack.1HRzfR/_new  2015-04-05 02:04:28.000000000 +0200
@@ -18,7 +18,7 @@
 
 %define libname lib%{name}1
 Name:           jsoncpp
-Version:        1.6.0
+Version:        1.6.1
 Release:        0
 Summary:        C++ library that allows manipulating with JSON
 License:        MIT
@@ -59,7 +59,7 @@
 
 %package doc
 Summary:        Documentation for %{name}
-Group:          Documentation
+Group:          Documentation/HTML
 BuildArch:      noarch
 
 %description doc

++++++ 1.6.0.tar.gz -> 1.6.1.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jsoncpp-1.6.0/CMakeLists.txt 
new/jsoncpp-1.6.1/CMakeLists.txt
--- old/jsoncpp-1.6.0/CMakeLists.txt    2015-03-15 19:49:24.000000000 +0100
+++ new/jsoncpp-1.6.1/CMakeLists.txt    2015-03-31 22:07:14.000000000 +0200
@@ -60,7 +60,7 @@
 #SET( JSONCPP_VERSION_MAJOR X )
 #SET( JSONCPP_VERSION_MINOR Y )
 #SET( JSONCPP_VERSION_PATCH Z )
-SET( JSONCPP_VERSION 1.6.0 )
+SET( JSONCPP_VERSION 1.6.1 )
 jsoncpp_parse_version( ${JSONCPP_VERSION} JSONCPP_VERSION )
 #IF(NOT JSONCPP_VERSION_FOUND)
 #    MESSAGE(FATAL_ERROR "Failed to parse version string properly. Expect 
X.Y.Z")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jsoncpp-1.6.0/doxybuild.py 
new/jsoncpp-1.6.1/doxybuild.py
--- old/jsoncpp-1.6.0/doxybuild.py      2015-03-15 19:49:24.000000000 +0100
+++ new/jsoncpp-1.6.1/doxybuild.py      2015-03-31 22:07:14.000000000 +0200
@@ -31,7 +31,7 @@
     paths = os.environ.get('PATH', '').split(os.pathsep)
     suffixes = ('win32' in sys.platform) and '.exe .com .bat .cmd' or ''
     for filename in filenames:
-        for name in [filename+ext for ext in suffixes.split()]:
+        for name in [filename+ext for ext in suffixes.split(' ')]:
             for directory in paths:
                 full_path = os.path.join(directory, name)
                 if os.path.isfile(full_path):
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jsoncpp-1.6.0/include/json/version.h 
new/jsoncpp-1.6.1/include/json/version.h
--- old/jsoncpp-1.6.0/include/json/version.h    2015-03-15 19:49:24.000000000 
+0100
+++ new/jsoncpp-1.6.1/include/json/version.h    2015-03-31 22:07:14.000000000 
+0200
@@ -4,10 +4,10 @@
 #ifndef JSON_VERSION_H_INCLUDED
 # define JSON_VERSION_H_INCLUDED
 
-# define JSONCPP_VERSION_STRING "1.6.0"
+# define JSONCPP_VERSION_STRING "1.6.1"
 # define JSONCPP_VERSION_MAJOR 1
 # define JSONCPP_VERSION_MINOR 6
-# define JSONCPP_VERSION_PATCH 0
+# define JSONCPP_VERSION_PATCH 1
 # define JSONCPP_VERSION_QUALIFIER
 # define JSONCPP_VERSION_HEXA ((JSONCPP_VERSION_MAJOR << 24) | 
(JSONCPP_VERSION_MINOR << 16) | (JSONCPP_VERSION_PATCH << 8))
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jsoncpp-1.6.0/src/lib_json/json_writer.cpp 
new/jsoncpp-1.6.1/src/lib_json/json_writer.cpp
--- old/jsoncpp-1.6.0/src/lib_json/json_writer.cpp      2015-03-15 
19:49:24.000000000 +0100
+++ new/jsoncpp-1.6.1/src/lib_json/json_writer.cpp      2015-03-31 
22:07:14.000000000 +0200
@@ -29,7 +29,7 @@
 
 #if defined(_MSC_VER) && _MSC_VER < 1500 // VC++ 8.0 and below
 #define snprintf _snprintf
-#else
+#elif __cplusplus >= 201103L
 #define snprintf std::snprintf
 #endif
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jsoncpp-1.6.0/version new/jsoncpp-1.6.1/version
--- old/jsoncpp-1.6.0/version   2015-03-15 19:49:24.000000000 +0100
+++ new/jsoncpp-1.6.1/version   2015-03-31 22:07:14.000000000 +0200
@@ -1 +1 @@
-1.6.0
+1.6.1


Reply via email to