Hello community,

here is the log from the commit of package xsettingsd for openSUSE:Factory 
checked in at 2014-10-15 16:20:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/xsettingsd (Old)
 and      /work/SRC/openSUSE:Factory/.xsettingsd.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "xsettingsd"

Changes:
--------
--- /work/SRC/openSUSE:Factory/xsettingsd/xsettingsd.changes    2014-05-08 
12:39:41.000000000 +0200
+++ /work/SRC/openSUSE:Factory/.xsettingsd.new/xsettingsd.changes       
2014-10-15 16:21:43.000000000 +0200
@@ -1,0 +2,6 @@
+Wed Oct  8 06:56:36 UTC 2014 - [email protected]
+
+- Update to 0.0~git20140814:
+  * allow negative int values
+
+-------------------------------------------------------------------
@@ -4 +10 @@
-- fix warning standard-dir-owned-by-package /usr/share/man/man1
+- Fix warning standard-dir-owned-by-package /usr/share/man/man1.

Old:
----
  xsettingsd-0.0~git20121210.tar.gz

New:
----
  xsettingsd-0.0~git20140814.tar.gz

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

Other differences:
------------------
++++++ xsettingsd.spec ++++++
--- /var/tmp/diff_new_pack.HnD9Ln/_old  2014-10-15 16:21:44.000000000 +0200
+++ /var/tmp/diff_new_pack.HnD9Ln/_new  2014-10-15 16:21:44.000000000 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           xsettingsd
-Version:        0.0~git20121210
+Version:        0.0~git20140814
 Release:        0
 Summary:        Provides settings to X11 applications
 License:        BSD-3-Clause
@@ -45,8 +45,8 @@
 
 %install
 for file in %{name} dump_xsettings; do
-    install -Dm 0755 ${file} %{buildroot}%{_bindir}/${file}
-    install -Dm 0644 ${file}.1 %{buildroot}%{_mandir}/man1/${file}.1
+    install -Dm 0755 $file %{buildroot}%{_bindir}/$file
+    install -Dm 0644 $file.1 %{buildroot}%{_mandir}/man1/$file.1
 done
 
 %files

++++++ xsettingsd-0.0~git20121210.tar.gz -> xsettingsd-0.0~git20140814.tar.gz 
++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xsettingsd-0.0~git20121210/config_parser.cc 
new/xsettingsd-0.0~git20140814/config_parser.cc
--- old/xsettingsd-0.0~git20121210/config_parser.cc     2012-12-11 
06:38:42.000000000 +0100
+++ new/xsettingsd-0.0~git20140814/config_parser.cc     2014-08-15 
03:50:55.000000000 +0200
@@ -290,7 +290,7 @@
   char ch = stream_->GetChar();
   stream_->UngetChar(ch);
 
-  if (ch >= '0' && ch <= '9') {
+  if ((ch >= '0' && ch <= '9') || ch == '-') {
     int32_t value = 0;
     if (!ReadInteger(&value))
       return false;

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

Reply via email to