Hello community,

here is the log from the commit of package jsoncpp for openSUSE:Factory checked 
in at 2016-04-07 13:35:31
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
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  2016-03-29 
09:50:55.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.jsoncpp.new/jsoncpp.changes     2016-04-07 
13:35:33.000000000 +0200
@@ -1,0 +2,6 @@
+Sat Apr  2 09:40:09 UTC 2016 - mplus...@suse.com
+
+- Update to 1.7.2
+  * Fix a clang warning
+
+-------------------------------------------------------------------

Old:
----
  1.7.1.tar.gz

New:
----
  1.7.2.tar.gz

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

Other differences:
------------------
++++++ jsoncpp.spec ++++++
--- /var/tmp/diff_new_pack.tmvWku/_old  2016-04-07 13:35:33.000000000 +0200
+++ /var/tmp/diff_new_pack.tmvWku/_new  2016-04-07 13:35:33.000000000 +0200
@@ -18,7 +18,7 @@
 
 %define libname lib%{name}1
 Name:           jsoncpp
-Version:        1.7.1
+Version:        1.7.2
 Release:        0
 Summary:        C++ library that allows manipulating with JSON
 License:        MIT
@@ -29,8 +29,8 @@
 BuildRequires:  doxygen
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
-BuildRequires:  pkg-config
 BuildRequires:  python
+BuildRequires:  pkgconfig(pkg-config)
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 
 %description

++++++ 1.7.1.tar.gz -> 1.7.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jsoncpp-1.7.1/CMakeLists.txt 
new/jsoncpp-1.7.2/CMakeLists.txt
--- old/jsoncpp-1.7.1/CMakeLists.txt    2016-03-22 03:17:56.000000000 +0100
+++ new/jsoncpp-1.7.2/CMakeLists.txt    2016-03-25 21:09:15.000000000 +0100
@@ -64,7 +64,7 @@
 #SET( JSONCPP_VERSION_MAJOR X )
 #SET( JSONCPP_VERSION_MINOR Y )
 #SET( JSONCPP_VERSION_PATCH Z )
-SET( JSONCPP_VERSION 1.7.1 )
+SET( JSONCPP_VERSION 1.7.2 )
 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.7.1/include/json/version.h 
new/jsoncpp-1.7.2/include/json/version.h
--- old/jsoncpp-1.7.1/include/json/version.h    2016-03-22 03:17:56.000000000 
+0100
+++ new/jsoncpp-1.7.2/include/json/version.h    2016-03-25 21:09:15.000000000 
+0100
@@ -3,10 +3,10 @@
 #ifndef JSON_VERSION_H_INCLUDED
 # define JSON_VERSION_H_INCLUDED
 
-# define JSONCPP_VERSION_STRING "1.7.1"
+# define JSONCPP_VERSION_STRING "1.7.2"
 # define JSONCPP_VERSION_MAJOR 1
 # define JSONCPP_VERSION_MINOR 7
-# define JSONCPP_VERSION_PATCH 1
+# define JSONCPP_VERSION_PATCH 2
 # 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.7.1/src/lib_json/json_tool.h 
new/jsoncpp-1.7.2/src/lib_json/json_tool.h
--- old/jsoncpp-1.7.1/src/lib_json/json_tool.h  2016-03-22 03:17:56.000000000 
+0100
+++ new/jsoncpp-1.7.2/src/lib_json/json_tool.h  2016-03-25 21:09:15.000000000 
+0100
@@ -63,7 +63,7 @@
 static inline void uintToString(LargestUInt value, char*& current) {
   *--current = 0;
   do {
-    *--current = static_cast<signed char>(value % 10U + 
static_cast<unsigned>('0'));
+    *--current = static_cast<char>(value % 10U + static_cast<unsigned>('0'));
     value /= 10;
   } while (value != 0);
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jsoncpp-1.7.1/version new/jsoncpp-1.7.2/version
--- old/jsoncpp-1.7.1/version   2016-03-22 03:17:56.000000000 +0100
+++ new/jsoncpp-1.7.2/version   2016-03-25 21:09:15.000000000 +0100
@@ -1 +1 @@
-1.7.1
+1.7.2


Reply via email to