commit python-ldap for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package python-ldap for openSUSE:Factory 
checked in at 2015-10-25 14:18:16

Comparing /work/SRC/openSUSE:Factory/python-ldap (Old)
 and  /work/SRC/openSUSE:Factory/.python-ldap.new (New)


Package is "python-ldap"

Changes:

--- /work/SRC/openSUSE:Factory/python-ldap/python-ldap.changes  2015-09-27 
08:39:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-ldap.new/python-ldap.changes 
2015-10-25 14:18:18.0 +0100
@@ -1,0 +2,5 @@
+Sat Oct 24 16:33:35 UTC 2015 - mich...@stroeder.com
+
+- Update to upstream release 2.4.22
+
+---

Old:

  python-ldap-2.4.21.tar.gz

New:

  python-ldap-2.4.22.tar.gz



Other differences:
--
++ python-ldap.spec ++
--- /var/tmp/diff_new_pack.TfEplL/_old  2015-10-25 14:18:18.0 +0100
+++ /var/tmp/diff_new_pack.TfEplL/_new  2015-10-25 14:18:18.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python-ldap
-Version:2.4.21
+Version:2.4.22
 Release:0
 Summary:Python LDAP interface
 License:Python-2.0

++ python-ldap-2.4.21.tar.gz -> python-ldap-2.4.22.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-ldap-2.4.21/CHANGES 
new/python-ldap-2.4.22/CHANGES
--- old/python-ldap-2.4.21/CHANGES  2015-09-25 18:21:56.0 +0200
+++ new/python-ldap-2.4.22/CHANGES  2015-10-24 17:57:13.0 +0200
@@ -1,4 +1,25 @@
 
+Released 2.4.22 2015-10-25
+
+Changes since 2.4.21:
+
+Lib/
+* LDIFParser now also accepts value-spec without a space
+  after the colon.
+* Added key-word argument authz_id to LDAPObject methods
+  sasl_non_interactive_bind_s(), sasl_external_bind_s() and 
+  sasl_gssapi_bind_s()
+* Hmmpf! Added missing self to LDAPObject.fileno().
+* ReconnectLDAPObject.sasl_bind_s() now correctly uses
+  generic wrapper arguments *args,**kwargs
+* LDIFParser.parse_change_records() now correctly calls
+  LDIFParser.handle_change_modify()
+* Corrected ldap.controls.pwdpolicy.__all__
+
+Doc/
+* Started missing docs for sub-module ldap.sasl.
+
+
 Released 2.4.21 2015-09-25
 
 Changes since 2.4.20:
@@ -1195,4 +1216,4 @@
 
 Released 1.10alpha3 2000-09-19
 
-$Id: CHANGES,v 1.356 2015/09/25 16:21:47 stroeder Exp $
+$Id: CHANGES,v 1.363 2015/10/24 15:55:07 stroeder Exp $
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-ldap-2.4.21/Demo/pyasn1/noopsearch.py 
new/python-ldap-2.4.22/Demo/pyasn1/noopsearch.py
--- old/python-ldap-2.4.21/Demo/pyasn1/noopsearch.py2013-07-05 
18:57:25.0 +0200
+++ new/python-ldap-2.4.22/Demo/pyasn1/noopsearch.py2015-10-24 
18:25:47.0 +0200
@@ -14,8 +14,6 @@
 
 from ldap.controls.openldap import SearchNoOpControl
 
-LDAPLimitErrors = 
(ldap.TIMEOUT,ldap.TIMELIMIT_EXCEEDED,ldap.SIZELIMIT_EXCEEDED,ldap.ADMINLIMIT_EXCEEDED)
-
 SEARCH_TIMEOUT=30.0
 
 try:
@@ -56,7 +54,11 @@
 serverctrls=[SearchNoOpControl(criticality=True)],
   )
   _,_,_,search_response_ctrls = 
ldap_conn.result3(msg_id,all=1,timeout=SEARCH_TIMEOUT)
-except LDAPLimitErrors,e:
+except (
+  ldap.TIMEOUT,
+  ldap.TIMELIMIT_EXCEEDED,
+  ldap.SIZELIMIT_EXCEEDED,
+  ldap.ADMINLIMIT_EXCEEDED),e:
   ldap_conn.abandon(msg_id)
   sys.exit(1)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-ldap-2.4.21/Lib/dsml.py 
new/python-ldap-2.4.22/Lib/dsml.py
--- old/python-ldap-2.4.21/Lib/dsml.py  2015-09-25 18:19:42.0 +0200
+++ new/python-ldap-2.4.22/Lib/dsml.py  2015-10-24 17:57:14.0 +0200
@@ -4,13 +4,13 @@
 
 See http://www.python-ldap.org/ for details.
 
-$Id: dsml.py,v 1.38 2015/08/08 13:36:30 stroeder Exp $
+$Id: dsml.py,v 1.39 2015/09/30 17:15:53 stroeder Exp $
 
 Python compability note:
 Tested with Python 2.0+.
 """
 
-__version__ = '2.4.21'
+__version__ = '2.4.22'
 
 import string,base64
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-ldap-2.4.21/Lib/ldap/__init__.py 
new/python-ldap-2.4.22/Lib/ldap/__init__.py
--- old/python-ldap-2.4.21/Lib/ldap/__init__.py 2015-09-25 18:19:42.0 
+0200
+++ new/python-ldap-2.4.22/Lib/ldap/__init__.py 2015-10-24 17:57:14.0 
+0200
@@ -3,12 +3,12 @@
 
 See http://www.python-ldap.org/ for details.
 
-$Id: __init__.py,v 1.98 2015/08/08 13:36:30 stroeder Exp $
+$Id: __init__.py,v 1.99 2015/09/30 17:15:53 stroeder Exp $
 """
 
 # This is also the overall release version 

commit gnu_parallel for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnu_parallel for openSUSE:Factory 
checked in at 2015-10-25 14:18:12

Comparing /work/SRC/openSUSE:Factory/gnu_parallel (Old)
 and  /work/SRC/openSUSE:Factory/.gnu_parallel.new (New)


Package is "gnu_parallel"

Changes:

--- /work/SRC/openSUSE:Factory/gnu_parallel/gnu_parallel.changes
2015-09-24 06:16:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnu_parallel.new/gnu_parallel.changes   
2015-10-25 14:18:14.0 +0100
@@ -1,0 +2,10 @@
+Sat Oct 24 10:59:28 UTC 2015 - mplus...@suse.com
+
+- Update to 20151022
+  * --plus makes it possible to use {##} as a short had for {=
+   $_=$Global::JobQueue->total_jobs() =} which gives the the 
+   number of jobs to run.
+   * {= $_=$Global::JobQueue->total_jobs() =} is incompatible with 
+   -X, -m, and --xargs.
+
+---

Old:

  parallel-20150922.tar.bz2
  parallel-20150922.tar.bz2.sig

New:

  parallel-20151022.tar.bz2
  parallel-20151022.tar.bz2.sig



Other differences:
--
++ gnu_parallel.spec ++
--- /var/tmp/diff_new_pack.1rXb7w/_old  2015-10-25 14:18:15.0 +0100
+++ /var/tmp/diff_new_pack.1rXb7w/_new  2015-10-25 14:18:15.0 +0100
@@ -17,16 +17,16 @@
 
 
 Name:   gnu_parallel
-Version:20150922
+Version:20151022
 Release:0
 Summary:Shell tool for executing jobs in parallel
 License:GPL-3.0+
 Group:  Productivity/File utilities
 Url:http://www.gnu.org/software/parallel/
 #DL-URL:   http://ftp.gnu.org/gnu/parallel/
-Source: http://ftp.gnu.org/gnu/parallel/parallel-%{version}.tar.bz2
-Source2:http://ftp.gnu.org/gnu/parallel/parallel-%{version}.tar.bz2.sig
-Source3:%{name}.keyring
+Source0:http://ftp.gnu.org/gnu/parallel/parallel-%{version}.tar.bz2
+Source1:http://ftp.gnu.org/gnu/parallel/parallel-%{version}.tar.bz2.sig
+Source2:%{name}.keyring
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 

++ parallel-20150922.tar.bz2 -> parallel-20151022.tar.bz2 ++
 4014 lines of diff (skipped)

++ parallel-20150922.tar.bz2.sig -> parallel-20151022.tar.bz2.sig ++
--- /work/SRC/openSUSE:Factory/gnu_parallel/parallel-20150922.tar.bz2.sig   
2015-09-24 06:16:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnu_parallel.new/parallel-20151022.tar.bz2.sig  
2015-10-25 14:18:14.0 +0100
@@ -2,7 +2,7 @@
 
 # To check the signature run:
 #  echo | gpg
-#  gpg --auto-key-locate keyserver --keyserver-options auto-key-retrieve 
parallel-20150922.tar.bz2.sig
+#  gpg --auto-key-locate keyserver --keyserver-options auto-key-retrieve 
parallel-20151022.tar.bz2.sig
 
 echo | gpg 2>/dev/null
 gpg --auto-key-locate keyserver --keyserver-options auto-key-retrieve $0
@@ -11,32 +11,32 @@
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1
 
-iQTwBAABCgAGBQJWAEQgAAoJENGrRRaIiIiIJ0wmn0nOgAn1eLwnqfa9WLFeydND
-+pM8Xt5hJVdo0ReNVec4zjk4DdBuGxqnYkPWDctHw0eelxcjxI74TMXx+K81ta1V
-bEnVAgLOyeaXFXsn3FrtHajJxM7rO11vM8sCiBzCFq7v4qZY0CZOPO/UYC4Tu4Bf
-nPNJXeAr3ZJVcZddI1Bnl1WwVEgDLZi/xAOalSsIk5/cp+X9GUwKRYt6cR8zQLuo
-bbBDqPltCc0W6UNC9IGtJlU0nKG2ta4sftjya4xqsnfWtJO5T3zZ9qTNhppWjz9N
-JmKfeWdenwhKR40aKEAj/TLM313IQWKBQ8GoU+XlvaqxvwPyF9zBFf8JYYafsEtT
-hZs0GAkNPhIBo47IBT8+8kIK/ufNmTh9k+kB1spOZr5gkMCWreHDZzv0AjNbZ243
-BWcWnkFPz4VCLJ5FAOqgEiXgzJsxwBer6Oo0mmAH7vfHh9bZtkV+Sy1713JUUuCr
-PsKJ1ky9IXw7MvOo9xmgS8YB+eZejSMLX5aQLhu8IHhTHzQ0gw9FuD0RJasSkRNK
-M5P5xPAYIIQ2GMX5gkKpIJN1lzvUg59lj41LpZVlcHm6J4y7cup4IMsQJtkWPo1o
-5YjLu/a1U5xixWOjB82PY4l44IJSKpLLGldMBCMl5V+FIyrTUC0Ui6dQO5fN8Jhj
-gXa/qB97FZkZiDp8UuOtxxLKcd1bqkqZUDmPgw0pmvX2qg8Rxdui4mvXhr+zxE+K
-sMTflXvQuNzBYFla1/v5lHNBbYeuaoEyHSW/tGqDPCSSbi9pEKNncZos3HBFroTg
-NfwfOmChDqY44/7dx0R4j5MFA0Yl50w+O0WtiiXb8fSlkiTumwRh91XSeIoWg/xz
-Y/8SEpZH5W13uHpgHvXPuLrvIL8F+VLlIulHkiEGye+g/Xzi2UoBdV80MtCSiI/K
-hh7xiaKcn9ZGZPAPfvYo80K4sDaECRvCMnNZKH23Tyt0nf/1fqSdsMDK4QOwVa06
-H/MJ+MMRXpxwwCeRcVRzYIGDmh8dTBLhh+G697+ifhewXJubmiX8aMQ+y9nTJ0SI
-yATFCuuy5hEbPAbjCoXYmoVBijk3tUeZWTxKg0664KyWbBFLpj+/pUZzr/B+LEq/
-T76bxNZTr+7rfwTZeC6xVMhfgBkEAz48kmH81iKqFXCTZdibl1MXQL/auC+a4tOI
-HNcf41fe+Kr9TPURhzPmDWUQhp7eubuLVObyYtwsw4uUxz4noKdv6NRvNMy8pusD
-Xz3mzcl1c3CVbhebHo03/FgkjpNt+W/RmsI6oF0MalHAvJOtABVJOA6GiJQy31cm
-pCqfrB7cjlkoiI5Ek0Z79Y7bLnV6FDyZbC1f76+u/+QaRi3NwOyiX92fTntyIEgl
-AGVwx0jBaXmggwWIVdJIGqNcCRLCkIE0x7QwNkRFqsAEivUKgoJSz4Yn7IEoY2VY
-Jf+CnD2DmImKq7GT/gVA1PGC48SwkWVAGlXhTJSkkdMxN2a9RZR3GWyfTLN8zPQg
-jVcYaWIhFqZALMIplPAzc1urx2tuxjaAzbGO2OJdPfh9iQJL1LLl67Ugokr5nN/j
-BMWtRpMEKrTBIeWl7moJ6jck0TdDfaINgu222TKZkG/miI0/uc7XNd0YeBflY89y
-ZfBgthXlGDRTLJ7RmG13Kc2y3A==
-=dk+y

commit lyx for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package lyx for openSUSE:Factory checked in 
at 2015-10-25 14:18:10

Comparing /work/SRC/openSUSE:Factory/lyx (Old)
 and  /work/SRC/openSUSE:Factory/.lyx.new (New)


Package is "lyx"

Changes:

--- /work/SRC/openSUSE:Factory/lyx/lyx.changes  2015-08-01 11:39:09.0 
+0200
+++ /work/SRC/openSUSE:Factory/.lyx.new/lyx.changes 2015-10-25 
14:18:11.0 +0100
@@ -1,0 +2,6 @@
+Mon Oct 12 08:24:33 UTC 2015 - corne...@solcon.nl
+
+- Added Recommends: texlive-shapepar, which is needed by the
+  Additional Lyx Features manual.
+
+---



Other differences:
--
++ lyx.spec ++
--- /var/tmp/diff_new_pack.F8Pfy8/_old  2015-10-25 14:18:13.0 +0100
+++ /var/tmp/diff_new_pack.F8Pfy8/_new  2015-10-25 14:18:13.0 +0100
@@ -91,6 +91,7 @@
 Recommends: texlive-braket
 Recommends: texlive-diagbox
 Recommends: texlive-picinpar
+Recommends: texlive-shapepar
 Recommends: texlive-sidecap
 # Only suggest biblatex/biber, because only the engine (biber) is supported in 
the GUI,
 # not biblatex itself (the only one that can use biber)






commit feh for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package feh for openSUSE:Factory checked in 
at 2015-10-25 14:18:14

Comparing /work/SRC/openSUSE:Factory/feh (Old)
 and  /work/SRC/openSUSE:Factory/.feh.new (New)


Package is "feh"

Changes:

--- /work/SRC/openSUSE:Factory/feh/feh.changes  2015-07-12 22:53:26.0 
+0200
+++ /work/SRC/openSUSE:Factory/.feh.new/feh.changes 2015-10-25 
14:18:16.0 +0100
@@ -1,0 +2,17 @@
+Sat Oct 24 14:44:39 UTC 2015 - mimi...@gmail.com
+
+- update to 2.14
+* Add --xinerama-index option for background setting
+* When removing the last image in slidsehow mode, stay on the last (previously 
+second-to-last) image
+* Allow --sort and --randomize to override each other (most recently specified 
+option wins) instead of always preferring --sort
+* Thumbnail mode: Mark image as processed when executing an action (--action) 
by 
+clicking on an image
+* It is now possible to override feh's idea of the active xinerama screen 
using the 
+--xinerama-index option
+* Remove (undocumented) feature allowing to override feh's idea of the active 
+xinerama screen by setting the XINERAMA_SCREEN environment variable
+- remove obsolete gpg macro 
+
+---

Old:

  feh-2.13.1.tar.bz2
  feh-2.13.1.tar.bz2.asc

New:

  feh-2.14.tar.bz2
  feh-2.14.tar.bz2.asc



Other differences:
--
++ feh.spec ++
--- /var/tmp/diff_new_pack.NclfQv/_old  2015-10-25 14:18:17.0 +0100
+++ /var/tmp/diff_new_pack.NclfQv/_new  2015-10-25 14:18:17.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   feh
-Version:2.13.1
+Version:2.14
 Release:0
 Summary:Fast and Lightweight Image Viewer
 License:MIT and LGPL-2.0+
@@ -37,7 +37,6 @@
 # PATCH-FIX-UPSTREAM feh-fix_sighandler.patch 
https://github.com/derf/feh/issues/70 tog...@opensuse.org -- bad prototype for 
a sighandler_t and a funky unportable pointer cast
 Patch5: feh-2.12-fix_sighandler.patch
 BuildRequires:  curl-devel
-BuildRequires:  gpg-offline
 BuildRequires:  libjpeg-devel
 BuildRequires:  libpng-devel
 BuildRequires:  xorg-x11-devel
@@ -57,7 +56,6 @@
 montages as index prints with many user-configurable options.
 
 %prep
-%gpg_verify %{SOURCE3}
 %setup -q
 %patch1 -p1
 %patch2 -p1

++ feh-2.13.1.tar.bz2 -> feh-2.14.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/feh-2.13.1/ChangeLog new/feh-2.14/ChangeLog
--- old/feh-2.13.1/ChangeLog2015-05-24 11:46:21.0 +0200
+++ new/feh-2.14/ChangeLog  2015-10-04 10:03:43.0 +0200
@@ -1,3 +1,20 @@
+Sun, 04 Oct 2015 10:01:20 +0200
+
+* Release v2.14
+* Add --xinerama-index option for background setting
+  (patch by James Knight)
+* When removing the last image in slidsehow mode, stay on the last
+  (previously second-to-last) image (patch by Lior Shiponi)
+* Allow --sort and --randomize to override each other (most recently
+  specified option wins) instead of always preferring --sort
+* Thumbnail mode: Mark image as processed when executing an action
+  (--action) by clicking on an image
+* It is now possible to override feh's idea of the active xinerama screen
+  using the --xinerama-index option
+* Remove (undocumented) feature allowing to override feh's idea of the
+  active xinerama screen by setting the XINERAMA_SCREEN environment
+  variable
+
 Sun, 24 May 2015 11:45:18 +0200
 
 * Release v2.13.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/feh-2.13.1/config.mk new/feh-2.14/config.mk
--- old/feh-2.13.1/config.mk2015-05-24 11:46:21.0 +0200
+++ new/feh-2.14/config.mk  2015-10-04 10:03:43.0 +0200
@@ -1,5 +1,5 @@
 PACKAGE ?= feh
-VERSION ?= 2.13.1
+VERSION ?= 2.14
 
 # Prefix for all installed files
 PREFIX ?= /usr/local
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/feh-2.13.1/man/feh.pre new/feh-2.14/man/feh.pre
--- old/feh-2.13.1/man/feh.pre  2015-05-24 11:46:21.0 +0200
+++ new/feh-2.14/man/feh.pre2015-10-04 10:03:43.0 +0200
@@ -13,7 +13,7 @@
 .
 .Nm
 .Op Ar options
-.Ar files or directories or URLs ...
+.Op Ar files No | Ar directories No | Ar URLs ...
 .
 .
 .Sh VERSION
@@ -36,6 +36,10 @@
 started by
 .Pq graphical
 file managers to view an image.
+By default
+.Pq unless arguments or a filelist are specified
+.Nm
+displays all files in the current directory.
 .
 .Pp
 .
@@ -51,11 +55,12 @@
 .
 .Pp
 .
-A little note about EXIF support: The recommended way to display EXIF data is
-using exiv2 / exifgrep via
+EXIF tags are supported 

commit glfw for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package glfw for openSUSE:Factory checked in 
at 2015-10-25 14:18:17

Comparing /work/SRC/openSUSE:Factory/glfw (Old)
 and  /work/SRC/openSUSE:Factory/.glfw.new (New)


Package is "glfw"

Changes:

--- /work/SRC/openSUSE:Factory/glfw/glfw.changes2015-09-24 
06:14:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.glfw.new/glfw.changes   2015-10-25 
14:18:19.0 +0100
@@ -1,0 +2,6 @@
+Sat Oct 24 12:41:17 UTC 2015 - mimi...@gmail.com
+
+- Update to version 3.1.2
+* bugfix release, full changelog on http://www.glfw.org/changelog.html
+
+---

Old:

  3.1.1.tar.gz

New:

  3.1.2.tar.gz



Other differences:
--
++ glfw.spec ++
--- /var/tmp/diff_new_pack.L3PfgV/_old  2015-10-25 14:18:19.0 +0100
+++ /var/tmp/diff_new_pack.L3PfgV/_new  2015-10-25 14:18:19.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   glfw
-Version:3.1.1
+Version:3.1.2
 Release:0
 Summary:Portable framework for OpenGL application development
 License:Zlib
@@ -26,7 +26,7 @@
 Url:http://www.glfw.org/
 
 Source: https://github.com/glfw/glfw/archive/%version.tar.gz
-BuildRequires:  cmake
+BuildRequires:  cmake >= 2.8.12
 BuildRequires:  doxygen
 BuildRequires:  gcc-c++
 BuildRequires:  geany

++ 3.1.1.tar.gz -> 3.1.2.tar.gz ++
 11741 lines of diff (skipped)




commit jemalloc for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package jemalloc for openSUSE:Factory 
checked in at 2015-10-25 14:18:19

Comparing /work/SRC/openSUSE:Factory/jemalloc (Old)
 and  /work/SRC/openSUSE:Factory/.jemalloc.new (New)


Package is "jemalloc"

Changes:

--- /work/SRC/openSUSE:Factory/jemalloc/jemalloc.changes2015-09-30 
05:53:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.jemalloc.new/jemalloc.changes   2015-10-25 
14:18:20.0 +0100
@@ -1,0 +2,8 @@
+Sat Oct 24 18:07:12 UTC 2015 - idon...@suse.com
+
+- Update to version 4.0.4
+  * Fix xallocx(..., MALLOCX_ZERO to zero the last full trailing page
+of large allocations that have been randomly assigned an offset of
+0 when --enable-cache-oblivious configure option is enabled.
+
+---

Old:

  jemalloc-4.0.3.tar.bz2

New:

  jemalloc-4.0.4.tar.bz2



Other differences:
--
++ jemalloc.spec ++
--- /var/tmp/diff_new_pack.In1fnc/_old  2015-10-25 14:18:20.0 +0100
+++ /var/tmp/diff_new_pack.In1fnc/_new  2015-10-25 14:18:20.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   jemalloc
-Version:4.0.3
+Version:4.0.4
 Release:0
 %define lname  libjemalloc2
 Summary:General-purpose scalable concurrent malloc implementation

++ jemalloc-4.0.3.tar.bz2 -> jemalloc-4.0.4.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jemalloc-4.0.3/ChangeLog new/jemalloc-4.0.4/ChangeLog
--- old/jemalloc-4.0.3/ChangeLog2015-09-25 05:07:46.0 +0200
+++ new/jemalloc-4.0.4/ChangeLog2015-10-24 16:56:52.0 +0200
@@ -4,6 +4,18 @@
 
 https://github.com/jemalloc/jemalloc
 
+* 4.0.4 (October 24, 2015)
+
+  This bugfix release fixes another xallocx() regression.  No other regressions
+  have come to light in over a month, so this is likely a good starting point
+  for people who prefer to wait for "dot one" releases with all the major 
issues
+  shaken out.
+
+  Bug fixes:
+  - Fix xallocx(..., MALLOCX_ZERO to zero the last full trailing page of large
+allocations that have been randomly assigned an offset of 0 when
+--enable-cache-oblivious configure option is enabled.
+
 * 4.0.3 (September 24, 2015)
 
   This bugfix release continues the trend of xallocx() and heap profiling 
fixes.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jemalloc-4.0.3/VERSION new/jemalloc-4.0.4/VERSION
--- old/jemalloc-4.0.3/VERSION  2015-09-25 05:07:57.0 +0200
+++ new/jemalloc-4.0.4/VERSION  2015-10-24 16:56:52.0 +0200
@@ -1 +1 @@
-4.0.3-0-ge9192eacf8935e29fc62fddc2701f7942b1cc02c
+4.0.4-0-g91010a9e2ebfc84b1ac1ed7fdde3bfed4f65f180
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/jemalloc-4.0.3/doc/jemalloc.3 
new/jemalloc-4.0.4/doc/jemalloc.3
--- old/jemalloc-4.0.3/doc/jemalloc.3   2015-09-25 05:08:53.0 +0200
+++ new/jemalloc-4.0.4/doc/jemalloc.3   2015-10-24 16:57:59.0 +0200
@@ -2,12 +2,12 @@
 .\" Title: JEMALLOC
 .\"Author: Jason Evans
 .\" Generator: DocBook XSL Stylesheets v1.78.1 
-.\"  Date: 09/24/2015
+.\"  Date: 10/24/2015
 .\"Manual: User Manual
-.\"Source: jemalloc 4.0.3-0-ge9192eacf8935e29fc62fddc2701f7942b1cc02c
+.\"Source: jemalloc 4.0.4-0-g91010a9e2ebfc84b1ac1ed7fdde3bfed4f65f180
 .\"  Language: English
 .\"
-.TH "JEMALLOC" "3" "09/24/2015" "jemalloc 4.0.3-0-ge9192eacf893" "User Manual"
+.TH "JEMALLOC" "3" "10/24/2015" "jemalloc 4.0.4-0-g91010a9e2ebf" "User Manual"
 .\" -
 .\" * Define some portability stuff
 .\" -
@@ -31,7 +31,7 @@
 jemalloc \- general purpose memory allocation functions
 .SH "LIBRARY"
 .PP
-This manual describes jemalloc 
4\&.0\&.3\-0\-ge9192eacf8935e29fc62fddc2701f7942b1cc02c\&. More information can 
be found at the
+This manual describes jemalloc 
4\&.0\&.4\-0\-g91010a9e2ebfc84b1ac1ed7fdde3bfed4f65f180\&. More information can 
be found at the
 \m[blue]\fBjemalloc website\fR\m[]\&\s-2\u[1]\d\s+2\&.
 .SH "SYNOPSIS"
 .sp
@@ -1026,7 +1026,7 @@
 .PP
 "thread\&.prof\&.name" (\fBconst char *\fR) r\- or \-w [\fB\-\-enable\-prof\fR]
 .RS 4
-Get/set the descriptive name associated with the calling thread in memory 
profile dumps\&. An internal copy of the name string is created, so the input 
string need not be maintained after this interface completes execution\&. The 
output string of this interface should be copied for non\-ephemeral uses, 
because multiple implementation details can cause 

commit kernel-source for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2015-10-25 14:19:08

Comparing /work/SRC/openSUSE:Factory/kernel-source (Old)
 and  /work/SRC/openSUSE:Factory/.kernel-source.new (New)


Package is "kernel-source"

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/kernel-debug.changes   
2015-10-17 22:11:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/kernel-debug.changes  
2015-10-25 14:19:10.0 +0100
@@ -1,0 +2,35 @@
+Thu Oct 22 14:54:12 CEST 2015 - guillaume.gar...@free.fr
+
+- config: arm: Enable CONFIG_PPS_CLIENT_GPIO
+  Set CONFIG_PPS_CLIENT_GPIO=m for all ARM configs to be able to use GPS
+  with PPS line connected to a GPIO, as a high-precision time reference.
+- commit 29faced
+
+---
+Tue Oct 20 17:16:39 CEST 2015 - ti...@suse.de
+
+- Disable CONFIG_RT_GROUP_SCHED (boo#950955)
+  Even people originally demanded suggest to drop it now...
+- commit c229932
+
+---
+Tue Oct 20 16:44:25 CEST 2015 - ti...@suse.de
+
+- ALSA: hda - Fix deadlock at error in building PCM (bsc#948758).
+- commit e5082ca
+
+---
+Fri Oct 16 15:23:51 CEST 2015 - guillaume.gar...@free.fr
+
+- config: armv6hl: Update and re-enable default and vanilla configs
+  Update and re-enable default and vanilla configs.
+  [AF: Made FW_LOADER_USER_HELPER_FALLBACK consistent]
+- commit 549889b
+
+---
+Thu Oct 15 16:47:21 CEST 2015 - ti...@suse.de
+
+- rtlwifi: rtl8821ae: Fix system lockups on boot (boo#944978).
+- commit 9c478b9
+
+---
kernel-default.changes: same change
kernel-docs.changes: same change
kernel-ec2.changes: same change
kernel-lpae.changes: same change
kernel-obs-build.changes: same change
kernel-obs-qa-xen.changes: same change
kernel-obs-qa.changes: same change
kernel-pae.changes: same change
kernel-pv.changes: same change
kernel-source.changes: same change
kernel-syms.changes: same change
kernel-vanilla.changes: same change
kernel-xen.changes: same change



Other differences:
--
++ kernel-debug.spec ++
--- /var/tmp/diff_new_pack.C3cGSQ/_old  2015-10-25 14:19:17.0 +0100
+++ /var/tmp/diff_new_pack.C3cGSQ/_new  2015-10-25 14:19:17.0 +0100
@@ -61,7 +61,7 @@
 Group:  System/Kernel
 Version:4.2.3
 %if 0%{?is_kotd}
-Release:.g202286f
+Release:.g29faced
 %else
 Release:0
 %endif

++ kernel-default.spec ++
--- /var/tmp/diff_new_pack.C3cGSQ/_old  2015-10-25 14:19:17.0 +0100
+++ /var/tmp/diff_new_pack.C3cGSQ/_new  2015-10-25 14:19:17.0 +0100
@@ -61,7 +61,7 @@
 Group:  System/Kernel
 Version:4.2.3
 %if 0%{?is_kotd}
-Release:.g202286f
+Release:.g29faced
 %else
 Release:0
 %endif
@@ -256,7 +256,7 @@
 Source120:  kabi.tar.bz2
 Source121:  sysctl.tar.bz2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-ExclusiveArch:  aarch64 armv7hl %ix86 ppc ppc64 ppc64le s390x x86_64
+ExclusiveArch:  aarch64 armv6hl armv7hl %ix86 ppc ppc64 ppc64le s390x x86_64
 %define kmp_target_cpu %_target_cpu
 %ifarch %ix86
 # Only i386/default supports i586, mark other flavors' packages as i686

++ kernel-docs.spec ++
--- /var/tmp/diff_new_pack.C3cGSQ/_old  2015-10-25 14:19:17.0 +0100
+++ /var/tmp/diff_new_pack.C3cGSQ/_new  2015-10-25 14:19:17.0 +0100
@@ -29,7 +29,7 @@
 Group:  Documentation/Man
 Version:4.2.3
 %if 0%{?is_kotd}
-Release:.g202286f
+Release:.g29faced
 %else
 Release:0
 %endif

++ kernel-ec2.spec ++
--- /var/tmp/diff_new_pack.C3cGSQ/_old  2015-10-25 14:19:17.0 +0100
+++ /var/tmp/diff_new_pack.C3cGSQ/_new  2015-10-25 14:19:17.0 +0100
@@ -61,7 +61,7 @@
 Group:  System/Kernel
 Version:4.2.3
 %if 0%{?is_kotd}
-Release:.g202286f
+Release:.g29faced
 %else
 Release:0
 %endif

kernel-lpae.spec: same change
++ kernel-obs-build.spec ++
--- /var/tmp/diff_new_pack.C3cGSQ/_old  2015-10-25 14:19:17.0 +0100
+++ /var/tmp/diff_new_pack.C3cGSQ/_new  2015-10-25 14:19:17.0 +0100
@@ -33,7 +33,7 @@
 %ifarch %ix86 x86_64
 BuildRequires:  kernel-xen
 %endif
-ExclusiveArch:  aarch64 armv7hl %ix86 ppc64 ppc64le s390x x86_64
+ExclusiveArch:  aarch64 armv6hl armv7hl %ix86 ppc64 ppc64le s390x x86_64
 %if 0%{?suse_version} < 1315
 # For SLE 11 
 BuildRequires:  mkinitrd
@@ -47,7 +47,7 @@
 Group:  SLES
 Version:4.2.3
 %if 

commit libaccounts-glib for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package libaccounts-glib for 
openSUSE:Factory checked in at 2015-10-25 15:10:39

Comparing /work/SRC/openSUSE:Factory/libaccounts-glib (Old)
 and  /work/SRC/openSUSE:Factory/.libaccounts-glib.new (New)


Package is "libaccounts-glib"

Changes:

--- /work/SRC/openSUSE:Factory/libaccounts-glib/libaccounts-glib.changes
2015-05-11 19:33:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.libaccounts-glib.new/libaccounts-glib.changes   
2015-10-25 15:10:41.0 +0100
@@ -1,0 +2,9 @@
+Mon Oct 19 17:54:06 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 1.18:
+  * Python: Fix Accounts.Manager() constructor, which got broken
+when version 1.17 was released.
+- Fix license.
+- Add baselibs.conf.
+
+---
@@ -14 +22,0 @@
-

Old:

  libaccounts-glib-1.17.tar.gz

New:

  baselibs.conf
  libaccounts-glib-1.18.tar.gz



Other differences:
--
++ libaccounts-glib.spec ++
--- /var/tmp/diff_new_pack.7RX2nZ/_old  2015-10-25 15:10:41.0 +0100
+++ /var/tmp/diff_new_pack.7RX2nZ/_new  2015-10-25 15:10:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libaccounts-glib
 #
-# 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
@@ -16,21 +16,23 @@
 #
 
 
-%define _soname 0
+%define typelib typelib-1_0-Accounts-1_0
+%define sover   0
+%define _version 1.18-17201ad512e86d248ac158046ac322e7164adc87
 Name:   libaccounts-glib
-Version:1.17
+Version:1.18
 Release:0
 Summary:Account management library for GLib Applications
-License:LGPL-2.0
+License:LGPL-2.1
 Group:  System/Libraries
-Url:https://code.google.com/p/accounts-sso/
-Source: libaccounts-glib-%{version}.tar.gz
+Url:https://gitlab.com/accounts-sso/libaccounts-glib
+Source: 
https://gitlab.com/accounts-sso/%{name}/repository/archive.tar.gz?ref=%{version}#/%{name}-%{version}.tar.gz
+Source1:baselibs.conf
 BuildRequires:  autoconf
 BuildRequires:  automake
-BuildRequires:  fdupes
 BuildRequires:  gtk-doc
 BuildRequires:  libtool
-BuildRequires:  pkgconfig
+BuildRequires:  pkg-config
 BuildRequires:  python3-gobject
 BuildRequires:  pkgconfig(check)
 BuildRequires:  pkgconfig(glib-2.0)
@@ -44,148 +46,135 @@
 %description
 This package contains the shared libraries for use by applications.
 
-%package -n libaccounts-glib%{_soname}
+%package -n %{name}%{sover}
 Summary:Account management library for GLib Applications
 Group:  System/Libraries
 
-%description -n libaccounts-glib%{_soname}
+%description -n %{name}%{sover}
 This package contains the shared libraries for use by applications.
 
 %package -n python-libaccounts
 Summary:Python bindings for the Account management library
-Group:  System/Libraries
-Requires:   python(abi) = %{py_ver}
+Group:  Development/Languages/Python
 
 %description -n python-libaccounts
-This package contains the python bindings for the account management library.
+This package contains the python bindings for the account
+management library.
 
 %package -n python3-libaccounts
 Summary:Python bindings for the Account management library
-Group:  System/Libraries
-Requires:   python(abi) = %{py3_ver}
+Group:  Development/Languages/Python
 
 %description -n python3-libaccounts
-This package contains the python bindings for the account management library.
-
+This package contains the python bindings for the account
+management library.
 
-%package -n typelib-1_0-Accounts-1_0
-Summary:Account management library for GLib Applications - 
Introspection Bindings
+%package -n %{typelib}
+Summary:Account management library for GLib Applications -- 
Introspection Bindings
 Group:  System/Libraries
 
-
-%description -n typelib-1_0-Accounts-1_0
-This package contains the GObject Introspection bindings for the accounts-glib
-library.
+%description -n %{typelib}
+This package contains the GObject Introspection bindings for the
+accounts-glib library.
 
 %package devel
-Summary:Development files for libaccounts-glib%{_soname}
+Summary:Development files for libaccounts-glib
 Group:  Development/Libraries/C and C++
-Requires:   libaccounts-glib%{_soname} = %{version}
+Requires:   %{name}%{sover} = %{version}
+Requires:   %{typelib} = %{version}
 Requires:   python-libaccounts = %{version}
 Requires:   

commit yast2 for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2015-10-25 15:11:02

Comparing /work/SRC/openSUSE:Factory/yast2 (Old)
 and  /work/SRC/openSUSE:Factory/.yast2.new (New)


Package is "yast2"

Changes:

--- /work/SRC/openSUSE:Factory/yast2/yast2.changes  2015-10-20 
16:21:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2015-10-25 
15:11:04.0 +0100
@@ -1,0 +2,15 @@
+Thu Oct 22 08:24:58 UTC 2015 - mfi...@suse.com
+
+- bnc#946047
+  - use proper hostname / domain defaults when network is
+configured by linuxrc
+- 3.1.154
+
+---
+Wed Oct 21 07:29:59 UTC 2015 - igonzalezs...@suse.com
+
+- Replace "Skip" with "Ignore" in the dialog that is shown when
+  there's a problem during packages installation (bsc#948608)
+- 3.1.153
+
+---

Old:

  yast2-3.1.152.tar.bz2

New:

  yast2-3.1.154.tar.bz2



Other differences:
--
++ yast2.spec ++
--- /var/tmp/diff_new_pack.XzEe5j/_old  2015-10-25 15:11:05.0 +0100
+++ /var/tmp/diff_new_pack.XzEe5j/_new  2015-10-25 15:11:05.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2
-Version:3.1.152
+Version:3.1.154
 Release:0
 Url:https://github.com/yast/yast-yast2
 

++ yast2-3.1.152.tar.bz2 -> yast2-3.1.154.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.152/configure.in.in 
new/yast2-3.1.154/configure.in.in
--- old/yast2-3.1.152/configure.in.in   2015-10-14 15:21:09.0 +0200
+++ new/yast2-3.1.154/configure.in.in   2015-10-22 13:51:08.0 +0200
@@ -22,6 +22,5 @@
 
 ## and generate the output
 # also done via makefile
-AC_CONFIG_FILES(library/general/src/modules/Version.rb
-library/network/src/scrconf/network.scr)
+AC_CONFIG_FILES(library/network/src/scrconf/network.scr)
 @YAST2-OUTPUT@
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.1.152/library/general/src/modules/Version.rb.in 
new/yast2-3.1.154/library/general/src/modules/Version.rb.in
--- old/yast2-3.1.152/library/general/src/modules/Version.rb.in 2015-10-14 
15:21:09.0 +0200
+++ new/yast2-3.1.154/library/general/src/modules/Version.rb.in 1970-01-01 
01:00:00.0 +0100
@@ -1,31 +0,0 @@
-# encoding: utf-8
-
-# File:modules/Version.ycp
-# Package: yast2
-# Summary: yast2 package version
-# Authors: Michal Svec 
-#
-# $Id$
-#
-# Version.rb is a 
-#
-# ** GENERATED FILE **
-#
-# , so edit Version.rb.in instead.
-require "yast"
-
-module Yast
-  class VersionClass < Module
-def main
-  # Version of the yast2 package
-  @yast2 = "@VERSION@" 
-
-  # EOF
-end
-
-publish :variable => :yast2, :type => "string"
-  end
-
-  Version = VersionClass.new
-  Version.main
-end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.1.152/library/packages/src/modules/PackageCallbacks.rb 
new/yast2-3.1.154/library/packages/src/modules/PackageCallbacks.rb
--- old/yast2-3.1.152/library/packages/src/modules/PackageCallbacks.rb  
2015-10-14 15:21:09.0 +0200
+++ new/yast2-3.1.154/library/packages/src/modules/PackageCallbacks.rb  
2015-10-22 13:51:08.0 +0200
@@ -253,7 +253,7 @@
 button_box = ButtonBox(
   PushButton(Id(:abort), Opt(:cancelButton, :key_F9), 
Label.AbortButton),
   PushButton(Id(:retry), Opt(:customButton), Label.RetryButton),
-  PushButton(Id(:ignore), Opt(:okButton), Label.SkipButton)
+  PushButton(Id(:ignore), Opt(:okButton), Label.IgnoreButton)
 )
 
 if @showLongInfo
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-3.1.152/library/types/src/modules/Hostname.rb 
new/yast2-3.1.154/library/types/src/modules/Hostname.rb
--- old/yast2-3.1.152/library/types/src/modules/Hostname.rb 2015-10-14 
15:21:09.0 +0200
+++ new/yast2-3.1.154/library/types/src/modules/Hostname.rb 2015-10-22 
13:51:08.0 +0200
@@ -38,6 +38,7 @@
   Yast.import "IP"
   Yast.import "String"
   Yast.import "FileUtils"
+  Yast.import "Mode"
 
   # i18n characters in domain names are still not allowed
   #
@@ -159,7 +160,7 @@
   hostname_data = Convert.to_map(
 SCR.Execute(path(".target.bash_output"), "hostname --fqdn")
   )
-  if hostname_data.nil? || Ops.get_integer(hostname_data, "exit", -1) != 0
+  if hostname_data.nil? || hostname_data["exit"] != 0 || 

commit yast2-theme for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package yast2-theme for openSUSE:Factory 
checked in at 2015-10-25 15:10:28

Comparing /work/SRC/openSUSE:Factory/yast2-theme (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-theme.new (New)


Package is "yast2-theme"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-theme/yast2-theme-SLE.changes  
2015-05-16 07:13:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-theme.new/yast2-theme-SLE.changes 
2015-10-25 15:10:29.0 +0100
@@ -1,0 +2,13 @@
+Tue Oct 20 10:56:16 UTC 2015 - lsle...@suse.cz
+
+- Fixed styling for the package manager filter view widgets
+  (unreadable white-on-white labels) (bsc#950283)
+- 3.1.35
+
+---
+Fri Sep 11 08:17:54 UTC 2015 - si...@simotek.net
+
+- apps/pattern-e17.png -> apps/pattern-enlightenment.png due to 
+  pattern rename
+
+---
--- /work/SRC/openSUSE:Factory/yast2-theme/yast2-theme.changes  2014-11-06 
16:50:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-theme.new/yast2-theme.changes 
2015-10-25 15:10:29.0 +0100
@@ -1,0 +2,6 @@
+Fri Sep 18 09:26:29 UTC 2015 - p.drou...@gmail.com
+
+- add icons for the MATE pattern
+- 3.1.33
+
+---

Old:

  yast2-theme-3.1.34.tar.bz2

New:

  yast2-theme-3.1.35.tar.bz2



Other differences:
--
++ yast2-theme-SLE.spec ++
--- /var/tmp/diff_new_pack.wd1CLe/_old  2015-10-25 15:10:30.0 +0100
+++ /var/tmp/diff_new_pack.wd1CLe/_new  2015-10-25 15:10:30.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-theme-SLE
-Version:3.1.34
+Version:3.1.35
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -66,21 +66,21 @@
 # remove all icons that were not part of RC2 to avoid information leak
 pushd $RPM_BUILD_ROOT/usr/share/YaST2/theme/SLE/icons/
 rm -rf 256x256
-rm 16x16/apps/pattern-e17.png
+rm 16x16/apps/pattern-enlightenment.png
 rm 16x16/apps/pattern-lxde.png
 rm 16x16/apps/yast-gray-dot.png
 rm 16x16/apps/yast-green-dot.png
 rm 16x16/apps/yast-red-dot.png
 rm 16x16/apps/yast-yellow-dot.png
-rm 22x22/apps/pattern-e17.png
+rm 22x22/apps/pattern-enlightenment.png
 rm 22x22/apps/pattern-lxde.png
 rm 22x22/apps/yast-gray-dot.png
 rm 22x22/apps/yast-green-dot.png
 rm 22x22/apps/yast-red-dot.png
 rm 22x22/apps/yast-yellow-dot.png
-rm 32x32/apps/pattern-e17.png
+rm 32x32/apps/pattern-enlightenment.png
 rm 32x32/apps/pattern-lxde.png
-rm 48x48/apps/pattern-e17.png
+rm 48x48/apps/pattern-enlightenment.png
 rm 48x48/apps/pattern-lxde.png
 rm 48x48/apps/yast-gray-dot.png
 rm 48x48/apps/yast-green-dot.png
@@ -96,7 +96,7 @@
 rm 64x64/apps/msg_error.png
 rm 64x64/apps/msg_info.png
 rm 64x64/apps/msg_warning.png
-rm 64x64/apps/pattern-e17.png
+rm 64x64/apps/pattern-enlightenment.png
 rm 64x64/apps/pattern-lxde.png
 rm 64x64/apps/pixie.png
 rm 64x64/apps/printer2.png

++ yast2-theme.spec ++
--- /var/tmp/diff_new_pack.wd1CLe/_old  2015-10-25 15:10:31.0 +0100
+++ /var/tmp/diff_new_pack.wd1CLe/_new  2015-10-25 15:10:31.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-theme
-Version:3.1.34
+Version:3.1.35
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-theme-3.1.34.tar.bz2 -> yast2-theme-3.1.35.tar.bz2 ++
/work/SRC/openSUSE:Factory/yast2-theme/yast2-theme-3.1.34.tar.bz2 
/work/SRC/openSUSE:Factory/.yast2-theme.new/yast2-theme-3.1.35.tar.bz2 differ: 
char 11, line 1




commit gnuchess for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnuchess for openSUSE:Factory 
checked in at 2015-10-25 15:10:45

Comparing /work/SRC/openSUSE:Factory/gnuchess (Old)
 and  /work/SRC/openSUSE:Factory/.gnuchess.new (New)


Package is "gnuchess"

Changes:

--- /work/SRC/openSUSE:Factory/gnuchess/gnuchess.changes2015-01-22 
21:48:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnuchess.new/gnuchess.changes   2015-10-25 
15:10:46.0 +0100
@@ -1,0 +2,7 @@
+Mon Oct 19 19:27:04 UTC 2015 - astie...@suse.com
+
+- gnuchess 6.2.2:
+  * More robust program exit concerning threads.
+  * Detailed error messages for bad FEN syntax.
+
+---

Old:

  gnuchess-6.2.1.tar.gz
  gnuchess-6.2.1.tar.gz.sig

New:

  gnuchess-6.2.2.tar.gz
  gnuchess-6.2.2.tar.gz.sig



Other differences:
--
++ gnuchess.spec ++
--- /var/tmp/diff_new_pack.5EDA6t/_old  2015-10-25 15:10:47.0 +0100
+++ /var/tmp/diff_new_pack.5EDA6t/_new  2015-10-25 15:10:47.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnuchess
 #
-# Copyright (c) 2015 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
@@ -17,7 +17,7 @@
 
 
 Name:   gnuchess
-Version:6.2.1
+Version:6.2.2
 Release:0
 Summary:GNU Chess Program
 License:GPL-3.0+


++ gnuchess-6.2.1.tar.gz -> gnuchess-6.2.2.tar.gz ++
 2503 lines of diff (skipped)





commit breeze-gtk for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package breeze-gtk for openSUSE:Factory 
checked in at 2015-10-25 15:10:34

Comparing /work/SRC/openSUSE:Factory/breeze-gtk (Old)
 and  /work/SRC/openSUSE:Factory/.breeze-gtk.new (New)


Package is "breeze-gtk"

Changes:

--- /work/SRC/openSUSE:Factory/breeze-gtk/breeze-gtk.changes2015-06-09 
08:49:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.breeze-gtk.new/breeze-gtk.changes   
2015-10-25 15:10:35.0 +0100
@@ -1,0 +2,16 @@
+Sun Oct 18 08:46:06 UTC 2015 - sor.ale...@meowr.ru
+
+- Update to 0.1~git20150827.
+- Spec complete redone to unify with other Gtk themes.
+
+---
+Wed Jul 22 13:55:17 UTC 2015 - witte...@googlemail.com
+
+- updated to current git and included dark variant
+
+---
+Thu Jun  4 09:06:57 UTC 2015 - tchva...@suse.com
+
+- Fix rpmlint errors
+
+---

Old:

  gnome-breeze-master.zip

New:

  gnome-breeze-0.1~git20150827.tar.gz



Other differences:
--
++ breeze-gtk.spec ++
--- /var/tmp/diff_new_pack.6YaBX0/_old  2015-10-25 15:10:36.0 +0100
+++ /var/tmp/diff_new_pack.6YaBX0/_new  2015-10-25 15:10:36.0 +0100
@@ -15,29 +15,77 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
+%define _name   breeze
 Name:   breeze-gtk
-Version:0.0git020615
+Version:0.1~git20150827
 Release:0
+Summary:GTK+ theme matching KDE's Breeze
 License:LGPL-2.1
-Summary:A GTK Theme Built to Match KDE's Breeze
-Url:https://github.com/dirruk1/gnome-breeze
 Group:  System/GUI/KDE
-Source: gnome-breeze-master.zip
-BuildRequires:  unzip
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Url:https://github.com/dirruk1/gnome-breeze
+Source: gnome-%{_name}-%{version}.tar.gz
+BuildRequires:  fdupes
+BuildArch:  noarch
 
 %description
-A GTK theme created to match with the new Plasma 5 Breeze theme
+A GTK+ theme created to match with the new Plasma 5 Breeze theme.
+
+%package -n metatheme-%{_name}-common
+Summary:GTK+ theme matching KDE's Breeze -- Common Files
+Group:  System/GUI/KDE
+Suggests:   gtk2-metatheme-%{_name}
+Suggests:   gtk3-metatheme-%{_name}
+Provides:   %{_name}-gtk = %{version}
+Obsoletes:  %{_name}-gtk < %{version}
+
+%description -n metatheme-%{_name}-common
+A GTK+ theme created to match with the new Plasma 5 Breeze theme.
+
+%package -n gtk2-metatheme-%{_name}
+Summary:GTK+ theme matching KDE's Breeze -- GTK+ 2 Support
+Group:  System/GUI/KDE
+Requires:   metatheme-%{_name}-common = %{version}
+Supplements:packageand(metatheme-%{_name}-common:gtk2)
+
+%description -n gtk2-metatheme-%{_name}
+A GTK+ theme created to match with the new Plasma 5 Breeze theme.
+
+%package -n gtk3-metatheme-%{_name}
+Summary:GTK+ theme matching KDE's Breeze -- GTK+ 3 Support
+Group:  System/GUI/KDE
+Requires:   metatheme-%{_name}-common = %{version}
+Supplements:packageand(metatheme-%{_name}-common:gtk3)
+
+%description -n gtk3-metatheme-%{_name}
+A GTK+ theme created to match with the new Plasma 5 Breeze theme.
 
 %prep
-%setup -q -n gnome-breeze-master
+%setup -q -n gnome-%{_name}-%{version}
+chmod a-x Breeze*/gtk-2.0/gtkrc
+
+%build
+# Nothing to build.
 
 %install
-install -d -m 755 %{buildroot}%{_datadir}/themes/BreezyGTK/
-cp -R gtk-2.0 %{buildroot}%{_datadir}/themes/BreezyGTK/
-cp -R gtk-3.0 %{buildroot}%{_datadir}/themes/BreezyGTK/
+mkdir -p %{buildroot}%{_datadir}/themes/
+cp -a Breeze-gtk/ %{buildroot}%{_datadir}/themes/BreezeGTK/
+cp -a Breeze-dark-gtk/ %{buildroot}%{_datadir}/themes/BreezeDarkGTK/
 
-%files
+%fdupes %{buildroot}%{_datadir}/
+
+%files -n metatheme-%{_name}-common
 %defattr(-,root,root)
-%doc LICENSE
-%{_datadir}/themes/BreezyGTK/
+%doc LICENSE README.md
+%{_datadir}/themes/Breeze*/
+%exclude %{_datadir}/themes/Breeze*/gtk-?.0/
+
+%files -n gtk2-metatheme-%{_name}
+%defattr(-,root,root)
+%{_datadir}/themes/Breeze*/gtk-2.0/
+
+%files -n gtk3-metatheme-%{_name}
+%defattr(-,root,root)
+%{_datadir}/themes/Breeze*/gtk-3.0/
+
+%changelog




commit rubygem-yast-rake for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-yast-rake for 
openSUSE:Factory checked in at 2015-10-25 15:10:16

Comparing /work/SRC/openSUSE:Factory/rubygem-yast-rake (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-yast-rake.new (New)


Package is "rubygem-yast-rake"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-yast-rake/rubygem-yast-rake.changes  
2015-05-07 08:27:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-yast-rake.new/rubygem-yast-rake.changes 
2015-10-25 15:10:17.0 +0100
@@ -1,0 +2,5 @@
+Fri Oct 16 14:59:38 UTC 2015 - igonzalezs...@suse.com
+
+- add a submit_to method to simplify OBS configuration
+
+---

Old:

  yast-rake-0.2.3.gem

New:

  yast-rake-0.2.4.gem



Other differences:
--
++ rubygem-yast-rake.spec ++
--- /var/tmp/diff_new_pack.s4FeaT/_old  2015-10-25 15:10:18.0 +0100
+++ /var/tmp/diff_new_pack.s4FeaT/_new  2015-10-25 15:10:18.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-yast-rake
-Version:0.2.3
+Version:0.2.4
 Release:0
 %define mod_name yast-rake
 %define mod_full_name %{mod_name}-%{version}

++ yast-rake-0.2.3.gem -> yast-rake-0.2.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/VERSION new/VERSION
--- old/VERSION 2015-04-29 10:53:52.0 +0200
+++ new/VERSION 2015-10-20 13:07:48.0 +0200
@@ -1 +1 @@
-0.2.3
+0.2.4
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/data/targets.yml new/data/targets.yml
--- old/data/targets.yml1970-01-01 01:00:00.0 +0100
+++ new/data/targets.yml2015-10-20 13:07:48.0 +0200
@@ -0,0 +1,18 @@
+:sle12:
+  obs_api: "https://api.suse.de/;
+  obs_project: "Devel:YaST:SLE-12"
+  obs_sr_project: "SUSE:SLE-12:Update"
+  obs_target: "SLE_12"
+:leap_42_1:
+  obs_api: "https://api.opensuse.org;
+  obs_target: "openSUSE_Leap_42.1"
+  obs_sr_project: "openSUSE:Leap:42.1"
+  obs_project: "YaST:openSUSE:42.1"
+:sle12sp1:
+  obs_api: "https://api.suse.de/;
+  obs_project: "Devel:YaST:Head"
+  obs_sr_project: "SUSE:SLE-12-SP1:GA"
+  obs_target: "SLE-12-SP1"
+:factory:
+  obs_project: "YaST:Head"
+  obs_sr_project: "openSUSE:Factory"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/yast/rake.rb new/lib/yast/rake.rb
--- old/lib/yast/rake.rb2015-04-29 10:53:52.0 +0200
+++ new/lib/yast/rake.rb2015-10-20 13:07:48.0 +0200
@@ -16,24 +16,7 @@
 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 #++
 require "packaging"
-
-# create wrapper to Packaging Configuration
-module Yast
-  # Yast::Task module contains helper methods
-  module Tasks
-def self.configuration()
-  ::Packaging.configuration()
-end
-
-# read the version from spec file
-def self.spec_version
-  # use the first *.spec file found, assume all spec files
-  # contain the same version
-  File.readlines(Dir.glob("package/*.spec").first)
-.grep(/^\s*Version:\s*/).first.sub("Version:", "").strip
-end
-  end
-end
+require_relative "tasks"
 
 # yast integration testing takes too long and require osc:build so it create
 # circle, so replace test dependency with test:unit
@@ -43,9 +26,10 @@
 
 task.enhance(prerequisites)
 
+yast_submit = ENV["YAST_SUBMIT"] || :factory
+Yast::Tasks.submit_to(yast_submit.to_sym)
+
 Yast::Tasks.configuration do |conf|
-  conf.obs_project = "YaST:Head"
-  conf.obs_sr_project = "openSUSE:Factory"
   conf.package_name = File.read("RPMNAME").strip if File.exist?("RPMNAME")
   conf.version = Yast::Tasks.spec_version if !Dir.glob("package/*.spec").empty?
   conf.skip_license_check << /spell.dict$/ # skip license check for spelling 
dictionaries
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/yast/tasks.rb new/lib/yast/tasks.rb
--- old/lib/yast/tasks.rb   1970-01-01 01:00:00.0 +0100
+++ new/lib/yast/tasks.rb   2015-10-20 13:07:48.0 +0200
@@ -0,0 +1,51 @@
+#--
+# Yast rake
+#
+# Copyright (C) 2009-2013 Novell, Inc.
+#   This library is free software; you can redistribute it and/or modify
+# it only under the terms of version 2.1 of the GNU Lesser General Public
+# License as published by the Free Software Foundation.
+#
+#   This library is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for 

commit libapr-util1 for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package libapr-util1 for openSUSE:Factory 
checked in at 2015-10-25 15:10:22

Comparing /work/SRC/openSUSE:Factory/libapr-util1 (Old)
 and  /work/SRC/openSUSE:Factory/.libapr-util1.new (New)


Package is "libapr-util1"

Changes:

--- /work/SRC/openSUSE:Factory/libapr-util1/libapr-util1.changes
2014-10-25 08:32:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.libapr-util1.new/libapr-util1.changes   
2015-10-25 15:10:23.0 +0100
@@ -1,0 +2,6 @@
+Tue Oct 13 12:27:51 UTC 2015 - pgaj...@suse.com
+
+- require postgresql-devel version at least 9.1.0 to fix build for 
+  SLE-11-SP4
+
+---



Other differences:
--
++ libapr-util1.spec ++
--- /var/tmp/diff_new_pack.FfLPnW/_old  2015-10-25 15:10:24.0 +0100
+++ /var/tmp/diff_new_pack.FfLPnW/_new  2015-10-25 15:10:24.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libapr-util1
 #
-# 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
@@ -41,7 +41,7 @@
 BuildRequires:  openldap2-devel
 BuildRequires:  openssl-devel
 BuildRequires:  pkgconfig
-BuildRequires:  postgresql-devel
+BuildRequires:  postgresql-devel >= 9.1.0
 BuildRequires:  sqlite-devel
 %requires_gelibapr1
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit xkeyboard-config for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package xkeyboard-config for 
openSUSE:Factory checked in at 2015-10-25 15:10:56

Comparing /work/SRC/openSUSE:Factory/xkeyboard-config (Old)
 and  /work/SRC/openSUSE:Factory/.xkeyboard-config.new (New)


Package is "xkeyboard-config"

Changes:

--- /work/SRC/openSUSE:Factory/xkeyboard-config/xkeyboard-config.changes
2015-05-29 09:48:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.xkeyboard-config.new/xkeyboard-config.changes   
2015-10-25 15:10:58.0 +0100
@@ -1,0 +2,31 @@
+Tue Oct 20 14:59:44 UTC 2015 - tobias.johannes.klausm...@mni.thm.de
+
+- Rename n_suse.patch -> n_suse-ctrl-alt-bksp-terminate.patch to
+  reflect patch usage
+- Rename disable-2xalt_2xctrl-toggle.diff -> 
+  n_disable-2xalt_2xctrl-toggle.diff to follow X11:XOrg patch 
+  guidelines
+
+---
+Tue Oct 20 14:40:37 UTC 2015 - sndir...@suse.com
+
+- Update to version 2.16
+  * Move apostrophe U+0027 to the first level and add U+02BC one to
+ua(unicode)
+  * Add support for chromebooks layout
+  * Add missing semicolons in symbols/inet
+  * Undo incompatible us(dvp) layout additions
+  * Define a keyboard layout for the Ol Chiki script
+  * new layout - Russian Phonetic Czech
+  * Correct capitalization and naming of us(dvp) "Programmer Dvorak"
+  * added swap_lalt_lwin
+  * fixed Icelandic Dvorak
+  * Broken xml fixed
+  * Fixed mac file, use utf-8
+  * Added Teck keyboard
+  * added missing Teck file
+  * prerelease translation sync
+  * Added Finnish DAS layout
+- refreshed n_suse.patch
+
+---

Old:

  disable-2xalt_2xctrl-toggle.diff
  n_suse.patch
  xkeyboard-config-2.15.tar.bz2

New:

  n_disable-2xalt_2xctrl-toggle.diff
  n_suse-ctrl-alt-bksp-terminate.patch
  xkeyboard-config-2.16.tar.bz2



Other differences:
--
++ xkeyboard-config.spec ++
--- /var/tmp/diff_new_pack.2l8iqT/_old  2015-10-25 15:10:59.0 +0100
+++ /var/tmp/diff_new_pack.2l8iqT/_new  2015-10-25 15:10:59.0 +0100
@@ -28,15 +28,15 @@
 Provides:   XFree86:/etc/X11/xkb/symbols/us
 Provides:   xorg-x11:/etc/X11/xkb/symbols/us
 PreReq: /bin/ln /bin/rm
-Version:2.15
+Version:2.16
 Release:0
 Summary:The X Keyboard Extension
 License:GPL-2.0+ and LGPL-2.1+ and MIT and CDDL-1.0
 Group:  System/X11/Utilities
 Source: 
http://xorg.freedesktop.org/archive/individual/data/xkeyboard-config/xkeyboard-config-%{version}.tar.bz2
-Patch100:   n_suse.patch
+Patch100:   n_suse-ctrl-alt-bksp-terminate.patch
 # PATCH-FIX-OPENSUSE disable-2xalt_2xctrl-toggle.diff fdo#4927 -- This is just 
a workaround until fdo#4927 is fixed
-Patch109:   disable-2xalt_2xctrl-toggle.diff
+Patch109:   n_disable-2xalt_2xctrl-toggle.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 Recommends: %{name}-lang

++ n_disable-2xalt_2xctrl-toggle.diff ++
Index: xkeyboard-config-2.9/rules/base.xml.in
===
--- xkeyboard-config-2.9.orig/rules/base.xml.in
+++ xkeyboard-config-2.9/rules/base.xml.in
@@ -5612,6 +5612,7 @@
   <_description>Right Alt (while pressed)
 
   
+  
   
 
   grp:rwin_switch
++ n_suse-ctrl-alt-bksp-terminate.patch ++
-- Add Multi_key to Control_R to get compose.Index: 
xkeyboard-config-2.1/rules/evdev.m_s.part

diff -u -r xkeyboard-config-2.16.orig/rules/evdev.m_s.part 
xkeyboard-config-2.16/rules/evdev.m_s.part
--- xkeyboard-config-2.16.orig/rules/evdev.m_s.part 2015-10-20 
16:46:14.666938000 +0200
+++ xkeyboard-config-2.16/rules/evdev.m_s.part  2015-10-20 16:47:50.094095000 
+0200
@@ -1,4 +1,4 @@
-  $evdevkbds=   +inet(evdev)+inet(%m)
-  chromebook=   +inet(evdev)+inet(chromebook)
-  applealu_jis  =   +inet(evdev)+macintosh_vndr/jp(alujiskeys)
-  * =   +inet(evdev)
+  $evdevkbds=   +inet(evdev)+inet(%m)+terminate(ctrl_alt_bksp)
+  chromebook=   +inet(evdev)+inet(chromebook)+terminate(ctrl_alt_bksp)
+  applealu_jis  =   
+inet(evdev)+macintosh_vndr/jp(alujiskeys)+terminate(ctrl_alt_bksp)
+  * =   +inet(evdev)+terminate(ctrl_alt_bksp)
diff -u -r xkeyboard-config-2.16.orig/symbols/pc 
xkeyboard-config-2.16/symbols/pc
--- xkeyboard-config-2.16.orig/symbols/pc   2015-10-20 16:46:13.091936000 
+0200
+++ xkeyboard-config-2.16/symbols/pc2015-10-20 16:46:28.915956000 +0200
@@ -27,8 +27,8 @@
 key  {   [ Super_L   ]   };
 
 key  {   [ Shift_R   ]   };
-key  {   [ Control_R ]   };

commit lightdm-gtk-greeter-branding-openSUSE for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package 
lightdm-gtk-greeter-branding-openSUSE for openSUSE:Factory checked in at 
2015-10-25 19:12:51

Comparing /work/SRC/openSUSE:Factory/lightdm-gtk-greeter-branding-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.lightdm-gtk-greeter-branding-openSUSE.new 
(New)


Package is "lightdm-gtk-greeter-branding-openSUSE"

Changes:

--- 
/work/SRC/openSUSE:Factory/lightdm-gtk-greeter-branding-openSUSE/lightdm-gtk-greeter-branding-openSUSE.changes
  2013-04-16 06:46:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.lightdm-gtk-greeter-branding-openSUSE.new/lightdm-gtk-greeter-branding-openSUSE.changes
 2015-10-25 19:12:52.0 +0100
@@ -1,0 +2,14 @@
+Sun Oct 18 19:41:33 UTC 2015 - roni...@gmail.com
+
+- Update for lightdm-gtk-greeter 2.0.1.
+* The configuration file was modified to add the following
+  indicators:
+  - Host;
+  - Clock;
+  - Language selection menu;
+  - Keyboard selection menu;
+  - Session selection menu;
+  - Accessibility menu;
+  - Power menu.
+
+---



Other differences:
--
++ lightdm-gtk-greeter-branding-openSUSE.spec ++
--- /var/tmp/diff_new_pack.vEJ8nF/_old  2015-10-25 19:12:53.0 +0100
+++ /var/tmp/diff_new_pack.vEJ8nF/_new  2015-10-25 19:12:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package lightdm-gtk-greeter-branding-openSUSE
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Guido Berhoerster .
 #
 # All modifications and additions to the file contributed by third parties
@@ -17,10 +17,10 @@
 #
 
 
-%define lightdm_gtk_greeter_version %(rpm -q --queryformat '%%{version}' 
lightdm-gtk-greeter)
+%define lightdm_gtk_greeter_version %(rpm -q --queryformat "%%{version}" 
lightdm-gtk-greeter)
 
 Name:   lightdm-gtk-greeter-branding-openSUSE
-Version:1.3
+Version:2.0
 Release:0
 Summary:openSUSE branding of lightdm-gtk-greeter
 License:GPL-3.0+
@@ -40,7 +40,6 @@
 Supplements:packageand(lightdm-gtk-greeter:branding-openSUSE)
 # switch to the upstream versioning scheme
 Obsoletes:  lightdm-gtk-greeter-branding = 12.1
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
 %description


++ lightdm-gtk-greeter.conf ++
--- /var/tmp/diff_new_pack.vEJ8nF/_old  2015-10-25 19:12:53.0 +0100
+++ /var/tmp/diff_new_pack.vEJ8nF/_new  2015-10-25 19:12:53.0 +0100
@@ -1,5 +1,4 @@
 #
-# logo = Logo file to use, either an image absolute path, or a path relative 
to the greeter data directory
 # background = Background file to use, either an image path or a color (e.g. 
#772953)
 # theme-name = GTK+ theme to use
 # icon-theme-name = Icon theme to use
@@ -8,10 +7,9 @@
 # xft-dpi = Resolution for Xft in dots per inch (e.g. 96)
 # xft-hintstyle = What degree of hinting to use (hintnone, hintslight, 
hintmedium, or hintfull)
 # xft-rgba = Type of subpixel antialiasing (none, rgb, bgr, vrgb or vbgr)
-# show-language-selector (true or false)
+# indicators = Indicators to be shown at the top bar
 #
 [greeter]
-logo=/usr/share/pixmaps/lightdm-gtk-greeter-opensuse.png
 background=/usr/share/wallpapers/openSUSEdefault/contents/images/1600x1200.jpg
 theme-name=Adwaita
 #icon-theme-name=
@@ -20,4 +18,4 @@
 #xft-dpi=
 #xft-hintstyle=
 #xft-rgba=
-show-language-selector=true
+indicators = 
~host;~spacer;~clock;~spacer;~language;~layout;~session;~a11y;~power;




commit creduce for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package creduce for openSUSE:Factory checked 
in at 2015-10-25 19:13:13

Comparing /work/SRC/openSUSE:Factory/creduce (Old)
 and  /work/SRC/openSUSE:Factory/.creduce.new (New)


Package is "creduce"

Changes:

--- /work/SRC/openSUSE:Factory/creduce/creduce.changes  2015-10-20 
00:09:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.creduce.new/creduce.changes 2015-10-25 
19:13:15.0 +0100
@@ -1,0 +2,5 @@
+Thu Oct 22 11:55:28 UTC 2015 - norm...@linux.vnet.ibm.com
+
+- bypass boo#927268 for ppc64/ppc64le removing -fstack_protector
+
+---



Other differences:
--
++ creduce.spec ++
--- /var/tmp/diff_new_pack.GU0MYu/_old  2015-10-25 19:13:16.0 +0100
+++ /var/tmp/diff_new_pack.GU0MYu/_new  2015-10-25 19:13:16.0 +0100
@@ -52,7 +52,13 @@
 %setup -q -n %{name}-%{name}-%{version}
 
 %build
+# bypass bug 927268 for PowerPC
+tmpflags="%{optflags}"
+%ifarch ppc64 ppc64le
+tmpflags=${tmpflags/-fstack-protector}
+%endif
 export CXX=clang++
+export CXXFLAGS="${tmpflags}"
 %configure --libexec=%{_bindir}
 make %{?_smp_mflags}
 




commit rubygem-json_pure for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-json_pure for 
openSUSE:Factory checked in at 2015-10-25 19:13:17

Comparing /work/SRC/openSUSE:Factory/rubygem-json_pure (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-json_pure.new (New)


Package is "rubygem-json_pure"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-json_pure/rubygem-json_pure.changes  
2015-02-10 20:22:58.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-json_pure.new/rubygem-json_pure.changes 
2015-10-25 19:13:18.0 +0100
@@ -1,0 +2,17 @@
+Wed Oct 21 04:30:03 UTC 2015 - co...@suse.com
+
+- updated to version 1.8.3
+ see installed CHANGES
+
+  2015-09-11 (1.8.4)
+* There were still some mentions of dual GPL licensing in the source, but 
JSON
+  has just the Ruby license that itself includes an explicit dual-licensing
+  clause that allows covered software to be distributed under the terms of
+  the Simplified BSD License instead for all ruby versions >= 1.9.3. This 
is
+  however a GPL compatible license according to the Free Software 
Foundation.
+  I changed these mentions to be consistent with the Ruby license setting 
in
+  the gemspec files which were already correct now.
+  2015-06-01 (1.8.3)
+* Fix potential memory leak, thx to nobu.
+
+---

Old:

  json_pure-1.8.2.gem

New:

  json_pure-1.8.3.gem



Other differences:
--
++ rubygem-json_pure.spec ++
--- /var/tmp/diff_new_pack.NXLDoQ/_old  2015-10-25 19:13:18.0 +0100
+++ /var/tmp/diff_new_pack.NXLDoQ/_new  2015-10-25 19:13:18.0 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-json_pure
-Version:1.8.2
+Version:1.8.3
 Release:0
 %define mod_name json_pure
 %define mod_full_name %{mod_name}-%{version}
@@ -49,7 +49,7 @@
 
 %install
 %gem_install \
-  --doc-files="CHANGES COPYING README.rdoc" \
+  --doc-files="CHANGES README.rdoc" \
   -f
 
 %gem_packages

++ json_pure-1.8.2.gem -> json_pure-1.8.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2015-01-09 01:55:42.0 +0100
+++ new/.travis.yml 2015-09-11 02:11:24.0 +0200
@@ -9,6 +9,8 @@
   - 1.9.3
   - 2.0.0
   - 2.1
+  - 2.2.1
+  - 2.2.2
   - 2.2
   - ree
   - rbx-2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGES new/CHANGES
--- old/CHANGES 2015-01-09 01:55:42.0 +0100
+++ new/CHANGES 2015-09-11 02:11:24.0 +0200
@@ -1,3 +1,13 @@
+2015-09-11 (1.8.4)
+  * There were still some mentions of dual GPL licensing in the source, but 
JSON
+has just the Ruby license that itself includes an explicit dual-licensing
+clause that allows covered software to be distributed under the terms of
+the Simplified BSD License instead for all ruby versions >= 1.9.3. This is
+however a GPL compatible license according to the Free Software Foundation.
+I changed these mentions to be consistent with the Ruby license setting in
+the gemspec files which were already correct now.
+2015-06-01 (1.8.3)
+  * Fix potential memory leak, thx to nobu.
 2015-01-08 (1.8.2)
   * Some performance improvements by Vipul A M .
   * Fix by Jason R. Clark  to avoid mutation of
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/COPYING new/COPYING
--- old/COPYING 2015-01-09 01:55:42.0 +0100
+++ new/COPYING 1970-01-01 01:00:00.0 +0100
@@ -1,58 +0,0 @@
-Ruby is copyrighted free software by Yukihiro Matsumoto .
-You can redistribute it and/or modify it under either the terms of the GPL
-(see GPL file), or the conditions below:
-
-  1. You may make and give away verbatim copies of the source form of the
- software without restriction, provided that you duplicate all of the
- original copyright notices and associated disclaimers.
-
-  2. You may modify your copy of the software in any way, provided that
- you do at least ONE of the following:
-
-   a) place your modifications in the Public Domain or otherwise
-  make them Freely Available, such as by posting said
- modifications to Usenet or an equivalent medium, or by allowing
- the author to include your modifications in the software.
-
-   b) use the modified software only within your corporation or
-  organization.
-
-   c) rename any non-standard executables so the names do not conflict
- with standard executables, which must also be provided.
-
-   d) make other distribution arrangements 

commit python3-dateutil for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package python3-dateutil for 
openSUSE:Factory checked in at 2015-10-25 19:13:23

Comparing /work/SRC/openSUSE:Factory/python3-dateutil (Old)
 and  /work/SRC/openSUSE:Factory/.python3-dateutil.new (New)


Package is "python3-dateutil"

Changes:

--- /work/SRC/openSUSE:Factory/python3-dateutil/python3-dateutil.changes
2015-04-10 09:52:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-dateutil.new/python3-dateutil.changes   
2015-10-25 19:13:27.0 +0100
@@ -1,0 +2,5 @@
+Fri Oct 23 10:16:02 UTC 2015 - toddrme2...@gmail.com
+
+- Enable unit tests.
+
+---



Other differences:
--
++ python3-dateutil.spec ++
--- /var/tmp/diff_new_pack.MYvS8Q/_old  2015-10-25 19:13:28.0 +0100
+++ /var/tmp/diff_new_pack.MYvS8Q/_new  2015-10-25 19:13:28.0 +0100
@@ -65,13 +65,13 @@
 
 %build
 rm setup.cfg
-CFLAGS="%{optflags}" python3 setup.py build
+python3 setup.py build
 
 %install
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
-%clean
-rm -rf %{buildroot}
+%check
+python3 setup.py test
 
 %files
 %defattr(-,root,root)




commit ibus-chewing for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package ibus-chewing for openSUSE:Factory 
checked in at 2015-10-25 19:12:55

Comparing /work/SRC/openSUSE:Factory/ibus-chewing (Old)
 and  /work/SRC/openSUSE:Factory/.ibus-chewing.new (New)


Package is "ibus-chewing"

Changes:

--- /work/SRC/openSUSE:Factory/ibus-chewing/ibus-chewing.changes
2014-08-14 14:58:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.ibus-chewing.new/ibus-chewing.changes   
2015-10-25 19:12:56.0 +0100
@@ -1,0 +2,26 @@
+Tue Oct 20 05:19:50 UTC 2015 - i...@marguerite.su
+
+- update version 1.4.14
+  * Fixed the issues found in static checks
+- changes in 1.14.11.1
+  * Resolves Bug 1013977 - Slow focus change with ibus-chewing
+  * Resolves Bug 1062133 - ibus-chewing may not handle key event
+after focus change
+  * Resolves Bug 1073797 - Cannot identify input mode for Chinese
+IME (ibus-chewing)
+  * Fixed Bug 902866 - ibus-chewing uses dconf but still installs
+gconf schemas
+  * MakerDialog GUI is only loaded when setting dialog is invoked.
+  * Setting is removed from ibus-properties because it can be launched
+from either:
++ Executable ibus-setup-chewing: Usually under /usr/libexec
++ Input method preference in IBus preference.
+  * Fixed github issue #43: First space not able to input
+  * Fixed github issue #44: Update input-events (for libchewing-0.4.0)
+  * Fixed github issue #45: Optimize properties handling.
+- remove explicit Requires on libchewing > 0.3.2, ldconfig will
+  do the work
+- drop patch: ibus-chewing-fix-license.patch, upstream fixed
+- dont build with gconf support, such codes are buggy
+
+---

Old:

  ibus-chewing-1.4.10.1-Source.tar.gz
  ibus-chewing-fix-license.patch

New:

  cmake-fedora-modules-only-latest.tar.gz
  ibus-chewing-1.4.14.tar.gz



Other differences:
--
++ ibus-chewing.spec ++
--- /var/tmp/diff_new_pack.KyMtYb/_old  2015-10-25 19:12:57.0 +0100
+++ /var/tmp/diff_new_pack.KyMtYb/_new  2015-10-25 19:12:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package ibus-chewing
 #
-# 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
@@ -17,32 +17,27 @@
 
 
 Name:   ibus-chewing
-Version:1.4.10.1
+Version:1.4.14
 Release:0
 Summary:The Chewing engine for IBus input platform
 License:GPL-2.0+
 Group:  System/I18n/Chinese
-Url:http://code.google.com/p/ibus/
-Source0:
https://github.com/definite/ibus-chewing/releases/download/%{version}/%{name}-%{version}-Source.tar.gz
-# PATCH-FIX-UPSTREAM ibus-chewing-fix-license.patch fcro...@suse.com -- fix 
incorrect license on header
-Patch0: ibus-chewing-fix-license.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Url:https://github.com/definite/ibus-chewing
+Source: 
https://github.com/definite/ibus-chewing/archive/%{version}/%{name}-%{version}.tar.gz
+Source1:
https://fedorahosted.org/releases/c/m/cmake-fedora/cmake-fedora-modules-only-latest.tar.gz
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
-BuildRequires:  gconf2-devel
 BuildRequires:  gettext-devel
 BuildRequires:  gob2
 BuildRequires:  gtk2-devel
-BuildRequires:  ibus-devel >= 1.2
-BuildRequires:  libchewing-devel >= 0.3.2
+BuildRequires:  ibus-devel >= 1.3
+BuildRequires:  libchewing-devel >= 0.3.3
 BuildRequires:  pkg-config
 BuildRequires:  xorg-x11-devel
-Requires:   gconf2
-Requires:   ibus >= 1.2
-Requires:   libchewing >= 0.3.2
+Requires:   ibus >= 1.3
 Provides:   locale(zh_TW)
-
-%gconf_schemas_prereq 
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%glib2_gsettings_schema_requires 
 
 %description
 IBus-chewing is an IBus front-end of Chewing, an intelligent Chinese input
@@ -52,46 +47,44 @@
 
 Chewing also support toned Hanyu pinyin input.
 
-%description -l zh_TW
-IBus-chewing 是新酷音輸入法的IBus前端。
-新酷音輸入法是個智慧型注音輸入法,支援多種鍵盤布局,諸如:
-標準注音鍵盤、IBM、精業、倚天、倚天26鍵、許氏、Dvorak、Dvorak許氏
-及大千26鍵。
-
-本輸入法也同時支援帶調漢語拼音輸入。
-
 %prep
-%setup -q -n %{name}-%{version}-Source
-%patch0 -p1
+%setup -q
+tar -xzvf %{_sourcedir}/cmake-fedora-modules-only-latest.tar.gz -C .
 
 %build
-cmake -DCMAKE_INSTALL_PREFIX='/usr' \
-  -DLIBEXEC_DIR='%{_libdir}/ibus' \
-  -DSYSCONF_INSTALL_DIR='/etc'
-make 
-make translations
+%cmake -DLIBEXEC_DIR=%{_libdir}/ibus
+make %{?_smp_mflags}
 
 %install
-mkdir -p $RPM_BUILD_ROOT/etc/gconf/schemas

commit hawk2 for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package hawk2 for openSUSE:Factory checked 
in at 2015-10-25 19:13:18

Comparing /work/SRC/openSUSE:Factory/hawk2 (Old)
 and  /work/SRC/openSUSE:Factory/.hawk2.new (New)


Package is "hawk2"

Changes:

--- /work/SRC/openSUSE:Factory/hawk2/hawk2.changes  2015-10-20 
00:09:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.hawk2.new/hawk2.changes 2015-10-25 
19:13:20.0 +0100
@@ -1,0 +2,17 @@
+Thu Oct 22 21:51:52 UTC 2015 - kgronl...@suse.com
+
+- Update to version 1.0.0~alpha1+git.1445537620.7637b7f:
+  + Dashboard: Blinkenlights display for dashboard (bsc#951584)
+  + Command Log: Tag simulated commands (bsc#950618)
+
+---
+Wed Oct 21 16:03:52 UTC 2015 - kgronl...@suse.com
+
+- Update to version 1.0.0~alpha1+git.1445441661.907341b:
+  + View: Fix overlapping growl notifications (bsc#950626)
+  + Cib: Patch remote node state from resource (bsc#949240)
+  + Cib: Don't try to read CIB XML if cluster is not running
+  + Dashboard: Fix adding/removing clusters
+  + Status: Show unclean status as error
+
+---

Old:

  hawk2-1.0.0~alpha1+git.1445271072.1114d0a.tar.bz2

New:

  hawk2-1.0.0~alpha1+git.1445537620.7637b7f.tar.bz2



Other differences:
--
++ hawk2.spec ++
--- /var/tmp/diff_new_pack.TYSlBv/_old  2015-10-25 19:13:21.0 +0100
+++ /var/tmp/diff_new_pack.TYSlBv/_new  2015-10-25 19:13:21.0 +0100
@@ -39,7 +39,7 @@
 Summary:HA Web Konsole
 License:GPL-2.0
 Group:  %{pkg_group}
-Version:1.0.0~alpha1+git.1445271072.1114d0a
+Version:1.0.0~alpha1+git.1445537620.7637b7f
 Release:0
 Url:http://www.clusterlabs.org/wiki/Hawk
 Source: %{name}-%{version}.tar.bz2

++ _servicedata ++
--- /var/tmp/diff_new_pack.TYSlBv/_old  2015-10-25 19:13:21.0 +0100
+++ /var/tmp/diff_new_pack.TYSlBv/_new  2015-10-25 19:13:21.0 +0100
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/hawk.git
-  1114d0a7161ac85b17d1eca5ad73fda1ccf2cc58
\ No newline at end of file
+  7637b7ffbf6688f8778d574971bff88d96cb204b
\ No newline at end of file

++ hawk2-1.0.0~alpha1+git.1445271072.1114d0a.tar.bz2 -> 
hawk2-1.0.0~alpha1+git.1445537620.7637b7f.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/hawk2-1.0.0~alpha1+git.1445271072.1114d0a/hawk/app/assets/javascripts/application.js
 
new/hawk2-1.0.0~alpha1+git.1445537620.7637b7f/hawk/app/assets/javascripts/application.js
--- 
old/hawk2-1.0.0~alpha1+git.1445271072.1114d0a/hawk/app/assets/javascripts/application.js
2015-10-19 18:15:06.0 +0200
+++ 
new/hawk2-1.0.0~alpha1+git.1445537620.7637b7f/hawk/app/assets/javascripts/application.js
2015-10-22 23:51:44.0 +0200
@@ -6,6 +6,7 @@
 //= require module/basics
 //= require module/help
 //= require module/forms
+//= require module/statusmatrix
 //= require module/oplist
 //= require module/attrlist
 //= require module/wizattrlist
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/hawk2-1.0.0~alpha1+git.1445271072.1114d0a/hawk/app/assets/javascripts/dashboard.js
 
new/hawk2-1.0.0~alpha1+git.1445537620.7637b7f/hawk/app/assets/javascripts/dashboard.js
--- 
old/hawk2-1.0.0~alpha1+git.1445271072.1114d0a/hawk/app/assets/javascripts/dashboard.js
  2015-10-19 18:15:06.0 +0200
+++ 
new/hawk2-1.0.0~alpha1+git.1445537620.7637b7f/hawk/app/assets/javascripts/dashboard.js
  2015-10-22 23:51:44.0 +0200
@@ -1,4 +1,5 @@
 // Copyright (c) 2009-2015 Tim Serong 
+// Copyright (c) 2015 Kristoffer Gronlund 
 // See COPYING for license.
 
 // https://:7630/cib/mini.json
@@ -140,108 +141,46 @@
 }
 
 text += '';
-text += '';
-text += '';
+text += '';
 
-var makePopoverButton = function(id, content, cls, title) {
-  var body = "";
-  body += '';
-};
-
-var dlEnd = function() {
-  return '';
-};
-
-var dlAdd = function(title, text) {
-  return '' + title + '' + text + '';
-}
-
-var descCache = {};
-
-$.each(cib.node_states, function(state, count) {
-  if (count > 0) {
-var details = dlBegin();
-$.each(cib.nodes, function(n, v) {
-  if (state == v) {
-details += dlAdd(n, v);
-  }
-});
-details += dlEnd();
-descCache['node_btn_' + state] = details;
-
-text += makePopoverButton('node_btn_' + state, count + ' ' + state + ' 
' + plural('node', count),
- 

commit schedtop for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package schedtop for openSUSE:Factory 
checked in at 2015-10-25 19:13:32

Comparing /work/SRC/openSUSE:Factory/schedtop (Old)
 and  /work/SRC/openSUSE:Factory/.schedtop.new (New)


Package is "schedtop"

Changes:

--- /work/SRC/openSUSE:Factory/schedtop/schedtop.changes2012-01-04 
07:31:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.schedtop.new/schedtop.changes   2015-10-25 
19:13:33.0 +0100
@@ -1,0 +2,12 @@
+Sat Oct 24 18:51:31 UTC 2015 - mplus...@suse.com
+
+- Cleanup spec file with spec-cleaner
+
+---
+Sat Oct 17 12:43:08 UTC 2015 - sleep_wal...@opensuse.org
+
+- remove useless 'ncurses' dependency (it is figured from dynamic
+  linking)
+- add Url tag
+
+---



Other differences:
--
++ schedtop.spec ++
--- /var/tmp/diff_new_pack.zFXmMo/_old  2015-10-25 19:13:33.0 +0100
+++ /var/tmp/diff_new_pack.zFXmMo/_new  2015-10-25 19:13:33.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package schedtop
 #
-# Copyright (c) 2011 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
@@ -16,30 +16,19 @@
 #
 
 
-%define rpmrel 1
-%if 0%{?suse_version} > 1100
-%define boostdeps boost-devel
-%else
-%if 0%{?suse_version} == 1110
-%define boostdeps boost-devel libboost_regex1_36 libboost_program_options1_36 
libboost_filesystem1_36
-%else
-%define boostdeps boost
-%endif
-%endif
-BuildRequires:  %{boostdeps}
-BuildRequires:  gcc-c++
-BuildRequires:  ncurses-devel
-Summary:Displays Scheduler Statistics
-License:GPL-2.0+
-Group:  System/Monitoring
-
 Name:   schedtop
 Version:1.1
 Release:0
-Requires:   ncurses
+Summary:Displays Scheduler Statistics
+License:GPL-2.0+
+Group:  System/Monitoring
+Url:https://github.com/ghaskins/schedtop
 Source: %{name}-%{version}.tar.gz
 Patch0: schedtop-cxxflags.patch
 Patch1: schedtop-boost_filesystem_changes.patch
+BuildRequires:  boost-devel
+BuildRequires:  gcc-c++
+BuildRequires:  ncurses-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -48,33 +37,22 @@
 the largest stat, or by name.  Stats can be included or excluded based on
 reg-ex pattern matching.
 
-Authors
---
-  Gregory Haskins 
-
 %prep
 %setup -q
 %patch0
 %patch1
 
 %build
-make CXXFLAGS="%{optflags}"
+make %{?_smp_mflags} CXXFLAGS="%{optflags}"
 
 %install
-make install PREFIX=$RPM_BUILD_ROOT
-# Install documentation  
-%{__mkdir_p} %{buildroot}/%{_defaultdocdir}/schedtop  
-%{__mkdir_p} %{buildroot}/%{_mandir}/man1  
-%{__gzip} *.1  
-%{__cp} *.1.gz %{buildroot}/%{_mandir}/man1  
-
-%clean
-make clean
+make install PREFIX=%{buildroot}
+install -D -m 0644 schedtop.1 %{buildroot}/%{_mandir}/man1/schedtop.1
 
 %files
 %defattr(-,root,root)
-/usr/bin/schedtop
+%doc schedtop.html
+%{_bindir}/schedtop
 %{_mandir}/man1/*  
-%{_defaultdocdir}/*
 
 %changelog




commit lightdm-gtk-greeter for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package lightdm-gtk-greeter for 
openSUSE:Factory checked in at 2015-10-25 19:12:53

Comparing /work/SRC/openSUSE:Factory/lightdm-gtk-greeter (Old)
 and  /work/SRC/openSUSE:Factory/.lightdm-gtk-greeter.new (New)


Package is "lightdm-gtk-greeter"

Changes:

--- /work/SRC/openSUSE:Factory/lightdm-gtk-greeter/lightdm-gtk-greeter.changes  
2015-08-01 11:37:48.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.lightdm-gtk-greeter.new/lightdm-gtk-greeter.changes 
2015-10-25 19:12:54.0 +0100
@@ -1,0 +2,14 @@
+Sun Oct 18 17:16:31 UTC 2015 - roni...@gmail.com
+
+- Version bump to 2.0.1.
+- drop patches:
+lightdm-gtk-greeter-use-new-autologin-api.patch
+lightdm-gtk-greeter-fix-cursor.patch
+lightdm-gtk-greeter-fix-background.patch
+lightdm-gtk-greeter-improve-background-scaling.patch
+lightdm-gtk-greeter-fix-ui.patch
+lightdm-gtk-greeter-fix-login.patch
+lightdm-gtk-greeter-invalid-last_session.patch
+lightdm-gtk-greeter-handle-invalid-user.patch
+
+---

Old:

  lightdm-gtk-greeter-1.3.1.tar.gz
  lightdm-gtk-greeter-fix-background.patch
  lightdm-gtk-greeter-fix-cursor.patch
  lightdm-gtk-greeter-fix-login.patch
  lightdm-gtk-greeter-fix-ui.patch
  lightdm-gtk-greeter-handle-invalid-user.patch
  lightdm-gtk-greeter-improve-background-scaling.patch
  lightdm-gtk-greeter-invalid-last_session.patch
  lightdm-gtk-greeter-use-new-autologin-api.patch

New:

  lightdm-gtk-greeter-2.0.1.tar.gz



Other differences:
--
++ lightdm-gtk-greeter.spec ++
--- /var/tmp/diff_new_pack.j58NMW/_old  2015-10-25 19:12:55.0 +0100
+++ /var/tmp/diff_new_pack.j58NMW/_new  2015-10-25 19:12:55.0 +0100
@@ -17,62 +17,49 @@
 #
 
 
-# ATTENTION: Please do not update to releases > 1.3.1 for now -- 
g...@opensuse.org
+%define _version 2.0
 
 Name:   lightdm-gtk-greeter
-Version:1.3.1
+Version:2.0.1
 Release:0
-Summary:GTK-based Greeter for LightDM
+Summary:Simple display manager (GTK+ greeter)
 License:GPL-3.0+
 Group:  System/X11/Displaymanagers
 Url:https://launchpad.net/lightdm-gtk-greeter
-Source0:%{name}-%{version}.tar.gz
-# PATCH-FIX-UPSTREAM lightdm-gtk-greeter-use-new-autologin-api.patch 
g...@opensuse.org -- Use the new autologin API in liblightdm-gobject-1 >= 1.3.5 
(backported from upstream git)
-Patch0: lightdm-gtk-greeter-use-new-autologin-api.patch
-# PATCH-FIX-UPSTREAM lightdm-gtk-greeter-fix-cursor.patch lp#1024482 
g...@opensuse.org -- Fix the cursor theme by setting the cursor after selecting 
a GTK theme
-Patch1: lightdm-gtk-greeter-fix-cursor.patch
-# PATCH-FIX-UPSTREAM lightdm-gtk-greeter-fix-background.patch lp#1086199 
g...@opensuse.org -- Fix the background image not being displayed when the 
pixmap does not have an alpha channel
-Patch2: lightdm-gtk-greeter-fix-background.patch
-# PATCH-FEATURE-UPSTREAM lightdm-gtk-greeter-improve-background-scaling.patch 
g...@opensuse.org -- Scale the background pixmap while preserving the aspect 
until width and height are at least as big as the screen width and height, then 
clip as needed
-Patch3: lightdm-gtk-greeter-improve-background-scaling.patch
-# PATCH-FEATURE-UPSTREAM lightdm-gtk-greeter-fix-ui.patch g...@opensuse.org -- 
Various usability fixes, in particular switch back to a tree view inside a 
scrolled window in order make it usable with a lot of users
-Patch4: lightdm-gtk-greeter-fix-ui.patch
-# PATCH-FIX-UPSTREAM lightdm-gtk-greeter-fix-login.patch g...@opensuse.org -- 
Fix login/unlock detection
-Patch5: lightdm-gtk-greeter-fix-login.patch
-# PATCH-FIX-OPENSUSE lightdm-gtk-greeter-invalid-last_session.patch lp#1161883 
rmila...@suse.com -- Fix segfault when last_session is invalid (last_session 
points to a non-exsting/deleted session)
-Patch6: lightdm-gtk-greeter-invalid-last_session.patch
-# PATCH-FIX-UPSTREAM lightdm-gtk-greeter-handle-invalid-user.patch bnc#857303 
g...@opensuse.org -- Fix NULL pointer dereference after authentication of an 
invalid username failed
-Patch7: lightdm-gtk-greeter-handle-invalid-user.patch
+Source: 
https://launchpad.net/%{name}/%{_version}/%{version}/+download/%{name}-%{version}.tar.gz
+BuildRequires:  autoconf
+BuildRequires:  automake >= 1.7
+BuildRequires:  fdupes
 BuildRequires:  gnome-common
-BuildRequires:  gobject-introspection
 BuildRequires:  intltool
-BuildRequires:  update-alternatives
+BuildRequires:  libtool
+BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(gmodule-export-2.0)
+BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 

commit target-isns for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package target-isns for openSUSE:Factory 
checked in at 2015-10-25 19:13:08

Comparing /work/SRC/openSUSE:Factory/target-isns (Old)
 and  /work/SRC/openSUSE:Factory/.target-isns.new (New)


Package is "target-isns"

Changes:

--- /work/SRC/openSUSE:Factory/target-isns/target-isns.changes  2015-08-12 
15:14:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.target-isns.new/target-isns.changes 
2015-10-25 19:13:09.0 +0100
@@ -1,0 +2,9 @@
+Wed Oct 21 17:23:05 UTC 2015 - ldun...@suse.com
+
+- Handle 2 places isnsd was handling IP addresses
+  incorrectly, assuming big-endian architecture (bsc#950366),
+  adding two patches:
+  * target-isns-handle-big-endian-arch.patch
+  * target-isns-fix-remaining-little-endian-IP-addr.patch
+
+---

New:

  target-isns-fix-remaining-little-endian-IP-addr.patch
  target-isns-handle-big-endian-arch.patch



Other differences:
--
++ target-isns.spec ++
--- /var/tmp/diff_new_pack.nSL4OW/_old  2015-10-25 19:13:10.0 +0100
+++ /var/tmp/diff_new_pack.nSL4OW/_new  2015-10-25 19:13:10.0 +0100
@@ -37,6 +37,8 @@
 Patch2: %{name}-add-systemd-support.patch
 Patch3: %{name}-dont-ignore-read-return-value.patch
 Patch4: %{name}-define-posix_c_source-for-netdb
+Patch5: %{name}-fix-remaining-little-endian-IP-addr.patch
+Patch6: %{name}-handle-big-endian-arch.patch
 
 %description
 Target-isns is an Internet Storage Name Service (iSNS) client for the
@@ -56,6 +58,8 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
+%patch6 -p1
 
 %build
 mkdir build

++ target-isns-fix-remaining-little-endian-IP-addr.patch ++
>From a7222ebb245ca79c74f83cb881eeb8ae73a7f39f Mon Sep 17 00:00:00 2001
From: Lee Duncan 
Date: Thu, 15 Oct 2015 18:21:17 -0700
Subject: [PATCH] Fix remaining little-endian IP address handling

My prevoius fix missed one place where the IP
address was still reversed on big-endian architectures.
---
 src/isns.c | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

--- a/src/isns.c
+++ b/src/isns.c
@@ -454,10 +454,7 @@ static void isns_ip_addr_set(const struc
 
/* RFC 4171 6.3.1: convert v4 to mapped v6 */
ip_addr[10] = ip_addr[11] = 0xff;
-   ip_addr[15] = 0xff & (addr >> 24);
-   ip_addr[14] = 0xff & (addr >> 16);
-   ip_addr[13] = 0xff & (addr >> 8);
-   ip_addr[12] = 0xff & addr;
+   memcpy(ip_addr + 12, , 4);
} else if (portal->af == AF_INET6)
inet_pton(AF_INET6, portal->ip_addr, ip_addr);
 }
++ target-isns-handle-big-endian-arch.patch ++
From: Olaf Kirch 
Date: Wed Oct 14 10:51:18 PDT 2015
Subject: [PATCH] Handle big-endian architecture
Reference: bsc#950366

On a little Endian system, this will load addr with the IP address in
"wrong" order, ie if the address was 1.2.3.4, then addr will contain
04030201

ip[10] = ip[11] = 0xff;
ip[15] = 0xff & (addr >> 24);
ip[14] = 0xff & (addr >> 16);
ip[13] = 0xff & (addr >> 8);
ip[12] = 0xff & addr;

Using the example IP addr above, his will translate to

/* addr == 0x04030201 */
ip[15] = 4; /* 0xff & (addr >> 24); */
ip[14] = 3; /* 0xff & (addr >> 16); */
ip[13] = 2; /* 0xff & (addr >> 8); */
ip[12] = 1; /* 0xff & addr; */

On a big Endian system, the contents of addr will not be byte swapped,
and hence it will be stored in ip[] in the wrong order.

This picture doesn't change when using ntohl, because that is a NOP on
s390. The only effect of using ntohl is that it will now be broken on
x86_64 as well :-)

The real fix is to not bother with assigning to addr at all, but to do
a memcpy straight from )->sin_addr to ip + 12. That doesn't need
any byte aerobics, as it just moves the data as-is.

Signed-of-by: Lee Duncan 
---
 src/isns.c |8 +---
 1 file changed, 1 insertion(+), 7 deletions(-)

--- a/src/isns.c
+++ b/src/isns.c
@@ -77,7 +77,6 @@ static int isns_get_ip(int fd)
 {
int err;
size_t i;
-   uint32_t addr;
union {
struct sockaddr s;
struct sockaddr_storage ss;
@@ -104,13 +103,8 @@ static int isns_get_ip(int fd)
 
switch (l.ss.ss_family) {
case AF_INET:
-   addr = (()->sin_addr.s_addr);
-
ip[10] = ip[11] = 0xff;
-   ip[15] = 0xff & (addr >> 24);
-   ip[14] = 0xff & (addr >> 16);
-   ip[13] = 0xff & (addr >> 8);
-  

commit openscap for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package openscap for openSUSE:Factory 
checked in at 2015-10-25 19:13:06

Comparing /work/SRC/openSUSE:Factory/openscap (Old)
 and  /work/SRC/openSUSE:Factory/.openscap.new (New)


Package is "openscap"

Changes:

--- /work/SRC/openSUSE:Factory/openscap/openscap.changes2015-10-14 
16:44:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.openscap.new/openscap.changes   2015-10-25 
19:13:08.0 +0100
@@ -1,0 +2,6 @@
+Fri Oct  9 09:35:46 UTC 2015 - meiss...@suse.com
+
+- openscap-new-inventory.patch: find out the CPE ids of
+  SUSE Linux Enterprise and openSUSE versions.
+
+---

New:

  openscap-new-inventory.patch



Other differences:
--
++ openscap.spec ++
--- /var/tmp/diff_new_pack.OsIdAI/_old  2015-10-25 19:13:09.0 +0100
+++ /var/tmp/diff_new_pack.OsIdAI/_new  2015-10-25 19:13:09.0 +0100
@@ -32,6 +32,7 @@
 Source3:scap-yast2sec-xccdf.xml
 Source4:scap-yast2sec-oval.xml
 Patch0: fix-missing-include.dif
+Patch1: openscap-new-inventory.patch
 Url:http://www.open-scap.org/
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libacl-devel
@@ -148,6 +149,7 @@
 %prep
 %setup -q
 %patch0 -p1 
+%patch1 -p1 
 
 %build
 

++ openscap-new-inventory.patch ++
Index: openscap-1.2.6/cpe/openscap-cpe-dict.xml
===
--- openscap-1.2.6.orig/cpe/openscap-cpe-dict.xml
+++ openscap-1.2.6/cpe/openscap-cpe-dict.xml
@@ -77,7 +77,50 @@
 Fedora 24
 http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.fedora:def:24
   
-
+  
+SUSE Linux Enterprise all versions
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sle:def:1
+  
+  
+SUSE Linux Enterprise Server 10
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sles:def:10
+  
+  
+SUSE Linux Enterprise Desktop 10
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sled:def:10
+  
+  
+SUSE Linux Enterprise Server 11
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sles:def:11
+  
+  
+SUSE Linux Enterprise Desktop 11
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sled:def:11
+  
+  
+SUSE Linux Enterprise Server 12
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sles:def:12
+  
+  
+SUSE Linux Enterprise Desktop 12
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.sled:def:12
+  
+  
+openSUSE 11.4
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:114
+  
+  
+openSUSE 13.1
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:131
+  
+  
+openSUSE 13.2
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:132
+  
+  
+openSUSE All Versions
+http://oval.mitre.org/XMLSchema/oval-definitions-5; 
href="openscap-cpe-oval.xml">oval:org.open-scap.cpe.opensuse:def:1
+  
   
   
 Red Hat Enterprise Linux Optional 
Productivity Applications
Index: openscap-1.2.6/cpe/openscap-cpe-oval.xml
===
--- openscap-1.2.6.orig/cpe/openscap-cpe-oval.xml
+++ openscap-1.2.6/cpe/openscap-cpe-oval.xml
@@ -278,6 +278,175 @@
 
   
 
+
+
+  
+SUSE Linux Enterprise All Platforms
+
+SUSE Linux Enterprise All 
Platforms
+
+
+The operating system installed on the 
system is SUSE Linux Enterprise
+  
+  
+
+   
+   
+   
+   
+   

commit texmaker for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package texmaker for openSUSE:Factory 
checked in at 2015-10-25 19:13:09

Comparing /work/SRC/openSUSE:Factory/texmaker (Old)
 and  /work/SRC/openSUSE:Factory/.texmaker.new (New)


Package is "texmaker"

Changes:

--- /work/SRC/openSUSE:Factory/texmaker/texmaker.changes2015-08-15 
11:39:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.texmaker.new/texmaker.changes   2015-10-25 
19:13:11.0 +0100
@@ -1,0 +2,7 @@
+Mon Oct 19 09:57:54 UTC 2015 - badshah...@gmail.com
+
+- Add texmaker-include-qdatastream-header.patch to include
+  the QDataStream header where appropriate; fixes build failures
+  with Qt >= 5.5 (now in Factory).
+
+---

New:

  texmaker-include-qdatastream-header.patch



Other differences:
--
++ texmaker.spec ++
--- /var/tmp/diff_new_pack.A6WndU/_old  2015-10-25 19:13:12.0 +0100
+++ /var/tmp/diff_new_pack.A6WndU/_new  2015-10-25 19:13:12.0 +0100
@@ -26,6 +26,8 @@
 Source: http://www.xm1math.net/texmaker/texmaker-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM texmaker-correct-doc-location.patch badshah...@gmail.com 
-- Handle doc files in the spec file rather than placing them in %%{_datadir} 
during compilation
 Patch1: texmaker-correct-doc-location.patch
+# PATCH-FIX-UPSTREAM texmaker-include-qdatastream-header.patch 
badshah...@gmail.com -- Include the qdatasream header to prevent build failures 
with Qt >= 5.5
+Patch2: texmaker-include-qdatastream-header.patch
 BuildRequires:  fdupes
 BuildRequires:  update-desktop-files
 %if 0%{?suse_version} == 1315
@@ -58,6 +60,9 @@
 %prep
 %setup -q
 %patch1 -p1
+%if 0%{?suse_version} > 1320
+%patch2 -p1
+%endif
 
 %build
 %if 0%{?suse_version} == 1315

++ texmaker-include-qdatastream-header.patch ++
Index: texmaker-4.4.1/singleapp/qtlocalpeer.cpp
===
--- texmaker-4.4.1.orig/singleapp/qtlocalpeer.cpp
+++ texmaker-4.4.1/singleapp/qtlocalpeer.cpp
@@ -42,6 +42,7 @@
 #include "qtlocalpeer.h"
 #include 
 #include 
+#include 
 
 #if defined(Q_OS_WIN)
 #include 



commit rubygem-mixlib-shellout for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-mixlib-shellout for 
openSUSE:Factory checked in at 2015-10-25 19:13:28

Comparing /work/SRC/openSUSE:Factory/rubygem-mixlib-shellout (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-mixlib-shellout.new (New)


Package is "rubygem-mixlib-shellout"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-mixlib-shellout/rubygem-mixlib-shellout.changes
  2015-09-27 08:38:53.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mixlib-shellout.new/rubygem-mixlib-shellout.changes
 2015-10-25 19:13:30.0 +0100
@@ -1,0 +2,12 @@
+Sat Oct 24 04:30:04 UTC 2015 - co...@suse.com
+
+- updated to version 2.2.3
+  no changelog found
+
+---
+Tue Oct 20 04:29:49 UTC 2015 - co...@suse.com
+
+- updated to version 2.2.2
+  no changelog found
+
+---

Old:

  mixlib-shellout-2.2.1.gem

New:

  mixlib-shellout-2.2.3.gem



Other differences:
--
++ rubygem-mixlib-shellout.spec ++
--- /var/tmp/diff_new_pack.zYzOOp/_old  2015-10-25 19:13:31.0 +0100
+++ /var/tmp/diff_new_pack.zYzOOp/_new  2015-10-25 19:13:31.0 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-mixlib-shellout
-Version:2.2.1
+Version:2.2.3
 Release:0
 %define mod_name mixlib-shellout
 %define mod_full_name %{mod_name}-%{version}

++ mixlib-shellout-2.2.1.gem -> mixlib-shellout-2.2.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 1970-01-01 01:00:00.0 +0100
+++ new/Gemfile 2015-10-23 01:48:41.0 +0200
@@ -0,0 +1,12 @@
+source 'https://rubygems.org'
+
+gemspec :name => "mixlib-shellout"
+
+group(:test) do
+  gem "rspec_junit_formatter"
+  gem 'rake'
+end
+
+group(:development) do
+  gem 'pry'
+end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile1970-01-01 01:00:00.0 +0100
+++ new/Rakefile2015-10-23 01:48:41.0 +0200
@@ -0,0 +1,24 @@
+require 'rspec/core/rake_task'
+require 'rubygems/package_task'
+require 'mixlib/shellout/version'
+
+Dir[File.expand_path("../*gemspec", __FILE__)].reverse.each do |gemspec_path|
+  gemspec = eval(IO.read(gemspec_path))
+  Gem::PackageTask.new(gemspec).define
+end
+
+desc "Run all specs in spec directory"
+RSpec::Core::RakeTask.new(:spec) do |t|
+  t.pattern = FileList['spec/**/*_spec.rb']
+end
+
+desc "Build it and ship it"
+task ship: [:clobber_package, :gem] do
+  sh("git tag #{Mixlib::ShellOut::VERSION}")
+  sh("git push opscode --tags")
+  Dir[File.expand_path("../pkg/*.gem", __FILE__)].reverse.each do |built_gem|
+sh("gem push #{built_gem}")
+  end
+end
+
+task default: :spec
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mixlib/shellout/version.rb 
new/lib/mixlib/shellout/version.rb
--- old/lib/mixlib/shellout/version.rb  2015-09-12 00:55:24.0 +0200
+++ new/lib/mixlib/shellout/version.rb  2015-10-23 01:48:41.0 +0200
@@ -1,5 +1,5 @@
 module Mixlib
   class ShellOut
-VERSION = "2.2.1"
+VERSION = "2.2.3"
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/mixlib/shellout/windows/core_ext.rb 
new/lib/mixlib/shellout/windows/core_ext.rb
--- old/lib/mixlib/shellout/windows/core_ext.rb 2015-09-12 00:55:24.0 
+0200
+++ new/lib/mixlib/shellout/windows/core_ext.rb 2015-10-23 01:48:41.0 
+0200
@@ -21,6 +21,8 @@
 
 # Add new constants for Logon
 module Process::Constants
+  private
+
   LOGON32_LOGON_INTERACTIVE = 0x0002
   LOGON32_PROVIDER_DEFAULT  = 0x
   UOI_NAME = 0x0002
@@ -34,16 +36,6 @@
 
 # Define the functions needed to check with Service windows station
 module Process::Functions
-  module FFI::Library
-# Wrapper method for attach_function + private
-def attach_pfunc(*args)
-  attach_function(*args)
-  private args[0]
-end
-  end
-
-  extend FFI::Library
-
   ffi_lib :advapi32
 
   attach_pfunc :LogonUserW,
@@ -64,315 +56,316 @@
 
 # Override Process.create to check for running in the Service window station 
and doing
 # a full logon with LogonUser, instead of a CreateProcessWithLogon
+# Cloned from 
https://github.com/djberg96/win32-process/blob/ffi/lib/win32/process.rb
+# as of 2015-10-15 from commit cc066e5df25048f9806a610f54bf5f7f253e86f7
 module Process
-  include Process::Constants
-  include Process::Structs
 
-  def create(args)
-unless 

commit rubygem-rails-i18n for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rails-i18n for 
openSUSE:Factory checked in at 2015-10-25 19:13:14

Comparing /work/SRC/openSUSE:Factory/rubygem-rails-i18n (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-rails-i18n.new (New)


Package is "rubygem-rails-i18n"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rails-i18n/rubygem-rails-i18n.changes
2015-09-19 09:54:42.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rails-i18n.new/rubygem-rails-i18n.changes   
2015-10-25 19:13:16.0 +0100
@@ -1,0 +2,15 @@
+Fri Oct 23 04:33:00 UTC 2015 - co...@suse.com
+
+- updated to version 4.0.6
+ see installed CHANGELOG.md
+
+  ## 4.0.6 (2015-10-23)
+  - Depend on i18n (~> 0.7)
+  - Update Indonesian (id)
+  - Update German (de)
+  - Update Spanish (es)
+  - Update Russian (ru) - Revert "bringing the month names to uppercase"
+  - Update Turkish (tr) - Use turkish lira symbol instead of TL
+  - Update Dutch (nl)
+
+---

Old:

  rails-i18n-4.0.5.gem

New:

  rails-i18n-4.0.6.gem



Other differences:
--
++ rubygem-rails-i18n.spec ++
--- /var/tmp/diff_new_pack.N2jodU/_old  2015-10-25 19:13:17.0 +0100
+++ /var/tmp/diff_new_pack.N2jodU/_new  2015-10-25 19:13:17.0 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-rails-i18n
-Version:4.0.5
+Version:4.0.6
 Release:0
 %define mod_name rails-i18n
 %define mod_full_name %{mod_name}-%{version}

++ rails-i18n-4.0.5.gem -> rails-i18n-4.0.6.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2015-09-06 12:48:50.0 +0200
+++ new/CHANGELOG.md2015-10-23 03:05:08.0 +0200
@@ -1,3 +1,12 @@
+## 4.0.6 (2015-10-23)
+- Depend on i18n (~> 0.7)
+- Update Indonesian (id)
+- Update German (de)
+- Update Spanish (es)
+- Update Russian (ru) - Revert "bringing the month names to uppercase"
+- Update Turkish (tr) - Use turkish lira symbol instead of TL
+- Update Dutch (nl)
+
 ## 4.0.5 (2015-09-06)
 - Update Portuguese (pt)
 - Update Korean (ko)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2015-09-06 12:48:50.0 +0200
+++ new/README.md   2015-10-23 03:05:08.0 +0200
@@ -51,22 +51,40 @@
 
 Available locales are:
 
-> af, ar, az, bg, bn, bs, ca, cs, cy, da, de, de-AT, de-CH, el, en, en-AU, 
en-CA, en-GB, en-IE, en-IN, en-NZ, en-US, en-ZA, eo,
-> es, es-419, es-AR, es-CL, es-CO, es-CR, es-EC, es-MX, es-PA, es-PE, es-US, 
es-VE, et, eu, fa, fi, fr, fr-CA, fr-CH, gl,
-> he, hi, hi-IN, hr, hu, id, is, it, it-CH, ja, km, kn, ko, lo, lt, lv, mk, 
mn, mr-IN, ms, nb,
-> ne, nl, nn, or, pl, pt, pt-BR, rm, ro, ru, sk, sl, sr, sv, sw, ta, th,
-> tl, tr, tt, uk, ug, ur, uz, vi, wo, zh-CN, zh-HK, zh-TW, zh-YUE
+> af, ar, az, be, bg, bn, bs, ca, cs, cy, da, de, de-AT, de-CH, el,
+> en, en-AU, en-CA, en-GB, en-IE, en-IN, en-NZ, en-US, en-ZA, eo, es,
+> es-419, es-AR, es-CL, es-CO, es-CR, es-EC, es-MX, es-PA, es-PE, es-US, es-VE,
+> et, eu, fa, fi, fr, fr-CA, fr-CH, gl, he, hi, hi-IN, hr, hu, id, is, it,
+> it-CH, ja, km, kn, ko, lb, lo, lt, lv, mk, mn, mr-IN, ms, nb, ne, nl, nn, or,
+> pl, pt, pt-BR, rm, ro, ru, sk, sl, sr, sv, sw, ta, th, tl, tr, tt, ug, uk, 
ur,
+> uz, vi, wo, zh-CN, zh-HK, zh-TW, zh-YUE
 
-Currently, only a few are complete. Typically they lack the following keys:
+Currently, no locales are complete. Typically they lack the following keys:
 
 - `activerecord.errors.messages.record_invalid`
 - `activerecord.errors.messages.restrict_dependent_destroy`
 
-Complete loacales are:
+We always welcome your contributions!
 
-> en, sv
+## Currency symbols
 
-We always welcome your contributions!
+Some locales have the symbol of the currency (e.g. `€`) under the key 
`number.currency.format.unit`,
+while others have the code (e.g. `CHF`). The value of the key depends on the 
widespread adoption of
+the unicode currency symbols by fonts.
+
+For example the Turkish Lira sign (`₺`) was recently added in Unicode 6.2 and 
while most popular
+fonts have a glyph, there are still many fonts that will not render the 
character correctly.
+
+If you want to provide a different value, in a Rails app, you can create your 
own locale file under
+`config/locales/tr.yml` and override the respective key:
+
+```YAML
+tr:
+  number:
+currency:
+  format:
+unit: TL
+```
 
 ## How to contribute
 
@@ -95,11 +113,11 @@
 
 Before committing and pushing your changes, test the integrity of your locale 
file.
 
-rake spec
+bundle exec rake spec
 
 Make 

commit python3-pymongo for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package python3-pymongo for openSUSE:Factory 
checked in at 2015-10-25 19:13:22

Comparing /work/SRC/openSUSE:Factory/python3-pymongo (Old)
 and  /work/SRC/openSUSE:Factory/.python3-pymongo.new (New)


Package is "python3-pymongo"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pymongo/python3-pymongo.changes  
2015-08-05 06:49:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pymongo.new/python3-pymongo.changes 
2015-10-25 19:13:26.0 +0100
@@ -1,0 +2,5 @@
+Thu Oct 22 15:33:42 UTC 2015 - dval...@suse.com
+
+- Enable ppc64le architecture 
+
+---



Other differences:
--
++ python3-pymongo.spec ++
--- /var/tmp/diff_new_pack.RTTidj/_old  2015-10-25 19:13:27.0 +0100
+++ /var/tmp/diff_new_pack.RTTidj/_new  2015-10-25 19:13:27.0 +0100
@@ -32,7 +32,7 @@
 #BuildRequires:  python-nose
 Suggests:   mongodb
 #currently mongodb is available only for little-endian CPU
-ExclusiveArch:  %{ix86} x86_64
+ExclusiveArch:  %{ix86} x86_64 ppc64le
 
 %description
 The PyMongo distribution contains tools for interacting with MongoDB




commit pugixml for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package pugixml for openSUSE:Factory checked 
in at 2015-10-25 19:12:59

Comparing /work/SRC/openSUSE:Factory/pugixml (Old)
 and  /work/SRC/openSUSE:Factory/.pugixml.new (New)


Package is "pugixml"

Changes:

--- /work/SRC/openSUSE:Factory/pugixml/pugixml.changes  2015-10-19 
22:49:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.pugixml.new/pugixml.changes 2015-10-25 
19:13:01.0 +0100
@@ -1,0 +2,27 @@
+Wed Oct 21 09:26:33 UTC 2015 - idon...@suse.com
+
+- Update to version 1.7
+  * New integer parsing/formatting implementation
++ Functions that convert from and to integers (e.g. as_int/set_value)
+  do not rely on CRT any more.
++ New implementation is 3-5x faster and is always correct wrt
+  overflow or underflow. This is a behavior change - where previously
+  as_uint() would return UINT_MAX on a value "-1", it now returns 0.
+  * New features
++ XPath objects (xpath_query, xpath_node_set, xpath_variable_set)
+  are now movable if your compiler supports C++11. Additionally,
+  xpath_variable_set is copyable.
++ Added format_indent_attributes that makes the resulting XML friendlier
+  to line diff/merge tools.
++ Added a variant of xml_node::attribute function with a hint that
+  can improve lookup performance.
++ Custom allocation functions are now allowed (but not required)
+  to throw instead of returning a null pointer.
+  * Bug fixes
++ Fix Clang 3.7 crashes in out-of-memory cases (C++ DR 1748)
++ Fix xpath_node_set assignment to provide strong exception guarantee
++ Fix saving for custom xml_writer implementations that can throw from 
write()
+- Add pugixml-config.patch to enable long long support, works better than
+  enabling via build flags.
+
+---

Old:

  pugixml-1.6.tar.gz

New:

  pugixml-1.7.tar.gz
  pugixml-config.patch



Other differences:
--
++ pugixml.spec ++
--- /var/tmp/diff_new_pack.Xf04XA/_old  2015-10-25 19:13:01.0 +0100
+++ /var/tmp/diff_new_pack.Xf04XA/_new  2015-10-25 19:13:01.0 +0100
@@ -18,13 +18,14 @@
 
 %define _libname libpugixml1
 Name:   pugixml
-Version:1.6
+Version:1.7
 Release:0
 Summary:Light-weight C++ XML Processing Library
 License:MIT
 Group:  System/Libraries
 Url:http://pugixml.org/
 Source0:
https://github.com/zeux/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.gz
+Patch1: pugixml-config.patch
 BuildRequires:  cmake
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -69,10 +70,11 @@
 
 %prep
 %setup -q
+%patch1 -p1
 
 %build
 cd scripts
-%cmake -DBUILD_DEFINES="-DPUGIXML_HAS_LONG_LONG"
+%cmake
 make %{?_smp_mflags}
 
 %install

++ pugixml-1.6.tar.gz -> pugixml-1.7.tar.gz ++
 4707 lines of diff (skipped)

++ pugixml-config.patch ++
Index: pugixml-1.7/src/pugiconfig.hpp
===
--- pugixml-1.7.orig/src/pugiconfig.hpp
+++ pugixml-1.7/src/pugiconfig.hpp
@@ -44,7 +44,7 @@
 // #define PUGIXML_HEADER_ONLY
 
 // Uncomment this to enable long long support
-// #define PUGIXML_HAS_LONG_LONG
+#define PUGIXML_HAS_LONG_LONG
 
 #endif
 



commit ansible for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package ansible for openSUSE:Factory checked 
in at 2015-10-25 19:13:26

Comparing /work/SRC/openSUSE:Factory/ansible (Old)
 and  /work/SRC/openSUSE:Factory/.ansible.new (New)


Package is "ansible"

Changes:

--- /work/SRC/openSUSE:Factory/ansible/ansible.changes  2015-10-20 
00:08:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.ansible.new/ansible.changes 2015-10-25 
19:13:29.0 +0100
@@ -24,0 +25,6 @@
+Sat Sep 26 14:01:30 UTC 2015 - m0...@samaxi.de
+
+- Added fix_zypper_errorhandling.patch as it`s have not been accepted
+  upstream, in lack of an reviewer. See patch for more comments
+
+---

New:

  fix_zypper_errorhandling.patch



Other differences:
--
++ ansible.spec ++
--- /var/tmp/diff_new_pack.YGXZqk/_old  2015-10-25 19:13:30.0 +0100
+++ /var/tmp/diff_new_pack.YGXZqk/_new  2015-10-25 19:13:30.0 +0100
@@ -27,6 +27,8 @@
 Url:http://ansible.com/
 Source: 
https://pypi.python.org/packages/source/a/ansible/ansible-%{version}.tar.gz
 Source99:   ansible-rpmlintrc
+Patch0: fix_zypper_errorhandling.patch
+
 %if 0%{?suse_version}
 %if 0%{?suse_version} >= 01130
 BuildRequires:  python-paramiko
@@ -78,6 +80,7 @@
 
 %prep
 %setup -q -n ansible-%{version}
+%patch0 -p1
 
 %build
 python setup.py build

++ fix_zypper_errorhandling.patch ++
diff --git a/lib/ansible/modules/extras/packaging/os/zypper.py 
b/lib/ansible/modules/extras/packaging/os/zypper.py
index 196a7e2..7f63482 100644
--- a/lib/ansible/modules/extras/packaging/os/zypper.py
+++ b/lib/ansible/modules/extras/packaging/os/zypper.py
@@ -192,6 +192,11 @@ def package_latest(m, name, installed_state, 
disable_gpg_check, disable_recommen
 cmd.extend(name)
 rc, stdout, stderr = m.run_command(cmd, check_rc=False)
 
+# return if an error occured while installation
+# otherwise error messages will be lost and user doesn`t see any error
+if rc:
+return (rc, stdout, stderr, changed)
+
 # if we've already made a change, we don't have to check whether a version 
changed
 if not changed:
 post_upgrade_versions = get_current_version(m, name)



commit ghc-conduit for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package ghc-conduit for openSUSE:Factory 
checked in at 2015-10-25 19:13:34

Comparing /work/SRC/openSUSE:Factory/ghc-conduit (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-conduit.new (New)


Package is "ghc-conduit"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-conduit/ghc-conduit.changes  2015-08-05 
06:50:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-conduit.new/ghc-conduit.changes 
2015-10-25 19:13:35.0 +0100
@@ -1,0 +2,5 @@
+Sun Oct 25 07:55:05 UTC 2015 - mimi...@gmail.com
+
+- update to 1.2.5.1
+
+---

Old:

  conduit-1.2.5.tar.gz

New:

  conduit-1.2.5.1.tar.gz



Other differences:
--
++ ghc-conduit.spec ++
--- /var/tmp/diff_new_pack.rV3d4H/_old  2015-10-25 19:13:35.0 +0100
+++ /var/tmp/diff_new_pack.rV3d4H/_new  2015-10-25 19:13:35.0 +0100
@@ -19,7 +19,7 @@
 %global pkg_name conduit
 
 Name:   ghc-conduit
-Version:1.2.5
+Version:1.2.5.1
 Release:0
 Summary:Streaming data processing library
 License:MIT

++ conduit-1.2.5.tar.gz -> conduit-1.2.5.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-1.2.5/Data/Conduit/Internal/Conduit.hs 
new/conduit-1.2.5.1/Data/Conduit/Internal/Conduit.hs
--- old/conduit-1.2.5/Data/Conduit/Internal/Conduit.hs  2015-07-23 
16:05:01.0 +0200
+++ new/conduit-1.2.5.1/Data/Conduit/Internal/Conduit.hs2015-10-18 
07:20:06.0 +0200
@@ -1,4 +1,5 @@
 {-# OPTIONS_HADDOCK not-home #-}
+{-# LANGUAGE DeriveFunctor #-}
 {-# LANGUAGE FlexibleInstances #-}
 {-# LANGUAGE FlexibleContexts #-}
 {-# LANGUAGE CPP #-}
@@ -6,8 +7,7 @@
 {-# LANGUAGE UndecidableInstances #-}
 {-# LANGUAGE RankNTypes #-}
 {-# LANGUAGE TupleSections #-}
-{-# LANGUAGE GeneralizedNewtypeDeriving #-}
-{-# LANGUAGE ImpredicativeTypes #-}
+{-# LANGUAGE Trustworthy #-}
 module Data.Conduit.Internal.Conduit
 ( -- ** Types
   ConduitM (..)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-1.2.5/Data/Conduit/Internal/Fusion.hs 
new/conduit-1.2.5.1/Data/Conduit/Internal/Fusion.hs
--- old/conduit-1.2.5/Data/Conduit/Internal/Fusion.hs   2015-07-23 
16:05:01.0 +0200
+++ new/conduit-1.2.5.1/Data/Conduit/Internal/Fusion.hs 2015-10-18 
07:20:06.0 +0200
@@ -2,6 +2,7 @@
 {-# LANGUAGE RankNTypes #-}
 {-# LANGUAGE BangPatterns #-}
 {-# LANGUAGE DeriveFunctor #-}
+{-# LANGUAGE Trustworthy #-}
 module Data.Conduit.Internal.Fusion
 ( -- ** Types
   Step (..)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-1.2.5/Data/Conduit/Internal/List/Stream.hs 
new/conduit-1.2.5.1/Data/Conduit/Internal/List/Stream.hs
--- old/conduit-1.2.5/Data/Conduit/Internal/List/Stream.hs  2015-07-23 
16:05:01.0 +0200
+++ new/conduit-1.2.5.1/Data/Conduit/Internal/List/Stream.hs2015-10-18 
07:20:06.0 +0200
@@ -1,6 +1,7 @@
 {-# LANGUAGE BangPatterns #-}
 {-# LANGUAGE TupleSections #-}
 {-# LANGUAGE RankNTypes #-}
+{-# LANGUAGE Trustworthy #-}
 module Data.Conduit.Internal.List.Stream where
 
 import   Control.Monad (liftM)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-1.2.5/Data/Conduit/Internal/Pipe.hs 
new/conduit-1.2.5.1/Data/Conduit/Internal/Pipe.hs
--- old/conduit-1.2.5/Data/Conduit/Internal/Pipe.hs 2015-07-23 
16:05:01.0 +0200
+++ new/conduit-1.2.5.1/Data/Conduit/Internal/Pipe.hs   2015-10-18 
07:20:06.0 +0200
@@ -6,8 +6,8 @@
 {-# LANGUAGE UndecidableInstances #-}
 {-# LANGUAGE RankNTypes #-}
 {-# LANGUAGE TupleSections #-}
-{-# LANGUAGE GeneralizedNewtypeDeriving #-}
 {-# LANGUAGE ImpredicativeTypes #-}
+{-# LANGUAGE Trustworthy #-}
 module Data.Conduit.Internal.Pipe
 ( -- ** Types
   Pipe (..)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-1.2.5/Data/Conduit/Internal.hs 
new/conduit-1.2.5.1/Data/Conduit/Internal.hs
--- old/conduit-1.2.5/Data/Conduit/Internal.hs  2015-07-23 16:05:01.0 
+0200
+++ new/conduit-1.2.5.1/Data/Conduit/Internal.hs2015-10-18 
07:20:06.0 +0200
@@ -1,3 +1,4 @@
+{-# LANGUAGE Safe #-}
 {-# OPTIONS_HADDOCK not-home #-}
 module Data.Conduit.Internal
 ( -- * Pipe
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-1.2.5/Data/Conduit/Lift.hs 
new/conduit-1.2.5.1/Data/Conduit/Lift.hs
--- old/conduit-1.2.5/Data/Conduit/Lift.hs  2015-07-23 16:05:01.0 
+0200
+++ new/conduit-1.2.5.1/Data/Conduit/Lift.hs

commit rubygem-childprocess for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-childprocess for 
openSUSE:Factory checked in at 2015-10-25 19:13:30

Comparing /work/SRC/openSUSE:Factory/rubygem-childprocess (Old)
 and  /work/SRC/openSUSE:Factory/.rubygem-childprocess.new (New)


Package is "rubygem-childprocess"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-childprocess/rubygem-childprocess.changes
2015-04-10 09:53:50.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-childprocess.new/rubygem-childprocess.changes
   2015-10-25 19:13:31.0 +0100
@@ -1,0 +2,6 @@
+Sat Oct 24 04:28:47 UTC 2015 - co...@suse.com
+
+- updated to version 0.5.7
+  no changelog found
+
+---

Old:

  childprocess-0.5.6.gem

New:

  childprocess-0.5.7.gem



Other differences:
--
++ rubygem-childprocess.spec ++
--- /var/tmp/diff_new_pack.V6NAuJ/_old  2015-10-25 19:13:32.0 +0100
+++ /var/tmp/diff_new_pack.V6NAuJ/_new  2015-10-25 19:13:32.0 +0100
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-childprocess
-Version:0.5.6
+Version:0.5.7
 Release:0
 %define mod_name childprocess
 %define mod_full_name %{mod_name}-%{version}

++ childprocess-0.5.6.gem -> childprocess-0.5.7.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2015-04-08 15:44:37.0 +0200
+++ new/README.md   1970-01-01 01:00:00.0 +0100
@@ -153,6 +153,10 @@
 ChildProcess.build("ruby", "-S", "bundle")
 ```
 
+## Caveats
+
+* With JRuby on Unix, modifying `ENV["PATH"]` before using childprocess could 
lead to 'Command not found' errors, since JRuby is unable to modify the 
environemnt used for PATH searches in `java.lang.ProcessBuilder`. This can be 
avoided by setting `ChildProcess.posix_spawn = true`.
+
 # Implementation
 
 How the process is launched and killed depends on the platform:
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/childprocess/unix/posix_spawn_process.rb 
new/lib/childprocess/unix/posix_spawn_process.rb
--- old/lib/childprocess/unix/posix_spawn_process.rb2015-04-08 
15:44:37.0 +0200
+++ new/lib/childprocess/unix/posix_spawn_process.rb1970-01-01 
01:00:00.0 +0100
@@ -14,20 +14,20 @@
 attrs   = Lib::Attrs.new
 
 if io.stdout
-  actions.add_dup fileno_for(io.stdout), fileno_for($stdout)
+  actions.add_dup fileno_for(io.stdout), fileno_for(STDOUT)
 else
-  actions.add_open fileno_for($stdout), "/dev/null", File::WRONLY, 0644
+  actions.add_open fileno_for(STDOUT), "/dev/null", File::WRONLY, 0644
 end
 
 if io.stderr
-  actions.add_dup fileno_for(io.stderr), fileno_for($stderr)
+  actions.add_dup fileno_for(io.stderr), fileno_for(STDERR)
 else
-  actions.add_open fileno_for($stderr), "/dev/null", File::WRONLY, 0644
+  actions.add_open fileno_for(STDERR), "/dev/null", File::WRONLY, 0644
 end
 
 if duplex?
   reader, writer = ::IO.pipe
-  actions.add_dup fileno_for(reader), fileno_for($stdin)
+  actions.add_dup fileno_for(reader), fileno_for(STDIN)
   actions.add_close fileno_for(writer)
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/childprocess/version.rb 
new/lib/childprocess/version.rb
--- old/lib/childprocess/version.rb 2015-04-08 15:44:37.0 +0200
+++ new/lib/childprocess/version.rb 1970-01-01 01:00:00.0 +0100
@@ -1,3 +1,3 @@
 module ChildProcess
-  VERSION = "0.5.6"
+  VERSION = "0.5.7"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2015-04-08 15:44:37.0 +0200
+++ new/metadata1970-01-01 01:00:00.0 +0100
@@ -1,89 +1,89 @@
 --- !ruby/object:Gem::Specification
 name: childprocess
 version: !ruby/object:Gem::Version
-  version: 0.5.6
+  version: 0.5.7
 platform: ruby
 authors:
 - Jari Bakken
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-04-08 00:00:00.0 Z
+date: 2015-10-23 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rspec
   requirement: !ruby/object:Gem::Requirement
 requirements:
-- - "~>"
+- - ~>
   - !ruby/object:Gem::Version
 version: 3.0.0
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
-- - "~>"
+- - ~>
   - 

commit glib2 for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package glib2 for openSUSE:Factory checked 
in at 2015-10-25 19:12:31

Comparing /work/SRC/openSUSE:Factory/glib2 (Old)
 and  /work/SRC/openSUSE:Factory/.glib2.new (New)


Package is "glib2"

Changes:

--- /work/SRC/openSUSE:Factory/glib2/glib2.changes  2015-10-06 
16:23:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.glib2.new/glib2.changes 2015-10-25 
19:12:35.0 +0100
@@ -1,0 +2,31 @@
+Tue Oct 20 17:03:40 CEST 2015 - r...@suse.de
+
+- Add glib2-remove_fam_debug_print.patch: remove debug output
+  "II 1" from the fam monitor (boo#951221, bgo#756879).
+
+---
+Wed Oct 14 15:36:13 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.46.1:
+  + Remove system_header pragma (should fix lack of warnings with
+things like g_return_if_fail).
+  + Move GStrv typedef (and auto-cleanup) from libgobject to
+libglib.
+  + Fix order of trashing files to be closer to what is required in
+the specification. Namely, trashinfo files are written first.
+This should fix issues with the gvfs trash backend failing to
+correctly read the info for recently trashed files (preventing
+'restore').
+  + Tweak mime logic to return text/plain on all empty files
+instead of returning application/octet-stream. This includes
+files that have extensions that imply that they may be other
+types of files, which is a slight change of behaviour with
+respect to old GLib versions.
+  + Many win32 fixes.
+  + Many docs fixes.
+  + Bugs fixed: bgo#735754, bgo#743011, bgo#749161, bgo#751924,
+bgo#752837, bgo#753310, bgo#755083, bgo#755351, bgo#755355,
+bgo#755496, bgo#755795, bgo#756179, bgo#756251, bgo#756255.
+  + Updated translations.
+
+---

Old:

  glib-2.46.0.tar.xz

New:

  glib-2.46.1.tar.xz
  glib2-remove_fam_debug_print.patch



Other differences:
--
++ glib2.spec ++
--- /var/tmp/diff_new_pack.kRwugm/_old  2015-10-25 19:12:37.0 +0100
+++ /var/tmp/diff_new_pack.kRwugm/_new  2015-10-25 19:12:37.0 +0100
@@ -20,7 +20,7 @@
 
 Name:   glib2
 %define _name glib
-Version:2.46.0
+Version:2.46.1
 Release:0
 # FIXME: find out if tapsets should really be in devel package or in main 
package
 Summary:General-Purpose Utility Library
@@ -50,6 +50,8 @@
 Patch13:glib2-suppress-schema-deprecated-path-warning.patch
 # PATCH-FIX-OPENSUSE glib2-dbus-socket-path.patch bnc#845287 
dims...@opensuse.org -- Have gio look for the system dbus socket in /run 
instead of /var/run.
 Patch14:glib2-dbus-socket-path.patch
+# PATCH-FIX-UPSTREAM glib2-dbus-socket-path.patch boo#951221 bgo#756879 
r...@suse.de -- remove debug output "II 1" from the fam monitor
+Patch15:glib2-remove_fam_debug_print.patch
 BuildRequires:  automake
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  fdupes
@@ -258,6 +260,7 @@
 %patch11 -p1
 %patch13 -p1
 %patch14 -p1
+%patch15
 cp -a %{S:1} %{S:2} %{S:5} .
 cp -a %{S:4} gnome_defaults.conf
 if ! test -f %{_datadir}/aclocal/gtk-doc.m4 ; then

++ glib-2.46.0.tar.xz -> glib-2.46.1.tar.xz ++
/work/SRC/openSUSE:Factory/glib2/glib-2.46.0.tar.xz 
/work/SRC/openSUSE:Factory/.glib2.new/glib-2.46.1.tar.xz differ: char 26, line 1

++ glib2-remove_fam_debug_print.patch ++
--- gio/fam/gfamfilemonitor.c
+++ gio/fam/gfamfilemonitor.c
@@ -140,7 +140,7 @@
 
   g_mutex_unlock (_lock);
 
-  g_print ("II %d\n", fam_initialised);
+  /* g_print ("II %d\n", fam_initialised); */
 
   return fam_initialised;
 }



commit gnome-shell for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2015-10-25 19:12:24

Comparing /work/SRC/openSUSE:Factory/gnome-shell (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-shell.new (New)


Package is "gnome-shell"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2015-10-06 
16:32:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new/gnome-shell.changes 
2015-10-25 19:12:26.0 +0100
@@ -1,0 +2,15 @@
+Thu Oct 15 19:34:33 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Fix screen freezes when a notification is pushed (bgo#755425).
+  + Fix overzealous ellipsization in system status menu
+(bgo#708472).
+  + Hide app menu when disabled by setting (bgo#745919).
+  + Fix lightbox effect when animations are disabled (bgo#755827).
+  + Do not mark hotplug notifications as critical (bgo#657923).
+  + Fix icons getting cut off in dash (bgo#745649).
+  + Animate fullscreen/unfullscreen operations (bgo#707248).
+  + Misc. bug fixes: bgo#748919, bgo#674799, bgo#754581.
+  + Updated translations.
+
+---

Old:

  gnome-shell-3.18.0.tar.xz

New:

  gnome-shell-3.18.1.tar.xz



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.3uubsm/_old  2015-10-25 19:12:27.0 +0100
+++ /var/tmp/diff_new_pack.3uubsm/_new  2015-10-25 19:12:27.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-shell
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:GNOME Shell
 License:GPL-2.0+
@@ -57,7 +57,7 @@
 BuildRequires:  pkgconfig(libcroco-0.6) >= 0.6.8
 BuildRequires:  pkgconfig(libedataserver-1.2) >= 3.5.3
 BuildRequires:  pkgconfig(libgnome-menu-3.0) >= 3.5.3
-BuildRequires:  pkgconfig(libmutter) >= 3.18.0
+BuildRequires:  pkgconfig(libmutter) >= 3.18.1
 BuildRequires:  pkgconfig(libnm-glib)
 BuildRequires:  pkgconfig(libnm-gtk) >= 0.9.8
 BuildRequires:  pkgconfig(libnm-util) >= 0.9.8

++ gnome-shell-3.18.0.tar.xz -> gnome-shell-3.18.1.tar.xz ++
 29836 lines of diff (skipped)




commit at-spi2-core for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package at-spi2-core for openSUSE:Factory 
checked in at 2015-10-25 19:12:18

Comparing /work/SRC/openSUSE:Factory/at-spi2-core (Old)
 and  /work/SRC/openSUSE:Factory/.at-spi2-core.new (New)


Package is "at-spi2-core"

Changes:

--- /work/SRC/openSUSE:Factory/at-spi2-core/at-spi2-core.changes
2015-10-06 16:32:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.at-spi2-core.new/at-spi2-core.changes   
2015-10-25 19:12:20.0 +0100
@@ -1,0 +2,10 @@
+Mon Oct 12 20:06:16 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.18.1:
+  + Don't crash if we get a children-changed event with a
+non-existent child (bgo#755951).
+  + atspi_hyperlink_get_index_range: don't return random values if
+the call fails (bgo#755727).
+  + Fixed some atspi_text_ functions (bgo#755731).
+
+---

Old:

  at-spi2-core-2.18.0.tar.xz

New:

  at-spi2-core-2.18.1.tar.xz



Other differences:
--
++ at-spi2-core.spec ++
--- /var/tmp/diff_new_pack.7j8r9Q/_old  2015-10-25 19:12:21.0 +0100
+++ /var/tmp/diff_new_pack.7j8r9Q/_new  2015-10-25 19:12:21.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   at-spi2-core
-Version:2.18.0
+Version:2.18.1
 Release:0
 Summary:Assistive Technology Service Provider Interface - D-Bus based 
implementation
 License:GPL-2.0+

++ at-spi2-core-2.18.0.tar.xz -> at-spi2-core-2.18.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/NEWS new/at-spi2-core-2.18.1/NEWS
--- old/at-spi2-core-2.18.0/NEWS2015-08-17 21:28:07.0 +0200
+++ new/at-spi2-core-2.18.1/NEWS2015-10-12 21:45:47.0 +0200
@@ -1,3 +1,13 @@
+What's new in at-spi2-core 2.18.1:
+
+* Don't crash if we get a children-changed event with a non-existent
+  child 9bgo#755951).
+
+* atspi_hyperlink_get_index_range: don't return random values if the
+  call fails (bgo#755727).
+
+* Fixed some atspi_text_ functions (bgo#755731).
+
 What's new in at-spi2-core 2.17.90:
 
 * Modified the cache API to specify an object's index and child count
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/atspi/atspi-event-listener.c 
new/at-spi2-core-2.18.1/atspi/atspi-event-listener.c
--- old/at-spi2-core-2.18.0/atspi/atspi-event-listener.c2015-08-15 
01:49:46.0 +0200
+++ new/at-spi2-core-2.18.1/atspi/atspi-event-listener.c2015-10-12 
20:31:16.0 +0200
@@ -207,6 +207,8 @@
 return;
 
   child = g_value_get_object (>any_data);
+  if (child)
+return;
 
   if (!strncmp (event->type, "object:children-changed:add", 27))
   {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/atspi/atspi-hyperlink.c 
new/at-spi2-core-2.18.1/atspi/atspi-hyperlink.c
--- old/at-spi2-core-2.18.0/atspi/atspi-hyperlink.c 2015-06-14 
17:42:53.0 +0200
+++ new/at-spi2-core-2.18.1/atspi/atspi-hyperlink.c 2015-10-12 
21:04:03.0 +0200
@@ -133,7 +133,8 @@
 AtspiRange *
 atspi_hyperlink_get_index_range (AtspiHyperlink *obj, GError **error)
 {
-  dbus_int32_t d_start_offset, d_end_offset;
+  dbus_int32_t d_start_offset = -1;
+  dbus_int32_t d_end_offset = -1;
   AtspiRange *ret = g_new (AtspiRange, 1);
 
   ret->start_offset = ret->end_offset = -1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/atspi/atspi-text.c 
new/at-spi2-core-2.18.1/atspi/atspi-text.c
--- old/at-spi2-core-2.18.0/atspi/atspi-text.c  2015-06-14 17:42:53.0 
+0200
+++ new/at-spi2-core-2.18.1/atspi/atspi-text.c  2015-10-12 21:20:12.0 
+0200
@@ -319,10 +319,14 @@
  GError **error)
 {
   gchar *retval = NULL;
+  dbus_int32_t d_i = offset;
 
   g_return_val_if_fail (obj != NULL, NULL);
 
-  _atspi_dbus_call (obj, atspi_interface_text, "GetAttributeValue", error, 
"i=>s", offset, );
+  _atspi_dbus_call (obj, atspi_interface_text, "GetAttributeValue", error, 
"is=>s", d_i, (const gchar *)attribute_value, );
+
+  if (!retval)
+retval = g_strdup ("");
 
   return retval;
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-core-2.18.0/configure 
new/at-spi2-core-2.18.1/configure
--- old/at-spi2-core-2.18.0/configure   2015-09-22 00:13:20.0 +0200
+++ new/at-spi2-core-2.18.1/configure   2015-10-12 21:46:12.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU 

commit libsodium for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package libsodium for openSUSE:Factory 
checked in at 2015-10-25 19:12:56

Comparing /work/SRC/openSUSE:Factory/libsodium (Old)
 and  /work/SRC/openSUSE:Factory/.libsodium.new (New)


Package is "libsodium"

Changes:

--- /work/SRC/openSUSE:Factory/libsodium/libsodium.changes  2015-10-20 
00:08:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsodium.new/libsodium.changes 2015-10-25 
19:12:57.0 +0100
@@ -1,0 +2,5 @@
+Wed Oct 21 07:06:19 UTC 2015 - idon...@suse.com
+
+- Now that gcc 5.2 is available on TW, remove the ARMv7 workaround. 
+
+---



Other differences:
--
++ libsodium.spec ++
--- /var/tmp/diff_new_pack.gpDMmS/_old  2015-10-25 19:12:58.0 +0100
+++ /var/tmp/diff_new_pack.gpDMmS/_new  2015-10-25 19:12:58.0 +0100
@@ -61,10 +61,6 @@
 %setup -q
 
 %build
-%ifarch %arm
-# "sign" test fails otherwise
-export CFLAGS="%{optflags} -fno-tree-vrp"
-%endif
 %configure --disable-static
 make %{?_smp_mflags} V=1
 




commit freeipmi for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package freeipmi for openSUSE:Factory 
checked in at 2015-10-25 19:13:12

Comparing /work/SRC/openSUSE:Factory/freeipmi (Old)
 and  /work/SRC/openSUSE:Factory/.freeipmi.new (New)


Package is "freeipmi"

Changes:

--- /work/SRC/openSUSE:Factory/freeipmi/freeipmi.changes2015-06-30 
10:16:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.freeipmi.new/freeipmi.changes   2015-10-25 
19:13:13.0 +0100
@@ -1,0 +2,19 @@
+Wed Oct 21 12:29:56 UTC 2015 - kkae...@suse.com
+
+- Fix SLE10 and RHEL5 builds
+
+---
+Wed Oct 21 07:40:59 UTC 2015 - kkae...@suse.com
+
+- Update to 1.4.10
+  o In ipmi-oem, support Supermicro get-power-supply-status2.
+  o In ipmi-locate, fix probing issue on arm32 & 64.
+  o Handle several additional completion code error message in
+libfreeipmi.
+  o Handle several error handling corner cases in ipmi-sensors.
+  o Support Intel E5 2600 V3 motherboard OEM SEL events.
+  o Fix several errors in ipmi-oem intelnm get-node-manager-statistics
+output.
+  o Fix logic errors in ipmi-oem intelnm set-node-manager-policy.
+
+---

Old:

  freeipmi-1.4.9.tar.gz
  freeipmi-1.4.9.tar.gz.sig

New:

  freeipmi-1.4.10.tar.gz
  freeipmi-1.4.10.tar.gz.sig



Other differences:
--
++ freeipmi.spec ++
--- /var/tmp/diff_new_pack.mhTisp/_old  2015-10-25 19:13:14.0 +0100
+++ /var/tmp/diff_new_pack.mhTisp/_new  2015-10-25 19:13:14.0 +0100
@@ -18,7 +18,7 @@
 
 
 %define name freeipmi
-%define version 1.4.9
+%define version 1.4.10
 %define srcversion %{version}
 %if %{?_with_debug:1}%{!?_with_debug:0}
 %define release 1.debug%{?dist}
@@ -127,11 +127,18 @@
 autoconf
 automake --gnu --include-deps --copy --add-missing
 %endif
-%if (0%{?fedora_version} > 0 && 0%{?fedora_version} < 21) || 
0%{?centos_version} || 0%{?rhel_version}
+
+# simple .spec expressions for SLE10
+
+%if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version}
+%if 0%{?fedora_version} < 21
 %define docpath %{_docdir}/%{name}-%{version}
 %else
 %define docpath %{_docdir}/%{name}
 %endif
+%else
+%define docpath %{_docdir}/%{name}
+%endif
 %configure --program-prefix=%{?_program_prefix:%{_program_prefix}} \
--docdir=%{docpath} \
%{?_enable_debug} --disable-static
@@ -142,9 +149,9 @@
 
 %if 0%{?fedora_version} || 0%{?centos_version} || 0%{?rhel_version} || 
0%{?fedora} || 0%{?rhel}
 # /etc/rc.d/init.d
-mkdir -p %{buildroot}/%{_initddir}
 # 'make install' installs to /etc/init.d
 # /etc/init.d -> /etc/rc.d/init.d
+mkdir -p %{buildroot}/%{_sysconfdir}/rc.d/init.d
 (cd %{buildroot}/%{_sysconfdir}; ln -s rc.d/init.d init.d)
 %endif
 

++ freeipmi-1.4.9.tar.gz -> freeipmi-1.4.10.tar.gz ++
 5287 lines of diff (skipped)





commit gcin for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gcin for openSUSE:Factory checked in 
at 2015-10-25 19:13:20

Comparing /work/SRC/openSUSE:Factory/gcin (Old)
 and  /work/SRC/openSUSE:Factory/.gcin.new (New)


Package is "gcin"

Changes:

--- /work/SRC/openSUSE:Factory/gcin/gcin.changes2015-10-06 
13:24:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.gcin.new/gcin.changes   2015-10-25 
19:13:23.0 +0100
@@ -1,0 +2,10 @@
+Fri Oct 23 08:50:18 UTC 2015 - g...@suse.com
+
+- Update to 2.8.4
+  + Switch to appindicator by default
+  + Changes: http://hyperrate.com/gcin-source/Changelog.html
+- Drop upstreamed fixes
+  + qt5gui-header-path-fix.patch
+  + plasma5-dirty-fix.patch
+
+---

Old:

  gcin-2.8.3.tar.xz
  plasma5-dirty-fix.patch
  qt5gui-header-path-fix.patch

New:

  gcin-2.8.4.tar.xz



Other differences:
--
++ gcin.spec ++
--- /var/tmp/diff_new_pack.K3ZcKY/_old  2015-10-25 19:13:24.0 +0100
+++ /var/tmp/diff_new_pack.K3ZcKY/_new  2015-10-25 19:13:24.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gcin
-Version:2.8.3
+Version:2.8.4
 Release:0
 Summary:Chinese input method server
 License:LGPL-2.1
@@ -40,10 +40,6 @@
 Patch5: gcin-keep-debug-symbols.patch
 # PATCH-FIX-UPSTREAM g...@suse.com - fix the Makefile dependency for parallel 
compiling
 Patch7: gcin-parallel-compiling.patch
-# PATCH-FIX-UPSTREAM rama...@gmail.com - Fix incorrect search path of Qt5Gui 
header
-Patch8: qt5gui-header-path-fix.patch
-# PATCH-FIX-UPSTREAM rama...@gmail.com - Plasma 5 starting dirty fix
-Patch9: plasma5-dirty-fix.patch
 BuildRequires:  anthy-devel
 BuildRequires:  fdupes
 BuildRequires:  gtk2-devel
@@ -162,10 +158,6 @@
 %patch4 -p1
 %patch5 -p1
 %patch7 -p1
-%if 0%{?suse_version} > 1310
-%patch8 -p1
-%patch9 -p1
-%endif
 cp -r %{SOURCE2} .
 cp -r %{SOURCE3} .
 

++ gcin-2.8.3.tar.xz -> gcin-2.8.4.tar.xz ++
 26700 lines of diff (skipped)




commit gnome-settings-daemon for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-settings-daemon for 
openSUSE:Factory checked in at 2015-10-25 19:12:44

Comparing /work/SRC/openSUSE:Factory/gnome-settings-daemon (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-settings-daemon.new (New)


Package is "gnome-settings-daemon"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-settings-daemon/gnome-settings-daemon.changes  
2015-10-06 16:25:52.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-settings-daemon.new/gnome-settings-daemon.changes
 2015-10-25 19:12:45.0 +0100
@@ -1,0 +2,15 @@
+Thu Oct 22 21:40:19 CEST 2015 - ti...@suse.de
+
+- Add gnome-settings-daemon-dont-override-xim-presets.patch: Don't
+  override QT_IM_MODULE and XMODIFIERS if already set (boo#947576,
+  bgo#757013).
+
+---
+Mon Oct 12 13:16:22 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Fix cursor-size changes being ignored.
+  + Build fixes.
+  + Updated translations.
+
+---

Old:

  gnome-settings-daemon-3.18.0.tar.xz

New:

  gnome-settings-daemon-3.18.1.tar.xz
  gnome-settings-daemon-dont-override-xim-presets.patch



Other differences:
--
++ gnome-settings-daemon.spec ++
--- /var/tmp/diff_new_pack.KKrnH9/_old  2015-10-25 19:12:46.0 +0100
+++ /var/tmp/diff_new_pack.KKrnH9/_new  2015-10-25 19:12:46.0 +0100
@@ -30,7 +30,7 @@
 %endif
 
 Name:   gnome-settings-daemon
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Settings daemon for the GNOME desktop
 License:GPL-2.0+
@@ -41,6 +41,8 @@
 Patch10:gnome-settings-daemon-bnc462640-mute-action.patch
 # PATCH-FEATURE-UPSTREAM gnome-settings-daemon-notify-idle-resumed.patch 
bnc#439018 bnc#708182 bgo#575467 h...@suse.com -- notify user about auto 
suspend when returning from sleep
 Patch19:gnome-settings-daemon-notify-idle-resumed.patch
+# PATCH-FIX-UPSTREAM gnome-settings-daemon-dont-override-xim-presets.patch 
boo#947576 bgo#757013 ti...@suse.com -- Don't overwrite XIM presets
+Patch20:gnome-settings-daemon-dont-override-xim-presets.patch
 BuildRequires:  cups-devel
 BuildRequires:  fdupes
 BuildRequires:  gnome-common
@@ -129,6 +131,7 @@
 #gnome-patch-translation-prepare
 %patch10 -p0
 %patch19 -p1
+%patch20 -p1
 
 %build
 autoreconf -f -i

++ gnome-settings-daemon-3.18.0.tar.xz -> 
gnome-settings-daemon-3.18.1.tar.xz ++
 11321 lines of diff (skipped)

++ gnome-settings-daemon-dont-override-xim-presets.patch ++
From: Takashi Iwai 
Subject: Don't override preset xim setups
References: boo#947576

When $QT_IM_MODULE or $XMODIFIERS has been already set beforehand,
we should honor it and not override brutally.  This makes GNOME as
a good citizen coping with other IMs more smoothly.

Signed-off-by: Takashi Iwai 

---
 gnome-settings-daemon/gnome-settings-daemon-localeexec.in |4 ++--
 gnome-settings-daemon/main.c  |   11 +--
 2 files changed, 11 insertions(+), 4 deletions(-)

--- a/gnome-settings-daemon/gnome-settings-daemon-localeexec.in
+++ b/gnome-settings-daemon/gnome-settings-daemon-localeexec.in
@@ -13,8 +13,8 @@ if [ -n "$REGION" ]; then
 fi
 
 if [ -x @prefix@/bin/ibus-daemon ]; then
-  export QT_IM_MODULE=ibus
-  export XMODIFIERS=@im=ibus
+  test -z "$QT_IM_MODULE" && export QT_IM_MODULE=ibus
+  test -z "$XMODIFIERS" && export XMODIFIERS=@im=ibus
 fi
 
 exec @libexecdir@/gnome-settings-daemon
--- a/gnome-settings-daemon/main.c
+++ b/gnome-settings-daemon/main.c
@@ -255,9 +255,16 @@ is_program_in_path (const char *binary)
 static void
 set_legacy_ibus_env_vars (GDBusProxy *proxy)
 {
+   const char *p;
 if (is_program_in_path ("ibus-daemon")) {
-set_session_env (proxy, "QT_IM_MODULE", "ibus");
-set_session_env (proxy, "XMODIFIERS", "@im=ibus");
+   p = getenv ("QT_IM_MODULE");
+   if (!p || !*p)
+p = "ibus";
+set_session_env (proxy, "QT_IM_MODULE", p);
+   p = getenv ("XMODIFIERS");
+   if (!p || !*p)
+p = "@im=ibus";
+set_session_env (proxy, "XMODIFIERS", p);
 }
 }
 



commit zenity for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package zenity for openSUSE:Factory checked 
in at 2015-10-25 19:12:04

Comparing /work/SRC/openSUSE:Factory/zenity (Old)
 and  /work/SRC/openSUSE:Factory/.zenity.new (New)


Package is "zenity"

Changes:

--- /work/SRC/openSUSE:Factory/zenity/zenity.changes2015-10-06 
16:23:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.zenity.new/zenity.changes   2015-10-25 
19:12:05.0 +0100
@@ -1,0 +2,16 @@
+Sat Oct 17 20:09:04 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1.1:
+  + Fix compilation when webkitgtk is not installed (bgo#756756).
+
+---
+Sat Oct 17 16:29:28 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Fixing GLib-CRITICAL messages.
+  + Fixing html option being parsed to other dialogs rather then
+text-info.
+  + Fixing glade file.
+  + Updated translations.
+
+---

Old:

  zenity-3.18.0.tar.xz

New:

  zenity-3.18.1.1.tar.xz



Other differences:
--
++ zenity.spec ++
--- /var/tmp/diff_new_pack.rLB3m6/_old  2015-10-25 19:12:07.0 +0100
+++ /var/tmp/diff_new_pack.rLB3m6/_new  2015-10-25 19:12:07.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   zenity
-Version:3.18.0
+Version:3.18.1.1
 Release:0
 Summary:GNOME Command Line Dialog Utility
 License:LGPL-2.1+

++ zenity-3.18.0.tar.xz -> zenity-3.18.1.1.tar.xz ++
 20461 lines of diff (skipped)




commit vinagre for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package vinagre for openSUSE:Factory checked 
in at 2015-10-25 19:08:25

Comparing /work/SRC/openSUSE:Factory/vinagre (Old)
 and  /work/SRC/openSUSE:Factory/.vinagre.new (New)


Package is "vinagre"

Changes:

--- /work/SRC/openSUSE:Factory/vinagre/vinagre.changes  2015-10-06 
16:31:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.vinagre.new/vinagre.changes 2015-10-25 
19:08:27.0 +0100
@@ -1,0 +2,11 @@
+Tue Oct 13 10:37:33 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Enabled font smoothing by default in RDP plugin.
+  + Accept IPv6 addresses.
+  + Updated translations.
+- Add vinagre-revert-font-smoothing.patch: Revert the font
+  smoothing as this relies on a new version of freerdp we do not
+  yet have in openSUSE.
+
+---

Old:

  vinagre-3.18.0.tar.xz

New:

  vinagre-3.18.1.tar.xz
  vinagre-revert-font-smoothing.patch



Other differences:
--
++ vinagre.spec ++
--- /var/tmp/diff_new_pack.HXbzXp/_old  2015-10-25 19:08:28.0 +0100
+++ /var/tmp/diff_new_pack.HXbzXp/_new  2015-10-25 19:08:28.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   vinagre
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:VNC client for GNOME
 License:GPL-2.0+
@@ -26,6 +26,8 @@
 Source0:
http://download.gnome.org/sources/vinagre/3.18/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE vinagre-revert-freerdp-versionbump.patch bgo#749124 
zai...@opensuse.org -- Upstream have moved on to newer versions of freerdp than 
we have in openSUSE. Since I can't be botherd to versionbump freerdp, just 
revert the commit.
 Patch0: vinagre-revert-freerdp-versionbump.patch
+# PATCH-FIX-OPENSUSE vinagre-revert-font-smoothing.patch zai...@opensuse.org 
-- This function relies on the new freerdp we do not have, hence revert of this 
is needed too.
+Patch1: vinagre-revert-font-smoothing.patch
 # The icon we rely on is from adwaita-icon-theme
 BuildRequires:  adwaita-icon-theme
 BuildRequires:  fdupes
@@ -64,8 +66,9 @@
 %prep
 %setup -q
 translation-update-upstream
-# Revert commit from upstream
+# Revert commits from upstream
 %patch0 -p1 -R
+%patch1 -p1 -R
 
 %build
 %configure --disable-static \

++ vinagre-3.18.0.tar.xz -> vinagre-3.18.1.tar.xz ++
 2026 lines of diff (skipped)

++ vinagre-revert-font-smoothing.patch ++
>From 2a066d2fa3c1c8e98652dcf0604c431149ed7123 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Em=C4=ABls=20Pi=C5=86=C4=B7is?= 
Date: Tue, 6 Oct 2015 16:33:38 +0100
Subject: Enabled font smoothing by default in RDP plugin

---
 plugins/rdp/vinagre-rdp-tab.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/plugins/rdp/vinagre-rdp-tab.c b/plugins/rdp/vinagre-rdp-tab.c
index 6900864..3205a67 100644
--- a/plugins/rdp/vinagre-rdp-tab.c
+++ b/plugins/rdp/vinagre-rdp-tab.c
@@ -1152,6 +1152,9 @@ open_freerdp (VinagreRdpTab *rdp_tab)
   freerdp_kbd_init (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), KBD_US);
 #endif
 
+  /* Allow font smoothing by default */
+  settings->AllowFontSmoothing = TRUE;
+
   /* Setup display for FreeRDP session */
   priv->display = gtk_drawing_area_new ();
   if (priv->display)
-- 
cgit v0.11.2




commit nautilus for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package nautilus for openSUSE:Factory 
checked in at 2015-10-25 19:08:33

Comparing /work/SRC/openSUSE:Factory/nautilus (Old)
 and  /work/SRC/openSUSE:Factory/.nautilus.new (New)


Package is "nautilus"

Changes:

--- /work/SRC/openSUSE:Factory/nautilus/nautilus.changes2015-10-14 
16:43:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.nautilus.new/nautilus.changes   2015-10-25 
19:08:35.0 +0100
@@ -1,0 +2,17 @@
+Thu Oct 15 19:10:47 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Multiple crash fixes.
+  + Use GtkPlacesSidebar hints to improve drag and drop experience.
+  + Fix remote filesystem check for google drive.
+  + Fix properties not being available on some file systems.
+  + Fix not being able to trash on some file systems.
+  + Fix calculation of operations button that was not showing soon
+enough in big operations.
+  + Get filesystem type asynchronously, so the view is never
+frozen.
+  + Make the delete shortcut also work for delete permanently on
+filesystem that does not support trash.
+  + Updated translations.
+
+---

Old:

  nautilus-3.18.0.tar.xz

New:

  nautilus-3.18.1.tar.xz



Other differences:
--
++ nautilus.spec ++
--- /var/tmp/diff_new_pack.aPEc7G/_old  2015-10-25 19:08:36.0 +0100
+++ /var/tmp/diff_new_pack.aPEc7G/_new  2015-10-25 19:08:36.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   nautilus
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:File Manager for the GNOME Desktop
 License:GPL-2.0+

++ nautilus-3.18.0.tar.xz -> nautilus-3.18.1.tar.xz ++
 41386 lines of diff (skipped)




commit vte for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package vte for openSUSE:Factory checked in 
at 2015-10-25 19:08:40

Comparing /work/SRC/openSUSE:Factory/vte (Old)
 and  /work/SRC/openSUSE:Factory/.vte.new (New)


Package is "vte"

Changes:

--- /work/SRC/openSUSE:Factory/vte/vte.changes  2015-10-06 16:33:47.0 
+0200
+++ /work/SRC/openSUSE:Factory/.vte.new/vte.changes 2015-10-25 
19:08:41.0 +0100
@@ -1,0 +2,13 @@
+Wed Oct 14 08:27:03 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.42.1:
+  + emulation:
+- Implement DECSET 1004.
+- Fix comment.
+  + widget:
+- Fix regex matches not always being recognized.
+- Fix painting the preedit text near the right margin.
+  + a11y: Emit missing space character insertion.
+  + Updated translations.
+
+---

Old:

  vte-0.42.0.tar.xz

New:

  vte-0.42.1.tar.xz



Other differences:
--
++ vte.spec ++
--- /var/tmp/diff_new_pack.aOtAFn/_old  2015-10-25 19:08:42.0 +0100
+++ /var/tmp/diff_new_pack.aOtAFn/_new  2015-10-25 19:08:42.0 +0100
@@ -24,7 +24,7 @@
 Name:   vte
 %define _name   vte
 Url:http://www.gnome.org
-Version:0.42.0
+Version:0.42.1
 Release:0
 Summary:Terminal Emulator Library
 License:LGPL-2.0 and GPL-2.0+

++ vte-0.42.0.tar.xz -> vte-0.42.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vte-0.42.0/ChangeLog new/vte-0.42.1/ChangeLog
--- old/vte-0.42.0/ChangeLog2015-09-22 13:57:57.0 +0200
+++ new/vte-0.42.1/ChangeLog2015-10-14 09:19:08.0 +0200
@@ -1,3 +1,65 @@
+commit dd0241edffee844e7d18c65cd36335285321a8b1
+Author: Christian Persch 
+Date:   Mon Oct 12 16:45:19 2015 +0200
+
+Version 0.42.1
+
+ NEWS | 9 +
+ 1 file changed, 9 insertions(+)
+
+commit b9597d6fe5accf929db5cd71daf524ba540edcf3
+Author: Samuel Thibault 
+Date:   Thu Oct 1 01:33:00 2015 +0200
+
+a11y: Emit missing space character insertion
+
+When backspacing over space, content comparison would not find any
+difference, so vte always emits a space character deletion by hand,
+so that screen readers speak it, see bug 150858. That however makes
+the announced text incoherent, thus confusing brltty.
+
+This commit adds emitting a space character insertion, to get back to
+coherent content.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=150858
+https://bugzilla.gnome.org/show_bug.cgi?id=754964
+(cherry picked from commit 17c23b253eb96227d036768ebbf101930aadec73)
+
+ src/vteaccess.cc | 2 ++
+ 1 file changed, 2 insertions(+)
+
+commit 401d18e91bea12a0cf2e0c0b00605d99c1b372fd
+Author: Egmont Koblinger 
+Date:   Fri Oct 2 19:38:38 2015 +0200
+
+widget: Fix painting the preedit text near the right margin
+
+https://bugzilla.gnome.org/show_bug.cgi?id=755668
+(cherry picked from commit d69645413f35ba6ebff9359a89bd121733a2e475)
+
+ src/vte.cc | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+commit 1b853f94159ff1d7720dd2e1a8bbe7a6360fca36
+Author: Trần Ngọc Quân 
+Date:   Tue Sep 29 14:35:23 2015 +0700
+
+Updated Vietnamese translation
+
+Signed-off-by: Trần Ngọc Quân 
+
+ po/vi.po | 170 ---
+ 1 file changed, 86 insertions(+), 84 deletions(-)
+
+commit 93d2a69ba92a9eccf17d1e97a12eae2f32968196
+Author: Christian Persch 
+Date:   Mon Sep 21 16:51:39 2015 +0200
+
+Post release version bump
+
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
 commit 91b6c8d5dde3d153e7b234e5f6dcd40fd57981df
 Author: Christian Persch 
 Date:   Mon Sep 21 16:50:16 2015 +0200
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vte-0.42.0/NEWS new/vte-0.42.1/NEWS
--- old/vte-0.42.0/NEWS 2015-05-23 15:56:41.0 +0200
+++ new/vte-0.42.1/NEWS 2015-10-14 07:56:24.0 +0200
@@ -1,3 +1,12 @@
+0.42.1
+==
+* Bug fixes
+
+0.42.0
+==
+* New stable release
+* Bug fixes
+
 0.37.0
 ==
 * New API: vte-2.91
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/vte-0.42.0/aclocal.m4 new/vte-0.42.1/aclocal.m4
--- old/vte-0.42.0/aclocal.m4   2015-09-22 13:47:59.0 +0200
+++ new/vte-0.42.1/aclocal.m4   2015-10-14 09:17:20.0 +0200
@@ -210,6 +210,103 @@
 # AC_DEFUN([AC_PROG_INTLTOOL], ...)
 
 
+dnl -*- mode: autoconf -*-
+dnl Copyright 2009 Johan Dahlin
+dnl
+dnl This file is free 

commit pango for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package pango for openSUSE:Factory checked 
in at 2015-10-25 19:08:49

Comparing /work/SRC/openSUSE:Factory/pango (Old)
 and  /work/SRC/openSUSE:Factory/.pango.new (New)


Package is "pango"

Changes:

--- /work/SRC/openSUSE:Factory/pango/pango.changes  2015-10-09 
10:37:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.pango.new/pango.changes 2015-10-25 
19:08:50.0 +0100
@@ -1,0 +2,8 @@
+Mon Oct 12 19:38:42 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.38.1:
+  + Require Harfbuzz 0.9.30.
+  + Fix make check with --enable-debug=no.
+  + Win32 build fixes.
+
+---

Old:

  pango-1.38.0.tar.xz

New:

  pango-1.38.1.tar.xz



Other differences:
--
++ pango.spec ++
--- /var/tmp/diff_new_pack.yw6VxZ/_old  2015-10-25 19:08:51.0 +0100
+++ /var/tmp/diff_new_pack.yw6VxZ/_new  2015-10-25 19:08:51.0 +0100
@@ -20,7 +20,7 @@
 %define pango_binary_version 1.8.0
 
 Name:   pango
-Version:1.38.0
+Version:1.38.1
 Release:0
 Summary:Library for Layout and Rendering of Text
 License:LGPL-2.1+
@@ -38,7 +38,7 @@
 BuildRequires:  pkgconfig(glib-2.0) >= 2.33.12
 BuildRequires:  pkgconfig(gobject-2.0)
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
-BuildRequires:  pkgconfig(harfbuzz) >= 0.9.9
+BuildRequires:  pkgconfig(harfbuzz) >= 0.9.30
 BuildRequires:  pkgconfig(libthai) >= 0.1.9
 BuildRequires:  pkgconfig(xft) >= 2.0.0
 BuildRequires:  pkgconfig(xrender)

++ pango-1.38.0.tar.xz -> pango-1.38.1.tar.xz ++
 2904 lines of diff (skipped)




commit gnome-shell-extensions for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell-extensions for 
openSUSE:Factory checked in at 2015-10-25 19:09:09

Comparing /work/SRC/openSUSE:Factory/gnome-shell-extensions (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-shell-extensions.new (New)


Package is "gnome-shell-extensions"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-shell-extensions/gnome-shell-extensions.changes
2015-10-06 16:32:13.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-shell-extensions.new/gnome-shell-extensions.changes
   2015-10-25 19:09:10.0 +0100
@@ -1,0 +2,8 @@
+Thu Oct 15 20:54:28 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + window-list: Fix accessibility of window buttons.
+  + apps-menu: Fix unreliable highlight.
+  + Updated translations.
+
+---

Old:

  gnome-shell-extensions-3.18.0.tar.xz

New:

  gnome-shell-extensions-3.18.1.tar.xz



Other differences:
--
++ gnome-shell-extensions.spec ++
--- /var/tmp/diff_new_pack.unaxfg/_old  2015-10-25 19:09:11.0 +0100
+++ /var/tmp/diff_new_pack.unaxfg/_new  2015-10-25 19:09:11.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   gnome-shell-extensions
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:A collection of extensions for GNOME Shell
 License:GPL-2.0+
@@ -119,6 +119,7 @@
 %dir %{_datadir}/gnome-shell/modes
 %{_datadir}/gnome-shell/modes/classic.json
 %dir %{_datadir}/gnome-shell/theme/
+%{_datadir}/gnome-shell/theme/calendar-today.svg
 %{_datadir}/gnome-shell/theme/classic-process-working.svg
 %{_datadir}/gnome-shell/theme/classic-toggle-off-intl.svg
 %{_datadir}/gnome-shell/theme/classic-toggle-off-us.svg

++ gnome-shell-extensions-3.18.0.tar.xz -> 
gnome-shell-extensions-3.18.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-shell-extensions-3.18.0/NEWS 
new/gnome-shell-extensions-3.18.1/NEWS
--- old/gnome-shell-extensions-3.18.0/NEWS  2015-09-21 22:30:11.0 
+0200
+++ new/gnome-shell-extensions-3.18.1/NEWS  2015-10-15 22:33:00.0 
+0200
@@ -1,3 +1,9 @@
+3.18.1
+==
+* window-list: Fix accessibility of window buttons
+* apps-menu: Fix unreliable highlight
+* updated translations (ar)
+
 3.18.0
 ==
 * Bump version
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-shell-extensions-3.18.0/configure 
new/gnome-shell-extensions-3.18.1/configure
--- old/gnome-shell-extensions-3.18.0/configure 2015-09-21 22:30:25.0 
+0200
+++ new/gnome-shell-extensions-3.18.1/configure 2015-10-15 22:33:25.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for gnome-shell-extensions 3.18.0.
+# Generated by GNU Autoconf 2.69 for gnome-shell-extensions 3.18.1.
 #
 # Report bugs to 
.
 #
@@ -580,8 +580,8 @@
 # Identity of this package.
 PACKAGE_NAME='gnome-shell-extensions'
 PACKAGE_TARNAME='gnome-shell-extensions'
-PACKAGE_VERSION='3.18.0'
-PACKAGE_STRING='gnome-shell-extensions 3.18.0'
+PACKAGE_VERSION='3.18.1'
+PACKAGE_STRING='gnome-shell-extensions 3.18.1'
 
PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=gnome-shell=extensions'
 PACKAGE_URL=''
 
@@ -1257,7 +1257,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures gnome-shell-extensions 3.18.0 to adapt to many kinds 
of systems.
+\`configure' configures gnome-shell-extensions 3.18.1 to adapt to many kinds 
of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1324,7 +1324,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of gnome-shell-extensions 
3.18.0:";;
+ short | recursive ) echo "Configuration of gnome-shell-extensions 
3.18.1:";;
esac
   cat <<\_ACEOF
 
@@ -1420,7 +1420,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-gnome-shell-extensions configure 3.18.0
+gnome-shell-extensions configure 3.18.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1437,7 +1437,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by gnome-shell-extensions $as_me 3.18.0, which was
+It was created by gnome-shell-extensions $as_me 3.18.1, which was
 generated by GNU Autoconf 2.69.  Invocation 

commit cheese for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package cheese for openSUSE:Factory checked 
in at 2015-10-25 19:09:02

Comparing /work/SRC/openSUSE:Factory/cheese (Old)
 and  /work/SRC/openSUSE:Factory/.cheese.new (New)


Package is "cheese"

Changes:

--- /work/SRC/openSUSE:Factory/cheese/cheese.changes2015-10-06 
16:32:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.cheese.new/cheese.changes   2015-10-25 
19:09:03.0 +0100
@@ -1,0 +2,13 @@
+Tue Oct 13 10:32:54 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Fix resizing and scaling of video preview. Allow the preview to
+expand, and set a reasonable minimum height and width.
+  + Set a minimum effect actor size. This allows the effects
+previews to expand with the size of the window.
+  + Replace some stray references to ClutterTexture. Fix rendering
+into effects previews, although the size of the previews is
+still incorrect (bgo#755084).
+  + Updated translations.
+
+---

Old:

  cheese-3.18.0.tar.xz

New:

  cheese-3.18.1.tar.xz



Other differences:
--
++ cheese.spec ++
--- /var/tmp/diff_new_pack.1YzG68/_old  2015-10-25 19:09:04.0 +0100
+++ /var/tmp/diff_new_pack.1YzG68/_new  2015-10-25 19:09:04.0 +0100
@@ -20,7 +20,7 @@
 %define lib_gtk_major 25
 
 Name:   cheese
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Webcam Booth for GNOME
 License:GPL-2.0+

++ cheese-3.18.0.tar.xz -> cheese-3.18.1.tar.xz ++
 7642 lines of diff (skipped)




commit gtk3 for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gtk3 for openSUSE:Factory checked in 
at 2015-10-25 19:07:40

Comparing /work/SRC/openSUSE:Factory/gtk3 (Old)
 and  /work/SRC/openSUSE:Factory/.gtk3.new (New)


Package is "gtk3"

Changes:

--- /work/SRC/openSUSE:Factory/gtk3/gtk3.changes2015-10-14 
16:43:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.gtk3.new/gtk3.changes   2015-10-25 
19:07:42.0 +0100
@@ -1,0 +2,8 @@
+Mon Oct 12 19:19:57 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.2:
+  + Bugs fixed: bgo#753371, bgo#755413, bgo#755791, bgo#755927,
+bgo#755988, bgo#756042, bgo#756195, bgo#756338.
+  + Updated translations.
+
+---

Old:

  gtk+-3.18.1.tar.xz

New:

  gtk+-3.18.2.tar.xz



Other differences:
--
++ gtk3.spec ++
--- /var/tmp/diff_new_pack.v4QxgE/_old  2015-10-25 19:07:43.0 +0100
+++ /var/tmp/diff_new_pack.v4QxgE/_new  2015-10-25 19:07:43.0 +0100
@@ -29,7 +29,7 @@
 
 Name:   gtk3
 %define _name gtk+
-Version:3.18.1
+Version:3.18.2
 Release:0
 Summary:The GTK+ toolkit library (version 3)
 License:LGPL-2.1+

++ gtk+-3.18.1.tar.xz -> gtk+-3.18.2.tar.xz ++
/work/SRC/openSUSE:Factory/gtk3/gtk+-3.18.1.tar.xz 
/work/SRC/openSUSE:Factory/.gtk3.new/gtk+-3.18.2.tar.xz differ: char 26, line 1




commit totem for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package totem for openSUSE:Factory checked 
in at 2015-10-25 19:07:31

Comparing /work/SRC/openSUSE:Factory/totem (Old)
 and  /work/SRC/openSUSE:Factory/.totem.new (New)


Package is "totem"

Changes:

--- /work/SRC/openSUSE:Factory/totem/totem.changes  2015-10-14 
16:42:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.totem.new/totem.changes 2015-10-25 
19:07:32.0 +0100
@@ -1,0 +2,7 @@
+Mon Oct 12 13:19:58 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Make DVD menu navigation work again.
+  + Updated translations.
+
+---

Old:

  totem-3.18.0.tar.xz

New:

  totem-3.18.1.tar.xz



Other differences:
--
++ totem.spec ++
--- /var/tmp/diff_new_pack.lYXtbr/_old  2015-10-25 19:07:34.0 +0100
+++ /var/tmp/diff_new_pack.lYXtbr/_new  2015-10-25 19:07:34.0 +0100
@@ -19,7 +19,7 @@
 %define build_zeitgeist_plugin 1
 
 Name:   totem
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Movie Player for the GNOME Desktop
 License:GPL-2.0+ and LGPL-2.1+

++ totem-3.18.0.tar.xz -> totem-3.18.1.tar.xz ++
 7817 lines of diff (skipped)




commit libgweather for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package libgweather for openSUSE:Factory 
checked in at 2015-10-25 19:08:16

Comparing /work/SRC/openSUSE:Factory/libgweather (Old)
 and  /work/SRC/openSUSE:Factory/.libgweather.new (New)


Package is "libgweather"

Changes:

--- /work/SRC/openSUSE:Factory/libgweather/libgweather.changes  2015-10-06 
16:15:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.libgweather.new/libgweather.changes 
2015-10-25 19:08:18.0 +0100
@@ -1,0 +2,7 @@
+Mon Oct 12 15:52:15 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Build system fixes.
+  + Updated translations.
+
+---

Old:

  libgweather-3.18.0.tar.xz

New:

  libgweather-3.18.1.tar.xz



Other differences:
--
++ libgweather.spec ++
--- /var/tmp/diff_new_pack.8LdOXv/_old  2015-10-25 19:08:19.0 +0100
+++ /var/tmp/diff_new_pack.8LdOXv/_new  2015-10-25 19:08:19.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libgweather
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Library to get online weather information
 License:GPL-2.0+

++ libgweather-3.18.0.tar.xz -> libgweather-3.18.1.tar.xz ++
 66384 lines of diff (skipped)




commit gnome-disk-utility for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-disk-utility for 
openSUSE:Factory checked in at 2015-10-25 19:08:02

Comparing /work/SRC/openSUSE:Factory/gnome-disk-utility (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-disk-utility.new (New)


Package is "gnome-disk-utility"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-disk-utility/gnome-disk-utility.changes
2015-10-14 16:43:10.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-disk-utility.new/gnome-disk-utility.changes   
2015-10-25 19:08:03.0 +0100
@@ -1,0 +2,7 @@
+Sun Oct 11 21:28:59 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Add X-GNOME-Utilities category to desktop file.
+  + Updated translations.
+
+---

Old:

  gnome-disk-utility-3.18.0.tar.xz

New:

  gnome-disk-utility-3.18.1.tar.xz



Other differences:
--
++ gnome-disk-utility.spec ++
--- /var/tmp/diff_new_pack.xq8UdP/_old  2015-10-25 19:08:04.0 +0100
+++ /var/tmp/diff_new_pack.xq8UdP/_new  2015-10-25 19:08:04.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-disk-utility
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Disks application for dealing with storage devices
 License:GPL-2.0+

++ gnome-disk-utility-3.18.0.tar.xz -> gnome-disk-utility-3.18.1.tar.xz 
++
 5057 lines of diff (skipped)




commit gnome-desktop for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-desktop for openSUSE:Factory 
checked in at 2015-10-25 19:11:04

Comparing /work/SRC/openSUSE:Factory/gnome-desktop (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-desktop.new (New)


Package is "gnome-desktop"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-desktop/gnome-desktop.changes  
2015-10-06 16:24:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-desktop.new/gnome-desktop.changes 
2015-10-25 19:11:05.0 +0100
@@ -1,0 +2,8 @@
+Mon Oct 12 23:48:21 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Drop unneeded includes.
+  + gnome-rr: Fix turning off tiled monitors.
+  + Updated translations.
+
+---

Old:

  gnome-desktop-3.18.0.tar.xz

New:

  gnome-desktop-3.18.1.tar.xz



Other differences:
--
++ gnome-desktop.spec ++
--- /var/tmp/diff_new_pack.RrHdVB/_old  2015-10-25 19:11:06.0 +0100
+++ /var/tmp/diff_new_pack.RrHdVB/_new  2015-10-25 19:11:06.0 +0100
@@ -19,7 +19,7 @@
 %define IS_DEFAULT_GNOME_DESKTOP 1
 
 Name:   gnome-desktop
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:The GNOME Desktop API Library
 License:LGPL-2.1+

++ gnome-desktop-3.18.0.tar.xz -> gnome-desktop-3.18.1.tar.xz ++
 3767 lines of diff (skipped)




commit libsoup for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package libsoup for openSUSE:Factory checked 
in at 2015-10-25 19:10:51

Comparing /work/SRC/openSUSE:Factory/libsoup (Old)
 and  /work/SRC/openSUSE:Factory/.libsoup.new (New)


Package is "libsoup"

Changes:

--- /work/SRC/openSUSE:Factory/libsoup/libsoup.changes  2015-10-06 
16:26:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.libsoup.new/libsoup.changes 2015-10-25 
19:10:53.0 +0100
@@ -1,0 +2,12 @@
+Mon Oct 12 21:38:30 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.52.1:
+  + Fixed build under MinGW.
+  + Fixed build with --disable-introspection (bgo#755389).
+  + Fixed HTTP authentication protection space handling for files
+directly under the root directory (bgo#755617).
+  + Fixed a warning when loading data from SoupCache while using
+an authenticated proxy (bgo#756076).
+  + Updated translations.
+
+---

Old:

  libsoup-2.52.0.tar.xz

New:

  libsoup-2.52.1.tar.xz



Other differences:
--
++ libsoup.spec ++
--- /var/tmp/diff_new_pack.Dh6lOe/_old  2015-10-25 19:10:54.0 +0100
+++ /var/tmp/diff_new_pack.Dh6lOe/_new  2015-10-25 19:10:54.0 +0100
@@ -20,7 +20,7 @@
 Summary:HTTP client/server library for GNOME
 License:LGPL-2.1+
 Group:  Development/Libraries/GNOME
-Version:2.52.0
+Version:2.52.1
 Release:0
 Url:http://www.gnome.org
 Source: 
http://download.gnome.org/sources/libsoup/2.52/%{name}-%{version}.tar.xz

++ libsoup-2.52.0.tar.xz -> libsoup-2.52.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsoup-2.52.0/NEWS new/libsoup-2.52.1/NEWS
--- old/libsoup-2.52.0/NEWS 2015-09-21 17:36:01.0 +0200
+++ new/libsoup-2.52.1/NEWS 2015-10-12 23:25:50.0 +0200
@@ -1,3 +1,20 @@
+Changes in libsoup from 2.52.0 to 2.52.1:
+
+   * Fixed build under MinGW [Chun-wei Fan]
+
+   * Fixed build with --disable-introspection [#755389, Quentin
+  Glidic]
+
+   * Fixed HTTP authentication protection space handling for
+  files directly under the root directory. [#755617, Carlos
+  Garcia Campos]
+
+   * Fixed a warning when loading data from SoupCache while using
+  an authenticated proxy. [#756076, Carlos Garcia Campos]
+
+   * Updated translations:
+ German, Vietnamese
+
 Changes in libsoup from 2.51.92 to 2.52.0:
 
* Removed duplicate test paths from tests/date so it will pass
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsoup-2.52.0/configure new/libsoup-2.52.1/configure
--- old/libsoup-2.52.0/configure2015-09-21 17:36:16.0 +0200
+++ new/libsoup-2.52.1/configure2015-10-12 23:26:15.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for libsoup 2.52.0.
+# Generated by GNU Autoconf 2.69 for libsoup 2.52.1.
 #
 # Report bugs to .
 #
@@ -651,8 +651,8 @@
 # Identity of this package.
 PACKAGE_NAME='libsoup'
 PACKAGE_TARNAME='libsoup'
-PACKAGE_VERSION='2.52.0'
-PACKAGE_STRING='libsoup 2.52.0'
+PACKAGE_VERSION='2.52.1'
+PACKAGE_STRING='libsoup 2.52.1'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=libsoup'
 PACKAGE_URL=''
 
@@ -1530,7 +1530,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures libsoup 2.52.0 to adapt to many kinds of systems.
+\`configure' configures libsoup 2.52.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1600,7 +1600,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of libsoup 2.52.0:";;
+ short | recursive ) echo "Configuration of libsoup 2.52.1:";;
esac
   cat <<\_ACEOF
 
@@ -1744,7 +1744,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-libsoup configure 2.52.0
+libsoup configure 2.52.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2022,7 +2022,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by libsoup $as_me 2.52.0, which was
+It was created by libsoup $as_me 2.52.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2888,7 +2888,7 @@
 
 # Define the identity 

commit evolution-data-server for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package evolution-data-server for 
openSUSE:Factory checked in at 2015-10-25 19:11:09

Comparing /work/SRC/openSUSE:Factory/evolution-data-server (Old)
 and  /work/SRC/openSUSE:Factory/.evolution-data-server.new (New)


Package is "evolution-data-server"

Changes:

--- 
/work/SRC/openSUSE:Factory/evolution-data-server/evolution-data-server.changes  
2015-10-06 16:22:20.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.evolution-data-server.new/evolution-data-server.changes
 2015-10-25 19:11:10.0 +0100
@@ -1,0 +2,14 @@
+Mon Oct 12 07:55:28 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + [Weather calendar] Location/Unit changes not propagate until
+re-open.
+  + Correct runtime warnings from ubuntu-online-accounts module.
+  + source_registry_server_process_file_monitor_event: Correct
+possible runtime warning.
+  + Fix a reference leak from e-webdav-discover.
+  + Bugs fixed: bgo#754999, bgo#755412, bgo#755410, bgo#552425,
+bgo#732931, bgo#748636, bgo#756172.
+  + Updated translations.
+
+---

Old:

  evolution-data-server-3.18.0.tar.xz

New:

  evolution-data-server-3.18.1.tar.xz



Other differences:
--
++ evolution-data-server.spec ++
--- /var/tmp/diff_new_pack.Zpa9vz/_old  2015-10-25 19:11:12.0 +0100
+++ /var/tmp/diff_new_pack.Zpa9vz/_new  2015-10-25 19:11:12.0 +0100
@@ -33,7 +33,7 @@
 
 Name:   evolution-data-server
 %define _evo_version 3.18
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Evolution Data Server
 License:LGPL-2.1+

++ evolution-data-server-3.18.0.tar.xz -> 
evolution-data-server-3.18.1.tar.xz ++
 19844 lines of diff (skipped)




commit gtksourceview for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gtksourceview for openSUSE:Factory 
checked in at 2015-10-25 19:10:57

Comparing /work/SRC/openSUSE:Factory/gtksourceview (Old)
 and  /work/SRC/openSUSE:Factory/.gtksourceview.new (New)


Package is "gtksourceview"

Changes:

--- /work/SRC/openSUSE:Factory/gtksourceview/gtksourceview.changes  
2015-10-06 16:14:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.gtksourceview.new/gtksourceview.changes 
2015-10-25 19:10:59.0 +0100
@@ -1,0 +2,7 @@
+Sun Oct 11 10:09:14 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Misc bug fixes.
+  + Updated translations.
+
+---

Old:

  gtksourceview-3.18.0.tar.xz

New:

  gtksourceview-3.18.1.tar.xz



Other differences:
--
++ gtksourceview.spec ++
--- /var/tmp/diff_new_pack.RBm2b0/_old  2015-10-25 19:10:59.0 +0100
+++ /var/tmp/diff_new_pack.RBm2b0/_new  2015-10-25 19:10:59.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gtksourceview
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:GTK+ Source Editing Widget
 License:LGPL-2.1+

++ gtksourceview-3.18.0.tar.xz -> gtksourceview-3.18.1.tar.xz ++
 29444 lines of diff (skipped)




commit caribou for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package caribou for openSUSE:Factory checked 
in at 2015-10-25 19:11:57

Comparing /work/SRC/openSUSE:Factory/caribou (Old)
 and  /work/SRC/openSUSE:Factory/.caribou.new (New)


Package is "caribou"

Changes:

--- /work/SRC/openSUSE:Factory/caribou/caribou.changes  2015-04-23 
08:03:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.caribou.new/caribou.changes 2015-10-25 
19:11:59.0 +0100
@@ -1,0 +2,7 @@
+Tue Oct 13 01:02:32 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.4.19:
+  + xadapter: Avoid a crash when Xkl doesn't know the real xkb
+groups (bgo#756194).
+
+---

Old:

  caribou-0.4.18.1.tar.xz

New:

  caribou-0.4.19.tar.xz



Other differences:
--
++ caribou.spec ++
--- /var/tmp/diff_new_pack.RrlxwA/_old  2015-10-25 19:12:00.0 +0100
+++ /var/tmp/diff_new_pack.RrlxwA/_new  2015-10-25 19:12:00.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   caribou
-Version:0.4.18.1
+Version:0.4.19
 Release:0
 # FIXME: Stop hiding the .desktop file with %%suse_update_desktop_file -u if 
launching caribou finally works
 Summary:On-screen Keyboard for GNOME

++ caribou-0.4.18.1.tar.xz -> caribou-0.4.19.tar.xz ++
 4184 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/caribou-0.4.18.1/NEWS new/caribou-0.4.19/NEWS
--- old/caribou-0.4.18.1/NEWS   2015-04-15 00:47:05.0 +0200
+++ new/caribou-0.4.19/NEWS 2015-10-13 02:29:12.0 +0200
@@ -1,10 +1,13 @@
 =
-Version 0.4.18.1
+Version 0.4.19
 =
 
+- Bug 756194 - xadapter: Avoid a crash when Xkl doesn't know the real
+  xkb groups
 - Bug 747273 - display-adapter: Allow setting an external default
   adapter instance
-- Translation updates (Basque, Russian)
+- Translation updates (Persian, Kazakh, Chinese (Taiwan), Basque,
+  Esperanto, Estonian, Portuguese, Polish, Russian)
 
 =
 Version 0.4.18
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/caribou-0.4.18.1/compile new/caribou-0.4.19/compile
--- old/caribou-0.4.18.1/compile2015-04-15 00:51:06.0 +0200
+++ new/caribou-0.4.19/compile  2015-10-13 02:29:47.0 +0200
@@ -3,7 +3,7 @@
 
 scriptversion=2012-10-14.11; # UTC
 
-# Copyright (C) 1999-2013 Free Software Foundation, Inc.
+# Copyright (C) 1999-2014 Free Software Foundation, Inc.
 # Written by Tom Tromey .
 #
 # This program is free software; you can redistribute it and/or modify
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/caribou-0.4.18.1/configure.ac new/caribou-0.4.19/configure.ac
--- old/caribou-0.4.18.1/configure.ac   2015-04-15 00:49:19.0 +0200
+++ new/caribou-0.4.19/configure.ac 2015-06-08 14:22:38.0 +0200
@@ -1,6 +1,6 @@
 AC_PREREQ([2.63])
 AC_INIT([caribou],
-[0.4.18.1],
+[0.4.19],
 [https://bugzilla.gnome.org/enter_bug.cgi?product=caribou],
 [caribou])
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/caribou-0.4.18.1/daemon/daemon.c new/caribou-0.4.19/daemon/daemon.c
--- old/caribou-0.4.18.1/daemon/daemon.c2015-04-15 00:51:42.0 
+0200
+++ new/caribou-0.4.19/daemon/daemon.c  2015-10-13 02:30:09.0 +0200
@@ -1,4 +1,4 @@
-/* daemon.c generated by valac 0.28.0.2-022b, the Vala compiler
+/* daemon.c generated by valac 0.30.0.3-b11d, the Vala compiler
  * generated from daemon.vala, do not modify */
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' 

commit avahi for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package avahi for openSUSE:Factory checked 
in at 2015-10-25 19:12:10

Comparing /work/SRC/openSUSE:Factory/avahi (Old)
 and  /work/SRC/openSUSE:Factory/.avahi.new (New)


Package is "avahi"

Changes:

avahi-mono.changes: same change
avahi-qt4.changes: same change
--- /work/SRC/openSUSE:Factory/avahi/avahi.changes  2015-10-06 
16:09:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.avahi.new/avahi.changes 2015-10-25 
19:12:12.0 +0100
@@ -1,0 +2,12 @@
+Mon Oct 19 09:24:58 UTC 2015 - zai...@opensuse.org
+
+- Temp disable 2 old Conflicts that are breaking staging. These can
+  back in once there is a new release of avahi.
+
+---
+Wed Oct  7 20:34:24 UTC 2015 - mgo...@suse.com
+
+- Add avahi-0.6.31-invalid-packet.patch: do not spam logs for
+  invalid packets (boo#947140 bsc#948277).
+
+---

New:

  avahi-0.6.31-invalid-packet.patch



Other differences:
--
++ avahi-glib2.spec ++
--- /var/tmp/diff_new_pack.x0KrO2/_old  2015-10-25 19:12:13.0 +0100
+++ /var/tmp/diff_new_pack.x0KrO2/_new  2015-10-25 19:12:13.0 +0100
@@ -94,6 +94,8 @@
 Patch16:avahi-reserve-space-for-record-data-when-size-e.patch
 # PATCH-FIX-UPSTREAM avahi-outdated-URL.patch boo#914298 dims...@opensuse.org 
-- Replace reference to no longer existing address with a more generic 
explanation URL
 Patch17:avahi-outdated-URL.patch
+# PATCH-FIX-UPSTREAM avahi-0.6.31-invalid-packet.patch boo#947140 
mgo...@suse.com -- don't spam logs for Windows 10 multicast packets
+Patch18:avahi-0.6.31-invalid-packet.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  dbus-1-python
 BuildRequires:  fdupes
@@ -141,8 +143,9 @@
 # mDNSResponder was used for <= 10.2:
 Provides:   mDNSResponder = 107.5
 Obsoletes:  mDNSResponder < 107.5
+# Disable this conflict for now, it breaks staging, and it's pretty much 
obsolete, but can go back in if needed once a new version of avahi is released.
 # File conflict for service-types.db openSUSE <= 12.3 SLE <= 11SP2
-Conflicts:  avahi-utils <= 0.6.31-9.2
+#Conflicts:  avahi-utils <= 0.6.31-9.2
 %endif
 %if %build_glib2
 BuildRequires:  gobject-introspection-devel
@@ -330,8 +333,9 @@
 Group:  Productivity/Networking/Other
 # Split provides for upgrade from openSUSE <= 12.3 and SLE <= 11.
 Provides:   avahi:%{_sbindir}/avahi-autoipd
+# Disable this conflict for now, it breaks staging, and it's pretty much 
obsolete, but can go back in if needed once a new version of avahi is released.
 # File conflict for avahi-autoipd openSUSE <= 12.3 SLE <= 11
-Conflicts:  avahi <= 0.6.31-9.2
+#Conflicts:  avahi <= 0.6.31-9.2
 # coreutils contains /usr/bin/chown
 Requires(post): coreutils
 # shadow contains useradd and groupadd
@@ -772,6 +776,7 @@
 %patch15 -p1
 %patch16 -p1
 %patch17 -p1
+%patch18 -p1
 
 %if !%build_core
 # Replace all .la references from local .la files to installed versions

avahi-mono.spec: same change
avahi-qt4.spec: same change
++ avahi.spec ++
--- /var/tmp/diff_new_pack.x0KrO2/_old  2015-10-25 19:12:14.0 +0100
+++ /var/tmp/diff_new_pack.x0KrO2/_new  2015-10-25 19:12:14.0 +0100
@@ -96,6 +96,8 @@
 Patch16:avahi-reserve-space-for-record-data-when-size-e.patch
 # PATCH-FIX-UPSTREAM avahi-outdated-URL.patch boo#914298 dims...@opensuse.org 
-- Replace reference to no longer existing address with a more generic 
explanation URL
 Patch17:avahi-outdated-URL.patch
+# PATCH-FIX-UPSTREAM avahi-0.6.31-invalid-packet.patch boo#947140 
mgo...@suse.com -- don't spam logs for Windows 10 multicast packets
+Patch18:avahi-0.6.31-invalid-packet.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  dbus-1-python
 BuildRequires:  fdupes
@@ -143,8 +145,9 @@
 # mDNSResponder was used for <= 10.2:
 Provides:   mDNSResponder = 107.5
 Obsoletes:  mDNSResponder < 107.5
+# Disable this conflict for now, it breaks staging, and it's pretty much 
obsolete, but can go back in if needed once a new version of avahi is released.
 # File conflict for service-types.db openSUSE <= 12.3 SLE <= 11SP2
-Conflicts:  avahi-utils <= 0.6.31-9.2
+#Conflicts:  avahi-utils <= 0.6.31-9.2
 %endif
 %if %build_glib2
 BuildRequires:  gobject-introspection-devel
@@ -332,8 +335,9 @@
 Group:  Productivity/Networking/Other
 # Split provides for upgrade from openSUSE <= 12.3 and SLE <= 11.
 Provides:   avahi:%{_sbindir}/avahi-autoipd
+# Disable this conflict for now, it breaks staging, and it's pretty much 
obsolete, but can go back in if needed 

commit notification-daemon for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package notification-daemon for 
openSUSE:Factory checked in at 2015-10-25 19:11:25

Comparing /work/SRC/openSUSE:Factory/notification-daemon (Old)
 and  /work/SRC/openSUSE:Factory/.notification-daemon.new (New)


Package is "notification-daemon"

Changes:

--- /work/SRC/openSUSE:Factory/notification-daemon/notification-daemon.changes  
2015-10-06 16:36:03.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.notification-daemon.new/notification-daemon.changes 
2015-10-25 19:11:26.0 +0100
@@ -1,0 +2,7 @@
+Mon Oct 12 19:11:34 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Fix empty body text with invalid pango markup.
+  + Updated translations.
+
+---

Old:

  notification-daemon-3.18.0.tar.xz

New:

  notification-daemon-3.18.1.tar.xz



Other differences:
--
++ notification-daemon.spec ++
--- /var/tmp/diff_new_pack.xTdhkY/_old  2015-10-25 19:11:26.0 +0100
+++ /var/tmp/diff_new_pack.xTdhkY/_new  2015-10-25 19:11:26.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   notification-daemon
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Notification Daemon
 License:GPL-2.0+

++ notification-daemon-3.18.0.tar.xz -> notification-daemon-3.18.1.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/notification-daemon-3.18.0/NEWS 
new/notification-daemon-3.18.1/NEWS
--- old/notification-daemon-3.18.0/NEWS 2015-09-23 14:07:11.0 +0200
+++ new/notification-daemon-3.18.1/NEWS 2015-10-12 20:56:38.0 +0200
@@ -1,3 +1,9 @@
+Version 3.18.1
+==
+- Fix empty body text with invalid pango markup.
+- Updated translations:
+  Tom Tryfonidis (el).
+
 Version 3.18.0
 ==
 - Deprecation warning fixes. (Alberts Muktupāvels)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/notification-daemon-3.18.0/configure 
new/notification-daemon-3.18.1/configure
--- old/notification-daemon-3.18.0/configure2015-09-23 14:11:17.0 
+0200
+++ new/notification-daemon-3.18.1/configure2015-10-12 20:58:43.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for notification-daemon 3.18.0.
+# Generated by GNU Autoconf 2.69 for notification-daemon 3.18.1.
 #
 # Report bugs to 
.
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='notification-daemon'
 PACKAGE_TARNAME='notification-daemon'
-PACKAGE_VERSION='3.18.0'
-PACKAGE_STRING='notification-daemon 3.18.0'
+PACKAGE_VERSION='3.18.1'
+PACKAGE_STRING='notification-daemon 3.18.1'
 
PACKAGE_BUGREPORT='https://bugzilla.gnome.org/enter_bug.cgi?product=notification-daemon'
 PACKAGE_URL=''
 
@@ -1353,7 +1353,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures notification-daemon 3.18.0 to adapt to many kinds of 
systems.
+\`configure' configures notification-daemon 3.18.1 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1424,7 +1424,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of notification-daemon 3.18.0:";;
+ short | recursive ) echo "Configuration of notification-daemon 3.18.1:";;
esac
   cat <<\_ACEOF
 
@@ -1553,7 +1553,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-notification-daemon configure 3.18.0
+notification-daemon configure 3.18.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1831,7 +1831,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by notification-daemon $as_me 3.18.0, which was
+It was created by notification-daemon $as_me 3.18.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -4699,7 +4699,7 @@
 
 # Define the identity of the package.
  PACKAGE='notification-daemon'
- VERSION='3.18.0'
+ VERSION='3.18.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -16180,7 +16180,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by notification-daemon $as_me 3.18.0, which was
+This file was extended by notification-daemon $as_me 3.18.1, which was
 generated by GNU Autoconf 2.69.  

commit aisleriot for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package aisleriot for openSUSE:Factory 
checked in at 2015-10-25 19:11:37

Comparing /work/SRC/openSUSE:Factory/aisleriot (Old)
 and  /work/SRC/openSUSE:Factory/.aisleriot.new (New)


Package is "aisleriot"

Changes:

--- /work/SRC/openSUSE:Factory/aisleriot/aisleriot.changes  2015-10-06 
16:24:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.aisleriot.new/aisleriot.changes 2015-10-25 
19:11:38.0 +0100
@@ -1,0 +2,6 @@
+Mon Oct 12 18:26:31 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Updated translations.
+
+---

Old:

  aisleriot-3.18.0.tar.xz

New:

  aisleriot-3.18.1.tar.xz



Other differences:
--
++ aisleriot.spec ++
--- /var/tmp/diff_new_pack.59HmXe/_old  2015-10-25 19:11:39.0 +0100
+++ /var/tmp/diff_new_pack.59HmXe/_new  2015-10-25 19:11:39.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   aisleriot
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Solitaire Card Games for GNOME
 License:GPL-3.0+

++ aisleriot-3.18.0.tar.xz -> aisleriot-3.18.1.tar.xz ++
/work/SRC/openSUSE:Factory/aisleriot/aisleriot-3.18.0.tar.xz 
/work/SRC/openSUSE:Factory/.aisleriot.new/aisleriot-3.18.1.tar.xz differ: char 
26, line 1




commit yelp for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package yelp for openSUSE:Factory checked in 
at 2015-10-25 19:11:51

Comparing /work/SRC/openSUSE:Factory/yelp (Old)
 and  /work/SRC/openSUSE:Factory/.yelp.new (New)


Package is "yelp"

Changes:

--- /work/SRC/openSUSE:Factory/yelp/yelp.changes2015-10-06 
16:27:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.yelp.new/yelp.changes   2015-10-25 
19:11:52.0 +0100
@@ -1,0 +2,6 @@
+Mon Oct 12 19:55:10 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Updated translations.
+
+---

Old:

  yelp-3.18.0.tar.xz

New:

  yelp-3.18.1.tar.xz



Other differences:
--
++ yelp.spec ++
--- /var/tmp/diff_new_pack.Y5i81C/_old  2015-10-25 19:11:53.0 +0100
+++ /var/tmp/diff_new_pack.Y5i81C/_new  2015-10-25 19:11:53.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yelp
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Help Browser for the GNOME Desktop
 License:GPL-2.0+ and LGPL-2.1+

++ yelp-3.18.0.tar.xz -> yelp-3.18.1.tar.xz ++
 3373 lines of diff (skipped)




commit evolution-ews for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package evolution-ews for openSUSE:Factory 
checked in at 2015-10-25 19:11:43

Comparing /work/SRC/openSUSE:Factory/evolution-ews (Old)
 and  /work/SRC/openSUSE:Factory/.evolution-ews.new (New)


Package is "evolution-ews"

Changes:

--- /work/SRC/openSUSE:Factory/evolution-ews/evolution-ews.changes  
2015-10-06 16:22:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.evolution-ews.new/evolution-ews.changes 
2015-10-25 19:11:44.0 +0100
@@ -1,0 +2,6 @@
+Mon Oct 12 08:04:06 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Show only mail messages in mail folders.
+
+---

Old:

  evolution-ews-3.18.0.tar.xz

New:

  evolution-ews-3.18.1.tar.xz



Other differences:
--
++ evolution-ews.spec ++
--- /var/tmp/diff_new_pack.p9CYku/_old  2015-10-25 19:11:45.0 +0100
+++ /var/tmp/diff_new_pack.p9CYku/_new  2015-10-25 19:11:45.0 +0100
@@ -19,7 +19,7 @@
 Name:   evolution-ews
 # This should be updated upon major version changes; it should match 
BASE_VERSION as defined in configure.in.
 %define evolution_base_version 3.18
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Exchange Connector for Evolution, compatible with Exchange 
2007 and later
 License:LGPL-2.1

++ evolution-ews-3.18.0.tar.xz -> evolution-ews-3.18.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-ews-3.18.0/NEWS 
new/evolution-ews-3.18.1/NEWS
--- old/evolution-ews-3.18.0/NEWS   2015-09-21 11:52:37.0 +0200
+++ new/evolution-ews-3.18.1/NEWS   2015-10-12 09:06:17.0 +0200
@@ -1,3 +1,9 @@
+Evolution-EWS 3.18.1 2015-10-12
+---
+
+Miscellaneous:
+   Show only mail messages in mail folders (Milan Crha)
+
 Evolution-EWS 3.18.0 2015-09-21
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-ews-3.18.0/configure 
new/evolution-ews-3.18.1/configure
--- old/evolution-ews-3.18.0/configure  2015-09-21 11:53:29.0 +0200
+++ new/evolution-ews-3.18.1/configure  2015-10-12 09:07:02.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for evolution-ews 3.18.0.
+# Generated by GNU Autoconf 2.69 for evolution-ews 3.18.1.
 #
 # Report bugs to .
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='evolution-ews'
 PACKAGE_TARNAME='evolution-ews'
-PACKAGE_VERSION='3.18.0'
-PACKAGE_STRING='evolution-ews 3.18.0'
+PACKAGE_VERSION='3.18.1'
+PACKAGE_STRING='evolution-ews 3.18.1'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/browse.cgi?product=evolution-ews'
 PACKAGE_URL=''
 
@@ -1515,7 +1515,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures evolution-ews 3.18.0 to adapt to many kinds of systems.
+\`configure' configures evolution-ews 3.18.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1585,7 +1585,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of evolution-ews 3.18.0:";;
+ short | recursive ) echo "Configuration of evolution-ews 3.18.1:";;
esac
   cat <<\_ACEOF
 
@@ -1786,7 +1786,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-evolution-ews configure 3.18.0
+evolution-ews configure 3.18.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2155,7 +2155,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by evolution-ews $as_me 3.18.0, which was
+It was created by evolution-ews $as_me 3.18.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3018,7 +3018,7 @@
 
 # Define the identity of the package.
  PACKAGE='evolution-ews'
- VERSION='3.18.0'
+ VERSION='3.18.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3257,11 +3257,11 @@
 # precisely one minor behind [ews_version], then allow building against *that*
 # version of EDS and Evo.
 read x NEWSVER y < NEWS
-PREVVER=3.18.$(expr 0 - 1)
+PREVVER=3.18.$(expr 1 - 1)
 if test "$PREVVER" = "$NEWSVER"; then
EVOREQVER=$PREVVER
 else
-   EVOREQVER=3.18.0
+   EVOREQVER=3.18.1
 fi
 
 
@@ -17423,7 +17423,7 @@
 # report actual input values of 

commit mutter for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package mutter for openSUSE:Factory checked 
in at 2015-10-25 19:11:31

Comparing /work/SRC/openSUSE:Factory/mutter (Old)
 and  /work/SRC/openSUSE:Factory/.mutter.new (New)


Package is "mutter"

Changes:

--- /work/SRC/openSUSE:Factory/mutter/mutter.changes2015-10-14 
16:42:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.mutter.new/mutter.changes   2015-10-25 
19:11:32.0 +0100
@@ -1,0 +2,17 @@
+Thu Oct 15 19:35:00 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Improve HiDPI support on wayland (bgo#755097).
+  + Fix doubly-scaled cursor on XWayland HiDPI (bgo#755099).
+  + Stop hiding titlebar buttons in dialogs (bgo#641630).
+  + Add support for fullscreen/unfullscreen animations
+(bgo#707248).
+  + Misc. crash fixes: bgo#755096, bgo#754979, bgo#755490,
+bgo#754357, bgo#745785, bgo#756642.
+  + Misc. bug fixes: bgo#743339, bgo#752047, bgo#756074,
+bgo#756649.
+- Drop wayland-Dont-pre-multiply-root-cursor-sizes.patch and
+  wayland-Dont-scale-XWayland-pointer-cursor-sprites.patch: Fixed
+  upstream.
+
+---

Old:

  mutter-3.18.0.tar.xz
  wayland-Dont-pre-multiply-root-cursor-sizes.patch
  wayland-Dont-scale-XWayland-pointer-cursor-sprites.patch

New:

  mutter-3.18.1.tar.xz



Other differences:
--
++ mutter.spec ++
--- /var/tmp/diff_new_pack.VSjGLU/_old  2015-10-25 19:11:33.0 +0100
+++ /var/tmp/diff_new_pack.VSjGLU/_new  2015-10-25 19:11:33.0 +0100
@@ -23,17 +23,13 @@
 %endif
 
 Name:   mutter
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Window and compositing manager based on Clutter
 License:GPL-2.0+
 Group:  System/GUI/GNOME
 Url:http://www.gnome.org
 Source: 
http://download.gnome.org/sources/mutter/3.18/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM wayland-Dont-pre-multiply-root-cursor-sizes.patch 
bgo#755099 zai...@opensuse.org - Upstream patch for HiDPI in wayland 
-Patch0: wayland-Dont-pre-multiply-root-cursor-sizes.patch
-# PATCH-FIX-UPSTREAM wayland-Dont-scale-XWayland-pointer-cursor-sprites.patch 
bgo#755099 zai...@opensuse.org - Upstream patch for HiDPI in wayland
-Patch1: wayland-Dont-scale-XWayland-pointer-cursor-sprites.patch
 BuildRequires:  fdupes
 BuildRequires:  gobject-introspection-devel >= 0.9.5
 BuildRequires:  intltool
@@ -140,8 +136,6 @@
 %prep
 %setup -q
 translation-update-upstream
-%patch0 -p1
-%patch1 -p1
 
 %build
 %configure \

++ mutter-3.18.0.tar.xz -> mutter-3.18.1.tar.xz ++
 1754 lines of diff (skipped)




commit gnome-documents for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-documents for openSUSE:Factory 
checked in at 2015-10-25 19:08:09

Comparing /work/SRC/openSUSE:Factory/gnome-documents (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-documents.new (New)


Package is "gnome-documents"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-documents/gnome-documents.changes  
2015-10-06 16:34:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-documents.new/gnome-documents.changes 
2015-10-25 19:08:10.0 +0100
@@ -1,0 +2,12 @@
+Tue Oct 13 10:30:23 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Change to selection mode when pressing ctrl+a.
+  + Don't hide navigation controls when hovering.
+  + Don't invert the content of Books in night-mode.
+  + Show a spinner while creating the first collection.
+  + Fix the background of tagged entries.
+  + Don't show an extra menu when the app menu is disabled.
+  + Updated translations.
+
+---

Old:

  gnome-documents-3.18.0.1.tar.xz

New:

  gnome-documents-3.18.1.tar.xz



Other differences:
--
++ gnome-documents.spec ++
--- /var/tmp/diff_new_pack.7HZWbA/_old  2015-10-25 19:08:11.0 +0100
+++ /var/tmp/diff_new_pack.7HZWbA/_new  2015-10-25 19:08:11.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-documents
-Version:3.18.0.1
+Version:3.18.1
 Release:0
 Summary:Document Manager for GNOME
 License:GPL-2.0+

++ gnome-documents-3.18.0.1.tar.xz -> gnome-documents-3.18.1.tar.xz ++
 4855 lines of diff (skipped)




commit bijiben for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package bijiben for openSUSE:Factory checked 
in at 2015-10-25 19:07:47

Comparing /work/SRC/openSUSE:Factory/bijiben (Old)
 and  /work/SRC/openSUSE:Factory/.bijiben.new (New)


Package is "bijiben"

Changes:

--- /work/SRC/openSUSE:Factory/bijiben/bijiben.changes  2015-10-06 
16:13:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.bijiben.new/bijiben.changes 2015-10-25 
19:07:48.0 +0100
@@ -1,0 +2,6 @@
+Mon Oct 12 20:17:57 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Updated translations.
+
+---

Old:

  bijiben-3.18.0.tar.xz

New:

  bijiben-3.18.1.tar.xz



Other differences:
--
++ bijiben.spec ++
--- /var/tmp/diff_new_pack.acWY6s/_old  2015-10-25 19:07:49.0 +0100
+++ /var/tmp/diff_new_pack.acWY6s/_new  2015-10-25 19:07:49.0 +0100
@@ -19,7 +19,7 @@
 %define with_zeitgeist 0
 
 Name:   bijiben
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Note editor for GNOME
 License:GPL-3.0+ and CC-BY-SA-3.0

++ bijiben-3.18.0.tar.xz -> bijiben-3.18.1.tar.xz ++
 22131 lines of diff (skipped)




commit gnome-control-center for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-control-center for 
openSUSE:Factory checked in at 2015-10-25 19:07:55

Comparing /work/SRC/openSUSE:Factory/gnome-control-center (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-control-center.new (New)


Package is "gnome-control-center"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center.changes
2015-10-06 16:25:06.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center.changes
   2015-10-25 19:07:57.0 +0100
@@ -1,0 +2,13 @@
+Mon Oct 12 13:13:25 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Fix a crash when disabling Sharing.
+  + Make section headings accessible in Universal Access, and
+Region & Language.
+  + Fix a warning about an unparented dialogue in the Printers
+panel.
+  + Updated translations.
+- Add gnome-control-center-fix-desktop-file-trans.patch: Fix syntax
+  errors in gnome-sharing-panel.desktop translations.
+
+---

Old:

  gnome-control-center-3.18.0.tar.xz

New:

  gnome-control-center-3.18.1.tar.xz
  gnome-control-center-fix-desktop-file-trans.patch



Other differences:
--
++ gnome-control-center.spec ++
--- /var/tmp/diff_new_pack.vMQqv3/_old  2015-10-25 19:07:59.0 +0100
+++ /var/tmp/diff_new_pack.vMQqv3/_new  2015-10-25 19:07:59.0 +0100
@@ -29,7 +29,7 @@
 %define with_cacert_patch 1
 
 Name:   gnome-control-center
-Version:3.18.0
+Version:3.18.1
 Release:0
 # FIXME: in 12.3 and later, check if we still need patch2 
(gnome-control-center-hide-region-system-tab.patch) (see bnc#703833)
 Summary:The GNOME Control Center
@@ -52,6 +52,8 @@
 Patch17:gnome-control-center-follow-polkit-permissions-for-tz.patch
 # PATCH-FIX-UPSTREAM gnome-control-center-fix-nb-tans.patch bgo#753005 
zai...@opensuse.org -- Fix translation of Keyboard brightness in Norwegian 
bokmål.
 Patch18:gnome-control-center-fix-nb-tans.patch
+# PATCH-FIX-UPSTREAM gnome-control-center-fix-desktop-file-trans.patch 
zai...@opensuse.org -- Fix syntax errors in gnome-sharing-panel.desktop 
translations
+Patch19:gnome-control-center-fix-desktop-file-trans.patch
 BuildRequires:  cups-devel
 BuildRequires:  desktop-file-utils
 BuildRequires:  fdupes
@@ -197,6 +199,7 @@
 #NEEDS-REBASE
 #patch14 -p1
 %patch18 -p1
+%patch19 -p1
 
 %build
 ACLOCAL_FLAGS="-I libgd" NOCONFIGURE=1 gnome-autogen.sh

++ gnome-control-center-3.18.0.tar.xz -> gnome-control-center-3.18.1.tar.xz 
++
/work/SRC/openSUSE:Factory/gnome-control-center/gnome-control-center-3.18.0.tar.xz
 
/work/SRC/openSUSE:Factory/.gnome-control-center.new/gnome-control-center-3.18.1.tar.xz
 differ: char 26, line 1

++ gnome-control-center-fix-desktop-file-trans.patch ++
>From 781e4b14a23fd07fe322ec3b1791d62bc5c4 Mon Sep 17 00:00:00 2001
From: Kalev Lember 
Date: Mon, 12 Oct 2015 15:13:26 +0200
Subject: Fix syntax errors in gnome-sharing-panel.desktop translations

Remove erroneous linefeeds from gnome-sharing-panel.desktop translations
that break desktop file syntax.
---
 po/sr.po   | 2 +-
 po/s...@latin.po | 3 ---
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/po/sr.po b/po/sr.po
index 6efaf6d..4120c56 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -5128,7 +5128,7 @@ msgid ""
 "server;renderer;"
 msgstr ""
 "дели;дељење;ссх;безбедна шкољка;домаћин;назив;удаљено;радна 
површ;блутут;обекс;"
-"медија;звук;аудио;снимак;видео;слике;фотографије;филмови;сервер;исцртавач;\n"
+"медија;звук;аудио;снимак;видео;слике;фотографије;филмови;сервер;исцртавач;"
 "deli;deljenje;ssh;bezbedna školjka;domaćin;naziv;udaljeno;radna 
površ;blutut;obeks;"
 "medija;zvuk;audio;snimak;video;slike;fotografije;filmovi;server;iscrtavač;"
 
diff --git a/po/s...@latin.po b/po/s...@latin.po
index 0947ba4..52e423c 100644
--- a/po/s...@latin.po
+++ b/po/s...@latin.po
@@ -5198,9 +5198,6 @@ msgid ""
 msgstr ""
 "deli;deljenje;ssh;bezbedna školjka;domaćin;naziv;udaljeno;radna površ;blutut;"
 "obeks;medija;zvuk;audio;snimak;video;slike;fotografije;filmovi;server;"
-"iscrtavač;\n"
-"deli;deljenje;ssh;bezbedna školjka;domaćin;naziv;udaljeno;radna površ;blutut;"
-"obeks;medija;zvuk;audio;snimak;video;slike;fotografije;filmovi;server;"
 "iscrtavač;"
 
 #: 
../panels/sharing/org.gnome.controlcenter.remote-login-helper.policy.in.in.h:1
-- 
cgit v0.11.2




commit gnome-online-accounts for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-online-accounts for 
openSUSE:Factory checked in at 2015-10-25 19:09:40

Comparing /work/SRC/openSUSE:Factory/gnome-online-accounts (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-online-accounts.new (New)


Package is "gnome-online-accounts"

Changes:

--- 
/work/SRC/openSUSE:Factory/gnome-online-accounts/gnome-online-accounts.changes  
2015-10-06 16:34:14.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gnome-online-accounts.new/gnome-online-accounts.changes
 2015-10-25 19:09:42.0 +0100
@@ -1,0 +2,13 @@
+Wed Oct 14 18:52:39 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + owncloud: Doesn't work with non-standard ports (bgo#752736).
+  + owncloud, exchange: Sanitize HTTP error messages (bgo#755168).
+  + lastfm: Leak fixes (bgo#755315).
+  + identity:
+- Allow multiple simultaneous sign-in requests from one sender
+  (bgo#756394).
+- Don't ever nullify identifier (bgo#756494).
+  + Updated translations.
+
+---

Old:

  gnome-online-accounts-3.18.0.tar.xz

New:

  gnome-online-accounts-3.18.1.tar.xz



Other differences:
--
++ gnome-online-accounts.spec ++
--- /var/tmp/diff_new_pack.91NnD7/_old  2015-10-25 19:09:43.0 +0100
+++ /var/tmp/diff_new_pack.91NnD7/_new  2015-10-25 19:09:43.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-online-accounts
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:GNOME service to access online accounts
 License:LGPL-2.0+

++ gnome-online-accounts-3.18.0.tar.xz -> 
gnome-online-accounts-3.18.1.tar.xz ++
 3689 lines of diff (skipped)




commit orca for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package orca for openSUSE:Factory checked in 
at 2015-10-25 19:09:48

Comparing /work/SRC/openSUSE:Factory/orca (Old)
 and  /work/SRC/openSUSE:Factory/.orca.new (New)


Package is "orca"

Changes:

--- /work/SRC/openSUSE:Factory/orca/orca.changes2015-10-06 
16:26:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.orca.new/orca.changes   2015-10-25 
19:09:49.0 +0100
@@ -1,0 +2,28 @@
+Wed Oct 14 16:01:29 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Web:
+- Improve presentation of canvas elements which lack fallback
+  content.
+- Fix for Orca filtering out text elements which have no size
+  due to authoring.
+- Fix for Orca not doing SayAll on load when the focused object
+  is the document frame.
+- Workaround several issues which was causing the caret to get
+  "stuck".
+- Add another fallback "guess" to the label inference code for
+  fields in poorly-authored forms.
+- Present Firefox "door hanger" alerts.
+- Filter out selection event spam from browser chrome
+  autocompletes.
+- Prefer name over label when generating labelOrName (W3C
+  compliance).
+- Ensure we present aria-roledescription for non-focusable
+  landmarks.
+- Include object role in the list of landmarks dialog.
+- Don't treat objects with ROLE_LABEL as an ancestor (causes
+  double presentation of widget name).
+- Process DOM changes more efficiently for performance.
+  + Updated translations.
+
+---

Old:

  orca-3.18.0.tar.xz

New:

  orca-3.18.1.tar.xz



Other differences:
--
++ orca.spec ++
--- /var/tmp/diff_new_pack.RGEzVF/_old  2015-10-25 19:09:50.0 +0100
+++ /var/tmp/diff_new_pack.RGEzVF/_new  2015-10-25 19:09:50.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   orca
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Screen reader for GNOME
 License:LGPL-2.1+

++ orca-3.18.0.tar.xz -> orca-3.18.1.tar.xz ++
 50534 lines of diff (skipped)




commit gnome-terminal for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-terminal for openSUSE:Factory 
checked in at 2015-10-25 19:10:00

Comparing /work/SRC/openSUSE:Factory/gnome-terminal (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-terminal.new (New)


Package is "gnome-terminal"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-terminal/gnome-terminal.changes
2015-10-06 16:24:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-terminal.new/gnome-terminal.changes   
2015-10-25 19:10:03.0 +0100
@@ -1,0 +2,15 @@
+Mon Oct 12 18:04:10 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + notebook: Don't change show-tabs when going to empty notebook.
+  + window:
+- Exit early from screen-removed handler for now empty
+  notebook.
+- Pass tab switching keys to the terminal for tabless windows.
+  + profile: editor: Make colour buttons show their dialogue in
+editor mode.
+  + i18n: Fix and mark incorrectly translated string as fuzzy.
+  + server: Use distinct exit code for gtk_init failure.
+  + Updated translations.
+
+---

Old:

  gnome-terminal-3.18.0.tar.xz

New:

  gnome-terminal-3.18.1.tar.xz



Other differences:
--
++ gnome-terminal.spec ++
--- /var/tmp/diff_new_pack.UdxD9O/_old  2015-10-25 19:10:04.0 +0100
+++ /var/tmp/diff_new_pack.UdxD9O/_new  2015-10-25 19:10:04.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-terminal
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:GNOME Terminal
 License:GPL-3.0+ and LGPL-2.1+
@@ -51,7 +51,7 @@
 BuildRequires:  pkgconfig(gtk+-3.0) >= 3.10.0
 BuildRequires:  pkgconfig(libnautilus-extension) >= 3.0.0
 BuildRequires:  pkgconfig(uuid)
-BuildRequires:  pkgconfig(vte-2.91) >= 0.42.0
+BuildRequires:  pkgconfig(vte-2.91) >= 0.42.1
 BuildRequires:  pkgconfig(x11)
 Recommends: %{name}-lang
 Obsoletes:  gnome-core

++ gnome-terminal-3.18.0.tar.xz -> gnome-terminal-3.18.1.tar.xz ++
 7131 lines of diff (skipped)




commit glib-networking for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package glib-networking for openSUSE:Factory 
checked in at 2015-10-25 19:09:53

Comparing /work/SRC/openSUSE:Factory/glib-networking (Old)
 and  /work/SRC/openSUSE:Factory/.glib-networking.new (New)


Package is "glib-networking"

Changes:

--- /work/SRC/openSUSE:Factory/glib-networking/glib-networking.changes  
2015-10-06 16:26:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.glib-networking.new/glib-networking.changes 
2015-10-25 19:09:55.0 +0100
@@ -1,0 +2,7 @@
+Mon Oct 12 21:41:36 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.46.1:
+  + Fixed a certificate chain validation problem that affected
+Facebook in Epiphany (bgo#750457).
+
+---

Old:

  glib-networking-2.46.0.tar.xz

New:

  glib-networking-2.46.1.tar.xz



Other differences:
--
++ glib-networking.spec ++
--- /var/tmp/diff_new_pack.4zret4/_old  2015-10-25 19:09:56.0 +0100
+++ /var/tmp/diff_new_pack.4zret4/_new  2015-10-25 19:09:56.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   glib-networking
-Version:2.46.0
+Version:2.46.1
 Release:0
 Summary:Network-related GIO modules for glib
 License:LGPL-2.1+

++ glib-networking-2.46.0.tar.xz -> glib-networking-2.46.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/glib-networking-2.46.0/NEWS 
new/glib-networking-2.46.1/NEWS
--- old/glib-networking-2.46.0/NEWS 2015-09-21 17:16:55.0 +0200
+++ new/glib-networking-2.46.1/NEWS 2015-10-12 22:55:49.0 +0200
@@ -1,3 +1,8 @@
+2.46.1
+==
+  * Fixed a certificate chain validation problem that affected
+Facebook in Epiphany. [#750457, Carlos Garcia Campos]
+
 2.46.0
 ==
   * Various minor cleanups and small memory leak fixes
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/glib-networking-2.46.0/configure 
new/glib-networking-2.46.1/configure
--- old/glib-networking-2.46.0/configure2015-09-21 17:17:14.0 
+0200
+++ new/glib-networking-2.46.1/configure2015-10-12 23:04:05.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for glib-networking 2.46.0.
+# Generated by GNU Autoconf 2.69 for glib-networking 2.46.1.
 #
 # Report bugs to 
.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='glib-networking'
 PACKAGE_TARNAME='glib-networking'
-PACKAGE_VERSION='2.46.0'
-PACKAGE_STRING='glib-networking 2.46.0'
+PACKAGE_VERSION='2.46.1'
+PACKAGE_STRING='glib-networking 2.46.1'
 
PACKAGE_BUGREPORT='http://bugzilla.gnome.org/enter_bug.cgi?product=glib=network'
 PACKAGE_URL=''
 
@@ -1420,7 +1420,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures glib-networking 2.46.0 to adapt to many kinds of 
systems.
+\`configure' configures glib-networking 2.46.1 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1490,7 +1490,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of glib-networking 2.46.0:";;
+ short | recursive ) echo "Configuration of glib-networking 2.46.1:";;
esac
   cat <<\_ACEOF
 
@@ -1634,7 +1634,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-glib-networking configure 2.46.0
+glib-networking configure 2.46.1
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2003,7 +2003,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by glib-networking $as_me 2.46.0, which was
+It was created by glib-networking $as_me 2.46.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2871,7 +2871,7 @@
 
 # Define the identity of the package.
  PACKAGE='glib-networking'
- VERSION='2.46.0'
+ VERSION='2.46.1'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -15452,7 +15452,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by glib-networking $as_me 2.46.0, which was
+This file was extended by glib-networking $as_me 2.46.1, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG_FILES
@@ -15518,7 +15518,7 @@
 cat >>$CONFIG_STATUS <<_ACEOF 

commit clutter-gtk for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package clutter-gtk for openSUSE:Factory 
checked in at 2015-10-25 19:10:36

Comparing /work/SRC/openSUSE:Factory/clutter-gtk (Old)
 and  /work/SRC/openSUSE:Factory/.clutter-gtk.new (New)


Package is "clutter-gtk"

Changes:

--- /work/SRC/openSUSE:Factory/clutter-gtk/clutter-gtk.changes  2015-10-06 
16:11:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.clutter-gtk.new/clutter-gtk.changes 
2015-10-25 19:10:37.0 +0100
@@ -1,0 +2,13 @@
+Mon Oct 12 22:07:04 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.6.6:
+  + Fix the build of the API reference so it's usable in DevHelp.
+  + Add missing symbol indices to the API reference.
+
+---
+Sat Oct 10 21:42:17 UTC 2015 - zai...@opensuse.org
+
+- Replace pkgconfig(clutter-x11-1.0) for pkgconfig(clutter-1.0)
+  BuildRequires: This is what configure really looks for now.
+
+---

Old:

  clutter-gtk-1.6.4.tar.xz

New:

  clutter-gtk-1.6.6.tar.xz



Other differences:
--
++ clutter-gtk.spec ++
--- /var/tmp/diff_new_pack.0gD3uF/_old  2015-10-25 19:10:37.0 +0100
+++ /var/tmp/diff_new_pack.0gD3uF/_new  2015-10-25 19:10:37.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   clutter-gtk
-Version:1.6.4
+Version:1.6.6
 Release:0
 Summary:GTK+ integration for Clutter
 License:LGPL-2.1+
@@ -28,7 +28,7 @@
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  gtk-doc
 BuildRequires:  libtool
-BuildRequires:  pkgconfig(clutter-x11-1.0) >= 1.22.4
+BuildRequires:  pkgconfig(clutter-1.0) >= 1.23.7
 BuildRequires:  pkgconfig(gdk-3.0)
 BuildRequires:  pkgconfig(gtk+-3.0)
 BuildRequires:  pkgconfig(gtk+-x11-3.0) >= 3.6.0

++ clutter-gtk-1.6.4.tar.xz -> clutter-gtk-1.6.6.tar.xz ++
 21285 lines of diff (skipped)




commit gnome-keyring for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-keyring for openSUSE:Factory 
checked in at 2015-10-25 19:10:30

Comparing /work/SRC/openSUSE:Factory/gnome-keyring (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-keyring.new (New)


Package is "gnome-keyring"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-keyring/gnome-keyring.changes  
2015-10-06 16:37:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-keyring.new/gnome-keyring.changes 
2015-10-25 19:10:31.0 +0100
@@ -1,0 +2,10 @@
+Sat Oct 17 06:05:33 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Fix regression initializing gnome-keyring-daemon (bgo#756059).
+  + Fix regression racing for DBus name during startup
+(bgo#756006).
+  + Build and testing fixes (bgo#755873).
+  + Updated translations.
+
+---

Old:

  gnome-keyring-3.18.0.tar.xz

New:

  gnome-keyring-3.18.1.tar.xz



Other differences:
--
++ gnome-keyring.spec ++
--- /var/tmp/diff_new_pack.CSnOac/_old  2015-10-25 19:10:32.0 +0100
+++ /var/tmp/diff_new_pack.CSnOac/_new  2015-10-25 19:10:32.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-keyring
-Version:3.18.0
+Version:3.18.1
 Release:0
 Url:http://www.gnome.org/
 Summary:GNOME Keyring

++ gnome-keyring-3.18.0.tar.xz -> gnome-keyring-3.18.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/gnome-keyring-3.18.0/ChangeLog 
new/gnome-keyring-3.18.1/ChangeLog
--- old/gnome-keyring-3.18.0/ChangeLog  2015-09-28 17:58:30.0 +0200
+++ new/gnome-keyring-3.18.1/ChangeLog  2015-10-16 22:56:31.0 +0200
@@ -1,5 +1,175 @@
 # Generate automatically. Do not edit.
 
+commit 91dfc6a365f3d12e87769680c2dedc2bc1e57b23
+Author: Stef Walter 
+Date:   2015-10-16
+
+Bump version number
+
+ NEWS | 6 ++
+ configure.ac | 2 +-
+ 2 files changed, 7 insertions(+), 1 deletion(-)
+
+commit bf560bd195919d79a59a8642923ccac80c437bb1
+Author: Ray Strode 
+Date:   2015-10-15
+
+daemon: Kill off foreground proceses when session dies
+
+Right now gnome-keyring will keep processes around forever
+in some cases.  They need to die when the session goes away,
+at least.
+
+Signed-off-by: Cosimo Cecchi 
+ * Don't leak a DBus connection
+
+Signed-off-by: Stef Walter 
+ * Print error message if we cannot connect to bus
+ * Wait for gnome-keyring-daemon when --foreground
+
+https://bugzilla.gnome.org/show_bug.cgi?id=756059
+
+ daemon/gkd-main.c | 27 +--
+ 1 file changed, 25 insertions(+), 2 deletions(-)
+
+commit ac9492a929d364685da8c8cb4152bf2534ddfb6f
+Author: Cosimo Cecchi 
+Date:   2015-10-16
+
+daemon: adjust CFLAGS for daemon
+
+https://bugzilla.gnome.org/show_bug.cgi?id=756059
+
+ daemon/Makefile.am | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+commit 6040bdb2a0ee9ee1f8e308b8cdede6d3fe5c94bf
+Author: Ray Strode 
+Date:   2015-10-15
+
+daemon: fork before threads are spawned
+
+It's not really a good idea to fork after glib has initialized,
+since it has helper threads that may have taken locks etc.
+
+This commit forks really early to prevent locks from leaking
+and causing deadlock.
+
+Signed-off-by: Cosimo Cecchi 
+ * Split out separate function
+ * Check return value of g_unix_open_pipe()
+ * Don't fork when running foreground
+ * Read login password before fork()
+
+Signed-off-by: Stef Walter 
+ * Since stdout is open, just print evironment directly
+
+https://bugzilla.gnome.org/show_bug.cgi?id=756059
+
+ daemon/gkd-main.c | 72 ++-
+ 1 file changed, 50 insertions(+), 22 deletions(-)
+
+commit 74fc065e3c3e04a5cd5dfa0e725f7664825a5b1e
+Author: Stef Walter 
+Date:   2015-10-13
+
+pam: Stop using deprecated  header
+
+And use the more complex function call instead.
+
+Fixes this warning:
+
+/usr/include/selinux/flask.h:5:2: error: #warning "Please remove any 
#include's of this header in your source code." [-Werror=cpp]
+ #warning "Please remove any #include's of this header in your source 
code."
+  ^
+
+ pam/gkr-pam-module.c | 3 +--
+ 1 file changed, 1 insertion(+), 2 deletions(-)
+
+commit b84b9205f9f3ccf7c05f16cac561e8e16eebbefa
+Author: Tom Tryfonidis 
+Date:   2015-10-08
+
+Updated Greek translation
+

commit gucharmap for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gucharmap for openSUSE:Factory 
checked in at 2015-10-25 19:10:24

Comparing /work/SRC/openSUSE:Factory/gucharmap (Old)
 and  /work/SRC/openSUSE:Factory/.gucharmap.new (New)


Package is "gucharmap"

Changes:

--- /work/SRC/openSUSE:Factory/gucharmap/gucharmap.changes  2015-10-06 
16:24:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.gucharmap.new/gucharmap.changes 2015-10-25 
19:10:25.0 +0100
@@ -1,0 +2,6 @@
+Mon Oct 12 18:30:22 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Updated translations.
+
+---

Old:

  gucharmap-3.18.0.tar.xz

New:

  gucharmap-3.18.1.tar.xz



Other differences:
--
++ gucharmap.spec ++
--- /var/tmp/diff_new_pack.IqqOiP/_old  2015-10-25 19:10:26.0 +0100
+++ /var/tmp/diff_new_pack.IqqOiP/_new  2015-10-25 19:10:26.0 +0100
@@ -22,7 +22,7 @@
 %define pc_api 2.90
 
 Name:   gucharmap
-Version:3.18.0
+Version:3.18.1
 Release:0
 # FIXME vala bindings are currently disabled by upstream and not supposed to 
auto-enable
 Summary:A Featureful Unicode Character Map

++ gucharmap-3.18.0.tar.xz -> gucharmap-3.18.1.tar.xz ++
 7981 lines of diff (skipped)




commit at-spi2-atk for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package at-spi2-atk for openSUSE:Factory 
checked in at 2015-10-25 19:10:16

Comparing /work/SRC/openSUSE:Factory/at-spi2-atk (Old)
 and  /work/SRC/openSUSE:Factory/.at-spi2-atk.new (New)


Package is "at-spi2-atk"

Changes:

--- /work/SRC/openSUSE:Factory/at-spi2-atk/at-spi2-atk.changes  2015-10-06 
16:32:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.at-spi2-atk.new/at-spi2-atk.changes 
2015-10-25 19:10:17.0 +0100
@@ -1,0 +2,7 @@
+Mon Oct 12 20:02:38 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.18.1:
+  + Fix text, value, and table cell adaptors (bgo#755724).
+  + Test fixes.
+
+---

Old:

  at-spi2-atk-2.18.0.tar.xz

New:

  at-spi2-atk-2.18.1.tar.xz



Other differences:
--
++ at-spi2-atk.spec ++
--- /var/tmp/diff_new_pack.vFCkFA/_old  2015-10-25 19:10:18.0 +0100
+++ /var/tmp/diff_new_pack.vFCkFA/_new  2015-10-25 19:10:18.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   at-spi2-atk
-Version:2.18.0
+Version:2.18.1
 Release:0
 Summary:Assistive Technology Service Provider Interface - GTK+ module
 License:LGPL-2.0+

++ at-spi2-atk-2.18.0.tar.xz -> at-spi2-atk-2.18.1.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/at-spi2-atk-2.18.0/NEWS new/at-spi2-atk-2.18.1/NEWS
--- old/at-spi2-atk-2.18.0/NEWS 2015-08-17 21:30:35.0 +0200
+++ new/at-spi2-atk-2.18.1/NEWS 2015-10-12 21:51:13.0 +0200
@@ -1,3 +1,9 @@
+What's new in at-spi2-atk 2.18.1:
+
+* Fix text, value, and table cell adaptors (bgo#755724).
+
+* Test fixes.
+
 What's new in at-spi2-atk 2.17.90:
 
 * Update for new caching API (bgo#650090).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/at-spi2-atk-2.18.0/atk-adaptor/adaptors/table-cell-adaptor.c 
new/at-spi2-atk-2.18.1/atk-adaptor/adaptors/table-cell-adaptor.c
--- old/at-spi2-atk-2.18.0/atk-adaptor/adaptors/table-cell-adaptor.c
2015-06-14 21:52:59.0 +0200
+++ new/at-spi2-atk-2.18.1/atk-adaptor/adaptors/table-cell-adaptor.c
2015-10-12 20:56:56.0 +0200
@@ -128,13 +128,16 @@
 {
   AtkTableCell *cell = (AtkTableCell *) user_data;
   AtkObject *table;
+  DBusMessageIter iter_variant;
 
   g_return_val_if_fail (ATK_IS_TABLE_CELL (user_data), FALSE);
 
   table = atk_table_cell_get_table (cell);
   if (!table)
 return FALSE;
-  spi_object_append_reference (iter, table);
+  dbus_message_iter_open_container (iter, DBUS_TYPE_VARIANT, "(so)", 
_variant);
+  spi_object_append_reference (_variant, table);
+  dbus_message_iter_close_container (iter, _variant);
   return TRUE;
 }
 
@@ -147,7 +150,7 @@
   dbus_int32_t d_row, d_column, d_row_span, d_column_span;
   DBusMessage *reply;
 
-  g_return_val_if_fail (ATK_IS_TABLE (user_data),
+  g_return_val_if_fail (ATK_IS_TABLE_CELL (user_data),
 droute_not_yet_handled_error (message));
   atk_table_cell_get_row_column_span (cell, , , _span,
  _span);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/at-spi2-atk-2.18.0/atk-adaptor/adaptors/text-adaptor.c 
new/at-spi2-atk-2.18.1/atk-adaptor/adaptors/text-adaptor.c
--- old/at-spi2-atk-2.18.0/atk-adaptor/adaptors/text-adaptor.c  2015-06-14 
21:52:59.0 +0200
+++ new/at-spi2-atk-2.18.1/atk-adaptor/adaptors/text-adaptor.c  2015-10-12 
20:56:56.0 +0200
@@ -396,10 +396,7 @@
   reply = dbus_message_new_method_return (message);
   if (reply)
 {
-  dbus_message_append_args (reply, DBUS_TYPE_STRING, , DBUS_TYPE_INT32,
-, DBUS_TYPE_INT32, ,
-DBUS_TYPE_BOOLEAN, ,
-DBUS_TYPE_INVALID);
+  dbus_message_append_args (reply, DBUS_TYPE_STRING, , 
DBUS_TYPE_INVALID);
 }
   atk_attribute_set_free (set);
   return reply;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/at-spi2-atk-2.18.0/atk-adaptor/adaptors/value-adaptor.c 
new/at-spi2-atk-2.18.1/atk-adaptor/adaptors/value-adaptor.c
--- old/at-spi2-atk-2.18.0/atk-adaptor/adaptors/value-adaptor.c 2015-06-14 
21:52:59.0 +0200
+++ new/at-spi2-atk-2.18.1/atk-adaptor/adaptors/value-adaptor.c 2015-10-12 
20:56:56.0 +0200
@@ -40,6 +40,14 @@
   gdouble dub;
 
   g_return_val_if_fail (ATK_IS_VALUE (user_data), FALSE);
+  AtkValueIface *iface = ATK_VALUE_GET_IFACE (value);
+  if (iface->get_range)
+{
+  AtkRange *range = atk_value_get_range (value);
+  dub = atk_range_get_lower_limit (range);
+  

commit gnome-user-docs for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-user-docs for openSUSE:Factory 
checked in at 2015-10-25 19:08:55

Comparing /work/SRC/openSUSE:Factory/gnome-user-docs (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-user-docs.new (New)


Package is "gnome-user-docs"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-user-docs/gnome-user-docs.changes  
2015-10-06 16:34:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-user-docs.new/gnome-user-docs.changes 
2015-10-25 19:08:58.0 +0100
@@ -1,0 +2,8 @@
+Tue Oct 13 10:27:05 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Updates to GNOME Help.
+  + Updates to System Admin Guide.
+  + Updated translations.
+
+---

Old:

  gnome-user-docs-3.18.0.tar.xz

New:

  gnome-user-docs-3.18.1.tar.xz



Other differences:
--
++ gnome-user-docs.spec ++
--- /var/tmp/diff_new_pack.LO5ga2/_old  2015-10-25 19:08:59.0 +0100
+++ /var/tmp/diff_new_pack.LO5ga2/_new  2015-10-25 19:08:59.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-user-docs
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:GNOME Desktop Documentation
 License:GFDL-1.1

++ gnome-user-docs-3.18.0.tar.xz -> gnome-user-docs-3.18.1.tar.xz ++
/work/SRC/openSUSE:Factory/gnome-user-docs/gnome-user-docs-3.18.0.tar.xz 
/work/SRC/openSUSE:Factory/.gnome-user-docs.new/gnome-user-docs-3.18.1.tar.xz 
differ: char 25, line 1




commit gnome-calculator for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-calculator for 
openSUSE:Factory checked in at 2015-10-25 19:09:24

Comparing /work/SRC/openSUSE:Factory/gnome-calculator (Old)
 and  /work/SRC/openSUSE:Factory/.gnome-calculator.new (New)


Package is "gnome-calculator"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-calculator/gnome-calculator.changes
2015-10-06 16:14:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-calculator.new/gnome-calculator.changes   
2015-10-25 19:09:25.0 +0100
@@ -1,0 +2,6 @@
+Mon Oct 12 19:05:49 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Updated translations.
+
+---

Old:

  gnome-calculator-3.18.0.tar.xz

New:

  gnome-calculator-3.18.1.tar.xz



Other differences:
--
++ gnome-calculator.spec ++
--- /var/tmp/diff_new_pack.ho0UH1/_old  2015-10-25 19:09:26.0 +0100
+++ /var/tmp/diff_new_pack.ho0UH1/_new  2015-10-25 19:09:26.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-calculator
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:A GNOME Calculator Application
 License:GPL-3.0+

++ gnome-calculator-3.18.0.tar.xz -> gnome-calculator-3.18.1.tar.xz ++
 4115 lines of diff (skipped)




commit gedit for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package gedit for openSUSE:Factory checked 
in at 2015-10-25 19:09:16

Comparing /work/SRC/openSUSE:Factory/gedit (Old)
 and  /work/SRC/openSUSE:Factory/.gedit.new (New)


Package is "gedit"

Changes:

--- /work/SRC/openSUSE:Factory/gedit/gedit.changes  2015-10-17 
16:38:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.gedit.new/gedit.changes 2015-10-25 
19:09:18.0 +0100
@@ -1,0 +2,8 @@
+Mon Oct 12 21:36:31 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Make the Replace dialog resizable.
+  + Various minor code improvements and bug fixes.
+  + Updated translations.
+
+---

Old:

  gedit-3.18.0.tar.xz

New:

  gedit-3.18.1.tar.xz



Other differences:
--
++ gedit.spec ++
--- /var/tmp/diff_new_pack.wnN2eV/_old  2015-10-25 19:09:19.0 +0100
+++ /var/tmp/diff_new_pack.wnN2eV/_new  2015-10-25 19:09:19.0 +0100
@@ -19,7 +19,7 @@
 %define _with_gi_python 1
 
 Name:   gedit
-Version:3.18.0
+Version:3.18.1
 Release:0
 Summary:Small and lightweight UTF-8 text editor
 License:GPL-2.0+

++ gedit-3.18.0.tar.xz -> gedit-3.18.1.tar.xz ++
 23310 lines of diff (skipped)




commit clutter for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package clutter for openSUSE:Factory checked 
in at 2015-10-25 19:10:42

Comparing /work/SRC/openSUSE:Factory/clutter (Old)
 and  /work/SRC/openSUSE:Factory/.clutter.new (New)


Package is "clutter"

Changes:

--- /work/SRC/openSUSE:Factory/clutter/clutter.changes  2015-10-06 
16:11:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.clutter.new/clutter.changes 2015-10-25 
19:10:45.0 +0100
@@ -1,0 +2,9 @@
+Mon Oct 12 21:57:56 UTC 2015 - zai...@opensuse.org
+
+- Update to version 1.24.2:
+  + Emulate discrete scrolling on evdev.
+  + Improve animation smoothness under the GDK backend.
+  + Bugs fixed: bgo#755357, bgo#745517, bgo#756284.
+  + Updated translations.
+
+---

Old:

  clutter-1.24.0.tar.xz

New:

  clutter-1.24.2.tar.xz



Other differences:
--
++ clutter.spec ++
--- /var/tmp/diff_new_pack.cnQmzF/_old  2015-10-25 19:10:46.0 +0100
+++ /var/tmp/diff_new_pack.cnQmzF/_new  2015-10-25 19:10:46.0 +0100
@@ -23,7 +23,7 @@
 %endif
 
 Name:   clutter
-Version:1.24.0
+Version:1.24.2
 Release:0
 Summary:The clutter library
 License:LGPL-2.1+

++ clutter-1.24.0.tar.xz -> clutter-1.24.2.tar.xz ++
 111520 lines of diff (skipped)




commit webkit2gtk3 for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package webkit2gtk3 for openSUSE:Factory 
checked in at 2015-10-25 19:11:16

Comparing /work/SRC/openSUSE:Factory/webkit2gtk3 (Old)
 and  /work/SRC/openSUSE:Factory/.webkit2gtk3.new (New)


Package is "webkit2gtk3"

Changes:

--- /work/SRC/openSUSE:Factory/webkit2gtk3/webkit2gtk3.changes  2015-10-06 
16:27:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.webkit2gtk3.new/webkit2gtk3.changes 
2015-10-25 19:11:17.0 +0100
@@ -1,0 +2,25 @@
+Thu Oct 15 14:57:24 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.10.2:
+  + Fix a regression introduced in 2.10.1 that disabled accelerated
+compositing.
+  + Fix build with cmake 3.4.
+
+---
+Wed Oct 14 11:59:58 UTC 2015 - zai...@opensuse.org
+
+- Update to version 2.10.1:
+  + Fix rendering of accelerated content in HiDPI screens.
+  + Fix several media controls rendering issues.
+  + Fix rendering of progress element with recent versions of GTK+.
+  + Add and update some web inspector icons.
+  + Correctly handle websites sending an invalid auth header.
+  + Fix a crash when creating the UI process backing store in
+Wayland.
+  + Fix the build with spellchecker disabled.
+  + Fix the build with touch events disabled.
+  + Fix the build with OpenGL disabled.
+  + Several build fixes on Mac OSX.
+  + Fix several crashes and rendering issues.
+
+---

Old:

  webkitgtk-2.10.0.tar.xz

New:

  webkitgtk-2.10.2.tar.xz



Other differences:
--
++ webkit2gtk3.spec ++
--- /var/tmp/diff_new_pack.AIj5Dd/_old  2015-10-25 19:11:18.0 +0100
+++ /var/tmp/diff_new_pack.AIj5Dd/_new  2015-10-25 19:11:18.0 +0100
@@ -26,7 +26,7 @@
 %define _pkgconfig_suffix gtk-3.0
 %define _name webkitgtk
 Name:   webkit2gtk3
-Version:2.10.0
+Version:2.10.2
 Release:0
 Summary:Library for rendering web content, GTK+ Port
 License:LGPL-2.0+ and BSD-3-Clause

++ webkitgtk-2.10.0.tar.xz -> webkitgtk-2.10.2.tar.xz ++
/work/SRC/openSUSE:Factory/webkit2gtk3/webkitgtk-2.10.0.tar.xz 
/work/SRC/openSUSE:Factory/.webkit2gtk3.new/webkitgtk-2.10.2.tar.xz differ: 
char 26, line 1




commit empathy for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package empathy for openSUSE:Factory checked 
in at 2015-10-25 19:10:07

Comparing /work/SRC/openSUSE:Factory/empathy (Old)
 and  /work/SRC/openSUSE:Factory/.empathy.new (New)


Package is "empathy"

Changes:

--- /work/SRC/openSUSE:Factory/empathy/empathy.changes  2015-05-18 
22:03:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.empathy.new/empathy.changes 2015-10-25 
19:10:10.0 +0100
@@ -1,0 +2,12 @@
+Wed Oct 14 15:42:02 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.12.11:
+  + Fix opening contact list after launching empathy -h
+(bgo#729282).
+  + Leak fixes for telepathy-accounts-widgets (bgo#752938).
+  + Don't hard code the name of the pkg-config binary
+(bgo#755707).
+  + Call the finish method only once (bgo#756165).
+  + Updated translations.
+
+---

Old:

  empathy-3.12.10.tar.xz

New:

  empathy-3.12.11.tar.xz



Other differences:
--
++ empathy.spec ++
--- /var/tmp/diff_new_pack.BaneYo/_old  2015-10-25 19:10:11.0 +0100
+++ /var/tmp/diff_new_pack.BaneYo/_new  2015-10-25 19:10:11.0 +0100
@@ -19,7 +19,7 @@
 %define with_geocode 1
 
 Name:   empathy
-Version:3.12.10
+Version:3.12.11
 Release:0
 # FIXME: re-enable parallel build
 Summary:Instant Messenger Client for GNOME, based on Telepathy

++ empathy-3.12.10.tar.xz -> empathy-3.12.11.tar.xz ++
 35328 lines of diff (skipped)




commit evolution for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package evolution for openSUSE:Factory 
checked in at 2015-10-25 19:09:32

Comparing /work/SRC/openSUSE:Factory/evolution (Old)
 and  /work/SRC/openSUSE:Factory/.evolution.new (New)


Package is "evolution"

Changes:

--- /work/SRC/openSUSE:Factory/evolution/evolution.changes  2015-10-06 
16:22:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.evolution.new/evolution.changes 2015-10-25 
19:09:34.0 +0100
@@ -1,0 +2,27 @@
+Mon Oct 12 07:58:42 UTC 2015 - zai...@opensuse.org
+
+- Update to version 3.18.1:
+  + Use set date/time format in Tasks/Memos previews.
+  + Add also evolution-mail-formatter into Libs of
+evolution-mail.pc.
+  + Fix translation of default:mm.
+  + EHTMLEditorSelection:
+- Selection start marker could be wrongly saved before the
+  quote character.
+- Selection is wrongly restored when it is on the end of block.
+- Blocks are wrongly wrapped around selection markers.
+- Make sure we really wrap when ending a line.
+- Font color can't be set.
+- Current font color is discarded after modifying the font
+  size.
+- Font formats are reported wrongly if the are nested FONT
+  elements.
+- Build fix.
+  + EHTMLEditorView:
+- Only process the Heading elements in HTML mode.
+- When merging siblings repeat until none is left.
+- Improve the undo/redo in composer.
+  + Bugs fixed: bgo#544813, bgo#677862, bgo#754693.
+  + Updated translations.
+
+---

Old:

  evolution-3.18.0.tar.xz

New:

  evolution-3.18.1.tar.xz



Other differences:
--
++ evolution.spec ++
--- /var/tmp/diff_new_pack.PgDiRI/_old  2015-10-25 19:09:35.0 +0100
+++ /var/tmp/diff_new_pack.PgDiRI/_new  2015-10-25 19:09:35.0 +0100
@@ -24,7 +24,7 @@
 Name:   evolution
 # This should be updated upon major version changes; it should match 
BASE_VERSION as defined in configure.in.
 %define evolution_base_version 3.18
-Version:3.18.0
+Version:3.18.1
 Release:0
 # _version needs to be %{version} stripped to major.minor.micro only...
 %define _version %(echo %{version} | grep -E -o '[0-9]+\.[0-9]+\.[0-9]+')

++ evolution-3.18.0.tar.xz -> evolution-3.18.1.tar.xz ++
/work/SRC/openSUSE:Factory/evolution/evolution-3.18.0.tar.xz 
/work/SRC/openSUSE:Factory/.evolution.new/evolution-3.18.1.tar.xz differ: char 
26, line 1




commit pulseaudio for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package pulseaudio for openSUSE:Factory 
checked in at 2015-10-25 15:10:50

Comparing /work/SRC/openSUSE:Factory/pulseaudio (Old)
 and  /work/SRC/openSUSE:Factory/.pulseaudio.new (New)


Package is "pulseaudio"

Changes:

--- /work/SRC/openSUSE:Factory/pulseaudio/pulseaudio.changes2015-10-19 
22:48:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.pulseaudio.new/pulseaudio.changes   
2015-10-25 15:10:52.0 +0100
@@ -1,0 +2,8 @@
+Tue Oct 20 14:44:13 CEST 2015 - ti...@suse.de
+
+- Fix another alsa-mixer path for dock line out jack (boo#948979):
+  0003-alsa-mixer-Add-Dock-Line-Out-jack-handling-to-analog.patch
+- Fix the order of ports updates (boo#948979):
+  0004-module-alsa-card-Report-available-ports-before-unava.patch
+
+---

New:

  0003-alsa-mixer-Add-Dock-Line-Out-jack-handling-to-analog.patch
  0004-module-alsa-card-Report-available-ports-before-unava.patch



Other differences:
--
++ pulseaudio.spec ++
--- /var/tmp/diff_new_pack.5UfSrg/_old  2015-10-25 15:10:53.0 +0100
+++ /var/tmp/diff_new_pack.5UfSrg/_new  2015-10-25 15:10:53.0 +0100
@@ -50,6 +50,10 @@
 Patch4: pstream-Fix-use-after-free-in-srb_callback.patch
 # PATCH-FIX-UPSTREAM 0002-alsa-mixer-Recognize-Dock-Line-Out-jack.patch 
boo#934850
 Patch102:   0002-alsa-mixer-Recognize-Dock-Line-Out-jack.patch
+# PATCH-FIX-UPSTREAM 
0003-alsa-mixer-Add-Dock-Line-Out-jack-handling-to-analog.patch boo#948979
+Patch103:   0003-alsa-mixer-Add-Dock-Line-Out-jack-handling-to-analog.patch
+# PATCH-FIX-UPSTREAM 
0004-module-alsa-card-Report-available-ports-before-unava.patch boo#948979
+Patch104:   0004-module-alsa-card-Report-available-ports-before-unava.patch
 BuildRequires:  alsa-devel >= 1.0.19
 # require only minimal bluez, if we are on bluez 5 we will determine in build 
phase
 BuildRequires:  bluez-devel >= 4.99
@@ -334,6 +338,8 @@
 %endif
 %patch4 -p1
 %patch102 -p1
+%patch103 -p1
+%patch104 -p1
 
 %build
 echo 'HTML_TIMESTAMP=NO' >> doxygen/doxygen.conf.in

++ 0003-alsa-mixer-Add-Dock-Line-Out-jack-handling-to-analog.patch ++
>From e061f9afd2ee1a798d71b3d078725bfcea214202 Mon Sep 17 00:00:00 2001
From: Tanu Kaskinen 
Date: Fri, 18 Sep 2015 09:59:45 +0300
Subject: [PATCH] alsa-mixer: Add "Dock Line Out" jack handling to
 analog-output-speaker-always

The jack is already in analog-output-speaker, so let's have the same
handling in analog-output-speaker-always too.
---
 src/modules/alsa/mixer/paths/analog-output-speaker-always.conf | 4 
 1 file changed, 4 insertions(+)

diff --git a/src/modules/alsa/mixer/paths/analog-output-speaker-always.conf 
b/src/modules/alsa/mixer/paths/analog-output-speaker-always.conf
index 599cfc85f0d2..71f356dce00b 100644
--- a/src/modules/alsa/mixer/paths/analog-output-speaker-always.conf
+++ b/src/modules/alsa/mixer/paths/analog-output-speaker-always.conf
@@ -49,6 +49,10 @@ state.unplugged = unknown
 state.plugged = no
 state.unplugged = unknown
 
+[Jack Dock Line Out]
+state.plugged = no
+state.unplugged = unknown
+
 [Element Hardware Master]
 switch = mute
 volume = merge
-- 
2.6.1

++ 0004-module-alsa-card-Report-available-ports-before-unava.patch ++
>From 91313e60a81e96ce976f24c522656c57b4ab94ca Mon Sep 17 00:00:00 2001
From: David Henningsson 
Date: Tue, 5 May 2015 17:01:13 +0200
Subject: [PATCH] module-alsa-card: Report available ports before unavailable
 ones

In case the same jack causes one port to become available and another
one unavailable, the available should be reported first.

This is to avoid unnecessary changes: e g, consider a 'Headphone Jack'
making 'Headphone' available and 'Speaker' unavailable. In case the
unavailable change triggers first, and there is also a currently available
third port (e g 'Digital out'), the routing system might choose to route
to this port because neither of the 'Speaker' and 'Headphone' ports are
available.

Signed-off-by: David Henningsson 
---
 src/modules/alsa/module-alsa-card.c |   31 +--
 1 file changed, 25 insertions(+), 6 deletions(-)

--- a/src/modules/alsa/module-alsa-card.c
+++ b/src/modules/alsa/module-alsa-card.c
@@ -304,7 +304,7 @@ static void init_profile(struct userdata
 am->source = pa_alsa_source_new(u->module, u->modargs, __FILE__, 
u->card, am);
 }
 
-static void report_port_state(pa_device_port *p, struct userdata *u) {
+static pa_available_t calc_port_state(pa_device_port *p, struct userdata *u) {
 void *state;
 pa_alsa_jack *jack;
 pa_available_t pa = PA_AVAILABLE_UNKNOWN;
@@ -348,10 

commit autoyast2 for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2015-10-25 15:11:20

Comparing /work/SRC/openSUSE:Factory/autoyast2 (Old)
 and  /work/SRC/openSUSE:Factory/.autoyast2.new (New)


Package is "autoyast2"

Changes:

--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes  2015-10-20 
16:22:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2015-10-25 
15:11:21.0 +0100
@@ -1,0 +2,16 @@
+Thu Oct 22 17:00:02 CEST 2015 - sch...@suse.de
+
+- Ingore restarting of all wickedd* services while finishing the
+  second installation stage. (bnc#944349)
+- 3.1.100
+
+---
+Wed Oct 21 09:54:14 CEST 2015 - sch...@suse.de
+
+- Cloning system while an installation without AutoYaST: Do not
+  blame if packages are not available anymore because the
+  medium has already been unmounted (e.g. USB device)
+  (bnc#901747)
+- 3.1.99
+
+---

Old:

  autoyast2-3.1.98.tar.bz2

New:

  autoyast2-3.1.100.tar.bz2



Other differences:
--
++ autoyast2.spec ++
--- /var/tmp/diff_new_pack.wqKvab/_old  2015-10-25 15:11:22.0 +0100
+++ /var/tmp/diff_new_pack.wqKvab/_new  2015-10-25 15:11:22.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   autoyast2
-Version:3.1.98
+Version:3.1.100
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ autoyast2-3.1.98.tar.bz2 -> autoyast2-3.1.100.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.98/package/autoyast2.changes 
new/autoyast2-3.1.100/package/autoyast2.changes
--- old/autoyast2-3.1.98/package/autoyast2.changes  2015-10-15 
14:14:10.0 +0200
+++ new/autoyast2-3.1.100/package/autoyast2.changes 2015-10-23 
13:14:15.0 +0200
@@ -1,4 +1,20 @@
 ---
+Thu Oct 22 17:00:02 CEST 2015 - sch...@suse.de
+
+- Ingore restarting of all wickedd* services while finishing the
+  second installation stage. (bnc#944349)
+- 3.1.100
+
+---
+Wed Oct 21 09:54:14 CEST 2015 - sch...@suse.de
+
+- Cloning system while an installation without AutoYaST: Do not
+  blame if packages are not available anymore because the
+  medium has already been unmounted (e.g. USB device)
+  (bnc#901747)
+- 3.1.99
+
+---
 Thu Oct 15 11:56:52 UTC 2015 - an...@suse.com
 
 - Using "backup" or "partitioning_advanced" sections in the profile
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.98/package/autoyast2.spec 
new/autoyast2-3.1.100/package/autoyast2.spec
--- old/autoyast2-3.1.98/package/autoyast2.spec 2015-10-15 14:14:10.0 
+0200
+++ new/autoyast2-3.1.100/package/autoyast2.spec2015-10-23 
13:14:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   autoyast2
-Version:3.1.98
+Version:3.1.100
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.1.98/src/clients/inst_autoconfigure.rb 
new/autoyast2-3.1.100/src/clients/inst_autoconfigure.rb
--- old/autoyast2-3.1.98/src/clients/inst_autoconfigure.rb  2015-10-15 
14:14:10.0 +0200
+++ new/autoyast2-3.1.100/src/clients/inst_autoconfigure.rb 2015-10-23 
13:14:15.0 +0200
@@ -298,7 +298,10 @@
 "autoyast-initscripts.service",
 # Do not restart dbus. Otherwise some services will hang.
 # bnc#937900
-"dbus.service"
+"dbus.service",
+# Do not restart wickedd* services
+# bnc#944349
+"^wickedd"
   ]
   if final_restart_services
 logStep(_("Restarting all running services"))
@@ -308,9 +311,10 @@
   Builtins.splitstring(Ops.get_string(@out, "stdout", ""), "\n")
 ) { |s| Ops.greater_than(Builtins.size(s), 0) }
 Builtins.y2milestone("running services \"%1\"", @sl)
-@sl = Builtins.filter(@sl) do |s|
-  !Builtins.contains(@ser_ignore, s)
-end
+
+# Filtering out all services which must not to be restarted
+@sl.select! {|s| !@ser_ignore.any?{|i| s.match(/#{i}/)}}
+
 Builtins.y2milestone("restarting services \"%1\"", @sl)
 @cmd = Ops.add(
   "systemctl --no-block restart ",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit yast2-bootloader for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package yast2-bootloader for 
openSUSE:Factory checked in at 2015-10-25 15:11:25

Comparing /work/SRC/openSUSE:Factory/yast2-bootloader (Old)
 and  /work/SRC/openSUSE:Factory/.yast2-bootloader.new (New)


Package is "yast2-bootloader"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes
2015-10-20 16:22:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-bootloader.new/yast2-bootloader.changes   
2015-10-25 15:11:27.0 +0100
@@ -1,0 +2,14 @@
+Fri Oct 23 13:16:59 UTC 2015 - jreidin...@suse.com
+
+- respect original grub2 configuration when upgrade from grub2
+  to grub2 (bnc#951731)
+- 3.1.159
+
+---
+Mon Oct 19 16:10:34 UTC 2015 - jreidin...@suse.com
+
+- do not modify bootloader configuration during offline upgrade
+  from grub2 to grub2 (bnc#950695,bnc#950162)
+- 3.1.158
+
+---

Old:

  yast2-bootloader-3.1.157.tar.bz2

New:

  yast2-bootloader-3.1.159.tar.bz2



Other differences:
--
++ yast2-bootloader.spec ++
--- /var/tmp/diff_new_pack.xxIXx1/_old  2015-10-25 15:11:28.0 +0100
+++ /var/tmp/diff_new_pack.xxIXx1/_new  2015-10-25 15:11:28.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.1.157
+Version:3.1.159
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-bootloader-3.1.157.tar.bz2 -> yast2-bootloader-3.1.159.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.157/package/yast2-bootloader.changes 
new/yast2-bootloader-3.1.159/package/yast2-bootloader.changes
--- old/yast2-bootloader-3.1.157/package/yast2-bootloader.changes   
2015-10-16 15:32:16.0 +0200
+++ new/yast2-bootloader-3.1.159/package/yast2-bootloader.changes   
2015-10-23 15:32:11.0 +0200
@@ -1,4 +1,18 @@
 ---
+Fri Oct 23 13:16:59 UTC 2015 - jreidin...@suse.com
+
+- respect original grub2 configuration when upgrade from grub2
+  to grub2 (bnc#951731)
+- 3.1.159
+
+---
+Mon Oct 19 16:10:34 UTC 2015 - jreidin...@suse.com
+
+- do not modify bootloader configuration during offline upgrade
+  from grub2 to grub2 (bnc#950695,bnc#950162)
+- 3.1.158
+
+---
 Fri Oct 16 14:27:17 CEST 2015 - sch...@suse.de
 
 - Set StorageDevices flag disks_valid to true while cloning system
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.157/package/yast2-bootloader.spec 
new/yast2-bootloader-3.1.159/package/yast2-bootloader.spec
--- old/yast2-bootloader-3.1.157/package/yast2-bootloader.spec  2015-10-16 
15:32:16.0 +0200
+++ new/yast2-bootloader-3.1.159/package/yast2-bootloader.spec  2015-10-23 
15:32:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.1.157
+Version:3.1.159
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.157/src/clients/inst_bootloader.rb 
new/yast2-bootloader-3.1.159/src/clients/inst_bootloader.rb
--- old/yast2-bootloader-3.1.157/src/clients/inst_bootloader.rb 2015-10-16 
15:32:16.0 +0200
+++ new/yast2-bootloader-3.1.159/src/clients/inst_bootloader.rb 2015-10-23 
15:32:11.0 +0200
@@ -30,6 +30,13 @@
 return :auto # don't execute this once more
   end
 
+  # for upgrade that is from grub2 to grub2 and user do not want
+  # any changes, just quit (bnc#951731)
+  if Mode.update && !(BootCommon.was_read || BootCommon.was_proposed)
+Builtins.y2milestone("clean upgrade, do nothing")
+return :auto
+  end
+
   # if BL config is created from scratch, prepare config files
   # in order not to touch old files (bnc#899743)
   if Mode.installation || !BootCommon.was_read
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.1.157/src/lib/bootloader/finish_client.rb 
new/yast2-bootloader-3.1.159/src/lib/bootloader/finish_client.rb
--- old/yast2-bootloader-3.1.157/src/lib/bootloader/finish_client.rb
2015-10-16 15:32:17.0 +0200
+++ new/yast2-bootloader-3.1.159/src/lib/bootloader/finish_client.rb
2015-10-23 15:32:11.0 +0200
@@ -48,12 +48,19 @@
   if !Yast::Mode.update
 

commit Mesa for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2015-10-25 15:11:08

Comparing /work/SRC/openSUSE:Factory/Mesa (Old)
 and  /work/SRC/openSUSE:Factory/.Mesa.new (New)


Package is "Mesa"

Changes:

--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes2015-10-17 
16:36:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes   2015-10-25 
15:11:10.0 +0100
@@ -1,0 +2,12 @@
+Thu Oct 22 13:08:47 UTC 2015 - sndir...@suse.com
+
+- U_gallium-add-PIPE_SHADER_CAP_MAX_UNROLL_ITERATIONS_HI.patch
+  * This avoids a serious r600g bug leading to a GPU hang (bnc#951298)
+
+---
+Tue Oct 20 12:27:16 UTC 2015 - sndir...@suse.com
+
+- Update to 11.0.3
+  * bug fix release which fixes bugs found since the 11.0.2 release
+
+---

Old:

  mesa-11.0.2.tar.xz
  mesa-11.0.2.tar.xz.sig

New:

  U_gallium-add-PIPE_SHADER_CAP_MAX_UNROLL_ITERATIONS_HI.patch
  mesa-11.0.3.tar.xz
  mesa-11.0.3.tar.xz.sig



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.Yh1GmK/_old  2015-10-25 15:11:12.0 +0100
+++ /var/tmp/diff_new_pack.Yh1GmK/_new  2015-10-25 15:11:12.0 +0100
@@ -18,7 +18,7 @@
 
 %define glamor 1
 %define _name_archive mesa
-%define _version 11.0.2
+%define _version 11.0.3
 %ifarch %ix86 x86_64 %arm ppc ppc64 ppc64le s390x
 %define gallium_loader 1
 %else
@@ -37,7 +37,7 @@
 %define with_nine 1
 %endif
 Name:   Mesa
-Version:11.0.2
+Version:11.0.3
 Release:0
 Summary:System for rendering interactive 3-D graphics
 License:MIT
@@ -53,6 +53,7 @@
 # required for building against wayland of openSUSE 13.1
 Patch0: n_Fixed-build-against-wayland-1.2.1.patch
 # merged, should be in the next release
+Patch1: U_gallium-add-PIPE_SHADER_CAP_MAX_UNROLL_ITERATIONS_HI.patch
 Patch10:U_i965-Remove-early-release-of-DRI2-miptree.patch
 # to be upstreamed
 Patch11:u_Fix-crash-in-swrast-when-setting-a-texture-for-a-pix.patch
@@ -520,6 +521,7 @@
 # required for building against wayland of openSUSE 13.1
 %patch0 -p1
 %endif
+%patch1  -p1
 %patch10 -p1
 ### disabled, but not dropped yet; these still need investigation in
 ### order to figure out whether the issue is still reproducable and


++ U_gallium-add-PIPE_SHADER_CAP_MAX_UNROLL_ITERATIONS_HI.patch ++
>From 814f31457e9ae83d4f1e39236f704721b279b73d Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= 
Date: Tue, 20 Oct 2015 18:26:02 +0200
Subject: [PATCH] gallium: add PIPE_SHADER_CAP_MAX_UNROLL_ITERATIONS_HINT

This avoids a serious r600g bug leading to a GPU hang.
The chances this bug will get fixed are pretty low now.

I deeply regret listening to others and not pushing this patch, leaving
other users with a GPU-crashing driver. Yes, it should be fixed
in the compiler and it's ugly, but users couldn't care less about that.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=86720

Cc: 11.0 10.6 
Reviewed-by: Brian Paul 
---
 src/gallium/auxiliary/gallivm/lp_bld_limits.h| 2 ++
 src/gallium/auxiliary/tgsi/tgsi_exec.h   | 2 ++
 src/gallium/docs/source/screen.rst   | 4 
 src/gallium/drivers/freedreno/freedreno_screen.c | 2 ++
 src/gallium/drivers/i915/i915_screen.c   | 2 ++
 src/gallium/drivers/ilo/ilo_screen.c | 2 ++
 src/gallium/drivers/nouveau/nv30/nv30_screen.c   | 4 
 src/gallium/drivers/nouveau/nv50/nv50_screen.c   | 2 ++
 src/gallium/drivers/nouveau/nvc0/nvc0_screen.c   | 2 ++
 src/gallium/drivers/r300/r300_screen.c   | 4 
 src/gallium/drivers/r600/r600_pipe.c | 6 ++
 src/gallium/drivers/radeonsi/si_pipe.c   | 2 ++
 src/gallium/drivers/svga/svga_screen.c   | 4 
 src/gallium/drivers/vc4/vc4_screen.c | 2 ++
 src/gallium/include/pipe/p_defines.h | 3 ++-
 src/mesa/state_tracker/st_extensions.c   | 3 +++
 16 files changed, 45 insertions(+), 1 deletion(-)

Index: mesa-11.0.3/src/gallium/auxiliary/gallivm/lp_bld_limits.h
===
--- mesa-11.0.3.orig/src/gallium/auxiliary/gallivm/lp_bld_limits.h
+++ mesa-11.0.3/src/gallium/auxiliary/gallivm/lp_bld_limits.h
@@ -137,6 +137,8 @@ gallivm_get_shader_param(enum pipe_shade
case PIPE_SHADER_CAP_TGSI_DFRACEXP_DLDEXP_SUPPORTED:
case PIPE_SHADER_CAP_TGSI_FMA_SUPPORTED:
   return 0;
+   case PIPE_SHADER_CAP_MAX_UNROLL_ITERATIONS_HINT:
+  return 32;
}
/* if we get here, we missed a shader 

commit dolphin for openSUSE:Factory

2015-10-25 Thread h_root
Hello community,

here is the log from the commit of package dolphin for openSUSE:Factory checked 
in at 2015-10-25 15:11:14

Comparing /work/SRC/openSUSE:Factory/dolphin (Old)
 and  /work/SRC/openSUSE:Factory/.dolphin.new (New)


Package is "dolphin"

Changes:

--- /work/SRC/openSUSE:Factory/dolphin/dolphin.changes  2015-10-19 
22:31:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.dolphin.new/dolphin.changes 2015-10-25 
15:11:15.0 +0100
@@ -1,0 +2,12 @@
+Wed Oct 21 16:34:29 UTC 2015 - wba...@tmo.at
+
+- Install dolphinsu.desktop as org.kde.dolphinsu.desktop to prevent
+  it being overridden by an old KDE4 entry in ~/.local/share/applications/
+
+---
+Mon Oct 19 10:31:42 UTC 2015 - wba...@tmo.at
+
+- Fix dolphinsu.desktop: the KF5 based dolphin doesn't support
+  "-caption" any more (boo#950907)
+
+---



Other differences:
--
++ dolphin.spec ++
--- /var/tmp/diff_new_pack.roepWn/_old  2015-10-25 15:11:16.0 +0100
+++ /var/tmp/diff_new_pack.roepWn/_new  2015-10-25 15:11:16.0 +0100
@@ -101,7 +101,7 @@
 %install
   %kf5_makeinstall -C build
 
-  install -D -m 0644 %{SOURCE1} %{buildroot}%{_kf5_applicationsdir}
+  install -D -m 0644 %{SOURCE1} 
%{buildroot}%{_kf5_applicationsdir}/org.kde.dolphinsu.desktop
   %suse_update_desktop_file org.kde.dolphin  System FileManager
 
   rm -rfv %{buildroot}%{_kf5_libdir}/libdolphinprivate.so
@@ -125,7 +125,7 @@
 %{_kf5_libdir}/libkdeinit5_dolphin.so
 %{_kf5_bindir}/dolphin
 %{_kf5_applicationsdir}/org.kde.dolphin.desktop
-%{_kf5_applicationsdir}/dolphinsu.desktop
+%{_kf5_applicationsdir}/org.kde.dolphinsu.desktop
 %dir %{_kf5_sharedir}/kxmlgui5
 %dir %{_kf5_sharedir}/kxmlgui5/dolphin
 %{_kf5_sharedir}/kxmlgui5/dolphin/dolphinui.rc

++ dolphinsu.desktop ++
--- /var/tmp/diff_new_pack.roepWn/_old  2015-10-25 15:11:16.0 +0100
+++ /var/tmp/diff_new_pack.roepWn/_new  2015-10-25 15:11:16.0 +0100
@@ -1,6 +1,6 @@
 [Desktop Entry]
 Name=File Manager - Super User Mode
-Exec=dbus-launch dolphin %i -caption "%c" "%u"
+Exec=dbus-launch dolphin %i -qwindowtitle "%c" "%u"
 Icon=system-file-manager
 Type=Application
 X-DocPath=dolphin/index.html