commit digikam for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package digikam for openSUSE:Factory checked 
in at 2016-10-10 16:16:08

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


Package is "digikam"

Changes:

--- /work/SRC/openSUSE:Factory/digikam/digikam.changes  2016-10-03 
15:50:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.digikam.new/digikam.changes 2016-10-10 
16:16:08.0 +0200
@@ -1,0 +2,7 @@
+Mon Oct  3 16:27:33 UTC 2016 - alarr...@suse.com
+
+- Updated migration_from_digikam4.diff to migrate also the
+  geobookmarks.xml file from digikam4. This patch thus fixes
+  kde#364258, kde#357944 and kde#368968.
+
+---



Other differences:
--
++ digikam.spec ++
--- /var/tmp/diff_new_pack.ACq4a5/_old  2016-10-10 16:16:15.0 +0200
+++ /var/tmp/diff_new_pack.ACq4a5/_new  2016-10-10 16:16:15.0 +0200
@@ -26,7 +26,7 @@
 Source0:
http://download.kde.org/stable/%{name}/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE find_libastro-qt5.patch -- fix build of geolocation 
support in Leap 42.1
 Patch2: find_libastro-qt5.patch
-# PATCH-FIX-UPSTREAM migration_from_digikam4.diff alarr...@suse.com kde#364258 
-- Migration wizard page to migrate configuration and db from digikam4
+# PATCH-FIX-UPSTREAM migration_from_digikam4.diff alarr...@suse.com kde#364258 
kde#357944 kde#368968 -- Migration wizard page to migrate configuration and db 
from digikam4
 Patch3: migration_from_digikam4.diff
 #This pulls in QWebEngine, which is not available on ppc64
 %ifarch %ix86 x86_64 %arm aarch64 mips mips64

++ migration_from_digikam4.diff ++
--- /var/tmp/diff_new_pack.ACq4a5/_old  2016-10-10 16:16:15.0 +0200
+++ /var/tmp/diff_new_pack.ACq4a5/_new  2016-10-10 16:16:15.0 +0200
@@ -111,7 +111,7 @@
 ===
 --- /dev/null
 +++ 
digikam-5.2.0/core/utilities/assistants/firstrun/migratefromdigikam4page.cpp
-@@ -0,0 +1,203 @@
+@@ -0,0 +1,220 @@
 +/* 
 + *
 + * This file is a part of digiKam project
@@ -255,7 +255,24 @@
 + qCDebug(DIGIKAM_GENERAL_LOG) << "Config file" << oldConfigFile 
<< "was migrated to" << newConfigLocation;
 + }
 + }
++  }
++
++  // Migrate $KDEHOME/share/apps/kipi/geobookmarks.xml to 
./.local/share/digikam/geobookmarks.xml
++  QString oldGeobookmarksFile = migration.locateLocal("data", 
QStringLiteral("kipi/geobookmarks.xml"));
++  const QString newGeobookmarksFile = 
QStandardPaths::writableLocation(QStandardPaths::DataLocation)
+++ QStringLiteral("/geobookmarks.xml");
++
++  if (QFile(newGeobookmarksFile).exists()) {
++ qCDebug(DIGIKAM_GENERAL_LOG) << newGeobookmarksFile << " already exists. 
Skipping";
++  } else {
++ QFileInfo fileInfo(newGeobookmarksFile);
++ QDir().mkpath(fileInfo.absolutePath());
 +
++ if (!oldGeobookmarksFile.isEmpty()) {
++ if (QFile(oldGeobookmarksFile).copy(newGeobookmarksFile)) {
++ qCDebug(DIGIKAM_GENERAL_LOG) << "Config file" << 
oldGeobookmarksFile << "was migrated to" << newGeobookmarksFile;
++ }
++ }
 +  }
 +
 +  // Fix albumroot identifier since digiKam 5 doesn't interpret correctly
@@ -402,7 +419,8 @@
 -#else
 -  // Linux settings place.
 -QLatin1String("~/.config/"), 
QLatin1String("~/.kde4/share/config")
- #endif
+-#endif
++#endif
 +#else // defined Q_OS_LINUX
 +"",
 +QLatin1String(digikam_version_short)




commit gnutls for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package gnutls for openSUSE:Factory checked 
in at 2016-10-10 16:16:31

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


Package is "gnutls"

Changes:

--- /work/SRC/openSUSE:Factory/gnutls/gnutls.changes2016-07-18 
21:19:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnutls.new/gnutls.changes   2016-10-10 
16:16:31.0 +0200
@@ -1,0 +2,25 @@
+Sun Oct  2 16:13:59 UTC 2016 - ec...@opensuse.org
+
+- GnuTLS 3.4.15:
+  * libgnutls: Corrected the comparison of the serial size in OCSP 
+response. Previously the OCSP certificate check wouldn't verify 
+the serial length and could succeed in cases it shouldn't 
+(GNUTLS-SA-2016-3).
+  * libgnutls: Fixes in gnutls_x509_crt_list_import2, which was
+ignoring flags if all certificates in the list fit within the
+initially allocated memory.
+  * libgnutls: Corrected issue which made 
+gnutls_certificate_get_x509_crt() to return invalid pointers 
+when returned more than a single certificate.
+  * libgnutls: Fix gnutls_pkcs12_simple_parse to always extract the
+complete chain.
+  * libgnutls: Added support for decrypting PKCS#8 files which use 
+the HMAC-SHA256 as PRF.
+  * libgnutls: Addressed issue with PKCS#11 signature generation on 
+ECDSA keys. The signature is now written as unsigned integers 
+into the DSASignatureValue structure. Previously signed 
+integers could be written depending on what the underlying 
+module would produce. Addresses #122.
+- fix build error for 13.2, 42.1 and 42.2
+
+---

Old:

  gnutls-3.4.14.tar.xz
  gnutls-3.4.14.tar.xz.sig

New:

  gnutls-3.4.15.tar.xz
  gnutls-3.4.15.tar.xz.sig



Other differences:
--
++ gnutls.spec ++
--- /var/tmp/diff_new_pack.uNvbKm/_old  2016-10-10 16:16:33.0 +0200
+++ /var/tmp/diff_new_pack.uNvbKm/_new  2016-10-10 16:16:33.0 +0200
@@ -30,7 +30,7 @@
 %bcond_without guile
 
 Name:   gnutls
-Version:3.4.14
+Version:3.4.15
 Release:0
 Summary:The GNU Transport Layer Security Library
 License:LGPL-2.1+ and GPL-3.0+
@@ -51,12 +51,20 @@
 BuildRequires:  libnettle-devel >= 3.1
 BuildRequires:  libtasn1-devel >= 4.3
 BuildRequires:  libtool
+%if 0%{?suse_version} <= 1320
+BuildRequires:  net-tools
+%else
 BuildRequires:  net-tools-deprecated
+%endif
 %if %{with tpm}
 BuildRequires:  trousers-devel
 %endif
 %if %{with dane}
+%if 0%{?suse_version} <= 1320
+BuildRequires:  unbound-devel
+%else
 BuildRequires:  libunbound-devel
+%endif
 Requires:   libgnutls-dane%{gnutls_dane_sover} = %{version}
 %endif
 %if %{with guile}

++ gnutls-3.4.14.tar.xz -> gnutls-3.4.15.tar.xz ++
/work/SRC/openSUSE:Factory/gnutls/gnutls-3.4.14.tar.xz 
/work/SRC/openSUSE:Factory/.gnutls.new/gnutls-3.4.15.tar.xz differ: char 26, 
line 1





commit python3-numpy for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python3-numpy for openSUSE:Factory 
checked in at 2016-10-10 16:17:21

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


Package is "python3-numpy"

Changes:

--- /work/SRC/openSUSE:Factory/python3-numpy/python3-numpy-doc.changes  
2016-07-10 18:45:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-numpy.new/python3-numpy-doc.changes 
2016-10-10 16:17:22.0 +0200
@@ -1,0 +2,43 @@
+Tue Oct  4 03:55:47 UTC 2016 - a...@gmx.de
+
+- update to version 1.11.2:
+  * #7736 BUG: Many functions silently drop 'keepdims' kwarg.
+  * #7738 ENH: Add extra kwargs and update doc of many MA methods.
+  * #7778 DOC: Update Numpy 1.11.1 release notes.
+  * #7793 BUG: MaskedArray.count treats negative axes incorrectly.
+  * #7816 BUG: Fix array too big error for wide dtypes.
+  * #7821 BUG: Make sure npy_mul_with_overflow_ detects
+overflow.
+  * #7824 MAINT: Allocate fewer bytes for empty arrays.
+  * #7847 MAINT,DOC: Fix some imp module uses and update f2py.compile
+docstring.
+  * #7849 MAINT: Fix remaining uses of deprecated Python imp module.
+  * #7851 BLD: Fix ATLAS version detection.
+  * #7896 BUG: Construct ma.array from np.array which contains
+padding.
+  * #7904 BUG: Fix float16 type not being called due to wrong
+ordering.
+  * #7917 BUG: Production install of numpy should not require nose.
+  * #7919 BLD: Fixed MKL detection for recent versions of this
+library.
+  * #7920 BUG: Fix for issue #7835 (ma.median of 1d).
+  * #7932 BUG: Monkey-patch _msvccompile.gen_lib_option like other
+compilers.
+  * #7939 BUG: Check for HAVE_LDOUBLE_DOUBLE_DOUBLE_LE in
+npy_math_complex.
+  * #7953 BUG: Guard against buggy comparisons in generic quicksort.
+  * #7954 BUG: Use keyword arguments to initialize Extension base
+class.
+  * #7955 BUG: Make sure numpy globals keep identity after reload.
+  * #7972 BUG: MSVCCompiler grows 'lib' & 'include' env strings
+exponentially.
+  * #8005 BLD: Remove __NUMPY_SETUP__ from builtins at end of
+setup.py.
+  * #8010 MAINT: Remove leftover imp module imports.
+  * #8020 BUG: Fix return of np.ma.count if keepdims is True and axis
+is None.
+  * #8024 BUG: Fix numpy.ma.median.
+  * #8031 BUG: Fix np.ma.median with only one non-masked value.
+  * #8044 BUG: Fix bug in NpyIter buffering with discontinuous arrays.
+
+---
python3-numpy.changes: same change

Old:

  numpy-1.11.1.tar.gz

New:

  numpy-1.11.2.tar.gz



Other differences:
--
++ python3-numpy-doc.spec ++
--- /var/tmp/diff_new_pack.D0IkAC/_old  2016-10-10 16:17:23.0 +0200
+++ /var/tmp/diff_new_pack.D0IkAC/_new  2016-10-10 16:17:23.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-numpy-doc
-Version:1.11.1
+Version:1.11.2
 Release:0
 Url:http://www.numpy.org/
 Summary:Documentation for python3-numpy

++ python3-numpy.spec ++
--- /var/tmp/diff_new_pack.D0IkAC/_old  2016-10-10 16:17:23.0 +0200
+++ /var/tmp/diff_new_pack.D0IkAC/_new  2016-10-10 16:17:23.0 +0200
@@ -19,7 +19,7 @@
 %define with_atlas 0
 
 Name:   python3-numpy
-Version:1.11.1
+Version:1.11.2
 Release:0
 Url:http://www.numpy.org/
 Summary:NumPy array processing for numbers, strings, records and 
objects

++ numpy-1.11.1.tar.gz -> numpy-1.11.2.tar.gz ++
 3691 lines of diff (skipped)




commit python3-setuptools for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python3-setuptools for 
openSUSE:Factory checked in at 2016-10-10 16:17:13

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


Package is "python3-setuptools"

Changes:

--- /work/SRC/openSUSE:Factory/python3-setuptools/python3-setuptools.changes
2016-09-30 15:25:09.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-setuptools.new/python3-setuptools.changes   
2016-10-10 16:17:13.0 +0200
@@ -1,0 +2,10 @@
+Sun Oct  2 15:43:16 UTC 2016 - a...@gmx.de
+
+- update to version 28.2.0:
+  * #805: Disable -nspkg.pth behavior on Python 3.3+ where PEP-420
+ functionality is adequate. Fixes pip #1924.
+
+- changes from version 28.1.0:
+  * #803: Bump certifi to 2016.9.26.
+
+---

Old:

  setuptools-28.0.0.tar.gz

New:

  setuptools-28.2.0.tar.gz



Other differences:
--
++ python3-setuptools.spec ++
--- /var/tmp/diff_new_pack.pxotNb/_old  2016-10-10 16:17:15.0 +0200
+++ /var/tmp/diff_new_pack.pxotNb/_new  2016-10-10 16:17:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-setuptools
-Version:28.0.0
+Version:28.2.0
 Release:0
 Url:http://pypi.python.org/pypi/setuptools
 Summary:Easily download, build, install, upgrade, and uninstall Python 
packages

++ setuptools-28.0.0.tar.gz -> setuptools-28.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-28.0.0/CHANGES.rst 
new/setuptools-28.2.0/CHANGES.rst
--- old/setuptools-28.0.0/CHANGES.rst   2016-09-27 21:53:44.0 +0200
+++ new/setuptools-28.2.0/CHANGES.rst   2016-10-02 16:24:38.0 +0200
@@ -2,6 +2,17 @@
 CHANGES
 ===
 
+v28.2.0
+---
+
+* #805: Disable ``-nspkg.pth`` behavior on Python 3.3+ where
+  PEP-420 functionality is adequate. Fixes pip #1924.
+
+v28.1.0
+---
+
+* #803: Bump certifi to 2016.9.26.
+
 v28.0.0
 ---
 
@@ -90,7 +101,7 @@
 ---
 
 * Re-release of 26.1.0 with pytest pinned to allow for automated
-  deployement and thus proper packaging environment variables,
+  deployment and thus proper packaging environment variables,
   fixing issues with missing executable launchers.
 
 v26.1.0
@@ -120,7 +131,7 @@
 ---
 
 * Add Extension(py_limited_api=True). When set to a truthy value,
-  that extension gets a filename apropriate for code using Py_LIMITED_API.
+  that extension gets a filename appropriate for code using Py_LIMITED_API.
   When used correctly this allows a single compiled extension to work on
   all future versions of CPython 3.
   The py_limited_api argument only controls the filename. To be
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-28.0.0/PKG-INFO 
new/setuptools-28.2.0/PKG-INFO
--- old/setuptools-28.0.0/PKG-INFO  2016-09-27 21:54:06.0 +0200
+++ new/setuptools-28.2.0/PKG-INFO  2016-10-02 16:25:13.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: setuptools
-Version: 28.0.0
+Version: 28.2.0
 Summary: Easily download, build, install, upgrade, and uninstall Python 
packages
 Home-page: https://github.com/pypa/setuptools
 Author: Python Packaging Authority
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-28.0.0/setup.cfg 
new/setuptools-28.2.0/setup.cfg
--- old/setuptools-28.0.0/setup.cfg 2016-09-27 21:54:06.0 +0200
+++ new/setuptools-28.2.0/setup.cfg 2016-10-02 16:25:13.0 +0200
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 28.0.0
+current_version = 28.2.0
 commit = True
 tag = True
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-28.0.0/setup.py 
new/setuptools-28.2.0/setup.py
--- old/setuptools-28.0.0/setup.py  2016-09-27 21:53:44.0 +0200
+++ new/setuptools-28.2.0/setup.py  2016-10-02 16:24:38.0 +0200
@@ -88,7 +88,7 @@
 
 setup_params = dict(
 name="setuptools",
-version="28.0.0",
+version="28.2.0",
 description="Easily download, build, install, upgrade, and uninstall "
 "Python packages",
 author="Python Packaging Authority",
@@ -167,11 +167,11 @@
 """).strip().splitlines(),
 extras_require={
 "ssl:sys_platform=='win32'": "wincertstore==0.2",
-"certs": "certifi==2016.8.31",
+"certs": "certifi==2016.9.26",
 },
 dependency_links=[
 pypi_link(
-'certifi-2016.8.31.tar.gz#md5=2f22d484a36d38d98be74f9eeb2846ec',
+

commit python3-tornado for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python3-tornado for openSUSE:Factory 
checked in at 2016-10-10 16:17:05

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


Package is "python3-tornado"

Changes:

--- /work/SRC/openSUSE:Factory/python3-tornado/python3-tornado.changes  
2016-07-27 16:30:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-tornado.new/python3-tornado.changes 
2016-10-10 16:17:04.0 +0200
@@ -1,0 +2,18 @@
+Sun Oct  2 15:53:26 UTC 2016 - a...@gmx.de
+
+- update to version 4.4.2:
+  * Security fixes
++ A difference in cookie parsing between Tornado and web browsers
+  (especially when combined with Google Analytics) could allow an
+  attacker to set arbitrary cookies and bypass XSRF
+  protection. The cookie parser has been rewritten to fix this
+  attack.
+  * Backwards-compatibility notes
++ Cookies containing certain special characters (in particular
+  semicolon and square brackets) are now parsed differently.
++ If the cookie header contains a combination of valid and invalid
+  cookies, the valid ones will be returned (older versions of
+  Tornado would reject the entire header for a single invalid
+  cookie).
+
+---

Old:

  tornado-4.4.1.tar.gz

New:

  tornado-4.4.2.tar.gz



Other differences:
--
++ python3-tornado.spec ++
--- /var/tmp/diff_new_pack.hgUB8G/_old  2016-10-10 16:17:05.0 +0200
+++ /var/tmp/diff_new_pack.hgUB8G/_new  2016-10-10 16:17:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-tornado
-Version:4.4.1
+Version:4.4.2
 Release:0
 Url:http://www.tornadoweb.org
 Summary:Open source version of scalable, non-blocking web server that 
power FriendFeed

++ tornado-4.4.1.tar.gz -> tornado-4.4.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tornado-4.4.1/PKG-INFO new/tornado-4.4.2/PKG-INFO
--- old/tornado-4.4.1/PKG-INFO  2016-07-23 18:28:12.0 +0200
+++ new/tornado-4.4.2/PKG-INFO  2016-10-01 00:48:19.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: tornado
-Version: 4.4.1
+Version: 4.4.2
 Summary: Tornado is a Python web framework and asynchronous networking 
library, originally developed at FriendFeed.
 Home-page: http://www.tornadoweb.org/
 Author: Facebook
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tornado-4.4.1/docs/releases/v4.4.2.rst 
new/tornado-4.4.2/docs/releases/v4.4.2.rst
--- old/tornado-4.4.1/docs/releases/v4.4.2.rst  1970-01-01 01:00:00.0 
+0100
+++ new/tornado-4.4.2/docs/releases/v4.4.2.rst  2016-10-01 00:43:58.0 
+0200
@@ -0,0 +1,22 @@
+What's new in Tornado 4.4.2
+===
+
+Oct 1, 2016
+
+
+Security fixes
+~~
+
+* A difference in cookie parsing between Tornado and web browsers
+  (especially when combined with Google Analytics) could allow an
+  attacker to set arbitrary cookies and bypass XSRF protection. The
+  cookie parser has been rewritten to fix this attack.
+
+Backwards-compatibility notes
+~
+
+* Cookies containing certain special characters (in particular semicolon
+  and square brackets) are now parsed differently.
+* If the cookie header contains a combination of valid and invalid cookies,
+  the valid ones will be returned (older versions of Tornado would reject the
+  entire header for a single invalid cookie).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tornado-4.4.1/docs/releases.rst 
new/tornado-4.4.2/docs/releases.rst
--- old/tornado-4.4.1/docs/releases.rst 2016-07-23 18:25:07.0 +0200
+++ new/tornado-4.4.2/docs/releases.rst 2016-10-01 00:43:58.0 +0200
@@ -4,6 +4,7 @@
 .. toctree::
:maxdepth: 2
 
+   releases/v4.4.2
releases/v4.4.1
releases/v4.4.0
releases/v4.3.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tornado-4.4.1/setup.py new/tornado-4.4.2/setup.py
--- old/tornado-4.4.1/setup.py  2016-07-23 18:25:15.0 +0200
+++ new/tornado-4.4.2/setup.py  2016-10-01 00:43:58.0 +0200
@@ -103,7 +103,7 @@
 
 kwargs = {}
 
-version = "4.4.1"
+version = "4.4.2"
 
 with open('README.rst') as f:
 kwargs['long_description'] = f.read()
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tornado-4.4.1/tornado/__init__.py 
new/tornado-4.4.2/tornado/__init__.py
--- old/tornado-4.4.1/tornado/__init__.py   

commit openssl for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package openssl for openSUSE:Factory checked 
in at 2016-10-10 16:17:30

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


Package is "openssl"

Changes:

--- /work/SRC/openSUSE:Factory/openssl/openssl.changes  2016-09-28 
15:03:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.openssl.new/openssl.changes 2016-10-10 
16:17:30.0 +0200
@@ -1,0 +2,21 @@
+Fri Sep 30 10:53:56 UTC 2016 - vci...@suse.com
+
+- resume reading from /dev/urandom when interrupted by a signal
+  (bsc#995075)
+  * add openssl-randfile_fread_interrupt.patch
+
+---
+Fri Sep 30 10:53:06 UTC 2016 - vci...@suse.com
+
+- add FIPS changes from SP2:
+- fix problems with locking in FIPS mode (bsc#992120)
+  * duplicates: bsc#991877, bsc#991193, bsc#990392, bsc#990428
+and bsc#990207
+  * bring back openssl-fipslocking.patch
+- drop openssl-fips_RSA_compute_d_with_lcm.patch (upstream)
+  (bsc#984323)
+- don't check for /etc/system-fips (bsc#982268)
+  * add openssl-fips-dont_run_FIPS_module_installed.patch
+- refresh openssl-fips-rsagen-d-bits.patch
+
+---

Old:

  openssl-fips_RSA_compute_d_with_lcm.patch

New:

  openssl-fips-dont_run_FIPS_module_installed.patch
  openssl-fipslocking.patch
  openssl-randfile_fread_interrupt.patch



Other differences:
--
++ openssl.spec ++
--- /var/tmp/diff_new_pack.xNi2BB/_old  2016-10-10 16:17:32.0 +0200
+++ /var/tmp/diff_new_pack.xNi2BB/_new  2016-10-10 16:17:32.0 +0200
@@ -74,9 +74,9 @@
 Patch37:openssl-1.0.1e-add-test-suse-default-cipher-suite.patch
 Patch38:openssl-missing_FIPS_ec_group_new_by_curve_name.patch
 # FIPS patches from SLE-12
+Patch41:openssl-fips-dont_run_FIPS_module_installed.patch
 Patch50:openssl-fips_disallow_x931_rand_method.patch
 Patch51:openssl-fips_disallow_ENGINE_loading.patch
-Patch52:openssl-fips_RSA_compute_d_with_lcm.patch
 Patch53:openssl-rsakeygen-minimum-distance.patch
 Patch54:openssl-urandom-reseeding.patch
 Patch55:openssl-fips-rsagen-d-bits.patch
@@ -85,7 +85,9 @@
 Patch58:openssl-fips-clearerror.patch
 Patch59:openssl-fips-dont-fall-back-to-default-digest.patch
 
-Patch60:openssl-print_notice-NULL_crash.patch
+Patch61:openssl-fipslocking.patch
+Patch62:openssl-print_notice-NULL_crash.patch
+Patch63:openssl-randfile_fread_interrupt.patch
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -196,9 +198,9 @@
 %patch35 -p1
 %patch37 -p1
 %patch38 -p1
+%patch41 -p1
 %patch50 -p1
 %patch51 -p1
-%patch52 -p1
 %patch53 -p1
 %patch54 -p1
 %patch55 -p1
@@ -206,7 +208,9 @@
 %patch57 -p1
 %patch58 -p1
 %patch59 -p1
-%patch60 -p1
+%patch61 -p1
+%patch62 -p1
+%patch63 -p1
 %if 0%{?suse_version} >= 1120
 %patch3
 %endif


++ openssl-fips-dont_run_FIPS_module_installed.patch ++
Index: openssl-1.0.2h/crypto/o_init.c
===
--- openssl-1.0.2h.orig/crypto/o_init.c 2016-06-01 15:26:25.026937000 +0200
+++ openssl-1.0.2h/crypto/o_init.c  2016-06-01 16:23:24.980858697 +0200
@@ -111,9 +111,9 @@ void __attribute__ ((constructor)) OPENS
 return;
 done = 1;
 #ifdef OPENSSL_FIPS
-if (!FIPS_module_installed()) {
+/*if (!FIPS_module_installed()) {
 return;
-}
+}*/
 RAND_init_fips();
 init_fips_mode();
 if (!FIPS_mode()) {
++ openssl-fips-rsagen-d-bits.patch ++
--- /var/tmp/diff_new_pack.xNi2BB/_old  2016-10-10 16:17:32.0 +0200
+++ /var/tmp/diff_new_pack.xNi2BB/_new  2016-10-10 16:17:32.0 +0200
@@ -1,8 +1,8 @@
-Index: openssl-1.0.2g/crypto/rsa/rsa_gen.c
+Index: openssl-1.0.2h/crypto/rsa/rsa_gen.c
 ===
 openssl-1.0.2g.orig/crypto/rsa/rsa_gen.c   2016-04-14 10:23:50.941168136 
+0200
-+++ openssl-1.0.2g/crypto/rsa/rsa_gen.c2016-04-14 10:47:56.651757817 
+0200
-@@ -237,6 +237,12 @@ static int FIPS_rsa_builtin_keygen(RSA *
+--- openssl-1.0.2h.orig/crypto/rsa/rsa_gen.c   2016-07-14 15:25:28.640174922 
+0200
 openssl-1.0.2h/crypto/rsa/rsa_gen.c2016-07-14 15:27:41.330349764 
+0200
+@@ -234,6 +234,12 @@ static int FIPS_rsa_builtin_keygen(RSA *
  goto err;
  }
  
@@ -15,7 +15,7 @@
  /* prepare approximate minimum p and q */
  if (!BN_set_word(r0, 0xB504F334))
  goto err;
-@@ -249,12 +255,6 @@ static int FIPS_rsa_builtin_keygen(RSA *
+@@ -246,12 +252,6 @@ static int FIPS_rsa_builtin_keygen(RSA *
  if 

commit python3-Sphinx for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python3-Sphinx for openSUSE:Factory 
checked in at 2016-10-10 16:16:47

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


Package is "python3-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python3-Sphinx/python3-Sphinx.changes
2016-08-31 14:29:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-Sphinx.new/python3-Sphinx.changes   
2016-10-10 16:16:48.0 +0200
@@ -1,0 +2,33 @@
+Sun Oct  2 15:45:36 UTC 2016 - a...@gmx.de
+
+- update to version 1.4.8:
+  * #2996: The wheel package of Sphinx got crash with ImportError
+
+- changes from version 1.4.7:
+  * #2890: Quickstart should return an error consistently on all error
+ conditions
+  * #2870: flatten genindex columns' heights.
+  * #2856: Search on generated HTML site doesnt find some symbols
+  * #2882: Fall back to a GET request on 403 status in linkcheck
+  * #2902: jsdump.loads fails to load search index if keywords starts
+with underscore
+  * #2900: Fix epub content.opf: add auto generated orphan files to
+spine.
+  * #2899: Fix "hasdoc()" function in Jinja2 template. It can detect
+"genindex", "search" collectly.
+  * #2901: Fix epub result: skip creating links from image tags to
+original image files.
+  * #2917: inline code is hyphenated on HTML
+  * #1462: autosummary warns for namedtuple with attribute with
+trailing underscore
+  * Could not reference equations if ":nowrap:" option specified
+  * #2873: code-block overflow in latex (due to commas)
+  * #1060, #2056: sphinx.ext.intersphinx: broken links are generated
+if relative  paths are used in `intersphinx_mapping`
+  * #2931: code-block directive with same :caption: causes warning of
+duplicate target.  Now `code-block` and `literalinclude` does not
+define hyperlink target using its caption automatially.
+  * #2962: latex: missing label of longtable
+  * #2968: autodoc: show-inheritance option breaks docstrings
+
+---

Old:

  Sphinx-1.4.6.tar.gz

New:

  Sphinx-1.4.8.tar.gz



Other differences:
--
++ python3-Sphinx.spec ++
--- /var/tmp/diff_new_pack.9QMjbR/_old  2016-10-10 16:16:49.0 +0200
+++ /var/tmp/diff_new_pack.9QMjbR/_new  2016-10-10 16:16:49.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-Sphinx
-Version:1.4.6
+Version:1.4.8
 Release:0
 Url:http://sphinx.pocoo.org
 Summary:Python documentation generator

++ Sphinx-1.4.6.tar.gz -> Sphinx-1.4.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-1.4.6/CHANGES new/Sphinx-1.4.8/CHANGES
--- old/Sphinx-1.4.6/CHANGES2016-08-20 10:59:33.0 +0200
+++ new/Sphinx-1.4.8/CHANGES2016-10-01 17:37:50.0 +0200
@@ -1,3 +1,38 @@
+Release 1.4.8 (released Oct 1, 2016)
+
+
+Bugs fixed
+--
+
+* #2996: The wheel package of Sphinx got crash with ImportError
+
+Release 1.4.7 (released Oct 1, 2016)
+
+
+Bugs fixed
+--
+
+* #2890: Quickstart should return an error consistently on all error conditions
+* #2870: flatten genindex columns' heights.
+* #2856: Search on generated HTML site doesnt find some symbols
+* #2882: Fall back to a GET request on 403 status in linkcheck
+* #2902: jsdump.loads fails to load search index if keywords starts with
+  underscore
+* #2900: Fix epub content.opf: add auto generated orphan files to spine.
+* #2899: Fix ``hasdoc()`` function in Jinja2 template. It can detect 
``genindex``, ``search`` collectly.
+* #2901: Fix epub result: skip creating links from image tags to original 
image files.
+* #2917: inline code is hyphenated on HTML
+* #1462: autosummary warns for namedtuple with attribute with trailing 
underscore
+* Could not reference equations if ``:nowrap:`` option specified
+* #2873: code-block overflow in latex (due to commas)
+* #1060, #2056: sphinx.ext.intersphinx: broken links are generated if relative
+  paths are used in `intersphinx_mapping`
+* #2931: code-block directive with same :caption: causes warning of duplicate
+  target.  Now `code-block` and `literalinclude` does not define hyperlink
+  target using its caption automatially.
+* #2962: latex: missing label of longtable
+* #2968: autodoc: show-inheritance option breaks docstrings
+
 Release 1.4.6 (released Aug 20, 2016)
 =
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sphinx-1.4.6/Makefile new/Sphinx-1.4.8/Makefile
--- 

commit python3-cryptography for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python3-cryptography for 
openSUSE:Factory checked in at 2016-10-10 16:16:56

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


Package is "python3-cryptography"

Changes:

--- 
/work/SRC/openSUSE:Factory/python3-cryptography/python3-cryptography.changes
2016-09-28 15:03:09.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-cryptography.new/python3-cryptography.changes
   2016-10-10 16:16:57.0 +0200
@@ -1,0 +2,7 @@
+Fri Sep 30 15:03:38 UTC 2016 - a...@gmx.de
+
+- update to version 1.5.2:
+  * Updated Windows and OS X wheels to be compiled against OpenSSL
+1.0.2j.
+
+---

Old:

  cryptography-1.5.1.tar.gz
  cryptography-1.5.1.tar.gz.asc

New:

  cryptography-1.5.2.tar.gz
  cryptography-1.5.2.tar.gz.asc



Other differences:
--
++ python3-cryptography.spec ++
--- /var/tmp/diff_new_pack.cOZjJs/_old  2016-10-10 16:16:58.0 +0200
+++ /var/tmp/diff_new_pack.cOZjJs/_new  2016-10-10 16:16:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-cryptography
-Version:1.5.1
+Version:1.5.2
 Release:0
 Url:https://cryptography.io/en/latest/
 Summary:Python library which exposes cryptographic recipes and 
primitives

++ cryptography-1.5.1.tar.gz -> cryptography-1.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cryptography-1.5.1/CHANGELOG.rst 
new/cryptography-1.5.2/CHANGELOG.rst
--- old/cryptography-1.5.1/CHANGELOG.rst2016-09-22 22:08:20.0 
+0200
+++ new/cryptography-1.5.2/CHANGELOG.rst2016-09-26 22:22:36.0 
+0200
@@ -1,6 +1,12 @@
 Changelog
 =
 
+1.5.2 - 2016-09-26
+~~
+
+* Updated Windows and OS X wheels to be compiled against OpenSSL 1.0.2j.
+
+
 1.5.1 - 2016-09-22
 ~~
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cryptography-1.5.1/PKG-INFO 
new/cryptography-1.5.2/PKG-INFO
--- old/cryptography-1.5.1/PKG-INFO 2016-09-22 22:08:40.0 +0200
+++ new/cryptography-1.5.2/PKG-INFO 2016-09-26 22:22:59.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: cryptography
-Version: 1.5.1
+Version: 1.5.2
 Summary: cryptography is a package which provides cryptographic recipes and 
primitives to Python developers.
 Home-page: https://github.com/pyca/cryptography
 Author: The cryptography developers
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cryptography-1.5.1/src/cryptography/__about__.py 
new/cryptography-1.5.2/src/cryptography/__about__.py
--- old/cryptography-1.5.1/src/cryptography/__about__.py2016-09-22 
22:08:20.0 +0200
+++ new/cryptography-1.5.2/src/cryptography/__about__.py2016-09-26 
22:22:36.0 +0200
@@ -14,7 +14,7 @@
" and primitives to Python developers.")
 __uri__ = "https://github.com/pyca/cryptography;
 
-__version__ = "1.5.1"
+__version__ = "1.5.2"
 
 __author__ = "The cryptography developers"
 __email__ = "cryptography-...@python.org"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cryptography-1.5.1/src/cryptography.egg-info/PKG-INFO 
new/cryptography-1.5.2/src/cryptography.egg-info/PKG-INFO
--- old/cryptography-1.5.1/src/cryptography.egg-info/PKG-INFO   2016-09-22 
22:08:40.0 +0200
+++ new/cryptography-1.5.2/src/cryptography.egg-info/PKG-INFO   2016-09-26 
22:22:59.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: cryptography
-Version: 1.5.1
+Version: 1.5.2
 Summary: cryptography is a package which provides cryptographic recipes and 
primitives to Python developers.
 Home-page: https://github.com/pyca/cryptography
 Author: The cryptography developers




commit freetype2 for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package freetype2 for openSUSE:Factory 
checked in at 2016-10-10 16:18:08

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


Package is "freetype2"

Changes:

--- /work/SRC/openSUSE:Factory/freetype2/freetype2.changes  2016-07-20 
09:15:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.freetype2.new/freetype2.changes 2016-10-10 
16:18:09.0 +0200
@@ -1,0 +2,46 @@
+Fri Sep  9 16:10:39 UTC 2016 - devel...@develop7.info
+
+- update to version 2.7:
+  * IMPORTANT CHANGES
++ As announced earlier, the 2.7.x series now uses the new subpixel
+  hinting  mode as  the  default, emulating  a  modern version  of
+  ClearType.
+  This change inevitably leads to different rendering results, and
+  you   might   change   the   `TT_CONFIG_OPTION_SUBPIXEL_HINTING'
+  configuration option to  adapt it to your taste (or  use the new
+  `FREETYPE_PROPERTIES'environmentvariable).Seethe
+  corresponding entry  below for  version 2.6.4, which  gives more
+  information.
+- A new option  `FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES' has been
+  introduced.   If  set (which  is  the  default), an  environment
+  variable  `FREETYPE_PROPERTIES' can  be used  to control  driver
+  properties.  Example:
+FREETYPE_PROPERTIES=truetype:interpreter-version=35 \
+cff:no-stem-darkening=1 \
+autofitter:warping=1
+  This allows to select, say, the subpixel hinting mode at runtime
+  for a given application.  See file `ftoption.h' for more.
+  * IMPORTANT BUG FIXES
++ After  loading a  named instance  of  a GX  variation font,  the
+  `face_index'  value  in  the returned  `FT_Face'  structure  now
+  correctly holds the named instance  index in the upper 16bits as
+  documented.
+  * MISCELLANEOUS
++ A new macro `FT_IS_NAMED_INSTANCE' to  test whether a given face
+  is a named instance.
++ More fixes to GX font handling.
++ Apple's   `GETVARIATION'  bytecode   operator  (needed   for  GX
+  variation font support) has been implemented.
++ Another round  of fuzzer fixes,  mainly to reject  invalid fonts
+  faster.
++ Handling of raw CID fonts  was broken (bug introduced in version
+  2.6.4).
++ The smooth rasterizer has been streamlined  to make it faster by
+  approx. 20%.
++ The `ftgrid'  demo program now  understands command  line option
+  `-d' to give start-up design coordinates.
++ The `ftdump' demo program has  a new command line option `-p' to
+  dump TrueType bytecode instructions.
+- removed freetype2-subpixel.patch in favor of above 
+  FREETYPE_PROPERTIES environment variable
+---
--- /work/SRC/openSUSE:Factory/freetype2/ft2demos.changes   2016-07-20 
09:15:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.freetype2.new/ft2demos.changes  2016-10-10 
16:18:09.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep  9 16:14:34 UTC 2016 - devel...@develop7.info
+
+- update to version 2.7:
+  + Sync with freetype 2.7
+
+---

Old:

  freetype-2.6.5.tar.bz2
  freetype-doc-2.6.5.tar.bz2
  freetype2-subpixel.patch
  ft2demos-2.6.5.tar.bz2

New:

  freetype-2.7.tar.bz2
  freetype-doc-2.7.tar.bz2
  ft2demos-2.7.tar.bz2



Other differences:
--
++ freetype2.spec ++
--- /var/tmp/diff_new_pack.HJxG2u/_old  2016-10-10 16:18:11.0 +0200
+++ /var/tmp/diff_new_pack.HJxG2u/_new  2016-10-10 16:18:11.0 +0200
@@ -17,9 +17,9 @@
 
 
 #
-%define doc_version 2.6.5
+%define doc_version 2.7
 Name:   freetype2
-Version:2.6.5
+Version:2.7
 Release:0
 Summary:A TrueType Font Library
 License:SUSE-Freetype or GPL-2.0+
@@ -29,7 +29,6 @@
 Source1:
http://download.savannah.gnu.org/releases/freetype/freetype-doc-%{doc_version}.tar.bz2
 Source3:baselibs.conf
 Patch1: freetype2-bitmap-foundry.patch
-Patch200:   freetype2-subpixel.patch
 # PATCH-FIX-OPENSUSE don-t-mark-libpng-as-required-library.patch -- it is 
private in .pc
 Patch202:   don-t-mark-libpng-as-required-library.patch
 Patch308961:bugzilla-308961-cmex-workaround.patch
@@ -81,14 +80,10 @@
 
 %prep
 
-%define enable_subpixel_rendering 0
 %setup -q -n freetype-%{version} -a 1
 %patch1 -p1
 %patch308961 -p 1
 %patch202 -p1
-%if %{enable_subpixel_rendering}
-%patch200 -p1
-%endif
 
 %build
 export CFLAGS="%{optflags} -std=gnu99 -D_GNU_SOURCE $(getconf LFS_CFLAGS)"

++ ft2demos.spec ++
--- 

commit gd for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package gd for openSUSE:Factory checked in 
at 2016-10-10 16:18:18

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


Package is "gd"

Changes:

--- /work/SRC/openSUSE:Factory/gd/gd.changes2016-08-26 23:14:33.0 
+0200
+++ /work/SRC/openSUSE:Factory/.gd.new/gd.changes   2016-10-10 
16:18:18.0 +0200
@@ -1,0 +2,51 @@
+Fri Sep 30 14:59:25 UTC 2016 - badshah...@gmail.com
+
+- Update to version 2.2.3:
+  + Security fixes:
+- Php bug#72339, Integer Overflow in _gd2GetHeader
+  (CVE-2016-5766)
+- Issue gh/libgd/libgd#247: A read out-of-bands was found in
+  the parsing of TGA files (CVE-2016-6132)
+- Issue gh/libgd/libgd#247: Buffer over-read issue when
+  parsing crafted TGA file (CVE-2016-6214)
+- Issue gh/libgd/libgd#248: fix Out-Of-Bounds Read in
+  read_image_tga
+- Integer overflow error within _gdContributionsAlloc()
+  (CVE-2016-6207)
+- Fix php bug#72494, invalid color index not handled, can lead
+  to crash (CVE-2016-6128)
+  + Improve color check for CropThreshold
+  + gdImageCopyResampled has been improved. Better handling of
+images with alpha channel, also brings libgd in sync with
+php's bundled gd.
+- Drop patches:
+  + gd-CVE-2016-5116.patch: upstreamed
+  + gd-CVE-2016-6132.patch: upstreamed
+  + gd-CVE-2016-6214.patch: upstreamed
+  + gd-CVE-2016-6905.patch: upstreamed
+  + gd-libvpx.patch: vpx support dropped.
+- Add BuildRequires for automake and autoconf since
+  gd-disable-freetype27-failed-tests.patch touches makefiles.
+- Drop getver.pl from source: included in upstream tarball.
+- Add "-msse -mfpmath=sse" to CFLAGS to fix tests on ix86
+  architectures.
+- Add "-ffp-contract=off" to CFLAGS for non-ix86 arch (ppc, arm)
+  to fix a test: see gh#libgd/libgd#278.
+- Add gd-test-unintialized-var.patch to fix an uninitialised
+  variable in tests/gd2/gd2_read.c to prevent it from compiling
+  with -Werror (only causes problems in no ix86 arch
+  surprisingly); patch sent upstream.
+- Rebase gd-disable-freetype27-failed-tests.patch for updated
+  version.
+- Update URL and Source to project's new github URL's.
+
+---
+Thu Sep 29 14:06:53 UTC 2016 - badshah...@gmail.com
+
+- Add gd-disable-freetype27-failed-tests.patch: Disable for now
+  tests failing against freetype >= 2.7 for being too exact
+  (gh#libgd/libgd#302). The failures have been understood by
+  upstream to be due to minor differences between test images and
+  those generated when freeetype >= 2.7 is used to build gd.
+
+---

Old:

  gd-CVE-2016-5116.patch
  gd-CVE-2016-6132.patch
  gd-CVE-2016-6214.patch
  gd-CVE-2016-6905.patch
  gd-libvpx.patch
  getver.pl
  libgd-2.1.1.tar.xz

New:

  gd-disable-freetype27-failed-tests.patch
  gd-test-unintialized-var.patch
  libgd-2.2.3.tar.xz



Other differences:
--
++ gd.spec ++
--- /var/tmp/diff_new_pack.PJI6yq/_old  2016-10-10 16:18:20.0 +0200
+++ /var/tmp/diff_new_pack.PJI6yq/_new  2016-10-10 16:18:20.0 +0200
@@ -21,15 +21,14 @@
 %define lname libgd3
 
 Name:   gd
-Version:2.1.1
+Version:2.2.3
 Release:0
 Summary:A Drawing Library for Programs That Use PNG and JPEG Output
 License:MIT
 Group:  System/Libraries
-Url:http://libgd.bitbucket.org/
-Source: 
https://bitbucket.org/libgd/gd-libgd/downloads/libgd-%{version}.tar.xz
+Url:https://libgd.github.io/
+Source: 
https://github.com/libgd/libgd/releases/download/%{name}-%{version}/%{prjname}-%{version}.tar.xz
 Source1:baselibs.conf
-Source2:getver.pl
 # to be upstreamed, gdlib-config --libs to return the same as pkg-config 
--libs gdlib
 Patch0: gd-config.patch
 # might be upstreamed, but could be suse specific also (/usr/share/fonts/Type1 
font dir)
@@ -38,19 +37,18 @@
 Patch2: gd-format.patch
 # could be upstreamed
 Patch3: gd-aliasing.patch
-# could be upstreamed
-Patch4: gd-libvpx.patch
-Patch5: gd-CVE-2016-5116.patch
-Patch6: gd-CVE-2016-6132.patch
-Patch7: gd-CVE-2016-6214.patch
-Patch8: gd-CVE-2016-6905.patch
+# PATCH-FIX-UPSTREAM gd-disable-freetype27-failed-tests.patch 
gh#libgd/libgd#302 badshah...@gmail.com -- Disable for now tests failing 
against freetype >= 2.7 for being too exact.
+Patch5: gd-disable-freetype27-failed-tests.patch
+# PATCH-FIX-UPSTREAM gd-test-unintialized-var.patch badshah...@gmail.com -- 
Initialise a variable in tests/gd2/gd2_read.c to 0 to prevent it 

commit yast2-pkg-bindings for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-pkg-bindings for 
openSUSE:Factory checked in at 2016-10-10 16:17:39

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


Package is "yast2-pkg-bindings"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-pkg-bindings/yast2-pkg-bindings.changes
2016-04-12 18:59:39.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-pkg-bindings.new/yast2-pkg-bindings.changes   
2016-10-10 16:17:39.0 +0200
@@ -1,0 +2,7 @@
+Fri Oct  7 07:32:19 UTC 2016 - lsle...@suse.cz
+
+- Added Pkg.UrlSchemeIs*() methods for classifying the URL scheme
+  to avoid duplication of the libzypp code in YaST (bsc#948982)
+- 3.2.0
+
+---

Old:

  yast2-pkg-bindings-3.1.34.tar.bz2

New:

  yast2-pkg-bindings-3.2.0.tar.bz2



Other differences:
--
++ yast2-pkg-bindings-devel-doc.spec ++
--- /var/tmp/diff_new_pack.zwCF65/_old  2016-10-10 16:17:41.0 +0200
+++ /var/tmp/diff_new_pack.zwCF65/_new  2016-10-10 16:17:41.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-pkg-bindings-devel-doc
-Version:3.1.34
+Version:3.2.0
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Source0:yast2-pkg-bindings-%{version}.tar.bz2

++ yast2-pkg-bindings.spec ++
--- /var/tmp/diff_new_pack.zwCF65/_old  2016-10-10 16:17:41.0 +0200
+++ /var/tmp/diff_new_pack.zwCF65/_new  2016-10-10 16:17:41.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-pkg-bindings
-Version:3.1.34
+Version:3.2.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-pkg-bindings-3.1.34.tar.bz2 -> yast2-pkg-bindings-3.2.0.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-pkg-bindings-3.1.34/CONTRIBUTING.md 
new/yast2-pkg-bindings-3.2.0/CONTRIBUTING.md
--- old/yast2-pkg-bindings-3.1.34/CONTRIBUTING.md   2016-04-08 
12:53:57.0 +0200
+++ new/yast2-pkg-bindings-3.2.0/CONTRIBUTING.md2016-10-07 
10:48:45.0 +0200
@@ -3,7 +3,7 @@
 
 YaST is an open source project and as such it welcomes all kinds of
 contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and YaST maintainers.
+ensure the process is effective and pleasant both for you and the YaST 
maintainers.
 
 There are two main forms of contribution: reporting bugs and performing code
 changes.
@@ -17,13 +17,11 @@
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
-that every bug will be fixed, but we'll try.
-
 When creating a bug report, please follow our [bug reporting
 guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
 
+We can't guarantee that every bug will be fixed, but we'll try.
+
 Code Changes
 
 
@@ -44,15 +42,22 @@
  to the [Ruby style
  guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
 
-  4. Make sure your change didn't break anything by building the RPM package
+  4. Update the package version (in `packages/*.spec`, usually by
+ `rake version:bump`) and add a new entry to the `package/*.changes` file
+ (by `osc vc package`).  
+ For bigger changes or changes which need longer discussion it is advised 
to
+ add this as a separate last commit so it can be easily updated when 
another
+ change is merged in the meantime.
+
+  5. Make sure your change didn't break anything by building the RPM package
  (`rake osc:build`). The build process includes running the full testsuite.
 
-  5. Publish the branch and create a pull request.
+  6. Publish the branch and create a pull request.
 
-  6. YaST developers will review your change and possibly point out issues.
+  7. YaST developers will review your change and possibly point out issues.
  Adapt the code under their guidance until they are all resolved.
 
-  7. Finally, the pull request will get merged or rejected.
+  8. Finally, the pull request will get merged or rejected.
 
 See also [GitHub's guide on
 contributing](https://help.github.com/articles/fork-a-repo).
@@ -60,9 +65,6 @@
 If you want to do multiple unrelated changes, use separate branches and pull
 requests.
 
-Do not change the `VERSION` and `*.changes` files as this could lead to
-conflicts.
-
 ### Commits
 
 Each commit in the pull request should do only one thing, which is 

commit yast2-packager for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-packager for openSUSE:Factory 
checked in at 2016-10-10 16:17:48

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


Package is "yast2-packager"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-packager/yast2-packager.changes
2016-09-05 21:13:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-packager.new/yast2-packager.changes   
2016-10-10 16:17:48.0 +0200
@@ -1,0 +2,21 @@
+Thu Oct  6 08:01:38 UTC 2016 - lsle...@suse.cz
+
+- Disable autorefresh for newly added local repositories ("cd",
+  "dvd", "dir", "hd" (including USB flash), "iso" and "file" URL
+  protocols) (bsc#948982)
+- 3.2.1
+
+---
+Wed Oct  5 14:35:07 UTC 2016 - jreidin...@suse.com
+
+- remove workaround that creates fake mtab to prevent collision
+  with real one (bsc#1002978)
+- 3.2.0
+
+---
+Mon Oct  3 16:38:36 UTC 2016 - jreidin...@suse.com
+
+- prevent double URL encoding for ISO (bsc#954813)
+- 3.1.118
+
+---

Old:

  yast2-packager-3.1.117.tar.bz2

New:

  yast2-packager-3.2.1.tar.bz2



Other differences:
--
++ yast2-packager.spec ++
--- /var/tmp/diff_new_pack.NwwYUu/_old  2016-10-10 16:17:50.0 +0200
+++ /var/tmp/diff_new_pack.NwwYUu/_new  2016-10-10 16:17:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-packager
-Version:3.1.117
+Version:3.2.1
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -25,25 +25,27 @@
 
 Url:https://github.com/kobliha/yast-packager
 BuildRequires:  update-desktop-files
-BuildRequires:  yast2-country-data
 BuildRequires:  yast2-devtools >= 3.1.10
-BuildRequires:  yast2-storage
-BuildRequires:  yast2-testsuite
 BuildRequires:  yast2-xml
-BuildRequires:  yast2_theme
+# needed for space calculator to parse and convert sizes
+BuildRequires:  yast2-storage
 BuildRequires:  rubygem(rspec)
+BuildRequires:  rubygem(yast-rake)
 
 # Packages::Repository and Packages::Product classes
 BuildRequires:  yast2 >= 3.1.187
 
-# Pkg::SourceRawURL() and Pkg:ExpandedUrl()
-BuildRequires:  yast2-pkg-bindings >= 3.1.30
+# needed for icon for desktop file, it is verified at the end of build
+BuildRequires:  yast2_theme
+
+# Pkg::UrlSchemeIs*()
+BuildRequires:  yast2-pkg-bindings >= 3.2.0
 
 # Newly added RPM
 Requires:   yast2-country-data >= 2.16.3
 
-# Pkg::SourceRawURL() and Pkg:ExpandedUrl()
-Requires:   yast2-pkg-bindings >= 3.1.30
+# Pkg::UrlSchemeIs*()
+Requires:   yast2-pkg-bindings >= 3.2.0
 
 # Packages::Repository and Packages::Product classes
 Requires:   yast2 >= 3.1.187
@@ -96,11 +98,13 @@
 %prep
 %setup -n %{name}-%{version}
 
+%check
+rake test:unit
+
 %build
-%yast_build
 
 %install
-%yast_install
+rake install DESTDIR="%{buildroot}"
 
 %suse_update_desktop_file yast2-packager
 
@@ -126,5 +130,7 @@
 %{yast_execcompdir}/servers_non_y2/ag_*
 %dir %{yast_docdir}
 %doc %{yast_docdir}/COPYING
+%doc %{yast_docdir}/README.md
+%doc %{yast_docdir}/CONTRIBUTING.md
 
 %changelog

++ yast2-packager-3.1.117.tar.bz2 -> yast2-packager-3.2.1.tar.bz2 ++
 2773 lines of diff (skipped)




commit python-Pillow for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python-Pillow for openSUSE:Factory 
checked in at 2016-10-10 16:18:44

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


Package is "python-Pillow"

Changes:

--- /work/SRC/openSUSE:Factory/python-Pillow/python-Pillow.changes  
2016-05-25 21:21:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Pillow.new/python-Pillow.changes 
2016-10-10 16:18:44.0 +0200
@@ -1,0 +2,8 @@
+Thu Sep 29 01:13:38 UTC 2016 - badshah...@gmail.com
+
+- Add python-Pillow-tests-update-epsilon-for-freetype27.patch: Fix
+  buildfailures against freetype 2.7 by increasing the epsilon
+  (gh#python-pillow/Pillow#2116); this seems to be the recommended
+  solution by upstream.
+
+---

New:

  python-Pillow-tests-update-epsilon-for-freetype27.patch



Other differences:
--
++ python-Pillow.spec ++
--- /var/tmp/diff_new_pack.PmeTlW/_old  2016-10-10 16:18:45.0 +0200
+++ /var/tmp/diff_new_pack.PmeTlW/_new  2016-10-10 16:18:45.0 +0200
@@ -24,6 +24,8 @@
 Group:  Development/Languages/Python
 Url:http://python-imaging.github.io/
 Source: 
https://pypi.python.org/packages/source/P/Pillow/Pillow-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM python-Pillow-tests-update-epsilon-for-freetype27.patch 
gh#python-pillow/Pillow#2116 badshah...@gmail.com -- Fix buildfailures against 
freetype 2.7 by increasing the epsilon
+Patch0: python-Pillow-tests-update-epsilon-for-freetype27.patch
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 BuildRequires:  python-tk
@@ -91,6 +93,7 @@
 
 %prep
 %setup -q -n Pillow-%{version}
+%patch0 -p1
 
 %build
 # no need to build it here, as setup.py install will build it again, anyway

++ python-Pillow-tests-update-epsilon-for-freetype27.patch ++
Index: Pillow-3.1.1/Tests/test_imagefont.py
===
--- Pillow-3.1.1.orig/Tests/test_imagefont.py
+++ Pillow-3.1.1/Tests/test_imagefont.py
@@ -124,7 +124,9 @@ try:
 
 target = 'Tests/images/rectangle_surrounding_text.png'
 target_img = Image.open(target)
-self.assert_image_similar(im, target_img, .5)
+# Original epsilon=0.5 causes the test to fail with freetype >= 2.7
+# Setting it to ~2.5 fixes this failure
+self.assert_image_similar(im, target_img, 2.5)
 
 def test_render_multiline(self):
 im = Image.new(mode='RGB', size=(300, 100))
@@ -143,7 +145,9 @@ try:
 # some versions of freetype have different horizontal spacing.
 # setting a tight epsilon, I'm showing the original test failure
 # at epsilon = ~38.
-self.assert_image_similar(im, target_img, .5)
+# Original epsilon=0.5 causes the test to fail with freetype >= 2.7
+# Setting it to ~6.5 fixes this failure
+self.assert_image_similar(im, target_img, 6.2)
 
 def test_render_multiline_text(self):
 ttf = ImageFont.truetype(FONT_PATH, FONT_SIZE)
@@ -157,7 +161,9 @@ try:
 target = 'Tests/images/multiline_text.png'
 target_img = Image.open(target)
 
-self.assert_image_similar(im, target_img, .5)
+# Original epsilon=0.5 causes the test to fail with freetype >= 2.7
+# Setting it to ~6.5 fixes this failure
+self.assert_image_similar(im, target_img, 6.2)
 
 # Test align center and right
 for align, ext in {"center": "_center",
@@ -169,7 +175,9 @@ try:
 target = 'Tests/images/multiline_text'+ext+'.png'
 target_img = Image.open(target)
 
-self.assert_image_similar(im, target_img, .5)
+# Original epsilon=0.5 causes the test to fail with freetype 
>= 2.7
+# Setting it to ~6.5 fixes this failure
+self.assert_image_similar(im, target_img, 6.2)
 
 def test_unknown_align(self):
 im = Image.new(mode='RGB', size=(300, 100))
@@ -210,7 +218,9 @@ try:
 target = 'Tests/images/multiline_text_spacing.png'
 target_img = Image.open(target)
 
-self.assert_image_similar(im, target_img, .5)
+# Original epsilon=0.5 causes the test to fail with freetype >= 2.7
+# Setting it to ~6.5 fixes this failure
+self.assert_image_similar(im, target_img, 6.2)
 
 def test_rotated_transposed_font(self):
 img_grey = Image.new("L", (100, 100))



commit postgresql94 for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

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

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


Package is "postgresql94"

Changes:

--- /work/SRC/openSUSE:Factory/postgresql94/postgresql94-libs.changes   
2016-05-24 09:34:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.postgresql94.new/postgresql94-libs.changes  
2016-10-10 16:19:09.0 +0200
@@ -1,0 +2,27 @@
+Fri Aug 12 07:49:30 UTC 2016 - fwe...@suse.com
+
+- Update to version 9.4.9:
+  * Fix possible mis-evaluation of nested CASE-WHEN expressions
+(CVE-2016-5423)
+  * Fix client programs' handling of special characters in database
+and role names (CVE-2016-5424)
+  * Fix corner-case misbehaviors for IS NULL/IS NOT NULL applied
+to nested composite values
+  * Make the inet and cidr data types properly reject IPv6
+addresses with too many colon-separated fields
+  * Prevent crash in close_ps() (the point ## lseg operator) for
+NaN input coordinates
+  * Fix several one-byte buffer over-reads in to_number()
+  * Avoid unsafe intermediate state during expensive paths through
+heap_update()
+
+  * For the other bug fixes, see the release notes:
+https://www.postgresql.org/docs/9.4/static/release-9-4-9.html
+
+---
+Mon May 23 07:36:08 UTC 2016 - m...@suse.com
+
+- The libs are now built in 9.5, so disable them here and remove
+  baselibs.conf.
+
+---
postgresql94.changes: same change

Old:

  baselibs.conf
  postgresql-9.4.8.tar.bz2

New:

  postgresql-9.4.9.tar.bz2



Other differences:
--
++ postgresql94-libs.spec ++
--- /var/tmp/diff_new_pack.oG8NS6/_old  2016-10-10 16:19:10.0 +0200
+++ /var/tmp/diff_new_pack.oG8NS6/_new  2016-10-10 16:19:10.0 +0200
@@ -24,7 +24,7 @@
 %define libpq_so libpq.so.5
 %define libecpg_so libecpg.so.6
 %define buildmain 0
-%define buildlibs 1
+%define buildlibs 0
 %define builddevel 1
 %define pgbasedir %_prefix/lib/%pgname
 %define pgtestdir %pgbasedir/test
@@ -63,11 +63,10 @@
 Summary:Basic Clients and Utilities for PostgreSQL
 License:PostgreSQL
 Group:  Productivity/Databases/Tools
-Version:9.4.8
+Version:9.4.9
 Release:0
 %define pg_minor_version %(echo %version | sed -r 
's/^([0-9]+\\.[0-9]+).*/\\1/')
 Source0:
https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
-Source1:baselibs.conf
 Source3:postgresql-README.SUSE
 Source17:   postgresql-rpmlintrc
 Patch1: postgresql-conf.patch

++ postgresql94.spec ++
--- /var/tmp/diff_new_pack.oG8NS6/_old  2016-10-10 16:19:10.0 +0200
+++ /var/tmp/diff_new_pack.oG8NS6/_new  2016-10-10 16:19:10.0 +0200
@@ -63,11 +63,10 @@
 Summary:Basic Clients and Utilities for PostgreSQL
 License:PostgreSQL
 Group:  Productivity/Databases/Tools
-Version:9.4.8
+Version:9.4.9
 Release:0
 %define pg_minor_version %(echo %version | sed -r 
's/^([0-9]+\\.[0-9]+).*/\\1/')
 Source0:
https://ftp.postgresql.org/pub/source/v%{version}/postgresql-%{version}.tar.bz2
-Source1:baselibs.conf
 Source3:postgresql-README.SUSE
 Source17:   postgresql-rpmlintrc
 Patch1: postgresql-conf.patch

++ postgresql-9.4.8.tar.bz2 -> postgresql-9.4.9.tar.bz2 ++
/work/SRC/openSUSE:Factory/postgresql94/postgresql-9.4.8.tar.bz2 
/work/SRC/openSUSE:Factory/.postgresql94.new/postgresql-9.4.9.tar.bz2 differ: 
char 11, line 1

++ pre_checkin.sh ++
--- /var/tmp/diff_new_pack.oG8NS6/_old  2016-10-10 16:19:11.0 +0200
+++ /var/tmp/diff_new_pack.oG8NS6/_new  2016-10-10 16:19:11.0 +0200
@@ -12,7 +12,7 @@
 sed -i \
 -e 's/postgresql[[:digit:]]\{2\}/&-libs/g' \
 -e 's/%define buildmain .*/%define buildmain 0/' \
--e 's/%define buildlibs .*/%define buildlibs 1/' \
+-e 's/%define buildlibs .*/%define buildlibs 0/' \
 -e 's/%define builddevel .*/%define builddevel 1/' \
 postgresql??-libs.spec
 




commit libnl3 for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package libnl3 for openSUSE:Factory checked 
in at 2016-10-10 16:18:37

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


Package is "libnl3"

Changes:

--- /work/SRC/openSUSE:Factory/libnl3/libnl3.changes2016-02-18 
12:35:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.libnl3.new/libnl3.changes   2016-10-10 
16:18:37.0 +0200
@@ -1,0 +2,10 @@
+Wed Aug 10 11:24:07 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 3.2.28
+* route/link: IFLA_VLAN_PROTOCOL added to vlan_put_attrs
+* route/vrf: add VRF support
+* route/link: add macvtap support
+* sit: add 6RD support
+* lib/route: add macsec support
+
+---

Old:

  libnl-3.2.27.tar.gz
  libnl-3.2.27.tar.gz.sig

New:

  libnl-3.2.28.tar.gz
  libnl-3.2.28.tar.gz.sig



Other differences:
--
++ libnl3.spec ++
--- /var/tmp/diff_new_pack.98m8gT/_old  2016-10-10 16:18:38.0 +0200
+++ /var/tmp/diff_new_pack.98m8gT/_new  2016-10-10 16:18:38.0 +0200
@@ -19,8 +19,8 @@
 Name:   libnl3
 %define lname  libnl3-200
 %define with_tools 1
-%define uver   3_2_27
-Version:3.2.27
+%define uver   3_2_28
+Version:3.2.28
 Release:0
 Summary:Convenience library for working with Netlink sockets
 License:LGPL-2.1 and GPL-2.0

++ libnl-3.2.27.tar.gz -> libnl-3.2.28.tar.gz ++
 26976 lines of diff (skipped)




commit yast2-update for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-update for openSUSE:Factory 
checked in at 2016-10-10 16:18:29

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


Package is "yast2-update"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-update/yast2-update.changes
2016-08-31 00:02:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-update.new/yast2-update.changes   
2016-10-10 16:18:29.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 29 08:02:43 UTC 2016 - igonzalezs...@suse.com
+
+- Translate description of Snapper pre-update snapshot
+  (bsc#988700)
+- 3.1.43
+
+---

Old:

  yast2-update-3.1.42.tar.bz2

New:

  yast2-update-3.1.43.tar.bz2



Other differences:
--
++ yast2-update.spec ++
--- /var/tmp/diff_new_pack.mFZoNE/_old  2016-10-10 16:18:30.0 +0200
+++ /var/tmp/diff_new_pack.mFZoNE/_new  2016-10-10 16:18:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-update
-Version:3.1.42
+Version:3.1.43
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-update-3.1.42.tar.bz2 -> yast2-update-3.1.43.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-update-3.1.42/package/yast2-update.changes 
new/yast2-update-3.1.43/package/yast2-update.changes
--- old/yast2-update-3.1.42/package/yast2-update.changes2016-08-26 
13:34:46.0 +0200
+++ new/yast2-update-3.1.43/package/yast2-update.changes2016-10-03 
12:42:05.0 +0200
@@ -1,4 +1,11 @@
 ---
+Thu Sep 29 08:02:43 UTC 2016 - igonzalezs...@suse.com
+
+- Translate description of Snapper pre-update snapshot
+  (bsc#988700)
+- 3.1.43
+
+---
 Fri Aug 26 08:54:40 UTC 2016 - kanders...@suse.com
 
 - The update installer has been moved earlier in the workflow. We
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-update-3.1.42/package/yast2-update.spec 
new/yast2-update-3.1.43/package/yast2-update.spec
--- old/yast2-update-3.1.42/package/yast2-update.spec   2016-08-26 
13:34:46.0 +0200
+++ new/yast2-update-3.1.43/package/yast2-update.spec   2016-10-03 
12:42:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-update
-Version:3.1.42
+Version:3.1.43
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-update-3.1.42/src/modules/RootPart.rb 
new/yast2-update-3.1.43/src/modules/RootPart.rb
--- old/yast2-update-3.1.42/src/modules/RootPart.rb 2016-08-26 
13:34:46.0 +0200
+++ new/yast2-update-3.1.43/src/modules/RootPart.rb 2016-10-03 
12:42:05.0 +0200
@@ -1806,7 +1806,8 @@
 # in the target map of the storage module
 AddToTargetMap()
 if Yast2::FsSnapshot.configured?
-  snapshot = Yast2::FsSnapshot.create_pre("before update", cleanup: 
:number, important: true)
+  # TRANSLATORS: label for filesystem snapshot taken before system 
update
+  snapshot = Yast2::FsSnapshot.create_pre(_("before update"), cleanup: 
:number, important: true)
   Yast2::FsSnapshotStore.save("update", snapshot.number)
 end
 Update.clean_backup




commit yast2-installation for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-installation for 
openSUSE:Factory checked in at 2016-10-10 16:18:51

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


Package is "yast2-installation"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-installation/yast2-installation.changes
2016-09-24 15:18:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.yast2-installation.new/yast2-installation.changes   
2016-10-10 16:18:51.0 +0200
@@ -1,0 +2,14 @@
+Thu Oct  6 12:55:58 CEST 2016 - sch...@suse.de
+
+- AutoYaST upgrade: Do not override the Report module settings in
+  the AutoYaST upgrade mode, keep the previous settings
+  (bnc#999895).
+- 3.2.3
+
+---
+Thu Sep 29 08:09:28 UTC 2016 - igonzalezs...@suse.com
+
+- Translate description of Snapper snapshots (bsc#988700)
+- 3.2.2
+
+---
@@ -7 +21 @@
-- 3.1.217
+- 3.2.1
@@ -13 +27 @@
-- 3.1.216
+- 3.2.0

Old:

  yast2-installation-3.1.217.tar.bz2

New:

  yast2-installation-3.2.0.tar.bz2



Other differences:
--
++ yast2-installation.spec ++
--- /var/tmp/diff_new_pack.9MXnxI/_old  2016-10-10 16:18:52.0 +0200
+++ /var/tmp/diff_new_pack.9MXnxI/_new  2016-10-10 16:18:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-installation
-Version:3.1.217
+Version:3.2.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-installation-3.1.217.tar.bz2 -> yast2-installation-3.2.0.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-3.1.217/package/yast2-installation.changes 
new/yast2-installation-3.2.0/package/yast2-installation.changes
--- old/yast2-installation-3.1.217/package/yast2-installation.changes   
2016-09-21 13:12:59.0 +0200
+++ new/yast2-installation-3.2.0/package/yast2-installation.changes 
2016-10-06 14:56:29.0 +0200
@@ -1,16 +1,30 @@
 ---
+Thu Oct  6 12:55:58 CEST 2016 - sch...@suse.de
+
+- AutoYaST upgrade: Do not override the Report module settings in
+  the AutoYaST upgrade mode, keep the previous settings
+  (bnc#999895).
+- 3.2.3
+
+---
+Thu Sep 29 08:09:28 UTC 2016 - igonzalezs...@suse.com
+
+- Translate description of Snapper snapshots (bsc#988700)
+- 3.2.2
+
+---
 Wed Sep 21 11:00:27 CEST 2016 - sch...@suse.de
 
 - Fixed crash if one defined proposal module has not been found on
   system while switching back from "Expert" proposal.
   (bnc#53)
-- 3.1.217
+- 3.2.1
 
 ---
 Wed Sep 14 13:53:41 UTC 2016 - jreidin...@suse.com
 
 - reduce time needed for building this package
-- 3.1.216
+- 3.2.0
 
 ---
 Tue Sep 13 12:37:57 UTC 2016 - jreidin...@suse.com
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-3.1.217/package/yast2-installation.spec 
new/yast2-installation-3.2.0/package/yast2-installation.spec
--- old/yast2-installation-3.1.217/package/yast2-installation.spec  
2016-09-21 13:12:59.0 +0200
+++ new/yast2-installation-3.2.0/package/yast2-installation.spec
2016-10-06 14:56:29.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-installation
-Version:3.1.217
+Version:3.2.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-installation-3.1.217/src/lib/installation/clients/inst_system_analysis.rb
 
new/yast2-installation-3.2.0/src/lib/installation/clients/inst_system_analysis.rb
--- 
old/yast2-installation-3.1.217/src/lib/installation/clients/inst_system_analysis.rb
 2016-09-21 13:12:59.0 +0200
+++ 
new/yast2-installation-3.2.0/src/lib/installation/clients/inst_system_analysis.rb
   2016-10-06 14:56:29.0 +0200
@@ -56,16 +56,6 @@
   Yast.include self, "packager/storage_include.rb"
   Yast.include self, "packager/load_release_notes.rb"
 
-  if Mode.autoupgrade
-Report.Import(
-
-  "messages" => { "timeout" => 10 },
-  "errors"   => { "timeout" => 10 },
-  "warnings" => { "timeout" => 10 }
-
-)
-  end
-
   # This dialog in not interactive
   # always return `back when came 

commit python-click for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python-click for openSUSE:Factory 
checked in at 2016-10-10 16:19:48

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


Package is "python-click"

Changes:

--- /work/SRC/openSUSE:Factory/python-click/python-click.changes
2015-12-09 22:30:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-click.new/python-click.changes   
2016-10-10 16:19:50.0 +0200
@@ -1,0 +2,14 @@
+Thu Sep 15 22:54:59 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 6.6:
+  * Fix bug in `click.Path` where it would crash when passed a
+`-`. See #551.
+- update to version 6.4:
+  * Fix bug in bash completion where click would discard one or more
+trailing arguments. See #471.
+- update to version 6.3:
+  * Fix argument checks for interpreter invoke with `-m` and `-c` on
+Windows.
+  * Fixed a bug that cased locale detection to error out on Python 3.
+
+---

Old:

  click-6.2.tar.gz

New:

  click-6.6.tar.gz



Other differences:
--
++ python-click.spec ++
--- /var/tmp/diff_new_pack.XS9sYE/_old  2016-10-10 16:19:51.0 +0200
+++ /var/tmp/diff_new_pack.XS9sYE/_new  2016-10-10 16:19:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-click
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,15 +17,16 @@
 
 
 Name:   python-click
-Version:6.2
+Version:6.6
 Release:0
 Summary:A simple wrapper around optparse for powerful command line 
utilities
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:http://github.com/mitsuhiko/click
-Source: 
https://pypi.python.org/packages/source/c/click/click-%{version}.tar.gz
+Source: 
https://files.pythonhosted.org/packages/source/c/click/click-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
+BuildRequires:  python-pytest
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 %else
@@ -52,6 +53,9 @@
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
 %check
+pushd tests
+PYTHONPATH=%{buildroot}%{python_sitelib} py.test --tb=short
+popd
 
 %files
 %defattr(-,root,root,-)

++ click-6.2.tar.gz -> click-6.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/click-6.2/CHANGES new/click-6.6/CHANGES
--- old/click-6.2/CHANGES   2015-11-27 18:42:04.0 +0100
+++ new/click-6.6/CHANGES   2016-04-04 18:49:35.0 +0200
@@ -3,6 +3,31 @@
 
 This contains all major version changes between Click releases.
 
+Version 6.6
+---
+
+(bugfix release; released on April 4th 2016)
+
+- Fix bug in `click.Path` where it would crash when passed a `-`. See #551.
+
+Version 6.4
+---
+
+(bugfix release; released on March 24th 2016)
+
+- Fix bug in bash completion where click would discard one or more trailing
+  arguments. See #471.
+
+Version 6.3
+---
+
+(bugfix release; released on February 22 2016)
+
+- Fix argument checks for interpreter invoke with `-m` and `-c`
+  on Windows.
+- Fixed a bug that cased locale detection to error out on Python 3.
+
+
 Version 6.2
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/click-6.2/PKG-INFO new/click-6.6/PKG-INFO
--- old/click-6.2/PKG-INFO  2015-11-27 18:43:01.0 +0100
+++ new/click-6.6/PKG-INFO  2016-04-04 18:51:33.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: click
-Version: 6.2
+Version: 6.6
 Summary: A simple wrapper around optparse for powerful command line utilities.
 Home-page: http://github.com/mitsuhiko/click
 Author: Armin Ronacher
Files old/click-6.2/artwork/.DS_Store and new/click-6.6/artwork/.DS_Store differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/click-6.2/click/__init__.py 
new/click-6.6/click/__init__.py
--- old/click-6.2/click/__init__.py 2015-11-27 18:42:45.0 +0100
+++ new/click-6.6/click/__init__.py 2016-04-04 18:50:46.0 +0200
@@ -95,4 +95,4 @@
 disable_unicode_literals_warning = False
 
 
-__version__ = '6.2'
+__version__ = '6.6'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 

commit python-SQLAlchemy for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python-SQLAlchemy for 
openSUSE:Factory checked in at 2016-10-10 16:19:46

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


Package is "python-SQLAlchemy"

Changes:

--- /work/SRC/openSUSE:Factory/python-SQLAlchemy/python-SQLAlchemy.changes  
2016-06-07 23:50:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-SQLAlchemy.new/python-SQLAlchemy.changes 
2016-10-10 16:19:47.0 +0200
@@ -1,0 +2,7 @@
+Thu Sep 15 23:15:10 UTC 2016 - toddrme2...@gmail.com
+
+- Update to 1.0.15:
+  * See 
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.15
+   
http://docs.sqlalchemy.org/en/latest/changelog/changelog_10.html#change-1.0.14
+
+---

Old:

  SQLAlchemy-1.0.13.tar.gz

New:

  SQLAlchemy-1.0.15.tar.gz



Other differences:
--
++ python-SQLAlchemy.spec ++
--- /var/tmp/diff_new_pack.xoxGbF/_old  2016-10-10 16:19:48.0 +0200
+++ /var/tmp/diff_new_pack.xoxGbF/_new  2016-10-10 16:19:48.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   python-SQLAlchemy
-Version:1.0.13
+Version:1.0.15
 Release:0
 Url:http://www.sqlalchemy.org
 Summary:Database Abstraction Library
 License:MIT
 Group:  Development/Languages/Python
-Source0:
https://pypi.io/packages/source/S/SQLAlchemy/SQLAlchemy-%{version}.tar.gz
+Source: 
https://files.pythonhosted.org/packages/source/S/SQLAlchemy/SQLAlchemy-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools

++ SQLAlchemy-1.0.13.tar.gz -> SQLAlchemy-1.0.15.tar.gz ++
 17355 lines of diff (skipped)




commit python-Beaker for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python-Beaker for openSUSE:Factory 
checked in at 2016-10-10 16:19:43

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


Package is "python-Beaker"

Changes:

--- /work/SRC/openSUSE:Factory/python-Beaker/python-Beaker.changes  
2015-04-27 22:09:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Beaker.new/python-Beaker.changes 
2016-10-10 16:19:43.0 +0200
@@ -1,0 +2,15 @@
+Thu Sep 15 22:14:25 UTC 2016 - toddrme2...@gmail.com
+
+- Update to version 1.8.0
+  * Encrypted sessions can now specify nonce length for salt
+generation through encrypt_nonce_bits parameter. set it to 48
+for backward compatibility with sessions generated before 1.8.0
+  * kwargs support in @cache_region decorator
+  * annotations support in @cache_region decorator
+  * data_serializer parameter in Session can now specify json to
+avoid pickle security issues
+  * Invalid cookies are now skipped in cookie based sessions
+  * Memcached based on PyLibMC now share same connection pool for
+same url
+
+---

Old:

  Beaker-1.7.0.tar.gz

New:

  Beaker-1.8.0.tar.gz



Other differences:
--
++ python-Beaker.spec ++
--- /var/tmp/diff_new_pack.8YjL7c/_old  2016-10-10 16:19:44.0 +0200
+++ /var/tmp/diff_new_pack.8YjL7c/_new  2016-10-10 16:19:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Beaker
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,13 +17,13 @@
 
 
 Name:   python-Beaker
-Version:1.7.0
+Version:1.8.0
 Release:0
 Url:http://beaker.rtfd.org/
 Summary:A Session and Caching library with WSGI Middleware
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Source: 
http://pypi.python.org/packages/source/B/Beaker/Beaker-%{version}.tar.gz
+Source: 
https://files.pythonhosted.org/packages/source/B/Beaker/Beaker-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   python-cryptopp >= 0.5.12
 BuildRequires:  fdupes

++ Beaker-1.7.0.tar.gz -> Beaker-1.8.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Beaker-1.7.0/Beaker.egg-info/PKG-INFO 
new/Beaker-1.8.0/Beaker.egg-info/PKG-INFO
--- old/Beaker-1.7.0/Beaker.egg-info/PKG-INFO   2015-04-22 17:32:50.0 
+0200
+++ new/Beaker-1.8.0/Beaker.egg-info/PKG-INFO   2016-01-27 12:40:12.0 
+0100
@@ -1,10 +1,10 @@
 Metadata-Version: 1.1
 Name: Beaker
-Version: 1.7.0
+Version: 1.8.0
 Summary: A Session and Caching library with WSGI Middleware
 Home-page: http://beaker.rtfd.org/
-Author: Ben Bangert, Mike Bayer, Philip Jenvey
-Author-email: b...@groovie.org, pjen...@groovie.org
+Author: Ben Bangert, Mike Bayer, Philip Jenvey, Alessandro Molina
+Author-email: b...@groovie.org, pjen...@groovie.org, a...@turbogears.org
 License: BSD
 Description: =
 Cache and Session Library
@@ -81,6 +81,7 @@
 Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
 Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
 Classifier: Topic :: Internet :: WWW/HTTP :: WSGI
 Classifier: Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Beaker-1.7.0/Beaker.egg-info/SOURCES.txt 
new/Beaker-1.8.0/Beaker.egg-info/SOURCES.txt
--- old/Beaker-1.7.0/Beaker.egg-info/SOURCES.txt2015-04-22 
17:32:50.0 +0200
+++ new/Beaker-1.8.0/Beaker.egg-info/SOURCES.txt2016-01-27 
12:40:12.0 +0100
@@ -6,6 +6,7 @@
 Beaker.egg-info/dependency_links.txt
 Beaker.egg-info/entry_points.txt
 Beaker.egg-info/not-zip-safe
+Beaker.egg-info/pbr.json
 Beaker.egg-info/requires.txt
 Beaker.egg-info/top_level.txt
 beaker/__init__.py
@@ -13,6 +14,7 @@
 beaker/cache.py
 beaker/container.py
 beaker/converters.py
+beaker/cookie.py
 beaker/exceptions.py
 beaker/middleware.py
 beaker/session.py
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Beaker-1.7.0/Beaker.egg-info/pbr.json 
new/Beaker-1.8.0/Beaker.egg-info/pbr.json
--- old/Beaker-1.7.0/Beaker.egg-info/pbr.json   1970-01-01 

commit perl-Goo-Canvas for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Goo-Canvas for openSUSE:Factory 
checked in at 2016-10-10 16:20:08

Comparing /work/SRC/openSUSE:Factory/perl-Goo-Canvas (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Goo-Canvas.new (New)


Package is "perl-Goo-Canvas"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Goo-Canvas.new/perl-Goo-Canvas.changes 
2016-10-10 16:20:11.0 +0200
@@ -0,0 +1,39 @@
+---
+Wed Mar  6 06:12:34 UTC 2013 - co...@suse.com
+
+- update license to new format
+
+---
+Mon Aug 22 10:05:32 UTC 2011 - vci...@novell.com
+
+- added goo_canvas_cairo_PATTERN_from_pixbuf prototype
+- renamed patches to include version number
+- licence correction
+
+---
+Fri Aug 19 14:51:00 CEST 2011 - p...@suse.de
+
+- Add missing prototype for goo_canvas_cairo_surface_from_pixbuf.
+- Fix documentation.
+
+---
+Wed Aug 17 15:07:45 UTC 2011 - sascha.ma...@open-slx.de
+
+- Used constant our Macros
+- Deleted BR disallowing of the BuildChecks 
+
+---
+Fri Aug  5 13:08:24 UTC 2011 - sascha.ma...@open-slx.de
+
+- Changed License to the perl itself ones 
+
+---
+Tue Jul 21 13:34:03 UTC 2011 - r...@ilmi.fi
+- Making this work on openSUSE Factory
+
+
+---
+Thu Mar 21 13:34:03 UTC 2010 - r...@ilmi.fi
+- Added to this repo
+
+

New:

  Goo-Canvas-0.06-add_missing_prototype.patch
  Goo-Canvas-0.06-fix_documentation.patch
  Goo-Canvas-0.06.tar.gz
  perl-Goo-Canvas.changes
  perl-Goo-Canvas.spec



Other differences:
--
++ perl-Goo-Canvas.spec ++
#
# spec file for package perl-Goo-Canvas
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2011 open-slx GmbH 
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:   perl-Goo-Canvas
Version:0.06
Release:0
%define cpan_name Goo-Canvas
Summary:Goo::Canvas Perl module
License:GPL-2.0+ or Artistic-1.0+
Group:  Development/Libraries/Perl
Url:http://search.cpan.org/dist/Goo-Canvas/
#Source:
http://www.cpan.org/authors/id/Y/YE/YEWENBIN/Goo-Canvas-%{version}.tar.gz
Source: %{cpan_name}-%{version}.tar.gz
Patch0: Goo-Canvas-0.06-add_missing_prototype.patch
Patch1: Goo-Canvas-0.06-fix_documentation.patch
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildRequires:  cairo-devel
BuildRequires:  glib2-devel
BuildRequires:  gtk2-devel
BuildRequires:  perl
BuildRequires:  perl-Cairo
BuildRequires:  perl-Glib
BuildRequires:  perl-Gtk2
BuildRequires:  perl-macros
BuildRequires:  pkg-config

%if %suse_version <= 1140
BuildRequires:  goocanvas-devel
%else
BuildRequires:  libgoocanvas3-devel
%endif

%{perl_requires}

%description
Goo::Canvas Perl module

%prep
%setup -q -n %{cpan_name}-%{version}
%patch0
%patch1

%build
export CFLAGS="%{optflags}"
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags} NOECHO=""

%check
%{__make} test

%install
%perl_make_install
%perl_process_packlist
%perl_gen_filelist

%clean
%{__rm} -rf %{buildroot}

%files -f %{name}.files
%defattr(-,root,root,755)

%changelog
++ Goo-Canvas-0.06-add_missing_prototype.patch ++
Index: xs/goocanvas.xs
===
--- xs/goocanvas.xs.orig
+++ xs/goocanvas.xs
@@ -1,4 +1,8 @@
 #include "goocanvas-perl.h"
+#include 
+
+extern cairo_pattern_t* goo_canvas_cairo_pattern_from_pixbuf(GdkPixbuf* 
pixbuf);
+extern cairo_surface_t* goo_canvas_cairo_surface_from_pixbuf(GdkPixbuf* 
pixbuf);
 
 MODULE = Goo::Canvas   PACKAGE = Goo::Canvas   PREFIX = goo_canvas_
 =head1 SYNOPSIS
Index: xs/goocanvasgroup.xs

commit perl-App-Dochazka-Common for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package perl-App-Dochazka-Common for 
openSUSE:Factory checked in at 2016-10-10 16:20:13

Comparing /work/SRC/openSUSE:Factory/perl-App-Dochazka-Common (Old)
 and  /work/SRC/openSUSE:Factory/.perl-App-Dochazka-Common.new (New)


Package is "perl-App-Dochazka-Common"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-App-Dochazka-Common/perl-App-Dochazka-Common.changes
2016-09-17 14:39:44.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-App-Dochazka-Common.new/perl-App-Dochazka-Common.changes
   2016-10-10 16:20:14.0 +0200
@@ -1,0 +2,23 @@
+Sat Sep 24 10:46:10 UTC 2016 - ncut...@suse.com
+
+- updated to 0.206
+   see /usr/share/doc/packages/perl-App-Dochazka-Common/Changes
+
+---
+Sat Sep 24 10:44:32 UTC 2016 - ncut...@suse.com
+
+- updated to 0.206
+   see /usr/share/doc/packages/perl-App-Dochazka-Common/Changes
+
+---
+Wed Sep 14 11:23:29 UTC 2016 - ncut...@suse.com
+
+- updated to 0.205
+   see /usr/share/doc/packages/perl-App-Dochazka-Common/Changes
+
+---
+Thu Sep  8 10:54:03 UTC 2016 - tampak...@opensuse.org
+
+- regenerate via cpanspec, remove _service file
+
+---

Old:

  App-Dochazka-Common-0.204.tar.gz
  _service

New:

  App-Dochazka-Common-0.206.tar.gz



Other differences:
--
++ perl-App-Dochazka-Common.spec ++
--- /var/tmp/diff_new_pack.2H1Vgi/_old  2016-10-10 16:20:15.0 +0200
+++ /var/tmp/diff_new_pack.2H1Vgi/_new  2016-10-10 16:20:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-App-Dochazka-Common
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,19 +17,19 @@
 
 
 Name:   perl-App-Dochazka-Common
-Version:0.204
+Version:0.206
 Release:0
 %define cpan_name App-Dochazka-Common
 Summary:Dochazka Attendance and Time Tracking System shared modules
 License:BSD-3-Clause
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/App-Dochazka-Common/
-Source: %{cpan_name}-%{version}.tar.gz
+Source0:App-Dochazka-Common-0.206.tar.gz
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Module::Build) >= 0.37
+BuildRequires:  perl(Module::Build) >= 0.37
 BuildRequires:  perl(Params::Validate) >= 1.06
 BuildRequires:  perl(Software::License)
 BuildRequires:  perl(Test::Deep::NoTest)
@@ -43,9 +43,8 @@
 %{perl_requires}
 
 %description
-This distro contains modules that are used by both the server the
-App::Dochazka::REST manpage and the command-line client the
-App::Dochazka::CLI manpage.
+This distro contains modules that are used by both the server
+App::Dochazka::REST and the command-line client App::Dochazka::CLI.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
@@ -63,6 +62,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes ignore.txt README.rst
+%doc Changes LICENSE README.rst
 
 %changelog

++ App-Dochazka-Common-0.204.tar.gz -> App-Dochazka-Common-0.206.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/App-Dochazka-Common-0.204/Changes 
new/App-Dochazka-Common-0.206/Changes
--- old/App-Dochazka-Common-0.204/Changes   2016-01-19 15:16:13.0 
+0100
+++ new/App-Dochazka-Common-0.206/Changes   2016-09-24 12:45:59.0 
+0200
@@ -223,3 +223,13 @@
 - Model.pm: make make_accessor more useful
 - Model/Tempintvl.pm: add int_id accessor
 
+0.205 2016-09-14 09:35 CEST
+- Travis CI
+- Add sync property to Employee class
+
+0.206 2016-09-24 12:44 CEST
+- build/ops: change OBS_PROJECT to Application:Dochazka:staging
+- Session.pm: boilerplate for new module
+- Session.pm: implement get_session() function
+- MANIFEST: add the new Session.pm module
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/App-Dochazka-Common-0.204/MANIFEST 
new/App-Dochazka-Common-0.206/MANIFEST
--- old/App-Dochazka-Common-0.204/MANIFEST  2016-01-19 15:16:13.0 
+0100
+++ new/App-Dochazka-Common-0.206/MANIFEST  2016-09-24 12:45:59.0 
+0200
@@ -1,6 +1,5 @@
 Build.PL
 Changes
-ignore.txt
 lib/App/Dochazka/Common.pm
 lib/App/Dochazka/Common/Model.pm

commit python-kazoo for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python-kazoo for openSUSE:Factory 
checked in at 2016-10-10 16:19:56

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


Package is "python-kazoo"

Changes:

--- /work/SRC/openSUSE:Factory/python-kazoo/python-kazoo.changes
2014-09-17 17:25:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-kazoo.new/python-kazoo.changes   
2016-10-10 16:20:01.0 +0200
@@ -1,0 +2,23 @@
+Thu Sep 29 14:41:34 UTC 2016 - dmuel...@suse.com
+
+- update to 2.2.1:
+  *  Issue #234: Add support for reconfig cluster membership operation
+  * Start running tests against Zookeeper 3.5.0 alpha and explicitly configure
+the `admin.serverPort` in tests to avoid port conflicts. The Zookeeper
+alpha version is not yet officially supported.
+  * Integrate eventlet *handler* support into kazoo so that along with [gevent,
+threading] handlers there can now be a dedicated eventlet handler for
+projects that need to (or want to) use eventlet (such as those working
+in the openstack community). The ``requirements_eventlet.txt`` file lists
+the optional eventlet requirement(s) that needs to be satisfied when this
+new handler is used.
+  * Use ``six`` to nicely handle the cross compatibility of kazoo with
+python 2.x and 3.x (reducing/removing the need to have custom compatibility
+code that replicates what six already provides).
+  * Add ``state_change_event`` to ``kazoo.recipe.partitioner.SetPartitioner``
+which is set on every state change.
+  * Add a NonBlockingLease recipe.  The recipe allows e.g. cron jobs scheduled
+on multiple machines to ensure that at most N instances will run a 
particular
+job, with lease timeout for graceful handover in case of node failures.
+
+---

Old:

  kazoo-2.0.zip

New:

  kazoo-2.2.1.tar.gz



Other differences:
--
++ python-kazoo.spec ++
--- /var/tmp/diff_new_pack.aXwRmJ/_old  2016-10-10 16:20:03.0 +0200
+++ /var/tmp/diff_new_pack.aXwRmJ/_new  2016-10-10 16:20:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-kazoo
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,17 +16,23 @@
 #
 
 
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%else
+BuildArch:  noarch
+%endif
 Name:   python-kazoo
-Version:2.0
+Version:2.2.1
 Release:0
 Summary:Higher Level Zookeeper Client
 License:Apache-2.0
 Group:  Development/Languages/Python
 Url:https://github.com/yahoo/Zake
-Source: 
https://pypi.python.org/packages/source/k/kazoo/kazoo-%{version}.zip
+Source: https://pypi.io/packages/source/k/kazoo/kazoo-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 BuildRequires:  unzip
+Requires:   python-six
 # Test requirements:
 #BuildRequires:  python-gevent
 #BuildRequires:  python-mock
@@ -34,11 +40,6 @@
 #BuildRequires:  python-nose
 #BuildRequires:  python-nose
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
-BuildArch:  noarch
-%endif
 
 %description
 Implements a higher level API to Apache Zookeeper for Python clients.




commit postgresql-init for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package postgresql-init for openSUSE:Factory 
checked in at 2016-10-10 16:19:28

Comparing /work/SRC/openSUSE:Factory/postgresql-init (Old)
 and  /work/SRC/openSUSE:Factory/.postgresql-init.new (New)


Package is "postgresql-init"

Changes:

--- /work/SRC/openSUSE:Factory/postgresql-init/postgresql-init.changes  
2016-05-08 10:40:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.postgresql-init.new/postgresql-init.changes 
2016-10-10 16:19:29.0 +0200
@@ -1,0 +2,11 @@
+Sat May 21 03:04:11 UTC 2016 - mrueck...@suse.de
+
+- fix building on 13.1 by removing the BuildRequires on systemd
+  we will get it via systemd mini and the systemd_requires macro
+
+---
+Sat May 21 03:01:35 UTC 2016 - mrueck...@suse.de
+
+- bump to 9.6 so we can also build for the latest version
+
+---



Other differences:
--
++ postgresql-init.spec ++
--- /var/tmp/diff_new_pack.pJeRu8/_old  2016-10-10 16:19:30.0 +0200
+++ /var/tmp/diff_new_pack.pJeRu8/_new  2016-10-10 16:19:30.0 +0200
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %if 0%{?suse_version} >= 1300
 %bcond_without  systemd
 %else
@@ -27,7 +28,7 @@
 Group:  Productivity/Databases/Servers
 
 Name:   postgresql-init
-Version:9.4
+Version:9.6
 Release:0
 Source0:postgresql-init
 Source1:postgresql-sysconfig
@@ -36,7 +37,6 @@
 BuildRequires:  pwdutils
 %if %{with systemd}
 BuildRequires:  pkgconfig(systemd)
-BuildRequires:  systemd
 %{?systemd_requires}
 %else
 Requires(postun): %insserv_prereq
@@ -90,7 +90,7 @@
 %post
 %fillup_only -n postgresql
 %if %{with systemd}
-/usr/bin/systemd-tmpfiles --create %_tmpfilesdir/postgresql.conf
+%tmpfiles_create %_tmpfilesdir/postgresql.conf
 test -x /bin/systemctl && /bin/systemctl daemon-reload || :
 %endif
 




commit python-oslo.utils for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python-oslo.utils for 
openSUSE:Factory checked in at 2016-10-10 16:20:51

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


Package is "python-oslo.utils"

Changes:

--- /work/SRC/openSUSE:Factory/python-oslo.utils/python-oslo.utils.changes  
2016-09-01 14:02:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-oslo.utils.new/python-oslo.utils.changes 
2016-10-10 16:20:52.0 +0200
@@ -1,0 +2,5 @@
+Wed Oct  5 17:05:10 UTC 2016 - tbecht...@suse.com
+
+- Adjust Requires and BuildRequires
+
+---



Other differences:
--
++ python-oslo.utils.spec ++
--- /var/tmp/diff_new_pack.zjojFE/_old  2016-10-10 16:20:53.0 +0200
+++ /var/tmp/diff_new_pack.zjojFE/_new  2016-10-10 16:20:53.0 +0200
@@ -32,9 +32,8 @@
 BuildRequires:  python-iso8601 >= 0.1.11
 BuildRequires:  python-mock >= 2.0
 BuildRequires:  python-monotonic >= 0.6
-BuildRequires:  python-netaddr >= 0.7.12
+BuildRequires:  python-netaddr >= 0.7.13
 BuildRequires:  python-netifaces >= 0.10.4
-BuildRequires:  python-oslo.config
 BuildRequires:  python-oslo.i18n >= 2.1.0
 BuildRequires:  python-oslotest >= 1.10.0
 BuildRequires:  python-pbr >= 1.6
@@ -47,7 +46,7 @@
 Requires:   python-funcsigs >= 0.4
 Requires:   python-iso8601 >= 0.1.11
 Requires:   python-monotonic >= 0.6
-Requires:   python-netaddr >= 0.7.12
+Requires:   python-netaddr >= 0.7.13
 Requires:   python-netifaces >= 0.10.4
 Requires:   python-oslo.i18n >= 2.1.0
 Requires:   python-pyparsing >= 2.0.1

++ _service ++
--- /var/tmp/diff_new_pack.zjojFE/_old  2016-10-10 16:20:53.0 +0200
+++ /var/tmp/diff_new_pack.zjojFE/_new  2016-10-10 16:20:53.0 +0200
@@ -1,8 +1,8 @@
 
   
-https://raw.githubusercontent.com/openstack/rpm-packaging/master/openstack/oslo.utils/oslo.utils.spec.j2
+https://raw.githubusercontent.com/openstack/rpm-packaging/stable/newton/openstack/oslo.utils/oslo.utils.spec.j2
 python-oslo.utils.spec
-https://raw.githubusercontent.com/openstack/requirements/master/global-requirements.txt
+https://raw.githubusercontent.com/openstack/requirements/stable/newton/global-requirements.txt
   
   
 enable




commit libvirt for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package libvirt for openSUSE:Factory checked 
in at 2016-10-10 16:20:55

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


Package is "libvirt"

Changes:

--- /work/SRC/openSUSE:Factory/libvirt/libvirt.changes  2016-09-12 
13:26:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.libvirt.new/libvirt.changes 2016-10-10 
16:20:56.0 +0200
@@ -1,0 +2,11 @@
+Wed Oct  5 13:58:27 UTC 2016 - jfeh...@suse.com
+
+- Update to libvirt 2.3.0
+  - Many incremental improvements and bug fixes, see
+http://libvirt.org/news.html
+  - Dropped patches:
+pci-use-driver-override-sysfs.patch,
+virHostdevFindUSBDevice-privsyms.patch, libxl-usb-vendor.patch,
+apparmor-qemu-bridge-helper.patch
+
+---

Old:

  apparmor-qemu-bridge-helper.patch
  libvirt-2.2.0.tar.xz
  libvirt-2.2.0.tar.xz.asc
  libxl-usb-vendor.patch
  pci-use-driver-override-sysfs.patch
  virHostdevFindUSBDevice-privsyms.patch

New:

  libvirt-2.3.0.tar.xz
  libvirt-2.3.0.tar.xz.asc



Other differences:
--
++ libvirt.spec ++
--- /var/tmp/diff_new_pack.PVaXmg/_old  2016-10-10 16:20:58.0 +0200
+++ /var/tmp/diff_new_pack.PVaXmg/_new  2016-10-10 16:20:58.0 +0200
@@ -174,7 +174,7 @@
 
 Name:   libvirt
 Url:http://libvirt.org/
-Version:2.2.0
+Version:2.3.0
 Release:0
 Summary:Library providing a simple virtualization API
 License:LGPL-2.1+
@@ -316,9 +316,6 @@
 # Upstream patches
 # Patches pending upstream review
 Patch100:   libxl-dom-reset.patch
-Patch101:   pci-use-driver-override-sysfs.patch
-Patch102:   virHostdevFindUSBDevice-privsyms.patch
-Patch103:   libxl-usb-vendor.patch
 # Need to go upstream
 Patch150:   xen-pv-cdrom.patch
 Patch151:   blockcopy-check-dst-identical-device.patch
@@ -327,7 +324,6 @@
 Patch154:   libxl-set-migration-constraints.patch
 Patch155:   libxl-set-cach-mode.patch
 Patch156:   apparmor-fixes.patch
-Patch157:   apparmor-qemu-bridge-helper.patch
 # Our patches
 Patch200:   libvirtd-defaults.patch
 Patch201:   libvirtd-init-script.patch
@@ -787,9 +783,6 @@
 %prep
 %setup -q
 %patch100 -p1
-%patch101 -p1
-%patch102 -p1
-%patch103 -p1
 %patch150 -p1
 %patch151 -p1
 %patch152 -p1
@@ -797,7 +790,6 @@
 %patch154 -p1
 %patch155 -p1
 %patch156 -p1
-%patch157 -p1
 %patch200 -p1
 %patch201 -p1
 %patch202 -p1
@@ -1535,6 +1527,7 @@
 %{_datadir}/libvirt/schemas/basictypes.rng
 %{_datadir}/libvirt/schemas/capability.rng
 %{_datadir}/libvirt/schemas/domain.rng
+%{_datadir}/libvirt/schemas/cputypes.rng
 %{_datadir}/libvirt/schemas/domaincaps.rng
 %{_datadir}/libvirt/schemas/domaincommon.rng
 %{_datadir}/libvirt/schemas/domainsnapshot.rng

++ apparmor-fixes.patch ++
--- /var/tmp/diff_new_pack.PVaXmg/_old  2016-10-10 16:20:58.0 +0200
+++ /var/tmp/diff_new_pack.PVaXmg/_new  2016-10-10 16:20:58.0 +0200
@@ -1,7 +1,7 @@
-Index: libvirt-2.2.0/examples/apparmor/libvirt-qemu
+Index: libvirt-2.3.0/examples/apparmor/libvirt-qemu
 ===
 libvirt-2.2.0.orig/examples/apparmor/libvirt-qemu
-+++ libvirt-2.2.0/examples/apparmor/libvirt-qemu
+--- libvirt-2.3.0.orig/examples/apparmor/libvirt-qemu
 libvirt-2.3.0/examples/apparmor/libvirt-qemu
 @@ -143,6 +143,9 @@
# for restore
/bin/bash rmix,

++ apparmor-no-mount.patch ++
--- /var/tmp/diff_new_pack.PVaXmg/_old  2016-10-10 16:20:58.0 +0200
+++ /var/tmp/diff_new_pack.PVaXmg/_new  2016-10-10 16:20:58.0 +0200
@@ -1,7 +1,7 @@
-Index: libvirt-2.2.0/examples/apparmor/libvirt-lxc
+Index: libvirt-2.3.0/examples/apparmor/libvirt-lxc
 ===
 libvirt-2.2.0.orig/examples/apparmor/libvirt-lxc
-+++ libvirt-2.2.0/examples/apparmor/libvirt-lxc
+--- libvirt-2.3.0.orig/examples/apparmor/libvirt-lxc
 libvirt-2.3.0/examples/apparmor/libvirt-lxc
 @@ -2,39 +2,15 @@
  
#include 

++ blockcopy-check-dst-identical-device.patch ++
--- /var/tmp/diff_new_pack.PVaXmg/_old  2016-10-10 16:20:58.0 +0200
+++ /var/tmp/diff_new_pack.PVaXmg/_new  2016-10-10 16:20:58.0 +0200
@@ -11,11 +11,11 @@
  src/qemu/qemu_driver.c | 7 +++
  1 file changed, 7 insertions(+)
 
-Index: libvirt-2.2.0/src/qemu/qemu_driver.c
+Index: libvirt-2.3.0/src/qemu/qemu_driver.c
 ===
 libvirt-2.2.0.orig/src/qemu/qemu_driver.c
-+++ libvirt-2.2.0/src/qemu/qemu_driver.c
-@@ -16578,6 +16578,15 @@ 

commit ansible for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package ansible for openSUSE:Factory checked 
in at 2016-10-10 16:21:00

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  2016-08-03 
11:44:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.ansible.new/ansible.changes 2016-10-10 
16:21:01.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep 15 16:20:44 UTC 2016 - mich...@stroeder.com
+
+- update to 2.1.2.0
+  (see /usr/share/doc/packages/ansible/CHANGELOG.md for details)
+ 
+---

Old:

  ansible-2.1.1.0.tar.gz

New:

  ansible-2.1.2.0.tar.gz



Other differences:
--
++ ansible.spec ++
--- /var/tmp/diff_new_pack.MHrNQz/_old  2016-10-10 16:21:02.0 +0200
+++ /var/tmp/diff_new_pack.MHrNQz/_new  2016-10-10 16:21:02.0 +0200
@@ -19,7 +19,7 @@
 
 
 Name:   ansible
-Version:2.1.1.0
+Version:2.1.2.0
 Release:0
 Summary:Radically simple IT automation
 License:GPL-3.0

++ ansible-2.1.1.0.tar.gz -> ansible-2.1.2.0.tar.gz ++
 3881 lines of diff (skipped)




commit apache2-mod_perl for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package apache2-mod_perl for 
openSUSE:Factory checked in at 2016-10-10 16:20:40

Comparing /work/SRC/openSUSE:Factory/apache2-mod_perl (Old)
 and  /work/SRC/openSUSE:Factory/.apache2-mod_perl.new (New)


Package is "apache2-mod_perl"

Changes:

--- /work/SRC/openSUSE:Factory/apache2-mod_perl/apache2-mod_perl.changes
2015-12-21 12:04:40.0 +0100
+++ /work/SRC/openSUSE:Factory/.apache2-mod_perl.new/apache2-mod_perl.changes   
2016-10-10 16:20:42.0 +0200
@@ -1,0 +2,8 @@
+Mon Oct  3 11:15:45 UTC 2016 - tchva...@suse.com
+
+- Remove unused icon and shorten the description a bit 1-2 migration
+  is quite irelevant in these days
+- Move tests to %check  phase
+- Use proper group for devel subpackage
+
+---

Old:

  mod_perl.xpm



Other differences:
--
++ apache2-mod_perl.spec ++
--- /var/tmp/diff_new_pack.q9AD6b/_old  2016-10-10 16:20:43.0 +0200
+++ /var/tmp/diff_new_pack.q9AD6b/_new  2016-10-10 16:20:43.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package apache2-mod_perl
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,6 @@
 
 
 %define srcname mod_perl
-
 Name:   apache2-mod_perl
 Version:2.0.9
 Release:0
@@ -50,10 +49,9 @@
 Requires:   perl-URI
 Requires:   perl-libwww-perl
 Requires:   perl(Linux::Pid)
+Conflicts:  mod_perl
 Obsoletes:  mod_perl_2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Conflicts:  mod_perl
-Icon:   mod_perl.xpm
 
 %description
 The Apache/Perl integration project brings together the full power of
@@ -69,29 +67,10 @@
 embedded interpreter if the additional performance is needed, but may
 require modifications to the scripts.
 
-Usage:
-
-To load the module into Apache, run the command "a2enmod perl" as root.
-
-To learn about the configuration, the best reference unequivocally is
-http://perl.apache.org/docs/
-
-For porting 1.0 applications to 2.0, the page
-http://perl.apache.org/docs/2.0/user/porting/compat.html should give
-the required information.
-
-Most mod_perl handlers use the perl-script handler. Scripts can run in
-"mod_perl mode" (preconfigured for URLs starting with /perl/) or "perl
-cgi mode" (preconfigured for URLs starting /cgi-perl). Plain CGI
-scripts can be run via /cgi-bin/. In all these cases, the script would
-be placed inside the /srv/www/cgi-bin/ directory. Refer to
-%{_sysconfdir}/apache2/conf.d/mod_perl.conf about this configuration.
-
 %package devel
 Summary:Embedded Perl for Apache - Development package
-Group:  Productivity/Networking/Web/Servers
+Group:  Development/Languages/Perl
 Requires:   %{name} = %{version}
-Provides:   
apache2-mod_perl:%{_includedir}/apache2/modules/perl/modperl_cgi.h
 
 %description devel
 The Apache/Perl integration project brings together the full power of
@@ -108,16 +87,14 @@
 %build
 perl Makefile.PL INSTALLDIRS=vendor MP_APXS=%{apache_apxs} 
MP_APR_CONFIG=%{_bindir}/apr-1-config MP_CCOPTS="%{apache_cflags} 
-fgnu89-inline"
 make %{?_smp_mflags}
-#
-# Run tests
-#
+
+%check
 %if !0%{?qemu_user_space_build}
 mkdir t/run
 t/TEST -start-httpd -port select -startup_timeout 720
 t/TEST -run-tests || true
 t/TEST -stop-httpd
 %endif
-exit 0
 
 %install
 %perl_make_install




commit wordnet for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package wordnet for openSUSE:Factory checked 
in at 2016-10-10 16:20:15

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


Package is "wordnet"

Changes:

--- /work/SRC/openSUSE:Factory/wordnet/wordnet.changes  2013-08-04 
08:05:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.wordnet.new/wordnet.changes 2016-10-10 
16:20:16.0 +0200
@@ -1,0 +2,8 @@
+Tue Oct  4 13:06:55 UTC 2016 - badshah...@gmail.com
+
+- Update database to version 3.1 (version 3.1 only includes the
+  database, meant to be a drop-in replacement for 3.0's db).
+- Use full URL's for sources.
+- Drop INSTALL file from package
+
+---

New:

  wn3.1.dict.tar.gz



Other differences:
--
++ wordnet.spec ++
--- /var/tmp/diff_new_pack.esZ9Hl/_old  2016-10-10 16:20:18.0 +0200
+++ /var/tmp/diff_new_pack.esZ9Hl/_new  2016-10-10 16:20:18.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package wordnet
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,6 +16,8 @@
 #
 
 
+%define dbver 3.1
+
 Name:   wordnet
 Version:3.0
 Release:0
@@ -23,7 +25,9 @@
 License:MIT
 Group:  Productivity/Office/Dictionary
 Url:http://wordnet.princeton.edu
-Source: WordNet-%{version}.tar.bz2
+Source0:http://wordnetcode.princeton.edu/3.0/WordNet-%{version}.tar.bz2
+# Updated dict files as drop-in replacement
+Source1:http://wordnetcode.princeton.edu/wn%{dbver}.dict.tar.gz
 # PATCH-FIX-UPSTREAM wordnet-system-tk-headers.patch badshah...@gmail.com -- 
Use system tk headers, patch came from Fedora
 Patch0: wordnet-system-tk-headers.patch
 # PATCH-FIX-UPSTREAM wordnet-libtool.patch badshah...@gmail.com -- Correct 
checking for libtool, patch came from Fedora
@@ -77,7 +81,7 @@
 applications based on WordNet.
 
 %prep
-%setup -q -n WordNet-3.0
+%setup -q -n WordNet-3.0 -b 1
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
@@ -106,6 +110,10 @@
 # Remove useless Makefiles installed by %%doc
 rm -rf doc/{html,ps,pdf}/Makefile*
 
+# REPLACE OLD DIC DATABASE WITH NEW
+rm -fr %{buildroot}%{_datadir}/%{name}-%{version}/dict
+cp -pr ../dict %{buildroot}%{_datadir}/%{name}-%{version}/dict
+
 %fdupes %{buildroot}%{_datadir}/%{name}-%{version}/dict/
 
 %clean
@@ -117,7 +125,7 @@
 
 %files
 %defattr(-,root,root)
-%doc AUTHORS COPYING INSTALL ChangeLog README doc/{html,ps,pdf}
+%doc AUTHORS COPYING ChangeLog README doc/{html,ps,pdf}
 %{_bindir}/wishwn
 %{_bindir}/wn
 %{_bindir}/wnb




commit perl-App-Dochazka-CLI for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package perl-App-Dochazka-CLI for 
openSUSE:Factory checked in at 2016-10-10 16:20:11

Comparing /work/SRC/openSUSE:Factory/perl-App-Dochazka-CLI (Old)
 and  /work/SRC/openSUSE:Factory/.perl-App-Dochazka-CLI.new (New)


Package is "perl-App-Dochazka-CLI"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-App-Dochazka-CLI/perl-App-Dochazka-CLI.changes  
2016-09-17 14:39:52.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-App-Dochazka-CLI.new/perl-App-Dochazka-CLI.changes
 2016-10-10 16:20:13.0 +0200
@@ -1,0 +2,27 @@
+Thu Sep 15 11:35:40 UTC 2016 - ncut...@suse.com
+
+- updated to 0.238
+   see /usr/share/doc/packages/perl-App-Dochazka-CLI/Changes
+
+---
+Thu Sep 15 06:07:03 UTC 2016 - tampak...@opensuse.org
+
+- add example and empty config files
+
+---
+Thu Sep  8 10:51:13 UTC 2016 - tampak...@opensuse.org
+
+- regenerate via cpanspec, remove _service file
+
+---
+Sun Sep  4 20:42:04 UTC 2016 - ncut...@suse.com
+
+- update %doc list in spec file
+
+---
+Sun Sep  4 18:14:08 UTC 2016 - ncut...@suse.com
+
+- updated to 0.237
+   see /usr/share/doc/packages/perl-App-Dochazka-CLI/Changes
+
+---

Old:

  App-Dochazka-CLI-0.236.tar.gz
  _service

New:

  App-Dochazka-CLI-0.238.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-App-Dochazka-CLI.spec ++
--- /var/tmp/diff_new_pack.UrT4sD/_old  2016-10-10 16:20:14.0 +0200
+++ /var/tmp/diff_new_pack.UrT4sD/_new  2016-10-10 16:20:14.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-App-Dochazka-CLI
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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,44 +17,45 @@
 
 
 Name:   perl-App-Dochazka-CLI
-Version: 0.236
+Version:0.238
 Release:0
 %define cpan_name App-Dochazka-CLI
 Summary:Dochazka command line client
 License:BSD-3-Clause
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/App-Dochazka-CLI/
-Source: App-Dochazka-CLI-%{version}.tar.gz
+Source0:App-Dochazka-CLI-0.238.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
 BuildRequires:  perl(App::CELL) >= 0.209
-BuildRequires:  perl(App::Dochazka::Common) >= 0.192
+BuildRequires:  perl(App::Dochazka::Common) >= 0.199
 BuildRequires:  perl(Date::Calc)
+BuildRequires:  perl(File::HomeDir)
 BuildRequires:  perl(File::ShareDir) >= 1.00
 BuildRequires:  perl(File::Slurp)
-BuildRequires:  perl(File::Temp)
 BuildRequires:  perl(HTTP::Cookies)
 BuildRequires:  perl(HTTP::Request)
 BuildRequires:  perl(JSON)
 BuildRequires:  perl(LWP::UserAgent)
-BuildRequires:  perl(Module::Build) >= 0.37
+BuildRequires:  perl(Module::Build) >= 0.37
 BuildRequires:  perl(Params::Validate) >= 1.06
 BuildRequires:  perl(Software::License)
 BuildRequires:  perl(Term::ReadKey)
 BuildRequires:  perl(Term::ReadLine::Gnu)
+BuildRequires:  perl(Test::Deep)
 BuildRequires:  perl(Test::Fatal)
 BuildRequires:  perl(Test::Warnings)
 BuildRequires:  perl(Text::Table)
-BuildRequires:  perl(Web::MREST::CLI) >= 0.275
+BuildRequires:  perl(Web::MREST::CLI) >= 0.28
 Requires:   perl(App::CELL) >= 0.209
-Requires:   perl(App::Dochazka::Common) >= 0.192
+Requires:   perl(App::Dochazka::Common) >= 0.199
 Requires:   perl(Date::Calc)
 Requires:   perl(File::HomeDir)
 Requires:   perl(File::ShareDir) >= 1.00
 Requires:   perl(File::Slurp)
-Requires:   perl(File::Temp)
 Requires:   perl(HTTP::Cookies)
 Requires:   perl(HTTP::Request)
 Requires:   perl(JSON)
@@ -63,21 +64,22 @@
 Requires:   perl(Term::ReadKey)
 Requires:   perl(Term::ReadLine::Gnu)
 Requires:   perl(Text::Table)
-Requires:   perl(Web::MREST::CLI) >= 0.275
-Requires:   xdg-utils
+Requires:   perl(Web::MREST::CLI) >= 0.281
 %{perl_requires}
+# MANUAL BEGIN
+Requires:   xdg-utils
+# MANUAL END
 
 %description
-the App::Dochazka::CLI manpage is the Command Line Interface (CLI)
-component of the Dochazka Attendance & Time Tracking system.
+App::Dochazka::CLI is the Command Line Interface (CLI) component of the
+Dochazka Attendance & 

commit hostapd for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package hostapd for openSUSE:Factory checked 
in at 2016-10-10 16:20:43

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


Package is "hostapd"

Changes:

--- /work/SRC/openSUSE:Factory/hostapd/hostapd.changes  2015-11-22 
11:03:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.hostapd.new/hostapd.changes 2016-10-10 
16:20:48.0 +0200
@@ -1,0 +2,77 @@
+Mon Oct 02 14:39:02 GMT 2016 - ch...@intrbiz.com
+
+- update to upstream release 2.6
+  * fixed EAP-pwd last fragment validation
+[http://w1.fi/security/2015-7/] (CVE-2015-5314)
+  * fixed WPS configuration update vulnerability with malformed passphrase
+[http://w1.fi/security/2016-1/] (CVE-2016-4476)
+  * extended channel switch support for VHT bandwidth changes
+  * added support for configuring new ANQP-elements with
+anqp_elem=:
+  * fixed Suite B 192-bit AKM to use proper PMK length
+(note: this makes old releases incompatible with the fixed behavior)
+  * added no_probe_resp_if_max_sta=1 parameter to disable Probe Response
+frame sending for not-associated STAs if max_num_sta limit has been
+reached
+  * added option (-S as command line argument) to request all interfaces
+to be started at the same time
+  * modified rts_threshold and fragm_threshold configuration parameters
+to allow -1 to be used to disable RTS/fragmentation
+  * EAP-pwd: added support for Brainpool Elliptic Curves
+(with OpenSSL 1.0.2 and newer)
+  * fixed EAPOL reauthentication after FT protocol run
+  * fixed FTIE generation for 4-way handshake after FT protocol run
+  * fixed and improved various FST operations
+  * TLS server
+- support SHA384 and SHA512 hashes
+- support TLS v1.2 signature algorithm with SHA384 and SHA512
+- support PKCS #5 v2.0 PBES2
+- support PKCS #5 with PKCS #12 style key decryption
+- minimal support for PKCS #12
+- support OCSP stapling (including ocsp_multi)
+  * added support for OpenSSL 1.1 API changes
+- drop support for OpenSSL 0.9.8
+- drop support for OpenSSL 1.0.0
+  * EAP-PEAP: support fast-connect crypto binding
+  * RADIUS
+- fix Called-Station-Id to not escape SSID
+- add Event-Timestamp to all Accounting-Request packets
+- add Acct-Session-Id to Accounting-On/Off
+- add Acct-Multi-Session-Id  ton Access-Request packets
+- add Service-Type (= Frames)
+- allow server to provide PSK instead of passphrase for WPA-PSK
+  Tunnel_password case
+- update full message for interim accounting updates
+- add Acct-Delay-Time into Accounting messages
+- add require_message_authenticator configuration option to require
+  CoA/Disconnect-Request packets to be authenticated
+  * started to postpone WNM-Notification frame sending by 100 ms so that
+the STA has some more time to configure the key before this frame is
+received after the 4-way handshake
+  * VHT: added interoperability workaround for 80+80 and 160 MHz channels
+  * extended VLAN support (per-STA vif, etc.)
+  * fixed PMKID derivation with SAE
+  * nl80211
+- added support for full station state operations
+- fix IEEE 802.1X/WEP EAP reauthentication and rekeying to use
+  unencrypted EAPOL frames
+  * added initial MBO support; number of extensions to WNM BSS Transition
+Management
+  * added initial functionality for location related operations
+  * added assocresp_elements parameter to allow vendor specific elements
+to be added into (Re)Association Response frames
+  * improved Public Action frame addressing
+- use Address 3 = wildcard BSSID in GAS response if a query from an
+  unassociated STA used that address
+- fix TX status processing for Address 3 = wildcard BSSID
+- add gas_address3 configuration parameter to control Address 3
+  behavior
+  * added command line parameter -i to override interface parameter in
+hostapd.conf
+  * added command completion support to hostapd_cli
+  * added passive client taxonomy determination (CONFIG_TAXONOMY=y
+compile option and "SIGNATURE " control interface command)
+  * number of small fixes
+- renamed hostapd-2.5-defconfig.patch to hostapd-2.6-defconfig.patch
+
+---

Old:

  hostapd-2.5-defconfig.patch
  hostapd-2.5.tar.gz

New:

  hostapd-2.6-defconfig.patch
  hostapd-2.6.tar.gz



Other differences:
--
++ hostapd.spec ++
--- /var/tmp/diff_new_pack.3IwyAW/_old  2016-10-10 16:20:49.0 +0200
+++ /var/tmp/diff_new_pack.3IwyAW/_new  2016-10-10 16:20:50.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package hostapd
 #
-# Copyright (c) 2015 

commit wireshark for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package wireshark for openSUSE:Factory 
checked in at 2016-10-10 16:20:29

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


Package is "wireshark"

Changes:

--- /work/SRC/openSUSE:Factory/wireshark/wireshark.changes  2016-09-12 
13:28:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.wireshark.new/wireshark.changes 2016-10-10 
16:20:40.0 +0200
@@ -1,0 +2,14 @@
+Wed Oct  5 08:08:19 UTC 2016 - astie...@suse.com
+
+- Wireshark 2.2.1:
+  This release fixes a number of issues that made it possible to
+  make Wireshark crash by injecting a malformed packet onto the
+  wire or by convincing someone to read a malformed packet trace
+  file. (bsc#1002981)
+  * wnpa-sec-2016-56: The Bluetooth L2CAP dissector could crash
+  * wnpa-sec-2016-57: The NCP dissector could crash
+  * Further bug fixes and updated protocol support as listed in:
+  * Bug fixes and updated protocol support as listed in:
+https://www.wireshark.org/docs/relnotes/wireshark-2.2.1.html
+
+---

Old:

  SIGNATURES-2.2.0.txt
  wireshark-2.2.0.tar.bz2

New:

  SIGNATURES-2.2.1.txt
  wireshark-2.2.1.tar.bz2



Other differences:
--
++ wireshark.spec ++
--- /var/tmp/diff_new_pack.lX3Arx/_old  2016-10-10 16:20:42.0 +0200
+++ /var/tmp/diff_new_pack.lX3Arx/_new  2016-10-10 16:20:42.0 +0200
@@ -29,7 +29,7 @@
 %define use_gnutls 0%{?suse_version} >= 1310 || 0%{?suse_version} == 1110
 
 Name:   wireshark
-Version:2.2.0
+Version:2.2.1
 Release:0
 Summary:A Network Traffic Analyser
 License:GPL-2.0+ and GPL-3.0+

++ SIGNATURES-2.2.0.txt -> SIGNATURES-2.2.1.txt ++
--- /work/SRC/openSUSE:Factory/wireshark/SIGNATURES-2.2.0.txt   2016-09-12 
13:28:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.wireshark.new/SIGNATURES-2.2.1.txt  
2016-10-10 16:20:35.0 +0200
@@ -1,49 +1,49 @@
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA512
 
-wireshark-2.2.0.tar.bz2: 32141141 bytes
-SHA256(wireshark-2.2.0.tar.bz2)=a6847e741efcba6cb9d92d464d4219917bee3ad0b8f5b0f80d4388ad2f3f1104
-RIPEMD160(wireshark-2.2.0.tar.bz2)=bfcd77da458dc9f427cd423876a60968e8fa66ad
-SHA1(wireshark-2.2.0.tar.bz2)=4b47bf8e2053073585318646e27d2aa9dc7c7238
-MD5(wireshark-2.2.0.tar.bz2)=c7de0997f74934f25b456846cf75cb81
-
-Wireshark-win64-2.2.0.exe: 48513256 bytes
-SHA256(Wireshark-win64-2.2.0.exe)=439133f4cc5a71bffc0667a1a085c92a048a0cd82e6d1c5b8b6d0091a6593634
-RIPEMD160(Wireshark-win64-2.2.0.exe)=1cad997dea40a42ab5afe48d625ce2730adb9aa0
-SHA1(Wireshark-win64-2.2.0.exe)=5450d9b3ed6d3690327481c1a5c247e94a55b50e
-MD5(Wireshark-win64-2.2.0.exe)=0e3ab4a244754c762bbff4b298667ecb
-
-Wireshark-win32-2.2.0.exe: 44810232 bytes
-SHA256(Wireshark-win32-2.2.0.exe)=edec161d63255f06f4c89852749d7c33e931c6ed6f85fa8a0019795d6a5fff5b
-RIPEMD160(Wireshark-win32-2.2.0.exe)=010eec40b63b8e84db0aa7718e7df5afe338d65b
-SHA1(Wireshark-win32-2.2.0.exe)=d5ad9ca342449306486a4b31a0a889daca485cad
-MD5(Wireshark-win32-2.2.0.exe)=e533b9fcdf87f7ab5b4a89b66dcd68d1
-
-WiresharkPortable_2.2.0.paf.exe: 46448144 bytes
-SHA256(WiresharkPortable_2.2.0.paf.exe)=65d71783a8fe3b7ffe9769cbffcae1490123d7e663ddb44f1e997a01428e7fd4
-RIPEMD160(WiresharkPortable_2.2.0.paf.exe)=aeb87768fafd7dd5d4e96abf70fb9b694dd210a6
-SHA1(WiresharkPortable_2.2.0.paf.exe)=ea5694c45b755068f9d43d7d5e1df273e6c0d3e9
-MD5(WiresharkPortable_2.2.0.paf.exe)=a809f06f781501c46e70d6280f83ca75
-
-Wireshark 2.2.0 Intel 64.dmg: 32691388 bytes
-SHA256(Wireshark 2.2.0 Intel 
64.dmg)=b74177a860e670bb147c8bb3fe4befffa743f39ca706067e8cdc297ff6222dca
-RIPEMD160(Wireshark 2.2.0 Intel 
64.dmg)=60c4357bec88fac9e0606286bc83c34d6a76f9d8
-SHA1(Wireshark 2.2.0 Intel 64.dmg)=2653978bb55d8d1bed4041e286c0542a147cfaa5
-MD5(Wireshark 2.2.0 Intel 64.dmg)=a9ce381485da290d9a65d7e3499ad1db
+wireshark-2.2.1.tar.bz2: 32154087 bytes
+SHA256(wireshark-2.2.1.tar.bz2)=900e22af04c8b35e0d02a25a360ab1fb7cfe5ac18fc48a9afd75a7103e569149
+RIPEMD160(wireshark-2.2.1.tar.bz2)=46214dad4b4ac3b9f1f3f8fc95192d0cc1e3377d
+SHA1(wireshark-2.2.1.tar.bz2)=fe07ab3582f39111ce5c78f5de6f44a8667000ac
+MD5(wireshark-2.2.1.tar.bz2)=49a1023a69ac108ca089d750eee50e37
+
+Wireshark-win32-2.2.1.exe: 44390576 bytes
+SHA256(Wireshark-win32-2.2.1.exe)=61d45eb8a34584155d3ca770bc6a3401b5281f8682004fc656b5dca77f3a8466
+RIPEMD160(Wireshark-win32-2.2.1.exe)=ac875dc15afae7ae6ab8795c5083dd3cf2278e05
+SHA1(Wireshark-win32-2.2.1.exe)=23524dfc11cdd8311ece3176222b58f9675f75c0
+MD5(Wireshark-win32-2.2.1.exe)=f7019c44ac204b0c51e83c710b62abcd
+
+Wireshark-win64-2.2.1.exe: 49208304 bytes

commit rubygem-rgen for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rgen for openSUSE:Factory 
checked in at 2016-10-10 16:20:49

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


Package is "rubygem-rgen"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rgen/rubygem-rgen.changes
2016-09-13 22:24:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-rgen.new/rubygem-rgen.changes   
2016-10-10 16:20:50.0 +0200
@@ -1,0 +2,10 @@
+Tue Sep 27 04:51:16 UTC 2016 - co...@suse.com
+
+- updated to version 0.8.2
+ see installed CHANGELOG
+
+  =0.8.2
+  
+  * Added helper methods
+
+---

Old:

  rgen-0.8.1.gem

New:

  rgen-0.8.2.gem



Other differences:
--
++ rubygem-rgen.spec ++
--- /var/tmp/diff_new_pack.n8oE0N/_old  2016-10-10 16:20:51.0 +0200
+++ /var/tmp/diff_new_pack.n8oE0N/_new  2016-10-10 16:20:51.0 +0200
@@ -24,15 +24,15 @@
 #
 
 Name:   rubygem-rgen
-Version:0.8.1
+Version:0.8.2
 Release:0
 %define mod_name rgen
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc > 3.10}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
 Url:http://ruby-gen.org
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml

++ rgen-0.8.1.gem -> rgen-0.8.2.gem ++
 4174 lines of diff (skipped)




commit uwsgi for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package uwsgi for openSUSE:Factory checked 
in at 2016-10-10 16:20:18

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


Package is "uwsgi"

Changes:

--- /work/SRC/openSUSE:Factory/uwsgi/uwsgi.changes  2016-06-11 
00:01:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.uwsgi.new/uwsgi.changes 2016-10-10 
16:20:21.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep 28 02:00:36 UTC 2016 - jf...@funktronics.ca
+
+- Don't fail build on deprecated declarations
+
+---



Other differences:
--
++ uwsgi.spec ++
--- /var/tmp/diff_new_pack.ydAEkr/_old  2016-10-10 16:20:22.0 +0200
+++ /var/tmp/diff_new_pack.ydAEkr/_new  2016-10-10 16:20:22.0 +0200
@@ -526,7 +526,7 @@
 export UWSGICONFIG_LUALIB="lua"
 export UWSGICONFIG_LUAPC="lua"
 export UWSGICONFIG_RUBYPATH="ruby1.9"
-export CFLAGS="%{optflags} -I$(echo 
%{_libdir}/erlang/lib/erl_interface-*/include) -I%{_jvmdir}/java/include/linux 
-L$UWSGICONFIG_JVM_LIBPATH/jli"
+export CFLAGS="%{optflags} -Wno-error=deprecated-declarations -I$(echo 
%{_libdir}/erlang/lib/erl_interface-*/include) -I%{_jvmdir}/java/include/linux 
-L$UWSGICONFIG_JVM_LIBPATH/jli"
 %{?jobs:export CPUCOUNT=%jobs}
 python uwsgiconfig.py --build opensuse
 




commit derby for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package derby for openSUSE:Factory checked 
in at 2016-10-10 16:20:26

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


Package is "derby"

Changes:

--- /work/SRC/openSUSE:Factory/derby/derby.changes  2016-06-25 
02:22:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.derby.new/derby.changes 2016-10-10 
16:20:28.0 +0200
@@ -10 +10 @@
-- Version bump to 10.11.1.1:
+- Version bump to 10.11.1.1 bsc#1002763 CVE-2015-1832:



Other differences:
--



commit nemo-extensions for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package nemo-extensions for openSUSE:Factory 
checked in at 2016-10-10 16:20:58

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


Package is "nemo-extensions"

Changes:

--- /work/SRC/openSUSE:Factory/nemo-extensions/nemo-extensions.changes  
2016-05-17 17:15:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.nemo-extensions.new/nemo-extensions.changes 
2016-10-10 16:20:59.0 +0200
@@ -1,0 +2,11 @@
+Wed Oct  5 19:37:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Add nemo-gtkhash_mbedtls-2.x.patch: Add mbed TLS 2.x+ support.
+- Enable gcrypt in nemo-gtkhash for openSUSE Leap 42.x.
+- Separate locales into nemo-extension-compare-lang,
+  nemo-extension-emblems-lang, nemo-extension-gtkhash-lang,
+  nemo-extension-image-converter-lang, nemo-extension-preview-lang,
+  nemo-extension-pastebin-lang, nemo-extension-repairer-lang,
+  nemo-extension-seahorse-lang, nemo-extension-share-lang.
+
+---
@@ -72 +82,0 @@
-

New:

  nemo-gtkhash_mbedtls-2.x.patch



Other differences:
--
++ nemo-extensions.spec ++
--- /var/tmp/diff_new_pack.AUGOsy/_old  2016-10-10 16:21:00.0 +0200
+++ /var/tmp/diff_new_pack.AUGOsy/_new  2016-10-10 16:21:00.0 +0200
@@ -34,6 +34,8 @@
 Patch2: nemo-seahorse_no-nautilus-conflicts.patch
 # PATCH-FIX-OPENSUSE nemo-dropbox_no-dropbox-bin.patch sor.ale...@meowr.ru -- 
Strip dropbox binary installation.
 Patch3: nemo-dropbox_no-dropbox-bin.patch
+# PATCH-FIX-OPENSUSE nemo-gtkhash_mbedtls-2.x.patch sor.ale...@meowr.ru -- Add 
mbed TLS 2.x+ support.
+Patch4: nemo-gtkhash_mbedtls-2.x.patch
 BuildRequires:  docutils
 BuildRequires:  gettext-runtime
 BuildRequires:  gnome-common
@@ -45,7 +47,7 @@
 BuildRequires:  mhash-devel
 BuildRequires:  nemo-devel
 BuildRequires:  openssl-devel
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  python-devel
 BuildRequires:  python-distutils-extra
 BuildRequires:  python-gtk-devel
@@ -69,7 +71,7 @@
 BuildRequires:  pkgconfig(nss)
 BuildRequires:  pkgconfig(pygobject-3.0)
 BuildRequires:  pkgconfig(webkitgtk-3.0)
-%if 0%{?suse_version} > 1320 || (0%{?suse_version} == 1315 && 0%{?is_opensuse})
+%if 0%{?suse_version} > 1320 || (0%{?sle_version} >= 120100 && 
0%{?is_opensuse})
 BuildRequires:  mbedtls-devel
 %endif
 
@@ -111,6 +113,7 @@
 Requires:   python-gtk
 Requires:   python-nemo = %{version}
 Requires:   python-xdg
+Recommends: nemo-extension-compare-lang
 # nemo-compare was last used in openSUSE 13.2.
 Provides:   nemo-compare = %{version}
 Obsoletes:  nemo-compare < %{version}
@@ -124,6 +127,8 @@
 you can choose your favourite compare tool for one-on-one,
 three-way and multi-compare situations.
 
+%lang_package -n nemo-extension-compare
+
 %package -n nemo-extension-dropbox
 Summary:DropBox support for the Nemo Filemanager
 License:GPL-3.0+
@@ -144,6 +149,7 @@
 Group:  System/GUI/Other
 Requires:   nemo >= %{_version}
 Requires:   python-gobject
+Recommends: nemo-extension-emblems-lang
 # nemo-emblems was last used in openSUSE 13.2.
 Provides:   nemo-emblems = %{version}
 Obsoletes:  nemo-emblems < %{version}
@@ -156,6 +162,8 @@
 Change a directory or a file emblem in Nemo, the Cinnamon desktop
 file manager.
 
+%lang_package -n nemo-extension-emblems
+
 %package -n nemo-extension-fileroller
 Summary:Fileroller support for the Nemo Filemanager
 License:GPL-3.0+
@@ -175,6 +183,7 @@
 License:GPL-2.0+
 Group:  System/GUI/Other
 Requires:   nemo >= %{_version}
+Recommends: nemo-extension-gtkhash-lang
 # nemo-gtkhash was last used in openSUSE 13.2.
 Obsoletes:  nemo-gtkhash < %{version}
 Provides:   nemo-gtkhash = %{version}
@@ -186,12 +195,15 @@
 Currently supported hash functions include MD5, MD6, SHA1, SHA256,
 SHA512, RIPEMD, TIGER and WHIRLPOOL.
 
+%lang_package -n nemo-extension-gtkhash
+
 %package -n nemo-extension-image-converter
 Summary:Nemo extension to mass resize or rotate images
 License:GPL-2.0+
 Group:  System/GUI/Other
 Requires:   ImageMagick
 Requires:   nemo >= %{_version}
+Recommends: nemo-extension-converter-lang
 # nemo-image-converter was last used in openSUSE 13.2.
 Provides:   nemo-image-converter = %{version}
 Obsoletes:  nemo-image-converter < %{version}
@@ -202,6 +214,8 @@
 image size and file name. A click on "Resize" finally resizes the
 image(s) using ImageMagick's convert tool.
 
+%lang_package -n nemo-extension-image-converter
+
 %package -n nemo-extension-pastebin
 Summary:

commit ha-cluster-bootstrap for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package ha-cluster-bootstrap for 
openSUSE:Factory checked in at 2016-10-10 16:21:05

Comparing /work/SRC/openSUSE:Factory/ha-cluster-bootstrap (Old)
 and  /work/SRC/openSUSE:Factory/.ha-cluster-bootstrap.new (New)


Package is "ha-cluster-bootstrap"

Changes:

--- 
/work/SRC/openSUSE:Factory/ha-cluster-bootstrap/ha-cluster-bootstrap.changes
2016-07-24 19:53:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ha-cluster-bootstrap.new/ha-cluster-bootstrap.changes
   2016-10-10 16:21:06.0 +0200
@@ -1,0 +2,6 @@
+Thu Oct 06 07:40:14 UTC 2016 - kgronl...@suse.com
+
+- Update to version 0.4+git.1475739556.1088521:
+  * Better corosync defaults (bsc#1001164)
+
+---

Old:

  sleha-bootstrap-0.4+git.1469191369.b497afa.tar.bz2

New:

  sleha-bootstrap-0.4+git.1475739556.1088521.tar.bz2



Other differences:
--
++ ha-cluster-bootstrap.spec ++
--- /var/tmp/diff_new_pack.5MdYZ9/_old  2016-10-10 16:21:09.0 +0200
+++ /var/tmp/diff_new_pack.5MdYZ9/_new  2016-10-10 16:21:09.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   ha-cluster-bootstrap
-Version:0.4+git.1469191369.b497afa
+Version:0.4+git.1475739556.1088521
 Release:0
 Summary:Pacemaker HA Cluster Bootstrap Tool
 License:GPL-2.0

++ _servicedata ++
--- /var/tmp/diff_new_pack.5MdYZ9/_old  2016-10-10 16:21:09.0 +0200
+++ /var/tmp/diff_new_pack.5MdYZ9/_new  2016-10-10 16:21:09.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/tserong/sleha-bootstrap.git
-  b497afa7d6339ddc13dff9b43a4b1cb50d47b78f
\ No newline at end of file
+  4584e871492e8152bd745b00903d652c33cb727e
\ No newline at end of file

++ sleha-bootstrap-0.4+git.1469191369.b497afa.tar.bz2 -> 
sleha-bootstrap-0.4+git.1475739556.1088521.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sleha-bootstrap-0.4+git.1469191369.b497afa/scripts/ha-cluster-functions 
new/sleha-bootstrap-0.4+git.1475739556.1088521/scripts/ha-cluster-functions
--- old/sleha-bootstrap-0.4+git.1469191369.b497afa/scripts/ha-cluster-functions 
2016-07-22 14:43:33.0 +0200
+++ new/sleha-bootstrap-0.4+git.1475739556.1088521/scripts/ha-cluster-functions 
2016-10-06 09:39:16.0 +0200
@@ -29,6 +29,7 @@
 declare -r LOG_FILE=/var/log/ha-cluster-bootstrap.log
 declare -r CSYNC2_KEY=/etc/csync2/key_hagroup
 declare -r CSYNC2_CFG=/etc/csync2/csync2.cfg
+declare -r COROSYNC_AUTH=/etc/corosync/authkey
 declare -r COROSYNC_CONF=/etc/corosync/corosync.conf
 declare -r SYSCONFIG_SBD=/etc/sysconfig/sbd
 declare -r SYSCONFIG_FW=/etc/sysconfig/SuSEfirewall2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/sleha-bootstrap-0.4+git.1469191369.b497afa/scripts/ha-cluster-init 
new/sleha-bootstrap-0.4+git.1475739556.1088521/scripts/ha-cluster-init
--- old/sleha-bootstrap-0.4+git.1469191369.b497afa/scripts/ha-cluster-init  
2016-07-22 14:43:33.0 +0200
+++ new/sleha-bootstrap-0.4+git.1475739556.1088521/scripts/ha-cluster-init  
2016-10-06 09:39:16.0 +0200
@@ -243,14 +243,18 @@
 
 totem {
version:2
-
-   crypto_cipher:  none
-   crypto_hash:none
-
-   secauth:off
+   secauth:on
+   crypto_hash:sha1
+   crypto_cipher:  aes256
cluster_name:   hacluster
clear_node_high_bit: yes
 
+   token:  5000
+   token_retransmits_before_loss_const: 10
+   join:   60
+   consensus:  6000
+   max_messages:   20
+
interface {
ringnumber: 0
bindnetaddr:$bindnetaddr
@@ -334,21 +338,17 @@
 
 totem {
version:2
-   secauth:off
+   secauth:on
+   crypto_hash:sha1
+   crypto_cipher:  aes256
cluster_name:   hacluster
clear_node_high_bit: yes
 
-# Following are old corosync 1.4.x defaults from SLES
-#  token:  5000
-#  token_retransmits_before_loss_const: 10
-#  join:   60
-#  consensus:  6000
-#  vsftype:none
-#  max_messages:   20
-#  threads:0
-
-   crypto_cipher:  none
-   crypto_hash:none
+   token:  5000
+   token_retransmits_before_loss_const: 10
+   join:   60
+   consensus:  6000
+   max_messages:   20
 
interface {
ringnumber: 0
@@ -385,8 +385,21 @@
invoke csync2 -xv $COROSYNC_CONF
 }
 
+init_corosync_auth()
+{
+   # generate the corosync authkey
+   if [ -f 

commit haproxy for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package haproxy for openSUSE:Factory checked 
in at 2016-10-10 16:21:03

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


Package is "haproxy"

Changes:

--- /work/SRC/openSUSE:Factory/haproxy/haproxy.changes  2016-09-09 
10:20:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.haproxy.new/haproxy.changes 2016-10-10 
16:21:03.0 +0200
@@ -4 +4 @@
-- Update to 1.6.9
+- Update to 1.6.9 (bsc#1003264)



Other differences:
--



commit crmsh for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2016-10-10 16:21:08

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


Package is "crmsh"

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2016-09-16 
11:02:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2016-10-10 
16:21:09.0 +0200
@@ -1,0 +2,12 @@
+Wed Oct 05 09:14:50 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.3.1+git.1475245522.4172084:
+  * high: cibconfig: Ensure temp CIB is readable by crm_diff (bsc#999683)
+  * high: parse: Support target pattern in fencing topology
+  * medium: ui_configure: option to obscure passwords
+  * medium: cibconfig: Remove from tags when removing object
+  * medium: scripts: Better corosync defaults (bsc#1001164)
+  * medium: scripts: Drop logrotate check from cluster health
+  * low: cmd_status: Highlight plural forms (bsc#996806)
+
+---

Old:

  crmsh-2.3.1+git.1473924149.8abc212.tar.bz2

New:

  crmsh-2.3.1+git.1475245522.4172084.tar.bz2



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.Vqe7mx/_old  2016-10-10 16:21:11.0 +0200
+++ /var/tmp/diff_new_pack.Vqe7mx/_new  2016-10-10 16:21:11.0 +0200
@@ -36,7 +36,7 @@
 Summary:High Availability cluster command-line interface
 License:GPL-2.0+
 Group:  %{pkg_group}
-Version:2.3.1+git.1473924149.8abc212
+Version:2.3.1+git.1475245522.4172084
 Release:0
 Url:http://crmsh.github.io
 Source0:%{name}-%{version}.tar.bz2

++ _servicedata ++
--- /var/tmp/diff_new_pack.Vqe7mx/_old  2016-10-10 16:21:11.0 +0200
+++ /var/tmp/diff_new_pack.Vqe7mx/_new  2016-10-10 16:21:11.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/crmsh.git
-  8abc2127fd1acecdc40ae4e242c1c02eeead75eb
\ No newline at end of file
+  41720845429e9a42d4273d70a6be5cc31e324849
\ No newline at end of file

++ crmsh-2.3.1+git.1473924149.8abc212.tar.bz2 -> 
crmsh-2.3.1+git.1475245522.4172084.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/crmsh-2.3.1+git.1473924149.8abc212/crmsh/cibconfig.py 
new/crmsh-2.3.1+git.1475245522.4172084/crmsh/cibconfig.py
--- old/crmsh-2.3.1+git.1473924149.8abc212/crmsh/cibconfig.py   2016-09-15 
09:26:16.0 +0200
+++ new/crmsh-2.3.1+git.1475245522.4172084/crmsh/cibconfig.py   2016-09-30 
16:25:22.0 +0200
@@ -30,7 +30,7 @@
 from .msg import invalid_id_err, cib_ver_unsupported_err
 from .utils import ext_cmd, safe_open_w, pipe_string, safe_close_w, crm_msec
 from .utils import ask, lines2cli, olist
-from .utils import page_string, cibadmin_can_patch, str2tmp
+from .utils import page_string, cibadmin_can_patch, str2tmp, 
ensure_sudo_readable
 from .utils import run_ptest, is_id_valid, edit_file, get_boolean, 
filter_string
 from .xmlutil import is_child_rsc, rsc_constraint, sanitize_cib, rename_id, 
get_interesting_nodes
 from .xmlutil import is_pref_location, get_topnode, new_cib, 
get_rscop_defaults_meta_node
@@ -585,6 +585,12 @@
 def repr(self, format_mode="ignored"):
 "Return a string containing xml of all objects."
 cib_elem = cib_factory.obj_set2cib(self.obj_set)
+
+from .utils import obscured
+for nvp in cib_elem.xpath('//nvpair'):
+if 'value' in nvp.attrib:
+nvp.set('value', obscured(nvp.get('name'), nvp.get('value')))
+
 s = etree.tostring(cib_elem, pretty_print=True)
 return '\n' + s
 
@@ -1923,7 +1929,9 @@
 s = clidisplay.keyword(self.obj_type)
 d = ordereddict.odict()
 for c in self.node.iterchildren("fencing-level"):
-if "target-attribute" in c.attrib:
+if "target-pattern" in c.attrib:
+target = (None, c.get("target-pattern"))
+elif "target-attribute" in c.attrib:
 target = (c.get("target-attribute"), c.get("target-value"))
 else:
 target = c.get("target")
@@ -1943,9 +1951,10 @@
 
 def fmt_target(tgt):
 if isinstance(tgt, tuple):
+if tgt[0] is None:
+return "pattern:%s" % (tgt[1])
 return "attr:%s=%s" % tgt
-else:
-return tgt + ":"
+return tgt + ":"
 return cli_format([s] + ["%s %s" % (fmt_target(x), ' '.join(dd[x]))
  for x in dd.keys()],
   break_lines=(format_mode > 0))
@@ -2558,13 +2567,14 

commit python-openqa_review for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python-openqa_review for 
openSUSE:Factory checked in at 2016-10-10 16:21:18

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


Package is "python-openqa_review"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-openqa_review/python-openqa_review.changes
2016-10-06 12:42:46.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-openqa_review.new/python-openqa_review.changes
   2016-10-10 16:21:19.0 +0200
@@ -1,0 +2,7 @@
+Thu Oct 06 10:43:24 UTC 2016 - opensuse-packag...@opensuse.org
+
+- Update to version 1.3.1:
+  * tests: Correct test files for 'after_61b4db60'
+  * Prevent "no builds" found for weird combination of python packages for 
some users
+
+---

Old:

  python-openqa_review-1.3.0.tar.gz

New:

  python-openqa_review-1.3.1.tar.gz



Other differences:
--
++ python-openqa_review.spec ++
--- /var/tmp/diff_new_pack.89pdfv/_old  2016-10-10 16:21:20.0 +0200
+++ /var/tmp/diff_new_pack.89pdfv/_new  2016-10-10 16:21:20.0 +0200
@@ -18,7 +18,7 @@
 
 %define short_name openqa_review
 Name:   python-%{short_name}
-Version:1.3.0
+Version:1.3.1
 Release:0
 Summary:A review helper script for openQA
 License:MIT

++ python-openqa_review-1.3.0.tar.gz -> python-openqa_review-1.3.1.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/openqa_review-1.3.0/openqa_review/openqa_review.py 
new/openqa_review-1.3.1/openqa_review/openqa_review.py
--- old/openqa_review-1.3.0/openqa_review/openqa_review.py  2016-09-29 
20:15:42.0 +0200
+++ new/openqa_review-1.3.1/openqa_review/openqa_review.py  2016-10-06 
12:41:00.0 +0200
@@ -359,7 +359,7 @@
 def below_threshold(bar):
 threshold = float(running_threshold) if running_threshold is not None 
else 0
 return float(bar['style'].lstrip('width: ').rstrip(';').rstrip('%')) 
<= threshold
-builds = [bar.parent.parent for bar in 
soup.find_all(class_=re.compile("progress build-dashboard"))]
+builds = [bar.parent.parent for bar in soup.find_all(class_='progress 
build-dashboard')]
 finished = [build for build in builds if not 
build.find(class_='progress-bar-striped') or
 below_threshold(build.find(class_='progress-bar-striped'))]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openqa_review-1.3.0/tests/openqa_dashboard_after_61b4db60/https%3A::openqa.opensuse.org:group_overview:1
 
new/openqa_review-1.3.1/tests/openqa_dashboard_after_61b4db60/https%3A::openqa.opensuse.org:group_overview:1
--- 
old/openqa_review-1.3.0/tests/openqa_dashboard_after_61b4db60/https%3A::openqa.opensuse.org:group_overview:1
2016-09-29 20:15:42.0 +0200
+++ 
new/openqa_review-1.3.1/tests/openqa_dashboard_after_61b4db60/https%3A::openqa.opensuse.org:group_overview:1
2016-10-06 12:41:00.0 +0200
@@ -24,18 +24,10 @@
 
 
 
-
-42 passed
-
-
-5 unfinished
-
-
-38 softfailed
-
-
-16 failed
-
+42 passed
+5 unfinished
+38 softfailed
+16 failed
 
 
 
@@ -50,18 +42,9 @@
 
 
 
-
-55 passed
-
-
-0 unfinished
-
-
-43 softfailed
-
-
-5 failed
-
+55 passed
+43 softfailed
+5 failed
 
 
 
@@ -76,18 +59,9 @@
 
 
 
-
-53 passed
-
-
-0 unfinished
-
-
-43 softfailed
-
-
-6 failed
-
+53 passed
+43 softfailed
+6 failed
 
 
 
@@ -102,18 +76,9 @@
 
 

commit trinity for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package trinity for openSUSE:Factory checked 
in at 2016-10-10 16:21:30

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


Package is "trinity"

Changes:

--- /work/SRC/openSUSE:Factory/trinity/trinity.changes  2016-09-25 
14:45:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.trinity.new/trinity.changes 2016-10-10 
16:21:31.0 +0200
@@ -1,0 +2,15 @@
+Thu Oct 06 12:18:43 UTC 2016 - nmou...@suse.com
+
+- Update to version 1.6+git.20161005:
+  * add missing locking around state modification
+  * skip the sleep if the grandchild has already exited.
+  * reduce the amount of time we wait for the grandchild a little
+  * make enable_random_syscalls static
+  * annotate fadvise flags
+  * fix up some segfaults when --disable-fds=sockets is passed.
+  * move the reading of MemFree out to its own function for other uses.
+  * create a bpf fd of each type.
+  * add the newer bpf map types
+  * correct the params for BPF_MAP_TYPE_STACK_TRACE creation
+
+---

Old:

  trinity-1.6+git.20160913.tar.xz

New:

  trinity-1.6+git.20161005.tar.xz



Other differences:
--
++ trinity.spec ++
--- /var/tmp/diff_new_pack.Xl0yrP/_old  2016-10-10 16:21:32.0 +0200
+++ /var/tmp/diff_new_pack.Xl0yrP/_new  2016-10-10 16:21:32.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define version_unconverted 1.6+git.20160913
+%define version_unconverted 1.6+git.20161005
 Name:   trinity
-Version:1.6+git.20160913
+Version:1.6+git.20161005
 Release:0
 Summary:A Linux System call fuzz tester
 License:GPL-2.0

++ trinity-1.6+git.20160913.tar.xz -> trinity-1.6+git.20161005.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trinity-1.6+git.20160913/fds/bpf.c 
new/trinity-1.6+git.20161005/fds/bpf.c
--- old/trinity-1.6+git.20160913/fds/bpf.c  2016-09-13 17:18:12.0 
+0200
+++ new/trinity-1.6+git.20161005/fds/bpf.c  2016-10-05 20:09:56.0 
+0200
@@ -9,6 +9,10 @@
 #include 
 #include 
 #include 
+#include 
+#include 
+#include 
+#include 
 
 #include "fd.h"
 #include "log.h"
@@ -19,23 +23,20 @@
 #include "compat.h"
 #include "trinity.h"
 
-static int bpf(__unused__ int cmd, __unused__ union bpf_attr *attr, __unused__ 
unsigned int size)
+static int bpf(int cmd, union bpf_attr *attr, unsigned int size)
 {
-#ifdef SYS_bpf
-   return syscall(SYS_bpf, cmd, attr, size);
-#else
-   return -ENOSYS;
-#endif
+   return syscall(__NR_bpf, cmd, attr, size);
 }
 
 static int bpf_create_map(enum bpf_map_type map_type, unsigned int key_size,
-   unsigned int value_size, unsigned int max_entries)
+   unsigned int value_size, unsigned int max_entries, int 
map_flags)
 {
union bpf_attr attr = {
.map_type= map_type,
.key_size= key_size,
.value_size  = value_size,
-   .max_entries = max_entries
+   .max_entries = max_entries,
+   .map_flags   = map_flags,
};
 
return bpf(BPF_MAP_CREATE, , sizeof(attr));
@@ -53,21 +54,76 @@
int fd, key;
long long value = 0;
struct object *obj;
+   struct rlimit r = {1 << 20, 1 << 20};
+
+   setrlimit(RLIMIT_MEMLOCK, );
 
head = get_objhead(OBJ_GLOBAL, OBJ_FD_BPF_MAP);
head->destroy = _destructor;
 
-   fd = bpf_create_map(BPF_MAP_TYPE_ARRAY,sizeof(key), sizeof(value), 256);
+   fd = bpf_create_map(BPF_MAP_TYPE_HASH, sizeof(long long), sizeof(long 
long), 1024, 0);
if (fd < 0)
-   goto out;
+   goto fail_hash;
+   obj = alloc_object();
+   obj->bpf_map_fd = fd;
+   add_object(obj, OBJ_GLOBAL, OBJ_FD_BPF_MAP);
+   output(2, "fd[%d] = bpf hash\n", fd);
+fail_hash:
 
+   fd = bpf_create_map(BPF_MAP_TYPE_ARRAY, sizeof(key), sizeof(value), 
256, 0);
+   if (fd < 0)
+   goto fail_array;
+   obj = alloc_object();
+   obj->bpf_map_fd = fd;
+   add_object(obj, OBJ_GLOBAL, OBJ_FD_BPF_MAP);
+   output(2, "fd[%d] = bpf array\n", fd);
+fail_array:
+
+   fd = bpf_create_map(BPF_MAP_TYPE_PROG_ARRAY, sizeof(int), sizeof(int), 
4, 0);
+   if (fd < 0)
+   goto fail_progarray;
+   obj = alloc_object();
+   obj->bpf_map_fd = fd;
+   add_object(obj, OBJ_GLOBAL, OBJ_FD_BPF_MAP);
+   output(2, "fd[%d] = bpf progarray\n", fd);
+fail_progarray:
+
+   fd = bpf_create_map(BPF_MAP_TYPE_PERF_EVENT_ARRAY, sizeof(int), 
sizeof(u32), 32, 0);
+   if (fd < 0)
+  

commit lightdm-gtk-greeter for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package lightdm-gtk-greeter for 
openSUSE:Factory checked in at 2016-10-10 16:21:37

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  
2016-10-03 09:37:12.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.lightdm-gtk-greeter.new/lightdm-gtk-greeter.changes 
2016-10-10 16:21:38.0 +0200
@@ -1,0 +2,15 @@
+Thu Oct  6 13:13:48 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 2.0.2:
+  * Add support for lightdm 1.19.2+.
+  * Include a badge for Budgie desktop (lp#1568494).
+  * Fix solid colour instead of background image for some themes
+(lp#1458330).
+  * Restore user background after changing display setup.
+  * Correct login box blinking on login.
+  * Replace a number of build-breaking deprecations.
+  * Update translations.
+- Remove lightdm-gtk-greeter-fix-fail-return-value.patch,
+  lightdm-gtk-greeter-lightdm-1.19.2-api.patch: fixed upstream.
+
+---

Old:

  lightdm-gtk-greeter-2.0.1.tar.gz
  lightdm-gtk-greeter-2.0.1.tar.gz.asc
  lightdm-gtk-greeter-fix-fail-return-value.patch
  lightdm-gtk-greeter-lightdm-1.19.2-api.patch

New:

  lightdm-gtk-greeter-2.0.2.tar.gz
  lightdm-gtk-greeter-2.0.2.tar.gz.asc



Other differences:
--
++ lightdm-gtk-greeter.spec ++
--- /var/tmp/diff_new_pack.IDiKoh/_old  2016-10-10 16:21:41.0 +0200
+++ /var/tmp/diff_new_pack.IDiKoh/_new  2016-10-10 16:21:41.0 +0200
@@ -19,7 +19,7 @@
 
 %define _version 2.0
 Name:   lightdm-gtk-greeter
-Version:2.0.1
+Version:2.0.2
 Release:0
 Summary:Simple display manager (GTK+ greeter)
 License:GPL-3.0+
@@ -28,10 +28,7 @@
 Source: 
https://launchpad.net/%{name}/%{_version}/%{version}/+download/%{name}-%{version}.tar.gz
 Source1:
https://launchpad.net/%{name}/%{_version}/%{version}/+download/%{name}-%{version}.tar.gz.asc
 Source2:%{name}.keyring
-# PATCH-FIX-OPENSUSE lightdm-gtk-greeter-fix-fail-return-value.patch 
sor.ale...@meowr.ru -- Fix -Wreturn-type for fails.
-Patch0: lightdm-gtk-greeter-fix-fail-return-value.patch
-# PATCH-FIX-UPSTREAM lightdm-gtk-greeter-lightdm-1.19.2-api.patch 
sor.ale...@meowr.ru -- Use new API introduced in LightDM 1.19.2.
-Patch1: lightdm-gtk-greeter-lightdm-1.19.2-api.patch
+BuildRequires:  exo-tools
 BuildRequires:  fdupes
 BuildRequires:  gnome-common
 BuildRequires:  intltool
@@ -39,7 +36,7 @@
 BuildRequires:  pkgconfig(gmodule-export-2.0)
 BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 0.9.5
 BuildRequires:  pkgconfig(gtk+-3.0)
-BuildRequires:  pkgconfig(liblightdm-gobject-1) >= 1.19.2
+BuildRequires:  pkgconfig(liblightdm-gobject-1) >= 1.3.5
 BuildRequires:  pkgconfig(x11)
 Requires:   %{name}-branding >= %{version}
 Requires:   lightdm
@@ -72,8 +69,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 sed -i 's|$(datadir)/doc|%{_docdir}|g' data/Makefile.am
 
 # Remove __DATE__ and __TIME__.

++ lightdm-gtk-greeter-2.0.1.tar.gz -> lightdm-gtk-greeter-2.0.2.tar.gz 
++
 24599 lines of diff (skipped)




commit apache2-mod_nss for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package apache2-mod_nss for openSUSE:Factory 
checked in at 2016-10-10 16:21:11

Comparing /work/SRC/openSUSE:Factory/apache2-mod_nss (Old)
 and  /work/SRC/openSUSE:Factory/.apache2-mod_nss.new (New)


Package is "apache2-mod_nss"

Changes:

--- /work/SRC/openSUSE:Factory/apache2-mod_nss/apache2-mod_nss.changes  
2016-09-17 14:40:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.apache2-mod_nss.new/apache2-mod_nss.changes 
2016-10-10 16:21:12.0 +0200
@@ -1,0 +2,5 @@
+Thu Sep 29 15:26:39 UTC 2016 - jeng...@inai.de
+
+- Avoid changing permissions through symlinks
+
+---



Other differences:
--
++ apache2-mod_nss.spec ++
--- /var/tmp/diff_new_pack.YVMBTb/_old  2016-10-10 16:21:13.0 +0200
+++ /var/tmp/diff_new_pack.YVMBTb/_new  2016-10-10 16:21:13.0 +0200
@@ -199,8 +199,8 @@
 echo ""
 fi
 # Make sure that the database ownership is setup properly.
-find %{apache_sysconf_nssdir} -user root -name "*.db" -exec /bin/chgrp www {} 
\;
-find %{apache_sysconf_nssdir} -user root -name "*.db" -exec /bin/chmod 640 {} 
\;
+find %{apache_sysconf_nssdir} -user root -name "*.db" -exec /bin/chgrp -h www 
{} +
+find %{apache_sysconf_nssdir} -user root -name "*.db" ! -type l -exec 
/bin/chmod 640 {} +
 
 %files
 %defattr(-,root,root,-)




commit rubygem-httpclient for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-httpclient for 
openSUSE:Factory checked in at 2016-10-10 16:22:24

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


Package is "rubygem-httpclient"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-httpclient/rubygem-httpclient.changes
2016-09-12 13:26:23.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-httpclient.new/rubygem-httpclient.changes   
2016-10-10 16:22:25.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 10 04:30:53 UTC 2016 - co...@suse.com
+
+- updated to version 2.8.2.3
+  no changelog found
+
+---

Old:

  httpclient-2.8.2.1.gem

New:

  httpclient-2.8.2.3.gem



Other differences:
--
++ rubygem-httpclient.spec ++
--- /var/tmp/diff_new_pack.mZ5eMy/_old  2016-10-10 16:22:26.0 +0200
+++ /var/tmp/diff_new_pack.mZ5eMy/_new  2016-10-10 16:22:26.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-httpclient
-Version:2.8.2.1
+Version:2.8.2.3
 Release:0
 %define mod_name httpclient
 %define mod_full_name %{mod_name}-%{version}

++ httpclient-2.8.2.1.gem -> httpclient-2.8.2.3.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/httpclient/jruby_ssl_socket.rb 
new/lib/httpclient/jruby_ssl_socket.rb
--- old/lib/httpclient/jruby_ssl_socket.rb  2016-08-16 04:30:22.0 
+0200
+++ new/lib/httpclient/jruby_ssl_socket.rb  2016-08-28 08:48:35.0 
+0200
@@ -455,6 +455,7 @@
 
 DEFAULT_SSL_PROTOCOL = 
(java.lang.System.getProperty('java.specification.version') == '1.7') ? 
'TLSv1.2' : 'TLS'
 def initialize(socket, dest, config, debug_dev = nil)
+  @config = config
   if config.ssl_version == :auto
 ssl_version = DEFAULT_SSL_PROTOCOL
   else
@@ -527,7 +528,11 @@
   private
 
 def post_connection_check(hostname, wrap_cert)
-  BrowserCompatHostnameVerifier.new.verify(hostname, wrap_cert.cert)
+  if !@config.verify?
+return
+  else
+BrowserCompatHostnameVerifier.new.verify(hostname, wrap_cert.cert)
+  end
 end
   end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/httpclient/ssl_config.rb 
new/lib/httpclient/ssl_config.rb
--- old/lib/httpclient/ssl_config.rb2016-08-16 04:30:22.0 +0200
+++ new/lib/httpclient/ssl_config.rb2016-08-28 08:48:35.0 +0200
@@ -39,27 +39,25 @@
 if SSLEnabled
   include OpenSSL
 
-  if RUBY_ENGINE == 'jruby'
-module ::OpenSSL
-  module X509
-class Store
-  attr_reader :_httpclient_cert_store_items
-
-  # TODO: use prepend instead when we drop JRuby + 1.9.x support
-  wrapped = {}
-
-  wrapped[:initialize] = instance_method(:initialize)
-  define_method(:initialize) do |*args|
-wrapped[:initialize].bind(self).call(*args)
-@_httpclient_cert_store_items = [ENV['SSL_CERT_FILE'] || 
:default]
-  end
+  module ::OpenSSL
+module X509
+  class Store
+attr_reader :_httpclient_cert_store_items
+
+# TODO: use prepend instead when we drop JRuby + 1.9.x support
+wrapped = {}
+
+wrapped[:initialize] = instance_method(:initialize)
+define_method(:initialize) do |*args|
+  wrapped[:initialize].bind(self).call(*args)
+  @_httpclient_cert_store_items = [ENV['SSL_CERT_FILE'] || 
:default]
+end
 
-  [:add_cert, :add_file, :add_path].each do |m|
-wrapped[m] = instance_method(m)
-define_method(m) do |cert|
-  wrapped[m].bind(self).call(cert)
-  @_httpclient_cert_store_items << cert
-end
+[:add_cert, :add_file, :add_path].each do |m|
+  wrapped[m] = instance_method(m)
+  define_method(m) do |cert|
+wrapped[m].bind(self).call(cert)
+@_httpclient_cert_store_items << cert
   end
 end
   end
@@ -118,7 +116,7 @@
 attr_reader :client_ca # :nodoc:
 
 # These array keeps original files/dirs that was added to @cert_store
-def cert_store_items; @cert_store._httpclient_cert_store_items || []; end
+def cert_store_items; @cert_store._httpclient_cert_store_items; end
 attr_reader :cert_store_crl_items
 
 # Creates a SSLConfig.
diff -urN '--exclude=CVS' 

commit libzbc for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package libzbc for openSUSE:Factory checked 
in at 2016-10-10 16:21:45

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


Package is "libzbc"

Changes:

--- /work/SRC/openSUSE:Factory/libzbc/libzbc.changes2016-07-14 
09:48:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.libzbc.new/libzbc.changes   2016-10-10 
16:21:46.0 +0200
@@ -1,0 +2,22 @@
+Thu Sep 29 12:59:55 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 4.3.0
+* Properly handle detection of zoned block devices using sysfs
+* Fixed handling of list view so that an operation on a zone does
+  not reset the current selection and view whenever possible.
+* Improved handling of the list view using a filter model.
+* Added support for direct I/Os (O_DIRECT). Note: this does not
+  work with SG node device files.
+* Added maximum read/write command size in the device info
+  structure.
+* Initialize maximum device read/write I/O size for each backend
+  driver.
+* Check read/write command size against the maximum allowed for
+  the device.
+* Fixed get capacity: the code is now common for ATA and SCSI.
+  This fixes problems in SCSI backend when RC_BASIS is 0 (report
+  zones was being executed without the max logical sectors being
+  set), and also adds RC_BASIS handling for ATA drives (this was
+  missing entirely).
+
+---

Old:

  v4.1.1.tar.gz

New:

  v4.3.0.tar.gz



Other differences:
--
++ libzbc.spec ++
--- /var/tmp/diff_new_pack.boOG1J/_old  2016-10-10 16:21:48.0 +0200
+++ /var/tmp/diff_new_pack.boOG1J/_new  2016-10-10 16:21:48.0 +0200
@@ -17,8 +17,8 @@
 
 
 Name:   libzbc
-%define lname   libzbc-4_1_1
-Version:4.1.1
+%define lname   libzbc-4_3_0
+Version:4.3.0
 Release:0
 Summary:Library for manipulating ZBC and ZAC disks
 License:BSD-2-Clause and LGPL-3.0+

++ v4.1.1.tar.gz -> v4.3.0.tar.gz ++
 1736 lines of diff (skipped)




commit yast2-dhcp-server for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-dhcp-server for 
openSUSE:Factory checked in at 2016-10-10 16:21:23

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


Package is "yast2-dhcp-server"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-dhcp-server/yast2-dhcp-server.changes  
2016-06-07 23:48:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-dhcp-server.new/yast2-dhcp-server.changes 
2016-10-10 16:21:24.0 +0200
@@ -1,0 +2,7 @@
+Thu Oct  6 11:25:00 UTC 2016 - jreidin...@suse.com
+
+- prevent adding "pool" to global scope as it is allowed only in
+  network scope (bsc#737492)
+- 3.2.0
+
+---

Old:

  yast2-dhcp-server-3.1.11.tar.bz2

New:

  yast2-dhcp-server-3.2.0.tar.bz2



Other differences:
--
++ yast2-dhcp-server.spec ++
--- /var/tmp/diff_new_pack.e38Rw6/_old  2016-10-10 16:21:25.0 +0200
+++ /var/tmp/diff_new_pack.e38Rw6/_new  2016-10-10 16:21:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-dhcp-server
-Version:3.1.11
+Version:3.2.0
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-dhcp-server-3.1.11.tar.bz2 -> yast2-dhcp-server-3.2.0.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-dhcp-server-3.1.11/CONTRIBUTING.md 
new/yast2-dhcp-server-3.2.0/CONTRIBUTING.md
--- old/yast2-dhcp-server-3.1.11/CONTRIBUTING.md2016-06-06 
11:31:30.0 +0200
+++ new/yast2-dhcp-server-3.2.0/CONTRIBUTING.md 2016-10-06 14:24:28.0 
+0200
@@ -3,7 +3,7 @@
 
 YaST is an open source project and as such it welcomes all kinds of
 contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and YaST maintainers.
+ensure the process is effective and pleasant both for you and the YaST 
maintainers.
 
 There are two main forms of contribution: reporting bugs and performing code
 changes.
@@ -17,13 +17,11 @@
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
-that every bug will be fixed, but we'll try.
-
 When creating a bug report, please follow our [bug reporting
 guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
 
+We can't guarantee that every bug will be fixed, but we'll try.
+
 Code Changes
 
 
@@ -44,15 +42,22 @@
  to the [Ruby style
  guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
 
-  4. Make sure your change didn't break anything by building the RPM package
+  4. Update the package version (in `packages/*.spec`, usually by
+ `rake version:bump`) and add a new entry to the `package/*.changes` file
+ (by `osc vc package`).  
+ For bigger changes or changes which need longer discussion it is advised 
to
+ add this as a separate last commit so it can be easily updated when 
another
+ change is merged in the meantime.
+
+  5. Make sure your change didn't break anything by building the RPM package
  (`rake osc:build`). The build process includes running the full testsuite.
 
-  5. Publish the branch and create a pull request.
+  6. Publish the branch and create a pull request.
 
-  6. YaST developers will review your change and possibly point out issues.
+  7. YaST developers will review your change and possibly point out issues.
  Adapt the code under their guidance until they are all resolved.
 
-  7. Finally, the pull request will get merged or rejected.
+  8. Finally, the pull request will get merged or rejected.
 
 See also [GitHub's guide on
 contributing](https://help.github.com/articles/fork-a-repo).
@@ -60,9 +65,6 @@
 If you want to do multiple unrelated changes, use separate branches and pull
 requests.
 
-Do not change the `VERSION` and `*.changes` files as this could lead to
-conflicts.
-
 ### Commits
 
 Each commit in the pull request should do only one thing, which is clearly
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-dhcp-server-3.1.11/package/yast2-dhcp-server.changes 
new/yast2-dhcp-server-3.2.0/package/yast2-dhcp-server.changes
--- old/yast2-dhcp-server-3.1.11/package/yast2-dhcp-server.changes  
2016-06-06 11:31:30.0 +0200
+++ new/yast2-dhcp-server-3.2.0/package/yast2-dhcp-server.changes   
2016-10-06 14:24:28.0 +0200
@@ -1,4 +1,11 @@
 

commit rubygem-facter for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-facter for openSUSE:Factory 
checked in at 2016-10-10 16:21:51

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


Package is "rubygem-facter"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-facter/rubygem-facter.changes
2016-01-28 17:25:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-facter.new/rubygem-facter.changes   
2016-10-10 16:21:51.0 +0200
@@ -1,0 +2,13 @@
+Wed Sep  7 11:24:04 UTC 2016 - robert.munte...@gmail.com
+
+- Refresh facter-detect-recent-opensuse.patch, now lsbdistid for
+  TW is 'openSUSE Tumbleweed' 
+
+---
+Sat Aug 27 20:29:50 UTC 2016 - robert.munte...@gmail.com
+
+- Add facter-detect-recent-opensuse.patch, fixed detecting TW
+  and possibly Leap 42.2 as well, see
+  https://tickets.puppetlabs.com/browse/FACT-1496
+
+---

New:

  facter-detect-recent-opensuse.patch



Other differences:
--
++ rubygem-facter.spec ++
--- /var/tmp/diff_new_pack.aq16Ak/_old  2016-10-10 16:21:54.0 +0200
+++ /var/tmp/diff_new_pack.aq16Ak/_new  2016-10-10 16:21:54.0 +0200
@@ -42,6 +42,7 @@
 Source2:gem2rpm.yml
 # MANUAL
 Patch0:  %{mod_name}-ip-interface.patch
+Patch1:  %{mod_name}-detect-recent-opensuse.patch
 # /MANUAL
 Summary:Facter, a system inventory tool
 License:Apache-2.0
@@ -54,6 +55,8 @@
 %prep
 %gem_unpack
 %patch0 -p1
+%patch1 -p1
+find -type f -print0 | xargs -0 touch -r %{S:0}
 %gem_build
 
 %build

++ facter-detect-recent-opensuse.patch ++
>From 50c045f451a4cd4d82c6cb6a073f525c989657c4 Mon Sep 17 00:00:00 2001
From: Robert Munteanu 
Date: Sat, 27 Aug 2016 23:24:12 +0300
Subject: [PATCH] FACT-1496 - Facter fails to detect more recent openSUSE
 versions

Detect openSUSE based on the lsbdistid fact in addition to the
now-deprecated /etc/SuSE-release file.
---
 lib/facter/operatingsystem/linux.rb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/facter/operatingsystem/linux.rb 
b/lib/facter/operatingsystem/linux.rb
index de7913d..07679e3 100644
--- a/lib/facter/operatingsystem/linux.rb
+++ b/lib/facter/operatingsystem/linux.rb
@@ -13,6 +13,8 @@ module Facter
 @operatingsystem ||= "Ubuntu"
   elsif lsbdistid == "LinuxMint"
 @operatingsystem ||= "LinuxMint"
+  elsif lsbdistid.start_with?("openSUSE")
+@operatingsystem ||= "openSUSE"
   else
 @operatingsystem ||= get_operatingsystem_with_release_files
   end
-- 
2.9.3

++ gem2rpm.yml ++
--- /var/tmp/diff_new_pack.aq16Ak/_old  2016-10-10 16:21:54.0 +0200
+++ /var/tmp/diff_new_pack.aq16Ak/_new  2016-10-10 16:21:54.0 +0200
@@ -23,6 +23,8 @@
 :patches:
   # PATCH-FIX-UPSTREAM -- bnc#878129 -- use "ip link" instead of "ifconfig" 
for interface names
   '%{mod_name}-ip-interface.patch': -p1
+  # PATCH-FIX-UPSTREAM - FACT-1496
+  '%{mod_name}-detect-recent-opensuse.patch': -p1
 :post_install: |-
   mkdir -p %{buildroot}%{_sysconfdir}/%{mod_name}/facts.d
   install -Dm0444 %{SOURCE1} %{buildroot}%{_mandir}/man8/%{mod_name}.8




commit pymol for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package pymol for openSUSE:Factory checked 
in at 2016-10-10 16:21:56

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


Package is "pymol"

Changes:

--- /work/SRC/openSUSE:Factory/pymol/pymol.changes  2016-07-14 
09:43:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.pymol.new/pymol.changes 2016-10-10 
16:21:57.0 +0200
@@ -1,0 +2,34 @@
+Thu Sep 29 16:21:32 UTC 2016 - dh...@wustl.edu
+
+- update to svn rev 4161
+  * pse_export_version: legacy scenes support
+  * use ignore_case setting with set_name command
+  * setup.py: detect anaconda prefix
+
+---
+Thu Sep 22 16:10:17 UTC 2016 - dh...@wustl.edu
+
+- update to svn rev 4160
+  * experimental MMTF load support
+  * map export in CCP4 format
+  * SDF V3000 import/export support
+  * refactor molecular file formats export: Unified handling of PDB, PQR, 
mmCIF, MOL2, SDF, XYZ, MAE
+  * PLY geometry import (as CGO)
+  * new command: unset_deep
+  * new setting: cartoon_all_alt: Create cartoon for every alt code
+  * stick_h_scale: default=1.0 (was: 0.4) but remove dependency on negative 
stick_radius
+  * auto_show_classified: Visualize small (< 50 atoms) polymer classified 
molecules like organic
+  * bymol selection operator: ignore zero-order bonds
+  * menu: isomesh/surface negative color
+  * improve alignment of residues with unknown resn (e.g. ligands):
+give a match score of 5 to perfect matches of unknown residue codes.
+Previously, those got match score -1.
+  * remove broken and obsolete "PMO" file support
+  * use "label_digits" setting with "label" command
+  * do not resize window when loading a session file
+  * fix ignored SCALE w/ identity rotation (e.g. 1WAP)
+  * fix "scene auto, clear" (Scene > Delete)
+  * new setting: pick_shading: do flat shading for programmable image color 
analysis
+  * experimental cmd.raw_image_callback: post cmd.draw() callback
+
+---

Old:

  pymol-1.8.2.1.svn4159.tar.xz

New:

  pymol-1.8.3.3.svn4161.tar.xz



Other differences:
--
++ pymol.spec ++
--- /var/tmp/diff_new_pack.en2aW1/_old  2016-10-10 16:21:59.0 +0200
+++ /var/tmp/diff_new_pack.en2aW1/_new  2016-10-10 16:21:59.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   pymol
-Version:1.8.2.1.svn4159
+Version:1.8.3.3.svn4161
 Release:0
 Url:http://pymol.org
 Summary:A Molecular Viewer

++ pymol-1.8.2.1.svn4159.tar.xz -> pymol-1.8.3.3.svn4161.tar.xz ++
/work/SRC/openSUSE:Factory/pymol/pymol-1.8.2.1.svn4159.tar.xz 
/work/SRC/openSUSE:Factory/.pymol.new/pymol-1.8.3.3.svn4161.tar.xz differ: char 
17, line 1




commit gcompris for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package gcompris for openSUSE:Factory 
checked in at 2016-10-10 16:22:04

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


Package is "gcompris"

Changes:

--- /work/SRC/openSUSE:Factory/gcompris/gcompris.changes2016-07-30 
00:26:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.gcompris.new/gcompris.changes   2016-10-10 
16:22:08.0 +0200
@@ -1,0 +2,14 @@
+Fri Sep 30 15:21:49 UTC 2016 - badshah...@gmail.com
+
+- Add gcompris-gstreamer-1.0.patch: Port to gstreamer 1.0; patch
+  taken from debian patch tracker (bgo#747949, deb#785840); patch
+  touches autotool files, run autoreconf before ./configure
+  (BuildRequires added on automake, autoconf, libtool,
+  gnome-common). Update gstreamer BuildRequires accordingly.
+- Remove libtool archives from installed files for openSUSE --
+  these are not needed and causes problems such as:
+  Missing "Requires: gtk2-devel" in dependency chain
+  (/usr/lib64/gcompris/libgoocanvas.la from gcompris-devel
+  requires /usr/lib64/libgtk-x11-2.0.so) and so on.
+
+---

New:

  gcompris-gstreamer-1.0.patch



Other differences:
--
++ gcompris.spec ++
--- /var/tmp/diff_new_pack.tKWkF8/_old  2016-10-10 16:22:16.0 +0200
+++ /var/tmp/diff_new_pack.tKWkF8/_new  2016-10-10 16:22:16.0 +0200
@@ -30,9 +30,14 @@
 Source4:gcompris.6
 Patch1: gcompris-13.11-remove_build_date.patch
 # work around solver bug, require the package instead the lib
+# PATCH-FIX-UPSTREAM gcompris-gstreamer-1.0.patch bgo#747949 deb#785840 
badshah...@gmail.com -- Port to gstreamer 1.0; patch taken from debian patch 
tracker
+Patch2: gcompris-gstreamer-1.0.patch
+BuildRequires:  autoconf
+BuildRequires:  automake
 BuildRequires:  gettext-devel
 BuildRequires:  gnuchess >= 5.02
 BuildRequires:  intltool
+BuildRequires:  libtool
 BuildRequires:  makeinfo
 BuildRequires:  pkgconfig
 BuildRequires:  python-devel
@@ -78,7 +83,7 @@
 BuildRequires:  codeina
 BuildRequires:  desktop-file-utils
 BuildRequires:  gnome-python-devel
-BuildRequires:  gstreamer0.10-devel
+BuildRequires:  gstreamer-devel
 BuildRequires:  librsvg-devel
 BuildRequires:  polkit-gnome
 BuildRequires:  pygtk2.0-devel
@@ -91,7 +96,7 @@
 ###
 %if 0%{?suse_version}
 BuildRequires:  fdupes
-BuildRequires:  gstreamer010-devel
+BuildRequires:  gnome-common
 BuildRequires:  intltool
 BuildRequires:  libgnome-devel
 BuildRequires:  libgnomeui-devel
@@ -102,6 +107,8 @@
 BuildRequires:  texlive-latex
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-libs
+BuildRequires:  pkgconfig(gmodule-no-export-2.0)
+BuildRequires:  pkgconfig(gstreamer-1.0)
 %if 0%{?suse_version} > 1130
 # to get rid of the "GLib-GIO-WARNING **: FAMOpen failed, FAMErrno=0" messages,
 # we need a running FAM server (not mandatory):
@@ -428,6 +435,7 @@
 %prep
 %setup -q
 %patch1 -p1 
+%patch2 -p1
 find . -name ".cvsignore" -delete
 find . -name ".gitignore" -delete
 # wrong-file-end-of-line-encoding
@@ -438,6 +446,7 @@
 if [ -f /usr/share/gettext/config.rpath -a ! -f config.rpath ] ; then
 cp -v /usr/share/gettext/config.rpath .
 fi
+autoreconf -fiv
 %configure  --quiet \
 --enable-sqlite \
--disable-static \
@@ -476,6 +485,11 @@
 #
 # save space, use fdupes
 #
+
+# REMOVE LIBTOOL ARCHIVE, THESE ARE UNNECESSARY, AND INTRODUCE WARNINGS LIKE:
+# Missing "Requires: gtk2-devel" in dependency chain 
(/usr/lib64/gcompris/libgoocanvas.la from gcompris-devel requires 
/usr/lib64/libgtk-x11-2.0.so)
+rm -fr %{buildroot}%{_libdir}/gcompris/*.la
+
 %fdupes %{buildroot}
 %endif
 test -f %{buildroot}%{_datadir}/gcompris/boards/voices/recode.sh && chmod +x 
%{buildroot}%{_datadir}/gcompris/boards/voices/recode.sh
@@ -532,7 +546,6 @@
 
 %files devel
 %defattr(-, root, root)
-%{_libdir}/gcompris/*.*a
 %{_libdir}/gcompris/libgoocanvas.so
 
 %files voices-ar

++ gcompris-gstreamer-1.0.patch ++
--- gcompris-15.02.orig/configure.ac
+++ gcompris-15.02/configure.ac
@@ -389,7 +389,7 @@ if test x$with_sdlmixer = xyes; then
   AUDIO_LIBS="$AUDIO_LIBS -lSDL_mixer"
 else
   dnl Default is gstreamer
-  PKG_CHECK_MODULES(AUDIO, gstreamer-0.10,, AC_MSG_ERROR([*** GSTREAMER not 
found!]))
+  PKG_CHECK_MODULES(AUDIO, gstreamer-1.0 gmodule-no-export-2.0,, 
AC_MSG_ERROR([*** GSTREAMER not found!]))
   AC_DEFINE([USE_GSTREAMER], 1,[gstreamer is enabled])
 fi
 AC_SUBST(AUDIO_CFLAGS)

Index: gcompris-15.10/src/gcompris/gstreamer.c
===
--- gcompris-15.10.orig/src/gcompris/gstreamer.c

commit abi-compliance-checker for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package abi-compliance-checker for 
openSUSE:Factory checked in at 2016-10-10 16:22:12

Comparing /work/SRC/openSUSE:Factory/abi-compliance-checker (Old)
 and  /work/SRC/openSUSE:Factory/.abi-compliance-checker.new (New)


Package is "abi-compliance-checker"

Changes:

--- 
/work/SRC/openSUSE:Factory/abi-compliance-checker/abi-compliance-checker.changes
2016-09-16 11:01:49.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.abi-compliance-checker.new/abi-compliance-checker.changes
   2016-10-10 16:22:17.0 +0200
@@ -1,0 +2,25 @@
+Thu Oct  6 17:10:15 UTC 2016 - davejpla...@gmail.com
+
+- Update to 1.99.24
+- Upstream changes:
+   Improvements
+ * Support for Clang
+ * Improved a module to compare operating systems
+ * Improved support for C++ keywords in C code
+   New Options
+ * -skip-typedef-uncover: do not report a problem if type is
+   covered or uncovered by typedef (useful for broken debug info)
+ * -skip-unidentified: skip header files in 'headers' and
+   'include_preamble' sections of the XML descriptor that cannot
+be found
+ * -disable-constants-check: do not check for changes in 
+   constants
+ * -skip-added-constants: do not detect added constants
+ * -skip-removed-constants: do not detect removed constants
+   Bug Fixes
+ * Do not show GCC version in the source compatibility report
+ * Renamed CPU Type column to Arch in the report
+ * Support for ABI dumps v3.3
+ * The -cpp-compatible option is now enabled by default
+
+---

Old:

  abi-compliance-checker-1.99.23.tar.gz

New:

  abi-compliance-checker-1.99.24.tar.gz



Other differences:
--
++ abi-compliance-checker.spec ++
--- /var/tmp/diff_new_pack.9Zkntc/_old  2016-10-10 16:22:18.0 +0200
+++ /var/tmp/diff_new_pack.9Zkntc/_new  2016-10-10 16:22:18.0 +0200
@@ -17,13 +17,14 @@
 
 
 Name:   abi-compliance-checker
-Version:1.99.23
+Version:1.99.24
 Release:0
 Summary:A Compliance Checker For library ABIs
 License:GPL-2.0+ or LGPL-2.0+
 Group:  Development/Tools/Other
 Url:
http://ispras.linuxfoundation.org/index.php/ABI_compliance_checker
-Source0:
https://github.com/lvc/abi-compliance-checker/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
+# https://github.com/lvc/abi-compliance-checker/archive/%%{version}.tar.gz#/
+Source0:%{name}-%{version}.tar.gz
 BuildRequires:  fdupes
 BuildRequires:  help2man
 Requires:   binutils
@@ -67,7 +68,8 @@
--prefix=%{_prefix}
 # Generate man page with help2man
 mkdir -p %{buildroot}%{_mandir}/man1
-help2man -h "--info" -N -o %{name}.1 ./%{name}.pl
+ln -s %{name}.pl %{name}
+help2man -h "--info" -N -o %{name}.1 ./%{name}
 install -m 0644 %{name}.1 %{buildroot}%{_mandir}/man1
 %fdupes %{buildroot}
 

++ abi-compliance-checker-1.99.23.tar.gz -> 
abi-compliance-checker-1.99.24.tar.gz ++
 1993 lines of diff (skipped)




commit rubygem-airbrussh for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-airbrussh for 
openSUSE:Factory checked in at 2016-10-10 16:22:18

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


Package is "rubygem-airbrussh"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-airbrussh/rubygem-airbrussh.changes  
2016-08-25 09:55:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-airbrussh.new/rubygem-airbrussh.changes 
2016-10-10 16:22:19.0 +0200
@@ -1,0 +2,13 @@
+Sat Sep 10 04:28:41 UTC 2016 - co...@suse.com
+
+- updated to version 1.1.1
+ see installed CHANGELOG.md
+
+  ## [1.1.1][] (2016-09-09)
+  
+  * When a Capistrano deploy fails and the error log is dumped to the console,
+Airbrussh no longer truncates the error output. This ensures that important
+troubleshooting information is not lost.
+[#91](https://github.com/mattbrictson/airbrussh/issues/91)
+
+---

Old:

  airbrussh-1.1.0.gem

New:

  airbrussh-1.1.1.gem



Other differences:
--
++ rubygem-airbrussh.spec ++
--- /var/tmp/diff_new_pack.CZQuwn/_old  2016-10-10 16:22:20.0 +0200
+++ /var/tmp/diff_new_pack.CZQuwn/_new  2016-10-10 16:22:20.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-airbrussh
-Version:1.1.0
+Version:1.1.1
 Release:0
 %define mod_name airbrussh
 %define mod_full_name %{mod_name}-%{version}

++ airbrussh-1.1.0.gem -> airbrussh-1.1.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2016-07-27 01:43:49.0 +0200
+++ new/CHANGELOG.md2016-09-09 18:00:59.0 +0200
@@ -6,6 +6,13 @@
 
 * Your contribution here!
 
+## [1.1.1][] (2016-09-09)
+
+* When a Capistrano deploy fails and the error log is dumped to the console,
+  Airbrussh no longer truncates the error output. This ensures that important
+  troubleshooting information is not lost.
+  [#91](https://github.com/mattbrictson/airbrussh/issues/91)
+
 ## [1.1.0][] (2016-07-26)
 
 * Use default color for info messages.
@@ -115,7 +122,8 @@
 * Initial release
 
 [Semver]: http://semver.org
-[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.1.0...HEAD
+[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.1.1...HEAD
+[1.1.1]: https://github.com/mattbrictson/airbrussh/compare/v1.1.0...v1.1.1
 [1.1.0]: https://github.com/mattbrictson/airbrussh/compare/v1.0.2...v1.1.0
 [1.0.2]: https://github.com/mattbrictson/airbrussh/compare/v1.0.1...v1.0.2
 [1.0.1]: https://github.com/mattbrictson/airbrussh/compare/v1.0.0...v1.0.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2016-07-27 01:43:49.0 +0200
+++ new/Gemfile 2016-09-09 18:00:59.0 +0200
@@ -36,3 +36,6 @@
 
 # net-ssh 3.0+ is not compatible with Ruby 1.9, so pin at older version.
 gem "net-ssh", "~> 2.8" if RUBY_VERSION == "1.9.3"
+
+# tins 1.7.0+ is not compatible with Ruby 1.9, so pin at older version.
+gem "tins", "~> 1.6.0" if RUBY_VERSION == "1.9.3"
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/airbrussh/capistrano/tasks.rb 
new/lib/airbrussh/capistrano/tasks.rb
--- old/lib/airbrussh/capistrano/tasks.rb   2016-07-27 01:43:49.0 
+0200
+++ new/lib/airbrussh/capistrano/tasks.rb   2016-09-09 18:00:59.0 
+0200
@@ -71,7 +71,12 @@
   end
 
   def err_console
-@err_console ||= Airbrussh::Console.new(stderr)
+@err_console ||= begin
+  # Ensure we do not truncate the error output
+  err_config = config.dup
+  err_config.truncate = false
+  Airbrussh::Console.new(stderr, err_config)
+end
   end
 
   def error_line(line="\n")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/airbrussh/version.rb new/lib/airbrussh/version.rb
--- old/lib/airbrussh/version.rb2016-07-27 01:43:49.0 +0200
+++ new/lib/airbrussh/version.rb2016-09-09 18:00:59.0 +0200
@@ -1,4 +1,4 @@
 # frozen_string_literal: true
 module Airbrussh
-  VERSION = "1.1.0".freeze
+  VERSION = "1.1.1".freeze
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-27 01:43:49.0 +0200
+++ new/metadata2016-09-09 18:00:59.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 

commit rubygem-spring-watcher-listen for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-spring-watcher-listen for 
openSUSE:Factory checked in at 2016-10-10 16:22:46

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


Package is "rubygem-spring-watcher-listen"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-spring-watcher-listen/rubygem-spring-watcher-listen.changes
  2016-07-21 07:58:01.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-spring-watcher-listen.new/rubygem-spring-watcher-listen.changes
 2016-10-10 16:22:47.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct  2 05:09:11 UTC 2016 - co...@suse.com
+
+- updated to version 2.0.1
+  no changelog found
+
+---

Old:

  spring-watcher-listen-2.0.0.gem

New:

  spring-watcher-listen-2.0.1.gem



Other differences:
--
++ rubygem-spring-watcher-listen.spec ++
--- /var/tmp/diff_new_pack.ovrsqj/_old  2016-10-10 16:22:49.0 +0200
+++ /var/tmp/diff_new_pack.ovrsqj/_new  2016-10-10 16:22:49.0 +0200
@@ -24,14 +24,14 @@
 #
 
 Name:   rubygem-spring-watcher-listen
-Version:2.0.0
+Version:2.0.1
 Release:0
 %define mod_name spring-watcher-listen
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
 Url:https://github.com/jonleighton/spring-watcher-listen
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml

++ spring-watcher-listen-2.0.0.gem -> spring-watcher-listen-2.0.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2015-06-27 17:21:45.0 +0200
+++ new/.travis.yml 2016-10-01 21:12:46.0 +0200
@@ -1,3 +1,3 @@
 language: ruby
 rvm:
-  - 2.2.2
+  - 2.3.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2015-06-27 17:21:45.0 +0200
+++ new/README.md   2016-10-01 21:12:46.0 +0200
@@ -7,9 +7,12 @@
 filesystem for changes using [Listen](https://github.com/guard/listen)
 rather than by polling the filesystem.
 
-Currently only Listen 1 is supported. However there is [an
-effort](https://github.com/jonleighton/spring-watcher-listen/issues/1)
-to implement Listen 2 support.
+On larger projects this means spring will be more responsive, more accurate 
and use less cpu on local filesystems.
+
+(NFS, shared VM folders and user file systems will still need polling)
+
+Listen 2.7 and higher and 3.0 are supported.
+If you rely on Listen 1 you can use v1.0.0 of this gem.
 
 ## Installation
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2015-06-27 17:21:45.0 +0200
+++ new/metadata2016-10-01 21:12:46.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: spring-watcher-listen
 version: !ruby/object:Gem::Version
-  version: 2.0.0
+  version: 2.0.1
 platform: ruby
 authors:
 - Jon Leighton
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2015-06-27 00:00:00.0 Z
+date: 2016-10-01 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: bundler
@@ -56,16 +56,22 @@
   name: spring
   requirement: !ruby/object:Gem::Requirement
 requirements:
-- - "~>"
+- - ">="
   - !ruby/object:Gem::Version
 version: '1.2'
+- - "<"
+  - !ruby/object:Gem::Version
+version: '3.0'
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
-- - "~>"
+- - ">="
   - !ruby/object:Gem::Version
 version: '1.2'
+- - "<"
+  - !ruby/object:Gem::Version
+version: '3.0'
 - !ruby/object:Gem::Dependency
   name: listen
   requirement: !ruby/object:Gem::Requirement
@@ -124,7 +130,7 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.2
+rubygems_version: 2.5.1
 signing_key: 
 specification_version: 4
 summary: Makes spring watch files using the listen gem.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/spring-watcher-listen.gemspec 
new/spring-watcher-listen.gemspec
--- old/spring-watcher-listen.gemspec   2015-06-27 17:21:45.0 +0200
+++ 

commit rubygem-mixlib-config for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-mixlib-config for 
openSUSE:Factory checked in at 2016-10-10 16:22:31

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


Package is "rubygem-mixlib-config"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-mixlib-config/rubygem-mixlib-config.changes  
2016-09-12 13:26:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-mixlib-config.new/rubygem-mixlib-config.changes
 2016-10-10 16:22:35.0 +0200
@@ -1,0 +2,6 @@
+Sat Sep 10 04:33:47 UTC 2016 - co...@suse.com
+
+- updated to version 2.2.4
+  no changelog found
+
+---

Old:

  mixlib-config-2.2.2.gem

New:

  mixlib-config-2.2.4.gem



Other differences:
--
++ rubygem-mixlib-config.spec ++
--- /var/tmp/diff_new_pack.sbNhHR/_old  2016-10-10 16:22:37.0 +0200
+++ /var/tmp/diff_new_pack.sbNhHR/_new  2016-10-10 16:22:37.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-mixlib-config
-Version:2.2.2
+Version:2.2.4
 Release:0
 %define mod_name mixlib-config
 %define mod_full_name %{mod_name}-%{version}

++ mixlib-config-2.2.2.gem -> mixlib-config-2.2.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/NOTICE new/NOTICE
--- old/NOTICE  2016-08-22 22:18:42.0 +0200
+++ new/NOTICE  2016-09-03 00:20:31.0 +0200
@@ -1,25 +1,25 @@
-Mixin::Config NOTICE
+Mixlib::Config NOTICE
 =
 
-Developed at Opscode (http://www.opscode.com).
+Developed at Chef (http://www.chef.io).
 
- * Copyright 2009, Opscode, Inc. 
+ * Copyright 2009-2016, Chef Software, Inc. 
 
-Mixin::Config incorporates code from Chef.  The Chef notice file follows:
+Mixlib::Config incorporates code from Chef.  The Chef notice file follows:
 
 Chef NOTICE
 ===
 
-Developed at Opscode (http://www.opscode.com).
+Developed at Chef (http://www.chef.io).
 
 Contributors and Copyright holders:
 
- * Copyright 2008, Adam Jacob 
+ * Copyright 2008, Adam Jacob 
  * Copyright 2008, Arjuna Christensen 
  * Copyright 2008, Bryan McLellan 
  * Copyright 2008, Ezra Zygmuntowicz 
  * Copyright 2009, Sean Cribbs 
- * Copyright 2009, Christopher Brown 
+ * Copyright 2009, Christopher Brown 
  * Copyright 2009, Thom May 
 
 Chef incorporates code modified from Open4 
(http://www.codeforpeople.com/lib/ruby/open4/), which was written by Ara T. 
Howard.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-08-22 22:18:42.0 +0200
+++ new/README.md   2016-09-03 00:20:31.0 +0200
@@ -1,6 +1,8 @@
-# Mixlib::Config #
+# Mixlib::Config
 
-Mixlib::Config provides a class-based configuration object, as used in Chef.  
To use in your project:
+[![Build 
Status](https://travis-ci.org/chef/mixlib-config.svg?branch=master)](https://travis-ci.org/chef/mixlib-config)[![Gem
 
Version](https://badge.fury.io/rb/mixlib-config.svg)](https://badge.fury.io/rb/mixlib-config)
+
+Mixlib::Config provides a class-based configuration object, as used in Chef. 
To use in your project:
 
 ```ruby
   require 'mixlib/config'
@@ -13,7 +15,7 @@
   end
 ```
 
-You can use this to provide a configuration file for a user.  For example, if 
you do this:
+You can use this to provide a configuration file for a user. For example, if 
you do this:
 
 ```ruby
   MyConfig.from_file('~/.myconfig.rb')
@@ -32,6 +34,7 @@
   MyConfig.first_value   # returns 'something'
   MyConfig[:first_value] # returns 'something'
 ```
+
 And you can modify configuration values with this syntax:
 
 ```ruby
@@ -40,9 +43,9 @@
   MyConfig[:first_value] = 'foobar' # sets first_value to 'foobar'
 ```
 
-## Nested Configuration ##
+## Nested Configuration
 
-Often you want to be able to group configuration options to provide a common 
context.  Mixlib::Config supports this thus:
+Often you want to be able to group configuration options to provide a common 
context. Mixlib::Config supports this thus:
 
 ```ruby
   require 'mixlib/config'
@@ -56,11 +59,30 @@
   end
 ```
 
-The user can write their config file like this:
+The user can write their config file in one of three formats:
+
+ Method Style
+```ruby
+logging.base_filename 'superlog'
+logging.max_log_files 2
+```
 
+ Block Style
+Using this format the block is executed in the context, so all 

commit rubygem-ruby-libvirt for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-ruby-libvirt for 
openSUSE:Factory checked in at 2016-10-10 16:23:14

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


Package is "rubygem-ruby-libvirt"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-ruby-libvirt/rubygem-ruby-libvirt.changes
2016-09-23 11:30:15.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-ruby-libvirt.new/rubygem-ruby-libvirt.changes
   2016-10-10 16:23:16.0 +0200
@@ -1,0 +2,17 @@
+Fri Sep 23 04:48:51 UTC 2016 - co...@suse.com
+
+- updated to version 0.7.0
+ see installed NEWS
+
+  2016-09-22 0.7.0
+* Fix network lease API to allow arguments that libvirt allows
+* Implement VIRT_STORAGE_POOL_CREATE flags
+* Implement more VIR_STORAGE_VOL flags
+* Implement VIR_DOMAIN_QEMU_AGENT_COMMAND_SHUTDOWN
+* Implement virDomainDefineXMLFlags
+* Implement virDomainRename
+* Implement virDomainSetUserPassword
+* Implement VIR_DOMAIN_TIME_SYNC
+* Fix the return value from virStreamSourceFunc so volume upload works
+
+---

Old:

  ruby-libvirt-0.6.0.gem

New:

  ruby-libvirt-0.7.0.gem



Other differences:
--
++ rubygem-ruby-libvirt.spec ++
--- /var/tmp/diff_new_pack.Qw8JSV/_old  2016-10-10 16:23:17.0 +0200
+++ /var/tmp/diff_new_pack.Qw8JSV/_new  2016-10-10 16:23:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-ruby-libvirt
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-ruby-libvirt
-Version:0.6.0
+Version:0.7.0
 Release:0
 %define mod_name ruby-libvirt
 %define mod_full_name %{mod_name}-%{version}

++ ruby-libvirt-0.6.0.gem -> ruby-libvirt-0.7.0.gem ++
 3448 lines of diff (skipped)




commit rubygem-json-schema for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-json-schema for 
openSUSE:Factory checked in at 2016-10-10 16:22:55

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


Package is "rubygem-json-schema"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-json-schema/rubygem-json-schema.changes  
2016-06-02 09:36:54.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-json-schema.new/rubygem-json-schema.changes 
2016-10-10 16:22:56.0 +0200
@@ -1,0 +2,6 @@
+Sat Oct  1 04:42:41 UTC 2016 - co...@suse.com
+
+- updated to version 2.7.0
+  no changelog found
+
+---

Old:

  json-schema-2.6.2.gem

New:

  json-schema-2.7.0.gem



Other differences:
--
++ rubygem-json-schema.spec ++
--- /var/tmp/diff_new_pack.3DEl7h/_old  2016-10-10 16:22:59.0 +0200
+++ /var/tmp/diff_new_pack.3DEl7h/_new  2016-10-10 16:22:59.0 +0200
@@ -24,12 +24,12 @@
 #
 
 Name:   rubygem-json-schema
-Version:2.6.2
+Version:2.7.0
 Release:0
 %define mod_name json-schema
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  %{ruby >= 1.8.7}
+BuildRequires:  %{ruby >= 1.9}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  ruby-macros >= 5
 Url:http://github.com/ruby-json-schema/json-schema/tree/master

++ json-schema-2.6.2.gem -> json-schema-2.7.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-05-13 16:54:29.0 +0200
+++ new/README.md   2016-09-29 15:26:19.0 +0200
@@ -256,6 +256,24 @@
 rescue TypeError => e
   e.message
 end
+
+#
+# with the `:clear_cache` option set to true, the internal cache of schemas is
+# cleared after validation (otherwise schemas are cached for efficiency)
+#
+
+File.write("schema.json", v2_schema.to_json)
+
+# => true
+JSON::Validator.validate("schema.json", {})
+
+File.write("schema.json", schema.to_json)
+
+# => true
+JSON::Validator.validate("schema.json", {}, :clear_cache => true)
+
+# => false
+JSON::Validator.validate("schema.json", {})
 ```
 
 Extending Schemas
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/json-schema/attributes/additionalitems.rb 
new/lib/json-schema/attributes/additionalitems.rb
--- old/lib/json-schema/attributes/additionalitems.rb   2016-05-13 
16:54:29.0 +0200
+++ new/lib/json-schema/attributes/additionalitems.rb   2016-09-29 
15:26:19.0 +0200
@@ -11,7 +11,7 @@
 
 case schema['additionalItems']
 when false
-  if schema['items'].length != data.length
+  if schema['items'].length < data.length
 message = "The property '#{build_fragment(fragments)}' contains 
additional array elements outside of the schema when none are allowed"
 validation_error(processor, message, fragments, current_schema, 
self, options[:record_errors])
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/json-schema/attributes/additionalproperties.rb 
new/lib/json-schema/attributes/additionalproperties.rb
--- old/lib/json-schema/attributes/additionalproperties.rb  2016-05-13 
16:54:29.0 +0200
+++ new/lib/json-schema/attributes/additionalproperties.rb  2016-09-29 
15:26:19.0 +0200
@@ -14,7 +14,7 @@
 if addprop.is_a?(Hash)
   matching_properties = extra_properties # & addprop.keys
   matching_properties.each do |key|
-additional_property_schema = JSON::Schema.new(addprop[key] || 
addprop, current_schema.uri, validator)
+additional_property_schema = JSON::Schema.new(addprop, 
current_schema.uri, validator)
 additional_property_schema.validate(data[key], fragments + [key], 
processor, options)
   end
   extra_properties -= matching_properties
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/json-schema/attributes/extends.rb 
new/lib/json-schema/attributes/extends.rb
--- old/lib/json-schema/attributes/extends.rb   2016-05-13 16:54:29.0 
+0200
+++ new/lib/json-schema/attributes/extends.rb   2016-09-29 15:26:19.0 
+0200
@@ -24,8 +24,6 @@
   def self.get_extended_uri_and_schema(s, current_schema, validator)
 uri,schema = nil,nil
 
-s = {'$ref' => s} if s.is_a?(String)
-
 if s.is_a?(Hash)
   uri = current_schema.uri

commit rubygem-minitest for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-minitest for 
openSUSE:Factory checked in at 2016-10-10 16:23:06

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


Package is "rubygem-minitest"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-minitest/rubygem-minitest.changes
2016-05-29 03:12:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-minitest.new/rubygem-minitest.changes   
2016-10-10 16:23:08.0 +0200
@@ -1,0 +2,13 @@
+Mon Sep 26 04:42:05 UTC 2016 - co...@suse.com
+
+- updated to version 5.9.1
+ see installed History.rdoc
+
+  === 5.9.1 / 2016-09-25
+  
+  * 2 bug fixes:
+  
+* Re-release to refresh gem certificate signing. ugh.
+* Fixed hoe/minitest to not augment load path if we're actually testing 
minitest.
+
+---

Old:

  minitest-5.9.0.gem

New:

  minitest-5.9.1.gem



Other differences:
--
++ rubygem-minitest.spec ++
--- /var/tmp/diff_new_pack.adU9xv/_old  2016-10-10 16:23:11.0 +0200
+++ /var/tmp/diff_new_pack.adU9xv/_new  2016-10-10 16:23:11.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-minitest
-Version:5.9.0
+Version:5.9.1
 Release:0
 %define mod_name minitest
 %define mod_full_name %{mod_name}-%{version}

++ minitest-5.9.0.gem -> minitest-5.9.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.rdoc new/History.rdoc
--- old/History.rdoc2016-05-16 23:58:36.0 +0200
+++ new/History.rdoc2016-09-26 04:16:29.0 +0200
@@ -1,3 +1,10 @@
+=== 5.9.1 / 2016-09-25
+
+* 2 bug fixes:
+
+  * Re-release to refresh gem certificate signing. ugh.
+  * Fixed hoe/minitest to not augment load path if we're actually testing 
minitest.  
+
 === 5.9.0 / 2016-05-16
 
 * 8 minor enhancements:
@@ -15,6 +22,13 @@
 
   * Removed Interrupt from PASSTHROUGH_EXCEPTIONS (already handled). (waldyr)
 
+=== 5.8.5 / 2016-09-25
+
+* 2 bug fixes:
+
+  * Re-release to refresh gem certificate signing. ugh.
+  * Fixed hoe/minitest to not augment load path if we're actually testing 
minitest.  
+
 === 5.8.4 / 2016-01-21
 
 * 1 bug fix:
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/hoe/minitest.rb new/lib/hoe/minitest.rb
--- old/lib/hoe/minitest.rb 2016-05-16 23:58:36.0 +0200
+++ new/lib/hoe/minitest.rb 2016-09-26 04:16:29.0 +0200
@@ -4,16 +4,22 @@
 end
 
 module Hoe::Minitest
+  def minitest?
+self.name == "minitest"
+  end
+
   def initialize_minitest
-dir = "../../minitest/dev/lib"
-Hoe.add_include_dirs dir if File.directory? dir
+unless minitest? then
+  dir = "../../minitest/dev/lib"
+  Hoe.add_include_dirs dir if File.directory? dir
+end
 
 gem "minitest"
 require "minitest"
 version = Minitest::VERSION.split(/\./).first(2).join(".")
 
 dependency "minitest", "~> #{version}", :development unless
-  self.name == "minitest" or ENV["MT_NO_ISOLATE"]
+  minitest? or ENV["MT_NO_ISOLATE"]
   end
 
   def define_minitest_tasks
@@ -21,6 +27,6 @@
 
 # make sure we use the gemmed minitest on 1.9
 self.test_prelude = 'gem "minitest"' unless
-  self.name == "minitest" or ENV["MT_NO_ISOLATE"]
+  minitest? or ENV["MT_NO_ISOLATE"]
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/minitest.rb new/lib/minitest.rb
--- old/lib/minitest.rb 2016-05-16 23:58:36.0 +0200
+++ new/lib/minitest.rb 2016-09-26 04:16:29.0 +0200
@@ -7,7 +7,7 @@
 # :include: README.rdoc
 
 module Minitest
-  VERSION = "5.9.0" # :nodoc:
+  VERSION = "5.9.1" # :nodoc:
   ENCS = "".respond_to? :encoding # :nodoc:
 
   @@installed_at_exit ||= false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-05-16 23:58:36.0 +0200
+++ new/metadata2016-09-26 04:16:29.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: minitest
 version: !ruby/object:Gem::Version
-  version: 5.9.0
+  version: 5.9.1
 platform: ruby
 authors:
 - Ryan Davis
@@ -10,9 +10,9 @@
 cert_chain:
 - |
   -BEGIN CERTIFICATE-
-  MIIDPjCCAiagAwIBAgIBAzANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
+  MIIDijCCAnKgAwIBAgIBATANBgkqhkiG9w0BAQUFADBFMRMwEQYDVQQDDApyeWFu
   

commit rubygem-sshkit for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sshkit for openSUSE:Factory 
checked in at 2016-10-10 16:23:10

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


Package is "rubygem-sshkit"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sshkit/rubygem-sshkit.changes
2016-08-25 09:55:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-sshkit.new/rubygem-sshkit.changes   
2016-10-10 16:23:12.0 +0200
@@ -1,0 +2,11 @@
+Sat Sep 17 04:47:58 UTC 2016 - co...@suse.com
+
+- updated to version 1.11.3
+ see installed CHANGELOG.md
+
+  ## [1.11.3][] (2016-09-16)
+  
+* Fix known_hosts caching to match on the entire hostlist
+  [PR #364](https://github.com/capistrano/sshkit/pull/364) @byroot
+
+---

Old:

  sshkit-1.11.2.gem

New:

  sshkit-1.11.3.gem



Other differences:
--
++ rubygem-sshkit.spec ++
--- /var/tmp/diff_new_pack.5pq6Oj/_old  2016-10-10 16:23:16.0 +0200
+++ /var/tmp/diff_new_pack.5pq6Oj/_new  2016-10-10 16:23:16.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-sshkit
-Version:1.11.2
+Version:1.11.3
 Release:0
 %define mod_name sshkit
 %define mod_full_name %{mod_name}-%{version}

++ sshkit-1.11.2.gem -> sshkit-1.11.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2016-07-30 02:57:10.0 +0200
+++ new/CHANGELOG.md2016-09-16 22:45:29.0 +0200
@@ -8,6 +8,11 @@
   * Add your entries below here, remember to credit yourself however you want
 to be credited!
 
+## [1.11.3][] (2016-09-16)
+
+  * Fix known_hosts caching to match on the entire hostlist
+[PR #364](https://github.com/capistrano/sshkit/pull/364) @byroot
+
 ## [1.11.2][] (2016-07-29)
 
 ### Bug fixes
@@ -644,7 +649,8 @@
 
 First release.
 
-[Unreleased]: https://github.com/capistrano/sshkit/compare/v1.11.2...HEAD
+[Unreleased]: https://github.com/capistrano/sshkit/compare/v1.11.3...HEAD
+[1.11.3]: https://github.com/capistrano/sshkit/compare/v1.11.2...v1.11.3
 [1.11.2]: https://github.com/capistrano/sshkit/compare/v1.11.1...v1.11.2
 [1.11.1]: https://github.com/capistrano/sshkit/compare/v1.11.0...v1.11.1
 [1.11.0]: https://github.com/capistrano/sshkit/compare/v1.10.0...v1.11.0
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sshkit/backends/netssh/known_hosts.rb 
new/lib/sshkit/backends/netssh/known_hosts.rb
--- old/lib/sshkit/backends/netssh/known_hosts.rb   2016-07-30 
02:57:10.0 +0200
+++ new/lib/sshkit/backends/netssh/known_hosts.rb   2016-09-16 
22:45:29.0 +0200
@@ -18,10 +18,12 @@
   parse_file unless keys && hashes
   keys, hashes = hosts_keys, hosts_hashes
 
-  hostlist.split(',').each do |host|
-key_list = keys[host]
-return key_list if key_list
+  host_names = hostlist.split(',')
 
+  keys_found = host_names.map { |h| keys[h] || [] }.compact.inject(:&)
+  return keys_found unless keys_found.empty?
+
+  host_names.each do |host|
 hashes.each do |(hmac, salt), hash_keys|
   if OpenSSL::HMAC.digest(sha1, salt, host) == hmac
 return hash_keys
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sshkit/version.rb new/lib/sshkit/version.rb
--- old/lib/sshkit/version.rb   2016-07-30 02:57:10.0 +0200
+++ new/lib/sshkit/version.rb   2016-09-16 22:45:29.0 +0200
@@ -1,3 +1,3 @@
 module SSHKit
-  VERSION = "1.11.2".freeze
+  VERSION = "1.11.3".freeze
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-30 02:57:10.0 +0200
+++ new/metadata2016-09-16 22:45:29.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: sshkit
 version: !ruby/object:Gem::Version
-  version: 1.11.2
+  version: 1.11.3
 platform: ruby
 authors:
 - Lee Hambley
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-30 00:00:00.0 Z
+date: 2016-09-16 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: net-ssh
@@ -178,6 +178,7 @@
 - test/helper.rb
 - test/known_hosts/github
 - test/known_hosts/github_hash
+- test/known_hosts/github_ip
 - test/support/vagrant_wrapper.rb
 - test/unit/backends/test_abstract.rb
 - test/unit/backends/test_connection_pool.rb
@@ -230,6 

commit rubygem-stomp for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-stomp for openSUSE:Factory 
checked in at 2016-10-10 16:22:41

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


Package is "rubygem-stomp"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-stomp/rubygem-stomp.changes  
2016-09-21 18:47:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-stomp.new/rubygem-stomp.changes 
2016-10-10 16:22:45.0 +0200
@@ -1,0 +2,30 @@
+Sat Sep 10 04:39:54 UTC 2016 - co...@suse.com
+
+- updated to version 1.4.3
+ see installed CHANGELOG.md
+
+  ## 1.4.3 20160821
+  
+  * Quick fix of install failures.  Do not try to use install 1.4.2.
+
+---
+Sun Aug 21 04:39:11 UTC 2016 - co...@suse.com
+
+- updated to version 1.4.2
+ see installed CHANGELOG.md
+
+  ## 1.4.2 20160820
+  
+  * Refine SSL examples.
+  * Address issue #124 with additional RDOC.
+  * spec for Stomp::Client - check that headers passed to connection contain 
+required values as well as given custom and that given hash is not 
modified.
+  * Stomp::Client now does not modify given headers hash
+  * spec description enhancement.
+  * fix build_subscription_id - symbol and string were mixed up.
+  * STOMP_TESTSSL flag should enable all SSL tests.
+  * Add a basic Gemfile.
+  * Fix a memory leak in receipt implementation.
+  * Add unit test helper script.
+
+---

Old:

  stomp-1.4.1.gem

New:

  stomp-1.4.3.gem



Other differences:
--
++ rubygem-stomp.spec ++
--- /var/tmp/diff_new_pack.BpfjvK/_old  2016-10-10 16:22:47.0 +0200
+++ /var/tmp/diff_new_pack.BpfjvK/_new  2016-10-10 16:22:47.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-stomp
-Version:1.4.1
+Version:1.4.3
 Release:0
 %define mod_name stomp
 %define mod_full_name %{mod_name}-%{version}

++ stomp-1.4.1.gem -> stomp-1.4.3.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2016-06-23 21:27:59.0 +0200
+++ new/CHANGELOG.md2016-08-22 00:54:57.0 +0200
@@ -1,5 +1,23 @@
 # Stomp Gem Change Log
 
+## 1.4.3 20160821
+
+* Quick fix of install failures.  Do not try to use install 1.4.2.
+
+## 1.4.2 20160820
+
+* Refine SSL examples.
+* Address issue #124 with additional RDOC.
+* spec for Stomp::Client - check that headers passed to connection contain 
+  required values as well as given custom and that given hash is not modified.
+* Stomp::Client now does not modify given headers hash
+* spec description enhancement.
+* fix build_subscription_id - symbol and string were mixed up.
+* STOMP_TESTSSL flag should enable all SSL tests.
+* Add a basic Gemfile.
+* Fix a memory leak in receipt implementation.
+* Add unit test helper script.
+
 ## 1.4.1 20160623
 
 * Add call to #post_connection_check to normal SSL processing.  This change
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-06-23 21:27:59.0 +0200
+++ new/README.md   2016-08-22 00:54:57.0 +0200
@@ -93,6 +93,8 @@
 
 See _CHANGELOG.rdoc_ for details.
 
+* Gem version 1.4.3. Fix broken install.  Do not try to install 1.4.2.
+* Gem version 1.4.2. Fix memory leak, and others !: see CHANGELOG.md for 
details.
 * Gem version 1.4.1. Important SSL changes !: see CHANGELOG.md for details.
 * Gem version 1.4.0. Note: Change sementics of :parse_timeout, see 
CHANGELOG.md for details.
 * Gem version 1.3.5. Miscellaneous fixes, see CHANGELOG.rdoc for details.
@@ -291,7 +293,7 @@
 2009-12-25
 
 
-(0362)
+(0369)
 
 
 
@@ -706,5 +708,60 @@
  / wayne.robin...@gmail.com
 
 
+
+
+2016-07-12
+
+
+(0006)
+
+
+
+Nikolay Khasanov
+
+ / nkhasa...@groupon.com
+
+
+
+
+2016-07-16
+
+
+(0004)
+
+
+
+GitHub
+
+ / nore...@github.com
+
+
+
+
+2016-06-02
+
+
+(0001)
+
+
+
+Ryan Rosenblum
+
+ / ryan.rosenb...@gmail.com
+
+
+
+
+2016-08-17
+
+
+(0002)
+
+
+
+Alexandre Moutot
+
+ / a.mou...@alphalink.fr
+
+
 
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2016-06-23 21:27:59.0 +0200
+++ new/Rakefile2016-08-22 00:54:57.0 +0200
@@ -39,7 +39,7 @@
 gem.homepage = "https://github.com/stompgem/stomp;
 gem.authors = ["Brian McCallister", 'Marius Mathiesen', 'Thiago Morello',
 'Guy M. Allard']
-gem.add_development_dependency "rspec", '>= 2.14.1'
+gem.add_development_dependency 'rspec', '~> 

commit rubygem-spring for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-spring for openSUSE:Factory 
checked in at 2016-10-10 16:22:51

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


Package is "rubygem-spring"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-spring/rubygem-spring.changes
2016-07-21 07:57:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-spring.new/rubygem-spring.changes   
2016-10-10 16:22:52.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct  2 05:08:38 UTC 2016 - co...@suse.com
+
+- updated to version 2.0.0
+  no changelog found
+
+---

Old:

  spring-1.7.2.gem

New:

  spring-2.0.0.gem



Other differences:
--
++ rubygem-spring.spec ++
--- /var/tmp/diff_new_pack.KwOlqq/_old  2016-10-10 16:22:54.0 +0200
+++ /var/tmp/diff_new_pack.KwOlqq/_new  2016-10-10 16:22:54.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-spring
-Version:1.7.2
+Version:2.0.0
 Release:0
 %define mod_name spring
 %define mod_full_name %{mod_name}-%{version}

++ spring-1.7.2.gem -> spring-2.0.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-07-01 19:16:53.0 +0200
+++ new/README.md   2016-10-01 20:48:52.0 +0200
@@ -17,7 +17,8 @@
 ## Compatibility
 
 * Ruby versions: MRI 1.9.3, MRI 2.0, MRI 2.1, MRI 2.2
-* Rails versions: 4.0+ (in Rails 4.1 and up Spring is included by default)
+* Rails versions: 4.2, 5.0 (Spring is installed by default when you do
+  `rails new` to generate your application)
 
 Spring makes extensive use of `Process.fork`, so won't be able to
 provide a speed up on platforms which don't support forking (Windows, JRuby).
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/spring/application.rb 
new/lib/spring/application.rb
--- old/lib/spring/application.rb   2016-07-01 19:16:53.0 +0200
+++ new/lib/spring/application.rb   2016-10-01 20:48:52.0 +0200
@@ -192,7 +192,6 @@
   }
 
   disconnect_database
-  reset_streams
 
   log "forked #{pid}"
   manager.puts pid
@@ -209,6 +208,11 @@
 
   client.puts(1) if pid
   client.close
+ensure
+  # Redirect STDOUT and STDERR to prevent from keeping the original FDs
+  # (i.e. to prevent `spring rake -T | grep db` from hanging forever),
+  # even when exception is raised before forking (i.e. preloading).
+  reset_streams
 end
 
 def terminate
@@ -292,8 +296,11 @@
   PTY.open do |master, slave|
 [STDOUT, STDERR, STDIN].each { |s| s.reopen slave }
 Thread.new { master.read }
-yield
-reset_streams
+begin
+  yield
+ensure
+  reset_streams
+end
   end
 end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/spring/binstub.rb new/lib/spring/binstub.rb
--- old/lib/spring/binstub.rb   2016-07-01 19:16:53.0 +0200
+++ new/lib/spring/binstub.rb   2016-10-01 20:48:52.0 +0200
@@ -1,6 +1,26 @@
 command  = File.basename($0)
 bin_path = File.expand_path("../../../bin/spring", __FILE__)
 
+# When we run a command which does not go through Spring (e.g. DISABLE_SPRING
+# is used, or we just call 'rails' or something) then we get this warning from
+# Rubygems:
+#
+#   WARN: Unresolved specs during Gem::Specification.reset: activesupport (<= 
5.1, >= 4.2)
+#   WARN: Clearing out unresolved specs.
+#   Please report a bug if this causes problems.
+#
+# This happens due to our dependency on activesupport, when Bundler.setup gets
+# called.  We don't actually *use* the dependency; it is purely there to
+# restrict the Rails version that we're compatible with.
+#
+# When the warning is shown, Rubygems just does the below.
+# Therefore, by doing it ourselves here, we can avoid the warning.
+if Gem::Specification.respond_to?(:unresolved_deps)
+  Gem::Specification.unresolved_deps.clear
+else
+  Gem.unresolved_deps.clear
+end
+
 if command == "spring"
   load bin_path
 else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/spring/client/binstub.rb 
new/lib/spring/client/binstub.rb
--- old/lib/spring/client/binstub.rb2016-07-01 19:16:53.0 +0200
+++ new/lib/spring/client/binstub.rb2016-10-01 20:48:52.0 +0200
@@ -23,10 +23,6 @@
   # binstub from the application process. Which means that in the 
application
   # process 

commit rubygem-term-ansicolor for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-term-ansicolor for 
openSUSE:Factory checked in at 2016-10-10 16:22:59

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


Package is "rubygem-term-ansicolor"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-term-ansicolor/rubygem-term-ansicolor.changes
2015-07-28 11:43:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-term-ansicolor.new/rubygem-term-ansicolor.changes
   2016-10-10 16:22:59.0 +0200
@@ -1,0 +2,8 @@
+Wed Sep 28 04:59:19 UTC 2016 - co...@suse.com
+
+- updated to version 1.4.0
+ see installed CHANGES
+
+  2016-09-27 - 1.4.0 * Extend colorized strings with Term::ANSIColor
+
+---

Old:

  term-ansicolor-1.3.2.gem

New:

  term-ansicolor-1.4.0.gem



Other differences:
--
++ rubygem-term-ansicolor.spec ++
--- /var/tmp/diff_new_pack.u8IKEE/_old  2016-10-10 16:23:01.0 +0200
+++ /var/tmp/diff_new_pack.u8IKEE/_new  2016-10-10 16:23:01.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-term-ansicolor
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -24,14 +24,14 @@
 #
 
 Name:   rubygem-term-ansicolor
-Version:1.3.2
+Version:1.4.0
 Release:0
 %define mod_name term-ansicolor
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  %{ruby >= 2.0}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc > 3.10}
-BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives
 Url:http://flori.github.com/term-ansicolor

++ term-ansicolor-1.3.2.gem -> term-ansicolor-1.4.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2015-06-23 12:02:01.0 +0200
+++ new/.travis.yml 2016-09-27 12:16:09.0 +0200
@@ -2,11 +2,13 @@
   - 2.0
   - 2.1
   - 2.2
+  - 2.3.1
   - ruby-head
-  - rbx-20mode
-  - jruby-head
+  - jruby
 matrix:
   allow_failures:
 - rvm: ruby-head
-- rvm: jruby-head
-- rvm: rbx-20mode
+- rvm: jruby
+env:
+  - 
CODECLIMATE_REPO_TOKEN=ef2c31d6fd3c385eef57dcb62374be51b56af36dd4405763d3e43a1c06330b33
+sudo: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGES new/CHANGES
--- old/CHANGES 2015-06-23 12:02:01.0 +0200
+++ new/CHANGES 2016-09-27 12:16:09.0 +0200
@@ -1,3 +1,4 @@
+2016-09-27 - 1.4.0 * Extend colorized strings with Term::ANSIColor
 2015-06-23 - 1.3.2 * Fix release 1.3.1
 2014-06-17 - 1.3.1 * This release was a bit premature, yanked it.
 2014-02-06 - 1.3.0 * Support bright and faint color names.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/COPYING new/COPYING
--- old/COPYING 2015-06-23 12:02:01.0 +0200
+++ new/COPYING 2016-09-27 12:16:09.0 +0200
@@ -1,12 +1,12 @@
-   GNU GENERAL PUBLIC LICENSE
-  Version 2, June 1991
+GNU GENERAL PUBLIC LICENSE
+   Version 2, June 1991
 
- Copyright (C) 1989, 1991 Free Software Foundation, Inc.
-   59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
-   Preamble
+Preamble
 
   The licenses for most software are designed to take away your
 freedom to share and change it.  By contrast, the GNU General Public
@@ -15,7 +15,7 @@
 General Public License applies to most of the Free Software
 Foundation's software and to any other program whose authors commit to
 using it.  (Some other Free Software Foundation software is covered by
-the GNU Library General Public License instead.)  You can apply it to
+the GNU Lesser General Public License instead.)  You can apply it to
 your programs, too.
 
   When we speak of free software, we are referring to freedom, not
@@ -55,8 +55,8 @@
 
   The precise terms and conditions for copying, distribution and
 modification follow.
-
-   GNU GENERAL PUBLIC LICENSE
+

commit rubygem-excon for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-excon for openSUSE:Factory 
checked in at 2016-10-10 16:23:01

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


Package is "rubygem-excon"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-excon/rubygem-excon.changes  
2016-09-12 13:26:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-excon.new/rubygem-excon.changes 
2016-10-10 16:23:05.0 +0200
@@ -1,0 +2,13 @@
+Wed Sep 28 04:37:36 UTC 2016 - co...@suse.com
+
+- updated to version 0.53.0
+ see installed changelog.txt
+
+  0.32.0 09/27/2016
+  =
+  
+  add ability to pass ssl options as strings
+  progress towards rspec
+  update bundled certs
+
+---

Old:

  excon-0.52.0.gem

New:

  excon-0.53.0.gem



Other differences:
--
++ rubygem-excon.spec ++
--- /var/tmp/diff_new_pack.MmyCxD/_old  2016-10-10 16:23:08.0 +0200
+++ /var/tmp/diff_new_pack.MmyCxD/_new  2016-10-10 16:23:08.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-excon
-Version:0.52.0
+Version:0.53.0
 Release:0
 %define mod_name excon
 %define mod_full_name %{mod_name}-%{version}

++ excon-0.52.0.gem -> excon-0.53.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2016-08-22 23:48:42.0 +0200
+++ new/Gemfile 2016-09-27 22:21:36.0 +0200
@@ -2,8 +2,7 @@
 
 gemspec
 
-gem 'jruby-openssl', :platform => :jruby
-gem 'puma', :groups => [:development, :test]
+gem 'jruby-openssl', '~> 0.9', :platform => :jruby
 gem 'unicorn', :platforms => [:mri, :rbx], :groups => [:development, :test]
 gem 'rubysl', '~> 2.0', :platform => :rbx
 gem 'rack', '~> 1.6'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile.lock new/Gemfile.lock
--- old/Gemfile.lock2016-08-22 23:48:42.0 +0200
+++ new/Gemfile.lock2016-09-27 22:21:36.0 +0200
@@ -1,7 +1,7 @@
 PATH
   remote: .
   specs:
-excon (0.52.0)
+excon (0.53.0)
 
 GEM
   remote: http://rubygems.org/
@@ -10,7 +10,6 @@
   i18n (~> 0.6)
   multi_json (~> 1.0)
 backports (3.6.4)
-bouncy-castle-java (1.5.0147)
 chronic (0.6.7)
 delorean (2.0.0)
   chronic
@@ -20,8 +19,7 @@
 ffi2-generators (0.1.1)
 formatador (0.2.3)
 i18n (0.6.0)
-jruby-openssl (0.8.8)
-  bouncy-castle-java (>= 1.5.0147)
+jruby-openssl (0.9.17-java)
 json (1.8.2)
 json (1.8.2-java)
 kgio (2.9.2)
@@ -29,6 +27,7 @@
 multi_json (1.3.6)
 open4 (1.3.0)
 puma (3.6.0)
+puma (3.6.0-java)
 rack (1.6.0)
 rack-protection (1.2.0)
   rack
@@ -284,7 +283,7 @@
   delorean
   eventmachine (>= 1.0.4)
   excon!
-  jruby-openssl
+  jruby-openssl (~> 0.9)
   json (>= 1.8.2)
   open4
   puma
@@ -299,4 +298,4 @@
   unicorn
 
 BUNDLED WITH
-   1.12.5
+   1.13.1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-08-22 23:48:42.0 +0200
+++ new/README.md   2016-09-27 22:21:36.0 +0200
@@ -413,6 +413,20 @@
 
 `client_key_pass` is optional.
 
+If you already have loaded the certificate and key into memory, then pass it 
through like:
+
+```ruby
+client_cert_data = File.load 'mycert.pem'
+client_key_data = File.load 'mycert.key'
+
+connection = Excon.new('https://example.com',
+   client_cert_data: client_cert_data,
+   client_key_data: client_key_data)
+```
+
+This can be useful if your program has already loaded the assets through
+another mechanism (E.g. a remote API call to a secure K:V system like Vault).
+
 ## HTTPS/SSL Issues
 
 By default excon will try to verify peer certificates when using HTTPS. 
Unfortunately on some operating systems the defaults will not work. This will 
likely manifest itself as something like `Excon::Errors::CertificateError: 
SSL_connect returned=1 ...`
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/changelog.txt new/changelog.txt
--- old/changelog.txt   2016-08-22 23:48:42.0 +0200
+++ new/changelog.txt   2016-09-27 22:21:37.0 +0200
@@ -1,3 +1,10 @@
+0.32.0 09/27/2016
+=
+
+add ability to pass ssl options as strings
+progress towards rspec
+update bundled certs
+
 0.52.0 08/22/2016
 =
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit rubygem-rails-i18n for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rails-i18n for 
openSUSE:Factory checked in at 2016-10-10 16:23:17

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
2016-07-21 07:58:48.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-rails-i18n.new/rubygem-rails-i18n.changes   
2016-10-10 16:23:21.0 +0200
@@ -1,0 +2,6 @@
+Fri Sep 23 04:46:41 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  rails-i18n-5.0.0.gem

New:

  rails-i18n-5.0.1.gem



Other differences:
--
++ rubygem-rails-i18n.spec ++
--- /var/tmp/diff_new_pack.5GH1JV/_old  2016-10-10 16:23:23.0 +0200
+++ /var/tmp/diff_new_pack.5GH1JV/_new  2016-10-10 16:23:23.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-rails-i18n
-Version:5.0.0
+Version:5.0.1
 Release:0
 %define mod_name rails-i18n
 %define mod_full_name %{mod_name}-%{version}

++ rails-i18n-5.0.0.gem -> rails-i18n-5.0.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-07-04 17:12:42.0 +0200
+++ new/README.md   2016-09-22 16:45:21.0 +0200
@@ -10,7 +10,7 @@
 
 Add to your Gemfile:
 
-gem 'rails-i18n', '~> 5.0.0.beta1' # For 5.0.0.beta1
+gem 'rails-i18n', '~> 5.0.0' # For 5.0.x
 gem 'rails-i18n', '~> 4.0.0' # For 4.0.x
 gem 'rails-i18n', '~> 3.0.0' # For 3.x
 gem 'rails-i18n', github: 'svenfuchs/rails-i18n', branch: 'master' # For 
5.x
@@ -19,7 +19,7 @@
 
 or run this command:
 
-gem install rails-i18n -v '~> 5.0.0.beta1' # For 5.0.0.beta1
+gem install rails-i18n -v '~> 5.0.0' # For 5.0.0
 gem install rails-i18n -v '~> 4.0.0' # For 4.0.x
 gem install rails-i18n -v '~> 3.0.0' # For 3.x
 
@@ -58,14 +58,15 @@
 > 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-ES, es-MX, es-PA, es-PE, 
 > es-US, es-VE,
 > et, eu, fa, fi, fr, fr-CA, fr-CH, fr-FR, gl, he, hi, hi-IN, hr, hu, id, is, 
 > it,
-> it-CH, ja, km, kn, ko, lb, lo, lt, lv, ml, mk, mn, mr-IN, ms, nb, ne, nl, 
nn, or,
+> it-CH, ja, km, kn, ko, lb, lo, lt, lv, mk, ml, mn, mr-IN, ms, nb, ne, nl, 
nn, or,
 > pa, pl, pt, pt-BR, rm, ro, ru, sk, sl, sq, sr, sv, sv-SE, sw, ta, th, tl, 
 > tr, tt, ug, uk,
 > ur, uz, vi, wo, zh-CN, zh-HK, zh-TW, zh-YUE
 
 Complete locales are:
 
-> en-US, es, es-419, es-AR, es-CL, es-CO, es-CR, es-EC, es-ES, es-MX, es-PA, 
es-PE,
-> es-US, es-VE, id, ja, ml, nl, pt-BR
+> af, da, de, de-AT, de-CH, de-DE, en-US, es, es-419, es-AR, es-CL, es-CO, 
es-CR, es-EC,
+> es-ES, es-MX, es-PA, es-PE, es-US, es-VE, et, fr, fr-CA, fr-CH, fr-FR, id, 
ja, ml, nb,
+> nl, nn, pt-BR, tr, zh-CN, zh-HK, zh-TW, zh-YUE
 
 Currently, most locales are incomplete. Typically they lack the following keys:
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-04 17:12:42.0 +0200
+++ new/metadata2016-09-22 16:45:21.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: rails-i18n
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.1
 platform: ruby
 authors:
 - Rails I18n Group
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-04 00:00:00.0 Z
+date: 2016-09-22 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: i18n
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/rails/locale/af.yml new/rails/locale/af.yml
--- old/rails/locale/af.yml 2016-07-04 17:12:42.0 +0200
+++ new/rails/locale/af.yml 2016-09-22 16:45:21.0 +0200
@@ -3,7 +3,10 @@
   activerecord:
 errors:
   messages:
-record_invalid: 'Validation failed: %{errors}'
+record_invalid: 'Validering het misluk: %{errors}'
+restrict_dependent_destroy:
+  has_one: "Kan rekord nie skrap nie omdat 'n afhanklike %{record} 
bestaan"
+  has_many: 'Kan rekord nie skrap nie omdat afhanklike %{record} 
bestaan'
   date:
 abbr_day_names:
 - Son
@@ -73,10 +76,10 @@
 other: sowat %{count} jaar
   half_a_minute: halfminuut
   less_than_x_minutes:
-one: minder as n minuut
+one: minder as 1 minuut
 other: minder as 

commit rubygem-slop for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-slop for openSUSE:Factory 
checked in at 2016-10-10 16:22:37

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


Package is "rubygem-slop"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-slop/rubygem-slop.changes
2016-09-12 13:26:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-slop.new/rubygem-slop.changes   
2016-10-10 16:22:38.0 +0200
@@ -1,0 +2,13 @@
+Sat Sep 10 04:39:20 UTC 2016 - co...@suse.com
+
+- updated to version 4.4.1
+ see installed CHANGELOG.md
+
+  v4.4.1 (2016-08-21)
+  ---
+  
+  Bug fixes:
+* Handle bad constant names in `Slop.option_defined?`. #198
+  (Ellen Marie Dash)
+
+---

Old:

  slop-4.4.0.gem

New:

  slop-4.4.1.gem



Other differences:
--
++ rubygem-slop.spec ++
--- /var/tmp/diff_new_pack.M2awSI/_old  2016-10-10 16:22:42.0 +0200
+++ /var/tmp/diff_new_pack.M2awSI/_new  2016-10-10 16:22:42.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-slop
-Version:4.4.0
+Version:4.4.1
 Release:0
 %define mod_name slop
 %define mod_full_name %{mod_name}-%{version}

++ slop-4.4.0.gem -> slop-4.4.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2016-08-15 11:18:08.0 +0200
+++ new/CHANGELOG.md2016-08-21 15:52:42.0 +0200
@@ -1,6 +1,13 @@
 Changelog
 =
 
+v4.4.1 (2016-08-21)
+---
+
+Bug fixes:
+  * Handle bad constant names in `Slop.option_defined?`. #198
+(Ellen Marie Dash)
+
 v4.4.0 (2016-08-15)
 ---
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/slop.rb new/lib/slop.rb
--- old/lib/slop.rb 2016-08-15 11:18:08.0 +0200
+++ new/lib/slop.rb 2016-08-21 15:52:42.0 +0200
@@ -6,7 +6,7 @@
 require 'slop/error'
 
 module Slop
-  VERSION = '4.4.0'
+  VERSION = '4.4.1'
 
   # Parse an array of options (defaults to ARGV). Accepts an
   # optional hash of configuration options and block.
@@ -31,6 +31,10 @@
   # Returns true if an option is defined.
   def self.option_defined?(name)
 const_defined?(string_to_option(name.to_s))
+  rescue NameError
+# If a NameError is raised, it wasn't a valid constant name,
+# and thus couldn't have been defined.
+false
   end
 
   # Example:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-08-15 11:18:08.0 +0200
+++ new/metadata2016-08-21 15:52:42.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: slop
 version: !ruby/object:Gem::Version
-  version: 4.4.0
+  version: 4.4.1
 platform: ruby
 authors:
 - Lee Jarvis
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-08-15 00:00:00.0 Z
+date: 2016-08-21 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: rake
@@ -64,6 +64,7 @@
 - test/options_test.rb
 - test/parser_test.rb
 - test/result_test.rb
+- test/slop_test.rb
 - test/test_helper.rb
 - test/types_test.rb
 homepage: http://github.com/leejarvis/slop
@@ -96,6 +97,7 @@
 - test/options_test.rb
 - test/parser_test.rb
 - test/result_test.rb
+- test/slop_test.rb
 - test/test_helper.rb
 - test/types_test.rb
 has_rdoc: 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/test/slop_test.rb new/test/slop_test.rb
--- old/test/slop_test.rb   1970-01-01 01:00:00.0 +0100
+++ new/test/slop_test.rb   2016-08-21 15:52:42.0 +0200
@@ -0,0 +1,17 @@
+require "test_helper"
+
+describe Slop do
+  describe ".option_defined?" do
+it "handles bad constant names" do
+  assert_equal false, Slop.option_defined?("Foo?Bar")
+end
+
+it "returns false if the option is not defined" do
+  assert_equal false, Slop.option_defined?("Foo")
+end
+
+it "returns true if the option is defined" do
+  assert_equal true, Slop.option_defined?("String")
+end
+  end
+end




commit rubygem-hashie for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-hashie for openSUSE:Factory 
checked in at 2016-10-10 16:23:28

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


Package is "rubygem-hashie"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-hashie/rubygem-hashie.changes
2016-05-29 03:12:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-hashie.new/rubygem-hashie.changes   
2016-10-10 16:23:29.0 +0200
@@ -1,0 +2,33 @@
+Sat Sep 17 04:35:31 UTC 2016 - co...@suse.com
+
+- updated to version 3.4.6
+ see installed CHANGELOG.md
+
+  [3.4.6]: https://github.com/intridea/hashie/compare/v3.4.5...v3.4.6
+  
+  ### Fixed
+  
+  * [#368](https://github.com/intridea/hashie/pull/368): Since `hashie/mash` 
can be required alone, require its dependencies - 
[@jrafanie](https://github.com/jrafanie).
+  
+  ## [3.4.5] - 2016-09-16
+  
+  [3.4.5]: https://github.com/intridea/hashie/compare/v3.4.4...v3.4.5
+  
+  ### Added
+  
+  * [#337](https://github.com/intridea/hashie/pull/337), 
[#331](https://github.com/intridea/hashie/issues/331): `Hashie::Mash#load` 
accepts a `Pathname` object - [@gipcompany](https://github.com/gipcompany).
+  
+  ### Deprecated
+  
+  * [#366](https://github.com/intridea/hashie/pull/366): Hashie is no longer 
tested on Ruby < 2 - [@dblock](https://github.com/dblock).
+  
+  ### Fixed
+  
+  * [#358](https://github.com/intridea/hashie/pull/358): Fixed support for 
Array#dig - [@modosc](https://github.com/modosc).
+  * [#365](https://github.com/intridea/hashie/pull/365): Ensured 
ActiveSupport::HashWithIndifferentAccess is defined before use in #deep_locate  
- [@mikejarema](https://github.com/mikejarema).
+  
+  ### Miscellanous
+  
+  * [#366](https://github.com/intridea/hashie/pull/366): Added Danger, PR 
linter - [@dblock](https://github.com/dblock).
+
+---

Old:

  hashie-3.4.4.gem

New:

  hashie-3.4.6.gem



Other differences:
--
++ rubygem-hashie.spec ++
--- /var/tmp/diff_new_pack.KUhpau/_old  2016-10-10 16:23:32.0 +0200
+++ /var/tmp/diff_new_pack.KUhpau/_new  2016-10-10 16:23:32.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-hashie
-Version:3.4.4
+Version:3.4.6
 Release:0
 %define mod_name hashie
 %define mod_full_name %{mod_name}-%{version}

++ hashie-3.4.4.gem -> hashie-3.4.6.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2016-04-29 18:33:16.0 +0200
+++ new/CHANGELOG.md2016-09-16 19:43:04.0 +0200
@@ -6,6 +6,33 @@
 
 [semver]: http://semver.org/spec/v2.0.0.html
 
+[3.4.6]: https://github.com/intridea/hashie/compare/v3.4.5...v3.4.6
+
+### Fixed
+
+* [#368](https://github.com/intridea/hashie/pull/368): Since `hashie/mash` can 
be required alone, require its dependencies - 
[@jrafanie](https://github.com/jrafanie).
+
+## [3.4.5] - 2016-09-16
+
+[3.4.5]: https://github.com/intridea/hashie/compare/v3.4.4...v3.4.5
+
+### Added
+
+* [#337](https://github.com/intridea/hashie/pull/337), 
[#331](https://github.com/intridea/hashie/issues/331): `Hashie::Mash#load` 
accepts a `Pathname` object - [@gipcompany](https://github.com/gipcompany).
+
+### Deprecated
+
+* [#366](https://github.com/intridea/hashie/pull/366): Hashie is no longer 
tested on Ruby < 2 - [@dblock](https://github.com/dblock).
+
+### Fixed
+
+* [#358](https://github.com/intridea/hashie/pull/358): Fixed support for 
Array#dig - [@modosc](https://github.com/modosc).
+* [#365](https://github.com/intridea/hashie/pull/365): Ensured 
ActiveSupport::HashWithIndifferentAccess is defined before use in #deep_locate  
- [@mikejarema](https://github.com/mikejarema).
+
+### Miscellanous
+
+* [#366](https://github.com/intridea/hashie/pull/366): Added Danger, PR linter 
- [@dblock](https://github.com/dblock).
+
 ## [3.4.4] - 2016-04-29
 
 [3.4.4]: https://github.com/intridea/hashie/compare/v3.4.3...v3.4.4
@@ -17,8 +44,8 @@
 ### Fixed
 
 * [#240](https://github.com/intridea/hashie/pull/240): Fixed nesting twice 
with Clash keys - [@bartoszkopinski](https://github.com/bartoszkopinski).
-* [#317](https://github.com/intridea/hashie/pull/317): Ensure 
`Hashie::Extensions::MethodQuery` methods return boolean values - 
[@michaelherold](https://github.com/michaelherold).
-* [#319](https://github.com/intridea/hashie/pull/319): Fix a regression from 
3.4.1 where `Hashie::Extensions::DeepFind` is no longer indifference-aware - 
[@michaelherold](https://github.com/michaelherold).
+* [#317](https://github.com/intridea/hashie/pull/317): Ensured 

commit irssi for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package irssi for openSUSE:Factory checked 
in at 2016-10-10 16:23:42

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


Package is "irssi"

Changes:

--- /work/SRC/openSUSE:Factory/irssi/irssi.changes  2016-09-30 
15:35:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.irssi.new/irssi.changes 2016-10-10 
16:23:43.0 +0200
@@ -1,0 +2,6 @@
+Thu Oct  6 11:31:53 UTC 2016 - meiss...@suse.com
+
+- irssi-0.8.20-buf.pl.patch: Fixed a information disclosure in buf.pl
+  (CVE-2016-7553 bsc#1001215)
+
+---

New:

  irssi-0.8.20-buf.pl.patch



Other differences:
--
++ irssi.spec ++
--- /var/tmp/diff_new_pack.EhpWpn/_old  2016-10-10 16:23:45.0 +0200
+++ /var/tmp/diff_new_pack.EhpWpn/_new  2016-10-10 16:23:45.0 +0200
@@ -50,6 +50,8 @@
 Source4:%{name}.keyring
 Source99:   irssi-rpmlintrc
 Patch:  irssi-0.8.15_ssl_proxy.patch
+# PATCH-FIX-UPSTREAM irssi-0.8.20-buf.pl.patch 1001215 CVE-2016-7553:
+Patch1: irssi-0.8.20-buf.pl.patch
 # PATCH-FIX-OPENSUSE irssi-0.8.16_missing_prototype_warnings.patch
 Patch2: irssi-0.8.16_missing_prototype_warnings.patch
 #
@@ -99,7 +101,7 @@
 
 %prep
 %setup -q
-#patch
+%patch1 -p1
 %patch2
 
 %build

++ irssi-0.8.20-buf.pl.patch ++
--- irssi/scripts/buf.pl2016-08-11 14:59:21.0 +0200
+++ irssi/scripts/buf.pl2016-10-06 13:27:20.747016000 +0200
@@ -5,7 +5,7 @@
  settings_get_str settings_get_bool channels windows
 settings_add_str settings_add_bool get_irssi_dir
 window_find_refnum signal_stop);
-$VERSION = '2.13';
+$VERSION = '2.20';
 %IRSSI = (
 authors=> 'Juerd',
 contact=> 'ju...@juerd.nl',
@@ -13,10 +13,8 @@
 description=> 'Saves the buffer for /upgrade, so that no 
information is lost',
 license=> 'Public Domain',
 url=> 'http://juerd.nl/irssi/',
-changed=> 'Mon May 13 19:41 CET 2002',
-changes=> 'Severe formatting bug removed * oops, I ' .
-   'exposed Irssi to ircII foolishness * sorry ' .
-  '** removed logging stuff (this is a fix)',
+changed=> 'Thu Sep 22 01:37 CEST 2016',
+changes=> 'Fixed file permissions (leaked everything via filesystem)',
 note1  => 'This script HAS TO BE in your scripts/autorun!',
 note2  => 'Perl support must be static or in startup',
 );
@@ -39,9 +37,15 @@
 
 my %suppress;
 
+sub _filename { sprintf '%s/scrollbuffer', get_irssi_dir }
+
 sub upgrade {
-open BUF, q{>}, sprintf('%s/scrollbuffer', get_irssi_dir) or die $!;
-print BUF join("\0", map $_->{server}->{address} . $_->{name}, channels), 
"\n";
+my $fn = _filename;
+my $old_umask = umask 0077;
+open my $fh, q{>}, $fn or die "open $fn: $!";
+umask $old_umask;
+
+print $fh join("\0", map $_->{server}->{address} . $_->{name}, channels), 
"\n";
 for my $window (windows) {
next unless defined $window;
next if $window->{name} eq 'status';
@@ -57,36 +61,39 @@
redo if defined $line;
}
}
-   printf BUF "%s:%s\n%s", $window->{refnum}, $lines, $buf;
+   printf $fh "%s:%s\n%s", $window->{refnum}, $lines, $buf;
 }
-close BUF;
+close $fh;
 unlink sprintf("%s/sessionconfig", get_irssi_dir);
 command 'layout save';
 command 'save';
 }
 
 sub restore {
-open BUF, q{<}, sprintf('%s/scrollbuffer', get_irssi_dir) or die $!;
-my @suppress = split /\0/, ;
+my $fn = _filename;
+open my $fh, q{<}, $fn or die "open $fn: $!";
+unlink $fn or warn "unlink $fn: $!";
+
+my @suppress = split /\0/, readline $fh;
 if (settings_get_bool 'upgrade_suppress_join') {
chomp $suppress[-1];
@suppress{@suppress} = (2) x @suppress;
 }
 active_win->command('^window scroll off');
-while (my $bla = ){
+while (my $bla = readline $fh){
chomp $bla;
my ($refnum, $lines) = split /:/, $bla;
next unless $lines;
my $window = window_find_refnum $refnum;
unless (defined $window){
-for 1..$lines;
+   readline $fh for 1..$lines;
next;
}
my $view = $window->view;
$view->remove_all_lines();
$view->redraw();
my $buf = '';
-   $buf .=  for 1..$lines;
+   $buf .= readline $fh for 1..$lines;
my $sep = settings_get_str 'upgrade_separator';
$sep .= "\n" if $sep ne '';
$window->gui_printtext_after(undef, MSGLEVEL_CLIENTNOTICE, 
"$buf\cO$sep");
@@ -119,3 +126,10 @@
 unless 

commit rubygem-get_process_mem for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-get_process_mem for 
openSUSE:Factory checked in at 2016-10-10 16:23:36

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


Package is "rubygem-get_process_mem"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-get_process_mem/rubygem-get_process_mem.changes
  2016-09-30 15:31:08.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-get_process_mem.new/rubygem-get_process_mem.changes
 2016-10-10 16:23:38.0 +0200
@@ -1,0 +2,10 @@
+Wed Sep 14 04:31:14 UTC 2016 - co...@suse.com
+
+- updated to version 0.2.1
+ see installed CHANGELOG.md
+
+  ## 0.2.1
+  
+  - Windows support.
+
+---

Old:

  get_process_mem-0.2.0.gem

New:

  get_process_mem-0.2.1.gem



Other differences:
--
++ rubygem-get_process_mem.spec ++
--- /var/tmp/diff_new_pack.0tcfHn/_old  2016-10-10 16:23:40.0 +0200
+++ /var/tmp/diff_new_pack.0tcfHn/_new  2016-10-10 16:23:40.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-get_process_mem
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -24,14 +24,14 @@
 #
 
 Name:   rubygem-get_process_mem
-Version:0.2.0
+Version:0.2.1
 Release:0
 %define mod_name get_process_mem
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
 Url:https://github.com/schneems/get_process_mem
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml

++ get_process_mem-0.2.0.gem -> get_process_mem-0.2.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2014-06-16 21:40:01.0 +0200
+++ new/.travis.yml 2016-06-01 18:04:26.0 +0200
@@ -1,4 +1,8 @@
 language: ruby
+
+before_install:
+  - gem install bundler -v 1.12.5
+
 rvm:
   - 1.9.3
   - 2.0.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2014-06-16 21:40:01.0 +0200
+++ new/CHANGELOG.md2016-06-01 18:04:26.0 +0200
@@ -1,3 +1,7 @@
+## 0.2.1
+
+- Windows support.
+
 ## 0.2.0
 
 - Reverting back to RSS for linux until (#7) is resolved
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2014-06-16 21:40:01.0 +0200
+++ new/Gemfile 2016-06-01 18:04:26.0 +0200
@@ -1,3 +1,4 @@
 source "https://rubygems.org;
+gem 'sys-proctable'
 
 gemspec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2014-06-16 21:40:01.0 +0200
+++ new/README.md   2016-06-01 18:04:26.0 +0200
@@ -12,15 +12,17 @@
 gem 'get_process_mem'
 ```
 
-then run `$ bundle install`
+then run `$ bundle install`.
 
+If you're using Windows you'll also need to have the `sys-proctable` gem.
 
 ## Use It
 
 Get the current process memory usage:
 
 ```ruby
-puts mem = GetProcessMem.new.inspect
+mem = GetProcessMem.new
+puts mem.inspect
 #
 mem.bytes # => 25460736
 mem.kb# => 24864.0
@@ -47,14 +49,7 @@
 `rm tmplog`
 ```
 
-On Linux, which provides `/proc//smaps`, the default memory type returned 
is PSS, or "proportional set size", where shared memory is divided by the 
number of processes sharing it. On other platforms, the size returned is the 
RSS or the [Resident Set Size](http://en.wikipedia.org/wiki/Resident_set_size), 
basically how much memory the program takes up in RAM at the time, including 
all the shared memory.
-
-The memory type can be specified by passing an options hash:
-
-```ruby
-GetProcessMem.new(Process.pid, mem_type: 'rss')
-```
-
+On Linux, for memory size we return the RSS or the [Resident Set 
Size](http://en.wikipedia.org/wiki/Resident_set_size), basically how much 
memory the program takes up in RAM at the time, including all the shared memory.
 
 
 ## License
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/appveyor.yml new/appveyor.yml
--- old/appveyor.yml1970-01-01 01:00:00.0 

commit perl-DBD-mysql for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package perl-DBD-mysql for openSUSE:Factory 
checked in at 2016-10-10 16:23:47

Comparing /work/SRC/openSUSE:Factory/perl-DBD-mysql (Old)
 and  /work/SRC/openSUSE:Factory/.perl-DBD-mysql.new (New)


Package is "perl-DBD-mysql"

Changes:

--- /work/SRC/openSUSE:Factory/perl-DBD-mysql/perl-DBD-mysql.changes
2016-09-05 21:22:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-DBD-mysql.new/perl-DBD-mysql.changes   
2016-10-10 16:23:48.0 +0200
@@ -1,0 +2,13 @@
+Tue Oct  4 05:17:34 UTC 2016 - co...@suse.com
+
+- updated to 4.037
+   see /usr/share/doc/packages/perl-DBD-mysql/Changes
+
+  2016-10-03 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.037)
+  * Security release to patch possible buffer overflow in prepared
+statements. Reported and fixed by Pali Rohár. This vulnerability
+is present in all releases at least back to versions 3.0 of the
+driver, which were released in 2005.
+The CVE identifier for this vulnerability is CVE-2016-1246.
+
+---

Old:

  DBD-mysql-4.036.tar.gz

New:

  DBD-mysql-4.037.tar.gz



Other differences:
--
++ perl-DBD-mysql.spec ++
--- /var/tmp/diff_new_pack.OY4Ylr/_old  2016-10-10 16:23:51.0 +0200
+++ /var/tmp/diff_new_pack.OY4Ylr/_new  2016-10-10 16:23:51.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-DBD-mysql
-Version:4.036
+Version:4.037
 Release:0
 %define cpan_name DBD-mysql
 Summary:MySQL driver for the Perl5 Database Interface (DBI)

++ DBD-mysql-4.036.tar.gz -> DBD-mysql-4.037.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBD-mysql-4.036/Changes new/DBD-mysql-4.037/Changes
--- old/DBD-mysql-4.036/Changes 2016-08-23 07:58:39.0 +0200
+++ new/DBD-mysql-4.037/Changes 2016-10-03 08:52:35.0 +0200
@@ -1,3 +1,10 @@
+2016-10-03 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.037)
+* Security release to patch possible buffer overflow in prepared
+  statements. Reported and fixed by Pali Rohár. This vulnerability
+  is present in all releases at least back to versions 3.0 of the
+  driver, which were released in 2005.
+  The CVE identifier for this vulnerability is CVE-2016-1246.
+
 2016-08-23 Patrick Galbraith, Michiel Beijen, DBI/DBD community (4.036)
 Stable version, to include all changes since 4.035.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBD-mysql-4.036/META.json 
new/DBD-mysql-4.037/META.json
--- old/DBD-mysql-4.036/META.json   2016-08-23 07:58:58.0 +0200
+++ new/DBD-mysql-4.037/META.json   2016-10-03 08:53:48.0 +0200
@@ -4,7 +4,7 @@
   "Patrick Galbraith "
],
"dynamic_config" : 1,
-   "generated_by" : "ExtUtils::MakeMaker version 7.18, CPAN::Meta::Converter 
version 2.150005",
+   "generated_by" : "ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter 
version 2.150005",
"license" : [
   "perl_5"
],
@@ -22,7 +22,10 @@
"prereqs" : {
   "build" : {
  "requires" : {
-"ExtUtils::MakeMaker" : "0"
+"ExtUtils::MakeMaker" : "0",
+"Test::Deep" : "0",
+"Test::Simple" : "0.90",
+"Time::HiRes" : "0"
  }
   },
   "configure" : {
@@ -36,13 +39,6 @@
 "DBI" : "1.609",
 "perl" : "5.008001"
  }
-  },
-  "test" : {
- "requires" : {
-"Test::Deep" : "0",
-"Test::Simple" : "0.90",
-"Time::HiRes" : "0"
- }
   }
},
"release_status" : "stable",
@@ -57,7 +53,7 @@
   "x_IRC" : "irc://irc.perl.org/#dbi",
   "x_MailingList" : "mailto:dbi-...@perl.org;
},
-   "version" : "4.036",
+   "version" : "4.037",
"x_contributors" : [
   "Alexandr Ciornii ",
   "Alexey Molchanov ",
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBD-mysql-4.036/META.yml new/DBD-mysql-4.037/META.yml
--- old/DBD-mysql-4.036/META.yml2016-08-23 07:58:58.0 +0200
+++ new/DBD-mysql-4.037/META.yml2016-10-03 08:53:48.0 +0200
@@ -11,7 +11,7 @@
   DBI: '1.609'
   Data::Dumper: '0'
 dynamic_config: 1
-generated_by: 'ExtUtils::MakeMaker version 7.18, CPAN::Meta::Converter version 
2.150005'
+generated_by: 'ExtUtils::MakeMaker version 7.1001, CPAN::Meta::Converter 
version 2.150005'
 license: perl
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -30,7 +30,7 @@
   homepage: http://dbi.perl.org/
 

commit rubygem-arel for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-arel for openSUSE:Factory 
checked in at 2016-10-10 16:23:39

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


Package is "rubygem-arel"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-arel/rubygem-arel.changes
2016-08-26 23:17:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-arel.new/rubygem-arel.changes   
2016-10-10 16:23:40.0 +0200
@@ -1,0 +2,12 @@
+Wed Sep 14 04:29:04 UTC 2016 - co...@suse.com
+
+- updated to version 7.1.2
+ see installed History.txt
+
+  === 7.1.2 / 2016-09-13
+  
+  * bug fixes
+  
+* Don't store all aliases to a table
+
+---

Old:

  arel-7.1.1.gem

New:

  arel-7.1.2.gem



Other differences:
--
++ rubygem-arel.spec ++
--- /var/tmp/diff_new_pack.YPwnnI/_old  2016-10-10 16:23:43.0 +0200
+++ /var/tmp/diff_new_pack.YPwnnI/_new  2016-10-10 16:23:43.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-arel
-Version:7.1.1
+Version:7.1.2
 Release:0
 %define mod_name arel
 %define mod_full_name %{mod_name}-%{version}

++ arel-7.1.1.gem -> arel-7.1.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/History.txt new/History.txt
--- old/History.txt 2016-07-28 01:17:50.0 +0200
+++ new/History.txt 2016-09-13 22:27:22.0 +0200
@@ -1,8 +1,14 @@
+=== 7.1.2 / 2016-09-13
+
+* bug fixes
+
+  * Don't store all aliases to a table
+
 === 7.1.1 / 2016-07-27
 
-* Bug Fixes
+* bug fixes
 
-  * Fix warning in `Casted#hash`
+  * fix warning in `casted#hash`
 
 === 7.1.0 / 2016-07-19
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/arel/table.rb new/lib/arel/table.rb
--- old/lib/arel/table.rb   2016-07-28 01:17:50.0 +0200
+++ new/lib/arel/table.rb   2016-09-13 22:27:22.0 +0200
@@ -6,7 +6,7 @@
 @engine = nil
 class << self; attr_accessor :engine; end
 
-attr_accessor :name, :aliases, :table_alias
+attr_accessor :name, :table_alias
 
 # TableAlias and Table both have a #table_name which is the name of the 
underlying table
 alias :table_name :name
@@ -14,7 +14,6 @@
 def initialize(name, as: nil, type_caster: nil)
   @name= name.to_s
   @columns = nil
-  @aliases = []
   @type_caster = type_caster
 
   # Sometime AR sends an :as parameter to table, to let the table know
@@ -27,9 +26,7 @@
 end
 
 def alias name = "#{self.name}_2"
-  Nodes::TableAlias.new(self, name).tap do |node|
-@aliases << node
-  end
+  Nodes::TableAlias.new(self, name)
 end
 
 def from
@@ -94,7 +91,6 @@
 def eql? other
   self.class == other.class &&
 self.name == other.name &&
-self.aliases == other.aliases &&
 self.table_alias == other.table_alias
 end
 alias :== :eql?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/arel.rb new/lib/arel.rb
--- old/lib/arel.rb 2016-07-28 01:17:50.0 +0200
+++ new/lib/arel.rb 2016-09-13 22:27:22.0 +0200
@@ -21,7 +21,7 @@
 require 'arel/nodes'
 
 module Arel
-  VERSION = '7.1.1'
+  VERSION = '7.1.2'
 
   def self.sql raw_sql
 Arel::Nodes::SqlLiteral.new raw_sql
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-28 01:17:50.0 +0200
+++ new/metadata2016-09-13 22:27:22.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: arel
 version: !ruby/object:Gem::Version
-  version: 7.1.1
+  version: 7.1.2
 platform: ruby
 authors:
 - Aaron Patterson
@@ -11,7 +11,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-27 00:00:00.0 Z
+date: 2016-09-13 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: minitest
@@ -182,7 +182,7 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.6
+rubygems_version: 2.5.1
 signing_key: 
 specification_version: 4
 summary: Arel Really Exasperates Logicians  Arel is a SQL AST manager for Ruby




commit rubygem-gettext-setup for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-gettext-setup for 
openSUSE:Factory checked in at 2016-10-10 16:23:32

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


Package is "rubygem-gettext-setup"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-gettext-setup/rubygem-gettext-setup.changes  
2016-09-21 18:47:05.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-gettext-setup.new/rubygem-gettext-setup.changes
 2016-10-10 16:23:33.0 +0200
@@ -1,0 +2,6 @@
+Wed Sep 14 04:31:37 UTC 2016 - co...@suse.com
+
+- updated to version 0.7
+  no changelog found
+
+---

Old:

  gettext-setup-0.6.gem

New:

  gettext-setup-0.7.gem



Other differences:
--
++ rubygem-gettext-setup.spec ++
--- /var/tmp/diff_new_pack.MBQnZW/_old  2016-10-10 16:23:38.0 +0200
+++ /var/tmp/diff_new_pack.MBQnZW/_new  2016-10-10 16:23:38.0 +0200
@@ -24,14 +24,14 @@
 #
 
 Name:   rubygem-gettext-setup
-Version:0.6
+Version:0.7
 Release:0
 %define mod_name gettext-setup
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
 Url:https://github.com/puppetlabs/gettext-setup-gem
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml

++ gettext-setup-0.6.gem -> gettext-setup-0.7.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2016-08-07 18:15:51.0 +0200
+++ new/Gemfile 1970-01-01 01:00:00.0 +0100
@@ -1,4 +0,0 @@
-source 'https://rubygems.org'
-
-# Specify dependencies in gettext-setup.gemspec
-gemspec
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile.lock new/Gemfile.lock
--- old/Gemfile.lock2016-08-07 18:15:51.0 +0200
+++ new/Gemfile.lock1970-01-01 01:00:00.0 +0100
@@ -1,68 +0,0 @@
-PATH
-  remote: .
-  specs:
-gettext-setup (0.5)
-  fast_gettext (~> 1.1.0)
-  gettext (>= 3.0.2)
-
-GEM
-  remote: https://rubygems.org/
-  specs:
-addressable (2.4.0)
-crack (0.4.2)
-  safe_yaml (~> 1.0.0)
-diff-lcs (1.2.5)
-docile (1.1.5)
-fast_gettext (1.1.0)
-gettext (3.2.2)
-  locale (>= 2.0.5)
-  text (>= 1.3.0)
-json (1.8.3)
-json (1.8.3-java)
-locale (2.1.2)
-rack (1.6.4)
-rack-test (0.6.3)
-  rack (>= 1.0)
-rake (10.4.2)
-rspec (3.5.0)
-  rspec-core (~> 3.5.0)
-  rspec-expectations (~> 3.5.0)
-  rspec-mocks (~> 3.5.0)
-rspec-core (3.5.1)
-  rspec-support (~> 3.5.0)
-rspec-expectations (3.5.0)
-  diff-lcs (>= 1.2.0, < 2.0)
-  rspec-support (~> 3.5.0)
-rspec-mocks (3.5.0)
-  diff-lcs (>= 1.2.0, < 2.0)
-  rspec-support (~> 3.5.0)
-rspec-support (3.5.0)
-safe_yaml (1.0.4)
-simplecov (0.10.0)
-  docile (~> 1.1.0)
-  json (~> 1.8)
-  simplecov-html (~> 0.10.0)
-simplecov-html (0.10.0)
-text (1.3.1)
-webmock (1.20.4)
-  addressable (>= 2.3.6)
-  crack (>= 0.3.2)
-
-PLATFORMS
-  java
-  ruby
-
-DEPENDENCIES
-  bundler (~> 1.3)
-  gettext-setup!
-  rack-test
-  rake
-  rspec (~> 3.1)
-  rspec-core (~> 3.1)
-  rspec-expectations (~> 3.1)
-  rspec-mocks (~> 3.1)
-  simplecov
-  webmock
-
-BUNDLED WITH
-   1.12.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2016-08-07 18:15:51.0 +0200
+++ new/Rakefile1970-01-01 01:00:00.0 +0100
@@ -1,37 +0,0 @@
-require 'bundler/setup'
-require 'rake'
-
-require_relative './lib/gettext-setup/gettext_setup.rb'
-
-import 'lib/tasks/gettext.rake'
-
-namespace :bundler do
-  task :setup do
-require 'bundler/setup'
-  end
-end
-
-desc "Update i18n POT translations"
-task :"spec-regen" do
-  require 'rake'
-  GettextSetup.initialize(File.absolute_path(File.join('spec', 'fixtures', 
'locales'), File.dirname(__FILE__)))
-  Dir.chdir('spec/fixtures')
-  Rake.application['gettext:pot'].invoke
-  # No use in running these without Transifex integration to actually translate
-  # strings.
-  # Rake.application['gettext:po'].invoke('de')
-end
-
-if defined?(RSpec::Core::RakeTask)
-  namespace :spec do
-require 'rspec/core'
-require 'rspec/core/rake_task'
-puts 'running'
-
-desc 'Run all specs.'
-RSpec::Core::RakeTask.new(:all 

commit python-paramiko for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python-paramiko for openSUSE:Factory 
checked in at 2016-10-10 16:23:58

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


Package is "python-paramiko"

Changes:

--- /work/SRC/openSUSE:Factory/python-paramiko/python-paramiko.changes  
2016-08-03 11:45:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-paramiko.new/python-paramiko.changes 
2016-10-10 16:24:00.0 +0200
@@ -1,0 +2,6 @@
+Fri Oct  7 09:13:06 UTC 2016 - tbecht...@suse.com
+
+- Fix Requires for python-cryptography
+- Add missing Requires for python-pyasn1
+
+---



Other differences:
--
++ python-paramiko.spec ++
--- /var/tmp/diff_new_pack.1p6kta/_old  2016-10-10 16:24:02.0 +0200
+++ /var/tmp/diff_new_pack.1p6kta/_new  2016-10-10 16:24:02.0 +0200
@@ -28,7 +28,8 @@
 BuildRequires:  python-cryptography
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-Requires:   python-cryptography
+Requires:   python-cryptography >= 1.1
+Requires:   python-pyasn1 >= 0.1.7
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 %else




commit horde5 for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package horde5 for openSUSE:Factory checked 
in at 2016-10-10 16:23:53

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


Package is "horde5"

Changes:

--- /work/SRC/openSUSE:Factory/horde5/horde5.changes2015-12-21 
12:04:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.horde5.new/horde5.changes   2016-10-10 
16:23:55.0 +0200
@@ -1,0 +2,32 @@
+Fri Oct  7 10:40:32 UTC 2016 - p.drou...@gmail.com
+
+- Update to version 5.2.12
+  * SECURITY: Add CSRF protection tokens to portal layout forms 
+(CVE#2016-2228, CVE#2015-8807, boo#965573)
+  * Fix double loading of hooks.php.
+- Changes from version 5.2.11
+  * Update Portuguese translation.
+  * Update Basque translation.
+- Changes from version 5.2.10
+  * Remove broken Facebook posting functionality from the Facebook block.
+  * Update Greek translation.
+  * Check if temporary directory is writable
+- Changes from version 5.2.9
+  * SECURITY: Fix XSS vulnerability in menu bar exposed by few applications
+(Bug #14213).
+  * Add more detailed user DN settings to Kolab group configuration (Request
+#11737).
+  * Fix returning to last page after problem reporting from AJAX pages (Bug
+#12112).
+  * Fix custom database configuration for groups (Bug #11664).
+  * Use access rules compatible with both Apache 2.2 and 2.4.
+  * Fix reporting results for non-select queries in administrative sql shell
+(Bug #14216).
+- Changes from version 5.2.8
+  * SECURITY: Protect against CSRF attacks on various admin pages.
+  * Don't apply access keys to checkbox and radiobox rows in the sidebar
+(Bug #14103).
+  * Send correct MIME type for non-statically cached javascript files.
+  * Added configuration support for version 2 of WorldWeatherOnline's API.
+
+---

Old:

  horde-5.2.7.tgz

New:

  horde-5.2.12.tgz



Other differences:
--
++ horde5.spec ++
--- /var/tmp/diff_new_pack.i8aHgP/_old  2016-10-10 16:23:59.0 +0200
+++ /var/tmp/diff_new_pack.i8aHgP/_new  2016-10-10 16:23:59.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package horde5
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
 Group:  Productivity/Networking/Web/Utilities
 
 Name:   horde5
-Version:5.2.7
+Version:5.2.12
 Release:0
 Source0:http://pear.horde.org/get/horde-%{version}.tgz
 Source1:horde.conf
@@ -179,6 +179,7 @@
 %{__rm} %{buildroot}/%{hordedir}/rpc/.htaccess
 # remove INSTALL file
 rm -f %{buildroot}%{_docdir}/%{name}/INSTALL
+rm -f %{buildroot}%{_docdir}/%{name}/horde/INSTALL
 
 %fdupes %buildroot%{hordedir}
 %find_lang horde

++ horde-5.2.7.tgz -> horde-5.2.12.tgz ++
 458920 lines of diff (skipped)




commit conkeror for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package conkeror for openSUSE:Factory 
checked in at 2016-10-10 16:24:04

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


Package is "conkeror"

Changes:

--- /work/SRC/openSUSE:Factory/conkeror/conkeror.changes2016-09-30 
15:35:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.conkeror.new/conkeror.changes   2016-10-10 
16:24:05.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep 29 11:22:01 UTC 2016 - sleep_wal...@opensuse.org
+
+- add ctrl-click.patch (allow to configure ctrl+click to open in new
+  buffe)
+
+---

New:

  ctrl-click.patch



Other differences:
--
++ conkeror.spec ++
--- /var/tmp/diff_new_pack.7kLKwT/_old  2016-10-10 16:24:11.0 +0200
+++ /var/tmp/diff_new_pack.7kLKwT/_new  2016-10-10 16:24:11.0 +0200
@@ -31,6 +31,8 @@
 Patch1: 0001-modules-download-manager.js-Fix-bug-preventing-compl.patch
 # PATCH-FIX-UPSTREAM
 Patch2: 0001-application.ini-Fix-Goanna-version-number.patch
+# PATCH-FEATURE-OPENSUSE
+Patch3: ctrl-click.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  hicolor-icon-theme
 %if 0%{?suse_version}
@@ -53,6 +55,7 @@
 %patch0 -p1
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 make


++ ctrl-click.patch ++
--- a/modules/clicks-in-new-buffer.js   2016-06-07 23:11:29.0 +0200
+++ b/modules/clicks-in-new-buffer.js   2016-09-29 11:35:58.195467344 +0200
@@ -9,6 +9,10 @@
 "Which mouse button should open links in a new buffer. " +
 "0 = left, 1 = middle, 2 = right. Default is 1.");
 
+define_variable('clicks_in_new_buffer_require_control', false,
+'Whether control must be held to open in new buffer.  ' +
+'Default is false.');
+
 define_variable("clicks_in_new_buffer_target", OPEN_NEW_BUFFER,
 "How to open links in a new buffer, in the foreground or " +
 "the background. Set to one the constants OPEN_NEW_BUFFER " +
@@ -32,7 +36,8 @@
 }
 
 function open_link_in_new_buffer (event) {
-if (event.button != clicks_in_new_buffer_button)
+if (event.button != clicks_in_new_buffer_button ||
+event.ctrlKey != clicks_in_new_buffer_require_control)
 return;
 let element = event.target;
 let anchor = null;



commit rubygem-pg for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package rubygem-pg for openSUSE:Factory 
checked in at 2016-10-10 16:23:23

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


Package is "rubygem-pg"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-pg/rubygem-pg.changes2016-04-12 
19:32:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-pg.new/rubygem-pg.changes   
2016-10-10 16:23:24.0 +0200
@@ -1,0 +2,445 @@
+Thu Sep 22 04:47:40 UTC 2016 - co...@suse.com
+
+- updated to version 0.19.0
+ see installed ChangeLog
+
+  2016-09-04  Lars Kanis  
+  
+   * ext/pg_connection.c:
+   Replace rb_ary_new_from_args() which is missing in Ruby-2.0
+  
+   We don't really need an Array at all, but storing the values on the
+   stack is enough.
+   [4d9c4ee44d11] [tip]
+  
+   * ext/pg_connection.c:
+   Use the asynchronous interface for setting the default_encoding.
+  
+   This is another attempt to solve issue https://bitbucket.org/ged
+   /ruby-pg/issues/245 While setting the encoding per
+   PQsetClientEncoding was already adjusted to release the GVL in a
+   previous commit, it did not solve the particular issue with
+   pgbouncer.
+  
+   Using the async interface has the advantage, that signals or
+   exception events can be processed by the given thread, while a query
+   is running.
+   [a646a1394e9d]
+  
+   * spec/pg/connection_spec.rb:
+   Spec: Use a more effective test for default_internal.
+  
+   UFT-8 is the standard for internal_encoding anyway, so that not
+   setting it did not result in a failure.
+   [08e7e13687e7]
+  
+  2016-08-20  Michael Granger  
+  
+   * certs/ged.pem, pg.gemspec:
+   Correct key+cert upgrade.
+  
+   Refs #241.
+   [7431b5c1430d]
+  
+   * README.rdoc:
+   Merged with upstream
+   [cf9ac513102e]
+  
+  2016-08-20  Lars Kanis  
+  
+   * History.rdoc, lib/pg/connection.rb:
+   Fix wrong exception when running SQL while in #copy_data for output.
+  
+   It raised "undefined method `result_status' for nil:NilClass"
+   previously and raises "no COPY in progress" now.
+  
+   This also fixes the failing test of the previous commit.
+   [dbfc3856e543]
+  
+   * spec/pg/connection_spec.rb:
+   Add tests for running SQL statements while in #copy_data.
+  
+   The test for output currently fails.
+   [9b2b1cd54d49]
+  
+  2016-08-18  Lars Kanis  
+  
+   * Rakefile:
+   Don't update ext/errorcodes.def with every run of rake gem.
+  
+   This fixes the previous commit.
+   [43a48561adde]
+  
+  2016-08-17  Lars Kanis  
+  
+   * .hgignore, History.rdoc, Rakefile, ext/errorcodes.def:
+   Add errorcodes.def to git in order to allow build from git per
+   bundler.
+   [29ca3eed927d]
+  
+   * History.rdoc:
+   Update History.rdoc once more.
+   [6874ea8622a1]
+  
+   * README.rdoc:
+   Update README regarding to Ruby and PostgreSQL versions.
+   [73930bce99d9]
+  
+   * spec/pg/basic_type_mapping_spec.rb:
+   Run JSON test on PostgreSQL-9.4+, only.
+  
+   Earlier versions miss the JSONB type.
+   [6b23964f70c3]
+  
+   * appveyor.yml:
+   Update Appveyor to use Ruby 2.3 and remove 2.0 and 2.1.
+   [8ff3d0b07cda]
+  
+   * .travis.yml:
+   Remove ruby versions before 2.2, because hoe-deveiate isn't
+   compatible with these versions.
+   [73279f9db276]
+  
+   * lib/pg/basic_type_mapping.rb, lib/pg/text_decoder.rb,
+   lib/pg/text_encoder.rb, spec/pg/basic_type_mapping_spec.rb:
+   Add JSON coders and add them to BasicTypeMapForResults and
+   BasicTypeMapBasedOnResult
+  
+   Fixes bitbucket issue #212 .
+   [b76471234f7a]
+  
+  2016-08-14  Lars Kanis  
+  
+   * lib/pg/basic_type_mapping.rb:
+   Improve documentation to PG::BasicTypeMapForQueries
+   [e7181c452c64]
+  
+   * History.rdoc:
+   Update History.rdoc
+   [9c3699255853]
+  
+  2016-08-20  Michael Granger  
+  
+   * BSDL, README.rdoc, ext/pg.c:
+   Update copyright year, license files
+   [c77d0997b4e4]
+  
+   * README.rdoc, certs/ged.pem:
+   Update/upgrade my signing cert
+  
+   Fixes #241.
+   [741c94c3bada]
+  
+  2016-08-17  Michael Granger  
+  
+   * pg.gemspec:
+   Bump prerelease version in the gemspec
+   [f7472e7a7902]
+  
+  2016-08-14  Lars Kanis  
+  
+   * Merge git master
+   [9b7987626074]
+  
+  2016-08-13  Lars 

commit v8 for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package v8 for openSUSE:Factory checked in 
at 2016-10-10 16:24:08

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


Package is "v8"

Changes:

--- /work/SRC/openSUSE:Factory/v8/v8.changes2016-08-15 10:31:39.0 
+0200
+++ /work/SRC/openSUSE:Factory/.v8.new/v8.changes   2016-10-10 
16:24:14.0 +0200
@@ -1,0 +2,8 @@
+Thu Oct  6 16:14:28 UTC 2016 - norm...@linux.vnet.ibm.com
+
+- _service updated last submodules commits upstream 5.3-lkgr branch
+  to avoid build errors, but keep previous v8 version 5.3.171
+  No changelog available.
+- add v8_deprecated_readdir_r.patch already upstream master
+
+---

New:

  v8_deprecated_readdir_r.patch



Other differences:
--
++ v8.spec ++
--- /var/tmp/diff_new_pack.RptCgU/_old  2016-10-10 16:24:19.0 +0200
+++ /var/tmp/diff_new_pack.RptCgU/_new  2016-10-10 16:24:19.0 +0200
@@ -41,6 +41,7 @@
 Patch1: add_ppc64le_arch.patch
 # PATCH-FIX-UPSTREAM v8-gcc6.patch mli...@suse.cz -- Fix build with GCC6
 Patch2: v8-gcc6.patch
+Patch3: v8_deprecated_readdir_r.patch
 BuildRequires:  gcc-c++
 BuildRequires:  gyp
 BuildRequires:  libicu-devel >= 4.0
@@ -111,6 +112,7 @@
 popd
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 

++ _service ++
--- /var/tmp/diff_new_pack.RptCgU/_old  2016-10-10 16:24:19.0 +0200
+++ /var/tmp/diff_new_pack.RptCgU/_new  2016-10-10 16:24:19.0 +0200
@@ -4,7 +4,7 @@
 https://chromium.googlesource.com/chromium/deps/icu.git
 git
 third_party.icu
-42c58d4e49f2250039f0e98d43e0b76e8f5ca024
+ffa4b6704cf5cc9fec9485731f24a05b2ba94bca
 46
   
   
@@ -12,7 +12,7 @@
 https://chromium.googlesource.com/chromium/buildtools.git
 git
 buildtools
-3ba3ca22ec610fe95683f6bfdeea9d90c768abd7
+56eaae134648135663c4aa1ed82278572b5f35ef
 00
   
 
@@ -20,6 +20,7 @@
 https://chromium.googlesource.com/chromium/src/base/trace_event/common.git
 git
 trace_event
+54b8455be9505c2cb0cf5c26bb86739c236471aa
 00
   
 
@@ -27,7 +28,7 @@
 https://chromium.googlesource.com/external/swarming.client.git
 git
 tools.swarming_client
-8fce79620b04bbe5415ace1103db27505bdc4c06
+df6e95e7669883c8fe9ef956c69a544154701a49
 00
   
   
@@ -67,7 +68,7 @@
 https://chromium.googlesource.com/external/github.com/tc39/ecmascript_simd.git
 git
 test.simdjs.data
-c8ef63c728283debc25891123eb00482fee4b8cd
+baf493985cb9ea7cdbd0d68704860a8156de9556
 00
   
 
@@ -75,7 +76,7 @@
 https://chromium.googlesource.com/external/github.com/tc39/test262.git
 git
 test.test262.data
-ea222fb7d09e334c321b987656315ad4056ded96
+88bc7fe7586f161201c5f14f55c9c489f82b1b67
 00
   
 

++ buildtools-00.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/buildtools-00/DEPS new/buildtools-00/DEPS
--- old/buildtools-00/DEPS  2015-12-02 20:07:46.0 +0100
+++ new/buildtools-00/DEPS  2016-06-21 14:52:16.0 +0200
@@ -4,9 +4,9 @@
 vars = {
   "git_url": "https://chromium.googlesource.com;,
 
-  "clang_format_rev": "81edd558fea5dd7855d67a1dc61db34ae8c1fd63", # r223685
-  "libcxx_revision": "48198f9110397fff47fe7c37cbfa296be7d44d3d",
-  "libcxxabi_revision": "4ad1009ab3a59fa7a6896d74d5e4de5885697f95",
+  "clang_format_rev": "a72164df8be7d1c68ae1ad6c3541e7819200327e", # r258123
+  "libcxx_revision": "aad34a13af010898f54c1bb2069194cb083cea4b",
+  "libcxxabi_revision": "9a39e428d018b723d7d187181fd08908b1cb6bd0",
 }
 
 deps = {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/buildtools-00/android/doclava.tar.gz.sha1 
new/buildtools-00/android/doclava.tar.gz.sha1
--- old/buildtools-00/android/doclava.tar.gz.sha1   1970-01-01 
01:00:00.0 +0100
+++ new/buildtools-00/android/doclava.tar.gz.sha1   2016-06-21 
14:52:16.0 +0200
@@ -0,0 +1 @@
+86b0c87e7e73c923f6d3373fe7547f1770dd4758
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/buildtools-00/checkdeps/builddeps.py 
new/buildtools-00/checkdeps/builddeps.py
--- old/buildtools-00/checkdeps/builddeps.py2015-12-02 20:07:46.0 
+0100
+++ new/buildtools-00/checkdeps/builddeps.py2016-06-21 14:52:16.0 
+0200
@@ -97,6 +97,11 @@
 SKIP_SUBDIRS_VAR_NAME = 'skip_child_includes'
 
 
+class DepsBuilderError(Exception):
+"""Base class for exceptions in this module."""
+pass
+
+
 def NormalizePath(path):
   """Returns a path normalized to how we write DEPS rules and compare 

commit syncthing for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package syncthing for openSUSE:Factory 
checked in at 2016-10-10 16:24:30

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


Package is "syncthing"

Changes:

--- /work/SRC/openSUSE:Factory/syncthing/syncthing.changes  2016-09-30 
15:35:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.syncthing.new/syncthing.changes 2016-10-10 
16:24:47.0 +0200
@@ -1,0 +2,16 @@
+Sat Oct  8 13:24:17 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 0.14.8:
+  * The monitor process now detects crashes due to the new hashing
+package and disables it on subsequent launch
+(gh#syncthing/syncthing#3613).
+  * The two hash packages are benchmarked on startup and the
+fastest on is selected (gh#syncthing/syncthing#3614).
+  * Directories are now correctly shown as out of sync when they
+miss only deleted files (gh#syncthing/syncthing#3588).
+  * UPnP handling is corrected in the case where more than one
+router is detected (gh#syncthing/syncthing#3578).
+  * Patterns with terminal slash (e.g., "dir/") now correctly
+ignore directory contents (gh#syncthing/syncthing#3639).
+
+---

Old:

  syncthing-source-v0.14.7.tar.gz
  syncthing-source-v0.14.7.tar.gz.asc

New:

  syncthing-source-v0.14.8.tar.gz
  syncthing-source-v0.14.8.tar.gz.asc



Other differences:
--
++ syncthing.spec ++
--- /var/tmp/diff_new_pack.zQPZkJ/_old  2016-10-10 16:24:50.0 +0200
+++ /var/tmp/diff_new_pack.zQPZkJ/_new  2016-10-10 16:24:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   syncthing
-Version:0.14.7
+Version:0.14.8
 Release:0
 Summary:FOSS Continuous File Synchronisation
 License:MPL-2.0

++ syncthing-source-v0.14.7.tar.gz -> syncthing-source-v0.14.8.tar.gz ++
/work/SRC/openSUSE:Factory/syncthing/syncthing-source-v0.14.7.tar.gz 
/work/SRC/openSUSE:Factory/.syncthing.new/syncthing-source-v0.14.8.tar.gz 
differ: char 5, line 1




commit python-neovim for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package python-neovim for openSUSE:Factory 
checked in at 2016-10-10 16:24:43

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


Package is "python-neovim"

Changes:

--- /work/SRC/openSUSE:Factory/python-neovim/python-neovim.changes  
2016-08-12 15:44:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-neovim.new/python-neovim.changes 
2016-10-10 16:25:00.0 +0200
@@ -1,0 +2,15 @@
+Sat Oct  8 23:57:56 UTC 2016 - roni...@gmail.com
+
+- Version bump to 0.1.10.
+  Upstream changelog:
+
+  Version 0.1.10
+
+* 861b0ba Report errors in handlers on stderr when used as
+  external client
+* 36b2732 Don't rely on sys.stderr when it is not used
+* 1954384 Allow Buffer.append to take bytes (b'...') as
+  argument
+* cb23953 Use predictable log file names
+
+---
python3-neovim.changes: same change

Old:

  python-client-0.1.9.tar.gz

New:

  python-client-0.1.10.tar.gz



Other differences:
--
++ python-neovim.spec ++
--- /var/tmp/diff_new_pack.a94uEf/_old  2016-10-10 16:25:04.0 +0200
+++ /var/tmp/diff_new_pack.a94uEf/_new  2016-10-10 16:25:04.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-neovim
-Version:0.1.9
+Version:0.1.10
 Release:0
 Summary:Python 2 client to Neovim
 License:Apache-2.0

python3-neovim.spec: same change
++ python-client-0.1.9.tar.gz -> python-client-0.1.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-client-0.1.9/README.md 
new/python-client-0.1.10/README.md
--- old/python-client-0.1.9/README.md   2016-06-12 20:53:09.0 +0200
+++ new/python-client-0.1.10/README.md  2016-09-24 10:09:36.0 +0200
@@ -145,7 +145,9 @@
 NVIM_PYTHON_LOG_FILE=logfile NVIM_PYTHON_LOG_LEVEL=DEBUG nvim
 ```
 As more than one python host process might be started, the log filenames take
-the pattern `logfile_PID` where `PID` is the process id.
+the pattern `logfile_pyX_KIND` where `X` is the major python version (2 or 3)
+and `KIND` is either "rplugin" or "script" (for the `:python[3]`
+script interface).
 
 If the host cannot start at all, the error could be found in `~/.nvimlog` if
 `nvim` was compiled with logging.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-client-0.1.9/neovim/__init__.py 
new/python-client-0.1.10/neovim/__init__.py
--- old/python-client-0.1.9/neovim/__init__.py  2016-06-12 20:53:09.0 
+0200
+++ new/python-client-0.1.10/neovim/__init__.py 2016-09-24 10:09:36.0 
+0200
@@ -53,7 +53,14 @@
 if os.path.isdir(path) and dup in plugins:
 plugins.remove(dup)
 
-setup_logging()
+# Special case: the legacy scripthost receives a single relative filename
+# while the rplugin host will receive absolute paths.
+if plugins == ["script_host.py"]:
+name = "script"
+else:
+name = "rplugin"
+
+setup_logging(name)
 
 if not session:
 session = stdio_session()
@@ -94,12 +101,13 @@
 return Nvim.from_session(session).with_decode(decode)
 
 
-def setup_logging():
+def setup_logging(name):
 """Setup logging according to environment variables."""
 logger = logging.getLogger(__name__)
 if 'NVIM_PYTHON_LOG_FILE' in os.environ:
-logfile = (os.environ['NVIM_PYTHON_LOG_FILE'].strip() +
-   '_' + str(os.getpid()))
+prefix = os.environ['NVIM_PYTHON_LOG_FILE'].strip()
+major_version = sys.version_info[0]
+logfile = '{0}_py{1}_{2}'.format(prefix, major_version, name)
 handler = logging.FileHandler(logfile, 'w')
 handler.formatter = logging.Formatter(
 '%(asctime)s [%(levelname)s @ '
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/python-client-0.1.9/neovim/api/buffer.py 
new/python-client-0.1.10/neovim/api/buffer.py
--- old/python-client-0.1.9/neovim/api/buffer.py2016-06-12 
20:53:09.0 +0200
+++ new/python-client-0.1.10/neovim/api/buffer.py   2016-09-24 
10:09:36.0 +0200
@@ -104,7 +104,7 @@
 
 def append(self, lines, index=-1):
 """Append a string or list of lines to the buffer."""
-if isinstance(lines, basestring):
+if isinstance(lines, (basestring, bytes)):
 lines = [lines]
 return self._session.request('buffer_insert', self, index, lines)
 
@@ -125,7 +125,7 @@
 line, col_start, col_end, async=async)
 
 def clear_highlight(self, 

commit nmap for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package nmap for openSUSE:Factory checked in 
at 2016-10-10 16:24:12

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


Package is "nmap"

Changes:

--- /work/SRC/openSUSE:Factory/nmap/nmap.changes2016-04-05 
10:44:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.nmap.new/nmap.changes   2016-10-10 
16:24:33.0 +0200
@@ -1,0 +2,9 @@
+Wed Oct  5 14:23:28 UTC 2016 - astie...@suse.com
+
+- Nmap 7.30:
+  * Many added NSE scripts, OS fingerprints, service proes
+  * Improved output filtering
+  * Using Lua 5.3
+  * Many bug fixes, improvements and performance enhancements
+
+---

Old:

  nmap-7.12.tar.bz2
  nmap-7.12.tar.bz2.asc

New:

  nmap-7.30.tar.bz2
  nmap-7.30.tar.bz2.asc



Other differences:
--
++ nmap.spec ++
--- /var/tmp/diff_new_pack.1i6I8r/_old  2016-10-10 16:24:41.0 +0200
+++ /var/tmp/diff_new_pack.1i6I8r/_new  2016-10-10 16:24:41.0 +0200
@@ -18,9 +18,9 @@
 
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib(1))")}
-%define with_system_lua 0%{?suse_version} >= 1220
+%define with_system_lua 0%{?suse_version} >= 1330
 Name:   nmap
-Version:7.12
+Version:7.30
 Release:0
 Summary:Portscanner
 License:GPL-2.0+
@@ -45,10 +45,9 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if %{with_system_lua}
 %if 0%{?suse_version} > 1320
-BuildRequires:  Lua(devel) = 5.2
+BuildRequires:  Lua(devel) = 5.3
 %else
-BuildRequires:  pkgconfig(lua) < 5.3
-BuildRequires:  pkgconfig(lua) >= 5.2
+BuildRequires:  pkgconfig(lua) >= 5.3
 %endif
 %endif
 
@@ -180,10 +179,10 @@
 [[ $compiled_with == *\ nmap-libdnet-* ]]
 # check for lua
 %if %{with_system_lua}
-[[ $compiled_with == *\ liblua-5.2* ]]
+[[ $compiled_with == *\ liblua-5.3* ]]
 %else
-# lua in nmap tarball identifies itself as "liblua-5.2.3"
-[[ $compiled_with == *\ liblua-5.2.3* ]]
+# lua in nmap tarball identifies itself as "liblua-5.3.3"
+[[ $compiled_with == *\ liblua-5.3.3* ]]
 %endif
 #
 

++ nmap-7.12.tar.bz2 -> nmap-7.30.tar.bz2 ++
/work/SRC/openSUSE:Factory/nmap/nmap-7.12.tar.bz2 
/work/SRC/openSUSE:Factory/.nmap.new/nmap-7.30.tar.bz2 differ: char 11, line 1




commit lua51-mpack for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package lua51-mpack for openSUSE:Factory 
checked in at 2016-10-10 16:24:39

Comparing /work/SRC/openSUSE:Factory/lua51-mpack (Old)
 and  /work/SRC/openSUSE:Factory/.lua51-mpack.new (New)


Package is "lua51-mpack"

Changes:

--- /work/SRC/openSUSE:Factory/lua51-mpack/lua51-mpack.changes  2016-04-30 
23:29:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.lua51-mpack.new/lua51-mpack.changes 
2016-10-10 16:24:59.0 +0200
@@ -1,0 +2,6 @@
+Sat Oct  8 23:48:19 UTC 2016 - roni...@gmail.com
+
+- Version bump to 1.0.3.
+  * No changelog available.
+
+---

Old:

  1.0.2.tar.gz

New:

  1.0.3.tar.gz



Other differences:
--
++ lua51-mpack.spec ++
--- /var/tmp/diff_new_pack.jRQ6a7/_old  2016-10-10 16:25:00.0 +0200
+++ /var/tmp/diff_new_pack.jRQ6a7/_new  2016-10-10 16:25:00.0 +0200
@@ -19,7 +19,7 @@
 %define lua_version %(lua -e 'print(_VERSION)' | cut -d ' ' -f 2)
 %define lua_archdir %{_libdir}/lua/%{lua_version}
 Name:   lua51-mpack
-Version:1.0.2
+Version:1.0.3
 Release:0
 Summary:Implementation of MessagePack for Lua 5.1
 License:MIT
@@ -39,12 +39,22 @@
 %prep
 %setup -q -n libmpack-%{version}
 
+# Fix lua directory.
+pushd binding/lua
+sed -i 's|LUA_CMOD_INSTALLDIR :=.*|LUA_CMOD_INSTALLDIR := $(shell echo 
"%{_libdir}/lua/$(LUA_VERSION_MAJ_MIN)")|g' Makefile
+popd
+
 %build
-gcc -O2 -I%{_includedir}/lua/%{lua_version} -shared -fPIC -o mpack.so 
binding/lua/lmpack.c
+pushd binding/lua
+make USE_SYSTEM_LUA=yes
+popd
 
 %install
-mkdir   -p %{buildroot}%{lua_archdir}
-install -Dm755 mpack.so %{buildroot}%{lua_archdir}
+pushd binding/lua
+make USE_SYSTEM_LUA=yes \
+ DESTDIR=%{buildroot} \
+ install
+popd
 
 %files
 %defattr(-,root,root)

++ 1.0.2.tar.gz -> 1.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libmpack-1.0.2/Makefile new/libmpack-1.0.3/Makefile
--- old/libmpack-1.0.2/Makefile 2016-04-09 03:33:18.0 +0200
+++ new/libmpack-1.0.3/Makefile 2016-09-18 22:09:16.0 +0200
@@ -1,3 +1,6 @@
+# Some parts of this Makefile were taken or adapted from libunibilium:
+# https://github.com/mauke/unibilium
+
 config ?= debug
 SYSTEM ?= $(shell uname -s)
 
@@ -20,11 +23,6 @@
 
 SYMBOLIZER ?= /usr/bin/llvm-symbolizer
 
-.PHONY: all gdb lib-bin test-bin tools amalgamation test coverage profile 
clean \
-   compile_commands.json
-
-all: lib-bin test-bin
-
 XCFLAGS += -Wall -Wextra -Wconversion -Wstrict-prototypes -pedantic
 
 ifeq ($(ANSI),1)
@@ -36,11 +34,15 @@
 endif
 
 NAME:= mpack
-MAJOR   := 0
+MAJOR   := 1
 MINOR   := 0
-PATCH   := 0
+PATCH   := 3
 VERSION := $(MAJOR).$(MINOR).$(PATCH)
 
+LT_REVISION=0
+LT_CURRENT=0
+LT_AGE=0
+
 PREFIX  ?= /usr/local
 LIBDIR  ?= $(PREFIX)/lib
 INCDIR  ?= $(PREFIX)/include
@@ -53,7 +55,8 @@
 SRC := $(addprefix $(SRCDIR)/,$(SRC))
 HDRS:= $(SRC:.c=.h)
 OBJ := $(addprefix $(OUTDIR)/,$(SRC:.c=.lo))
-LIB := $(OUTDIR)/lib$(NAME).la
+LIBRARY := lib$(NAME).la
+LIB := $(OUTDIR)/$(LIBRARY)
 TSRC:= $(wildcard $(TESTDIR)/*.c) $(TESTDIR)/deps/tap/tap.c
 TOBJ:= $(addprefix $(OUTDIR)/,$(TSRC:.c=.lo))
 TEXE:= $(OUTDIR)/run-tests
@@ -64,37 +67,69 @@
 
 TEST_FILTER_OUT := --coverage -ansi -std=c99
 
-include .config/$(config).mk
+.PHONY: all
+all: lib-bin test-bin
 
-$(TOBJ): XCFLAGS := $(filter-out $(TEST_FILTER_OUT),$(XCFLAGS)) \
-   -std=gnu99 -Wno-conversion -Wno-unused-parameter
+include .config/$(config).mk
 
+.PHONY: tools
 tools: $(COMPILER) $(RUNNER)
 
+.PHONY: amalgamation
 amalgamation: $(AMALG)
 
+.PHONY: lib-bin
 lib-bin: tools $(LIB)
 
+.PHONY: test-bin
 test-bin: lib-bin $(TEXE)
 
+.PHONY: test
 test: test-bin
@$(RUNNER) $(TEXE)
 
+.PHONY: gdb
 gdb: test-bin
-   gdb -x .gdb $(TEXE)
+   $(LIBTOOL) --mode=execute gdb -x .gdb $(TEXE)
 
+.PHONY: coverage
 coverage: tools $(COVOUT)
cat $(COVOUT)
 
+.PHONY: profile
 profile: tools $(PROFOUT)
cat $(PROFOUT)
 
+.PHONY: compile_commands.json
 compile_commands.json:
rm -f $(BINDIR)/compile_commands.json
$(MAKE) config=$(config) clean
bear $(MAKE) config=$(config)
mv compile_commands.json $(BINDIR)
 
+.PHONY: install
+install: install-inc install-lib
+   $(LIBTOOL) --mode=finish '$(DESTDIR)$(LIBDIR)'
+
+.PHONY: install-inc
+install-inc: $(AMALG_H) mpack.pc.in
+   mkdir -p '$(DESTDIR)$(INCDIR)'
+   install -m644 $(AMALG_H) '$(DESTDIR)$(INCDIR)'
+   mkdir -p '$(DESTDIR)$(LIBDIR)/pkgconfig'
+   sed 
's,@VERSION@,$(VERSION),;s,@LIBDIR@,$(LIBDIR),;s,@INCDIR@,$(INCDIR),' 

commit armagetron for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package armagetron for openSUSE:Factory 
checked in at 2016-10-10 16:24:20

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


Package is "armagetron"

Changes:

--- /work/SRC/openSUSE:Factory/armagetron/armagetron.changes2016-08-05 
18:18:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.armagetron.new/armagetron.changes   
2016-10-10 16:24:43.0 +0200
@@ -1,0 +2,8 @@
+Thu Oct  6 15:20:22 UTC 2016 - kiel...@gmail.com
+
+- Some cleanup:
+  * removed BuildRequires: kdelibs3-devel (fixes build for
+openSUSE Leap 42.1 and Leap 42.2).
+  * added some BuildRequires.
+
+---



Other differences:
--
++ armagetron.spec ++
--- /var/tmp/diff_new_pack.se6UfO/_old  2016-10-10 16:24:46.0 +0200
+++ /var/tmp/diff_new_pack.se6UfO/_new  2016-10-10 16:24:46.0 +0200
@@ -29,11 +29,16 @@
 Patch0: reproducible.patch
 # PATCH-FIX-UPSTREAM https://bugs.launchpad.net/armagetronad/+bug/1596771 -- 
fix nullpointer dereferenceing which leads into segfault
 Patch1: fix-segv.patch
-BuildRequires:  SDL_image-devel
-BuildRequires:  SDL_mixer-devel
-BuildRequires:  kdelibs3-devel
-BuildRequires:  pkgconfig
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  gcc-c++
+BuildRequires:  pkgconfig(sdl)
+BuildRequires:  pkgconfig(SDL_mixer)
+BuildRequires:  pkgconfig(SDL_image)
 BuildRequires:  pkgconfig(glu)
+BuildRequires:  libpng-devel
+BuildRequires:  libxml2-devel
+BuildRequires:  update-desktop-files
 %if 0%{?suse_version} > 1315
 BuildRequires:  llvm-clang
 %endif
@@ -66,6 +71,7 @@
 %endif
 %configure \
--enable-music \
+   --enable-glout \
--disable-desktop \
--disable-uninstall \
--disable-dependency-tracking \
@@ -88,7 +94,8 @@
 ln -s %{_datadir}/pixmaps/%{name}.png 
%{buildroot}%{_datadir}/armagetronad/desktop/icons/large/armagetronad.png
 popd
 # some cleanups
-chmod 644 %{buildroot}%{_sysconfdir}/armagetronad/rc.config
+rm %{buildroot}%{_sysconfdir}/armagetronad/rc.config
+rm %{buildroot}%{_sysconfdir}/armagetronad/settings_dedicated.cfg
 rm %{buildroot}%{_datadir}/armagetronad/language/update.py
 rm %{buildroot}%{_datadir}/armagetronad/scripts/relocate
 rm %{buildroot}%{_datadir}/armagetronad/desktop/*.desktop




commit librecad for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package librecad for openSUSE:Factory 
checked in at 2016-10-10 16:24:35

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


Package is "librecad"

Changes:

--- /work/SRC/openSUSE:Factory/librecad/librecad.changes2016-10-04 
16:00:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.librecad.new/librecad.changes   2016-10-10 
16:24:55.0 +0200
@@ -1,0 +2,6 @@
+Sat Oct  8 13:24:33 UTC 2016 - jsl...@suse.com
+
+- add: ensured-all-objects-are-shown-when-a-layer-is-toggle.patch
+  (from upstream)
+
+---

New:

  ensured-all-objects-are-shown-when-a-layer-is-toggle.patch



Other differences:
--
++ librecad.spec ++
--- /var/tmp/diff_new_pack.n8Yoen/_old  2016-10-10 16:24:58.0 +0200
+++ /var/tmp/diff_new_pack.n8Yoen/_new  2016-10-10 16:24:58.0 +0200
@@ -34,6 +34,7 @@
 Source4:http://wiki.librecad.org/images/9/9d/Electrical1-LCAD.zip
 Source10:   ttf2lff.1
 Source20:   %name-rpmlintrc
+Patch0: ensured-all-objects-are-shown-when-a-layer-is-toggle.patch
 Patch2: librecad-no-date.diff
 Patch3: librecad-use-system-libdxfrw.patch
 Patch4: librecad-install.diff
@@ -87,7 +88,7 @@
 
 %prep
 %setup -qn LibreCAD-%version -a 2 -a 3 -a 4
-%patch -P 2 -P 3 -P 4 -P 5 -p1
+%patch -P 0 -P 2 -P 3 -P 4 -P 5 -p1
 %if 0%{?suse_version} >= 1321
 %patch -P 6 -p1
 %endif




++ ensured-all-objects-are-shown-when-a-layer-is-toggle.patch ++
From: ravas 
Date: Mon, 27 Jun 2016 11:04:49 -0700
Subject: ensured all objects are shown when a layer is toggled; #784
Patch-mainline: yes
Git-commit: b4a6c15236f7b3b1e0f9b9f54f29e8b2ea873f0b

Signed-off-by: Jiri Slaby 
---
 librecad/src/actions/rs_actionlayerstoggleview.cpp | 1 +
 1 file changed, 1 insertion(+)

diff --git a/librecad/src/actions/rs_actionlayerstoggleview.cpp 
b/librecad/src/actions/rs_actionlayerstoggleview.cpp
index 2d0effa23d4b..4c09672a075b 100644
--- a/librecad/src/actions/rs_actionlayerstoggleview.cpp
+++ b/librecad/src/actions/rs_actionlayerstoggleview.cpp
@@ -43,6 +43,7 @@ void RS_ActionLayersToggleView::trigger() {
 RS_DEBUG->print("toggle layer");
 if (graphic) {
 graphic->toggleLayer(a_layer);
+graphic->updateInserts();
 }
 finish(false);
 }
-- 
2.10.1




commit cinnamon-session for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package cinnamon-session for 
openSUSE:Factory checked in at 2016-10-10 16:25:01

Comparing /work/SRC/openSUSE:Factory/cinnamon-session (Old)
 and  /work/SRC/openSUSE:Factory/.cinnamon-session.new (New)


Package is "cinnamon-session"

Changes:

--- /work/SRC/openSUSE:Factory/cinnamon-session/cinnamon-session.changes
2016-05-23 16:40:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.cinnamon-session.new/cinnamon-session.changes   
2016-10-10 16:25:13.0 +0200
@@ -1,0 +2,7 @@
+Sat Oct  8 19:13:17 UTC 2016 - sor.ale...@meowr.ru
+
+- Add cinnamon-session-qt-5.7-styleoverride.patch: On Qt 5.7+ use
+  Gtk2 Platform Theme and don't set QT_STYLE_OVERRIDE to "gtk"
+  (boo#1002900).
+
+---

New:

  cinnamon-session-qt-5.7-styleoverride.patch



Other differences:
--
++ cinnamon-session.spec ++
--- /var/tmp/diff_new_pack.lSiHFZ/_old  2016-10-10 16:25:15.0 +0200
+++ /var/tmp/diff_new_pack.lSiHFZ/_new  2016-10-10 16:25:15.0 +0200
@@ -25,11 +25,13 @@
 Url:https://github.com/linuxmint/cinnamon-session
 Source: 
https://github.com/linuxmint/%{name}/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:%{name}-logind.gschema.override
+# PATCH-FIX-OPENSUSE cinnamon-session-qt-5.7-styleoverride.patch boo#1002900 
sor.ale...@meowr.ru -- On Qt 5.7+ use Gtk2 Platform Theme and don't set 
QT_STYLE_OVERRIDE to "gtk".
+Patch0: cinnamon-session-qt-5.7-styleoverride.patch
 BuildRequires:  docutils
 BuildRequires:  gnome-common
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libtool
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 BuildRequires:  tcpd-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  xmlto
@@ -60,18 +62,24 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 NOCONFIGURE=1 gnome-autogen.sh
-%configure
-make %{?_smp_mflags}
+%configure \
+%if 0%{?suse_version} > 1320 || (0%{?sle_version} >= 120300 && 
0%{?is_opensuse})
+  --enable-qt57-theme-support
+%else
+  --disable-qt57-theme-support
+%endif
+make %{?_smp_mflags} V=1
 
 %install
 %make_install
 %find_lang %{name}-3.0 %{?no_lang_C}
 
 # We should own this directory.
-mkdir -p %{buildroot}%{_datadir}/%{name}/sessions
+mkdir -p %{buildroot}%{_datadir}/%{name}/sessions/
 
 # Fix documentation location.
 mkdir -p %{buildroot}%{_docdir}/
@@ -79,7 +87,8 @@
   %{buildroot}%{_docdir}/%{name}/
 
 # Use systemd-logind for suspend by default.
-install -Dm 0644 %{SOURCE1} 
%{buildroot}%{_datadir}/glib-2.0/schemas/org.cinnamon.desktop.session.gschema.override
+install -Dpm 0644 %{SOURCE1} \
+  
%{buildroot}%{_datadir}/glib-2.0/schemas/org.cinnamon.desktop.session.gschema.override
 
 %post
 %desktop_database_post

++ cinnamon-session-qt-5.7-styleoverride.patch ++
--- a/cinnamon-session/main.c
+++ b/cinnamon-session/main.c
@@ -383,8 +383,16 @@ main (int argc, char **argv)
  */
 csm_util_setenv ("GNOME_DESKTOP_SESSION_ID", "this-is-deprecated");
 
-/* Make QT5 apps follow the GTK style */
-csm_util_setenv ("QT_STYLE_OVERRIDE", "gtk");
+/* Make Qt5 apps follow the GTK+ style */
+if (!HAVE_QT57 && g_getenv ("QT_STYLE_OVERRIDE") == NULL) {
+csm_util_setenv ("QT_STYLE_OVERRIDE", "gtk");
+} else if (HAVE_QT57 && g_getenv ("QT_STYLE_OVERRIDE") != NULL) {
+g_unsetenv ("QT_STYLE_OVERRIDE");
+}
+
+if (HAVE_QT57 && g_getenv ("QT_QPA_PLATFORMTHEME") == NULL) {
+csm_util_setenv ("QT_QPA_PLATFORMTHEME", "gtk2");
+}
 
 /* GTK Overlay scrollbars */
 settings = g_settings_new ("org.cinnamon.desktop.interface");
--- a/configure.ac
+++ b/configure.ac
@@ -108,6 +108,19 @@ AC_SUBST(LOGIND_CFLAGS)
 AC_SUBST(LOGIND_LIBS)
 
 dnl 
+dnl Check for Qt 5.7+ to set correct env var for theme/styling
+dnl 
+AC_DEFINE([HAVE_QT57], [0], [Have Qt 5.7+])
+AC_ARG_ENABLE(qt57_theme_support,
+  AS_HELP_STRING([--enable-qt57-theme-support], [Support GTK+ 
styles for Qt apps with Qt 5.7+]),
+  [enable_qt57_theme_support=yes],
+  [enable_qt57_theme_support=no])
+
+if test x$enable_qt57_theme_support = xyes; then
+AC_DEFINE([HAVE_QT57], [1])
+fi
+
+dnl 
 dnl X development libraries check
 dnl 
 



commit screenfetch for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package screenfetch for openSUSE:Factory 
checked in at 2016-10-10 16:24:47

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


Package is "screenfetch"

Changes:

--- /work/SRC/openSUSE:Factory/screenfetch/screenfetch.changes  2016-08-29 
15:46:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.screenfetch.new/screenfetch.changes 
2016-10-10 16:25:05.0 +0200
@@ -1,0 +2,14 @@
+Sun Oct 09 12:45:30 UTC 2016 - mplus...@suse.com
+
+- Update to version 3.7.0+git.20161002:
+  * ChromeOS/ChromiumOS instruction added
+  * Update README.mkdn
+  * Disable line wrapping by default
+  * document `-w' command in README.mkdn
+  * document `-w' command in manpage
+  * Update CHANGELOG
+  * show CPU temperature
+  * Update Solus logo
+  * No longer gets iTerm's font while in Terminal.app
+
+---

Old:

  screenfetch-3.7.0+git.20160826.tar.xz

New:

  screenfetch-3.7.0+git.20161002.tar.xz



Other differences:
--
++ screenfetch.spec ++
--- /var/tmp/diff_new_pack.aT1YHA/_old  2016-10-10 16:25:07.0 +0200
+++ /var/tmp/diff_new_pack.aT1YHA/_new  2016-10-10 16:25:07.0 +0200
@@ -17,18 +17,20 @@
 
 
 Name:   screenfetch
-Version:3.7.0+git.20160826
+Version:3.7.0+git.20161002
 Release:0
 Summary:Fetches system/theme information in terminal for Linux desktop 
screenshots
 License:GPL-3.0
 Group:  System/X11/Terminals
 Url:https://github.com/KittyKatt/screenFetch
 Source0:%{name}-%{version}.tar.xz
+BuildRequires:  xz
 Requires:   bash
 Requires:   xprop
 Recommends: curl
 Recommends: scrot
 Recommends: xdpyinfo
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
 %description

++ screenfetch-3.7.0+git.20160826.tar.xz -> 
screenfetch-3.7.0+git.20161002.tar.xz ++
 2712 lines of diff (skipped)




commit pocl for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package pocl for openSUSE:Factory checked in 
at 2016-10-10 16:25:05

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


Package is "pocl"

Changes:

--- /work/SRC/openSUSE:Factory/pocl/pocl.changes2016-07-15 
12:52:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.pocl.new/pocl.changes   2016-10-10 
16:25:15.0 +0200
@@ -1,0 +2,6 @@
+Sun Oct  9 09:17:33 UTC 2016 - mplus...@suse.com
+
+- Use cmake macros
+- Use ninja to speedup building
+
+---



Other differences:
--
++ pocl.spec ++
--- /var/tmp/diff_new_pack.DnuKxH/_old  2016-10-10 16:25:18.0 +0200
+++ /var/tmp/diff_new_pack.DnuKxH/_new  2016-10-10 16:25:18.0 +0200
@@ -18,11 +18,11 @@
 
 
 Name:   pocl
+Version:0.13
+Release:0
 Summary:Portable Computing Language - an OpenCL implementation
 License:MIT
 Group:  Productivity/Other
-Version:0.13
-Release:0
 # The whole code is under MIT
 # except include/utlist.h which is under BSD (and unbundled) and
 # except lib/kernel/vecmath which is under GPLv3+ or LGPLv3+ (and unbundled in 
future)
@@ -30,11 +30,6 @@
 Source0:http://portablecl.org/downloads/%{name}-%{version}.tar.gz
 Source99:   pocl-rpmlintrc
 Patch0: 0001-Fixes-357-broken-build-with-GCC-6.1.patch
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# Only armv7l is supported
-# PPC support is currently broken, due to path problems
-# s390(x) and aarch64 also not supported, so use ExclusiveArch
-ExclusiveArch:  %{ix86} x86_64 armv7l armv7hl
 BuildRequires:  boost-devel
 BuildRequires:  cmake >= 2.8.12
 BuildRequires:  libtool
@@ -44,15 +39,21 @@
 BuildRequires:  llvm-clang-devel > 3.5
 BuildRequires:  llvm-devel > 3.5
 BuildRequires:  ncurses-devel
+BuildRequires:  ninja
 BuildRequires:  opencl-headers
 BuildRequires:  pkgconfig
 BuildRequires:  uthash-devel
 BuildRequires:  pkgconfig(OpenCL)
+BuildRequires:  pkgconfig(glew)
 BuildRequires:  pkgconfig(hwloc)
-#BuildRequires:vecmath-devel
 Requires:   libstdc++-devel
 Requires:   llvm-clang > 3.5
 Requires:   uthash
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+# Only armv7l is supported
+# PPC support is currently broken, due to path problems
+# s390(x) and aarch64 also not supported, so use ExclusiveArch
+ExclusiveArch:  %{ix86} x86_64 armv7l armv7hl
 
 %description
 Portable Computing Language (pocl) aims to become a MIT-licensed open source
@@ -71,7 +72,6 @@
 Additional purpose of the project is to serve as a research platform for
 issues in parallel programming on heterogeneous platforms.
 
-
 %package devel
 Summary:Portable Computing Language - development files
 Group:  Development/Languages/Other 
@@ -85,20 +85,20 @@
 
 This Subpackage provides the development files needed for pocl.
 
-
 %prep
 %setup -q
-%patch0 -p1
+%patch0
 
 %build
-mkdir build
-cd build
-cmake ..\
-  -DCMAKE_INSTALL_PREFIX=%{_prefix} \
+%define __builder ninja
+%cmake ..\
   -DCMAKE_C_COMPILER=clang  \
   -DCMAKE_CXX_COMPILER=clang++ \
-  -DWITH_LLVM_CONFIG=/usr/bin/llvm-config
-make %{?_smp_mflags}
+  -DCMAKE_EXE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,now" \
+  -DCMAKE_MODULE_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,now" \
+  -DCMAKE_SHARED_LINKER_FLAGS="-Wl,--as-needed -Wl,-z,now" \
+  -DWITH_LLVM_CONFIG=%{_bindir}/llvm-config
+%make_jobs
 
 # docs
 #cd doc/sphinx
@@ -109,6 +109,7 @@
 
 # FIXME - should be handled upstream
 chmod 755 %{buildroot}/%{_bindir}/pocl-standalone
+mv %{buildroot}%{_prefix}%{_libdir} %{buildroot}%{_libdir}
 
 # Unbundle vecmath
 #rm -vf %{buildroot}/%{_libdir}/pocl/vecmath/

++ 0001-Fixes-357-broken-build-with-GCC-6.1.patch ++
--- /var/tmp/diff_new_pack.DnuKxH/_old  2016-10-10 16:25:18.0 +0200
+++ /var/tmp/diff_new_pack.DnuKxH/_new  2016-10-10 16:25:18.0 +0200
@@ -1,8 +1,8 @@
-diff --git a/cmake/bitcode_rules.cmake b/cmake/bitcode_rules.cmake
-index dd6853b..708ba24 100644
 a/cmake/bitcode_rules.cmake
-+++ b/cmake/bitcode_rules.cmake
-@@ -62,7 +62,7 @@ function(compile_cc_to_bc FILENAME SUBDIR BC_FILE_LIST)
+Index: cmake/bitcode_rules.cmake
+===
+--- cmake/bitcode_rules.cmake.orig
 cmake/bitcode_rules.cmake
+@@ -62,7 +62,7 @@ function(compile_cc_to_bc FILENAME SUBDI
  DEPENDS "${FULL_F_PATH}"
${KERNEL_DEPEND_HEADERS}
  COMMAND  "${CLANGXX}" ${CLANG_FLAGS} ${KERNEL_CLANGXX_FLAGS}
@@ -11,11 +11,11 @@
  COMMENT "Building C++ to LLVM bitcode ${BC_FILE}" 
  VERBATIM)
  endfunction()
-diff --git 

commit qjackctl for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package qjackctl for openSUSE:Factory 
checked in at 2016-10-10 16:24:54

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


Package is "qjackctl"

Changes:

--- /work/SRC/openSUSE:Factory/qjackctl/qjackctl.changes2016-09-07 
11:46:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.qjackctl.new/qjackctl.changes   2016-10-10 
16:25:07.0 +0200
@@ -1,0 +2,16 @@
+Sun Oct  9 11:33:36 UTC 2016 - virtuous...@gmail.com
+
+- update to version 0.4.3
+  * Fix build error caused by variable length array.
+  * Fix some tooltip spelling (patch by Jaromír Mikeš, thanks).
+  * Translation (not) fix for the default server name "(default)".
+  * Old "Start minimized to system tray" option returns to setup.
+  * Dropped the --enable-qt5 from configure as found redundant given
+that's the build default anyway (suggestion by Guido Scholz,
+while for Qtractor, thanks).
+  * Late again French (fr) translation update
+(by Olivier Humbert aka. trebmuh, thanks).
+- removal of qjackctl-gcc6.patch and qjackctl-return_tray_minimization.patch
+  due to their inclusion into this release
+
+---

Old:

  qjackctl-0.4.2.tar.gz
  qjackctl-gcc6.patch
  qjackctl-return_tray_minimization.patch

New:

  qjackctl-0.4.3.tar.gz



Other differences:
--
++ qjackctl.spec ++
--- /var/tmp/diff_new_pack.a31Uyq/_old  2016-10-10 16:25:09.0 +0200
+++ /var/tmp/diff_new_pack.a31Uyq/_new  2016-10-10 16:25:09.0 +0200
@@ -18,15 +18,13 @@
 
 
 Name:   qjackctl
-Version:0.4.2
+Version:0.4.3
 Release:0
 Summary:Graphical User Interface to Control JACK Servers
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Sound/Utilities
 Url:http://qjackctl.sf.net
 Source: 
http://prdownloads.sourceforge.net/qjackctl/qjackctl-%{version}.tar.gz
-Patch0: qjackctl-gcc6.patch
-Patch1: qjackctl-return_tray_minimization.patch
 BuildRequires:  automake
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
@@ -60,8 +58,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%patch1 -p1
 sed -i '/^X-SuSE-translate/d' src/%{name}.desktop.in
 sed -i 's/\(Exec=\).*$/\1qjackctl/' src/%{name}.desktop.in
 sed -i '/__TIME__/d' src/qjackctlAboutForm.cpp

++ qjackctl-0.4.2.tar.gz -> qjackctl-0.4.3.tar.gz ++
 4799 lines of diff (skipped)




commit libisds for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package libisds for openSUSE:Factory checked 
in at 2016-10-10 16:25:23

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


Package is "libisds"

Changes:

--- /work/SRC/openSUSE:Factory/libisds/libisds.changes  2016-04-12 
19:39:53.0 +0200
+++ /work/SRC/openSUSE:Factory/.libisds.new/libisds.changes 2016-10-10 
16:25:54.0 +0200
@@ -1,0 +2,8 @@
+Mon Oct 10 08:27:44 UTC 2016 - jsl...@suse.com
+
+- Version bump to 0.10.5:
+  * l10n: Update translation catalogues
+  * Added a new value into isds_DbState.
+  * Fixed a bug. User identification didn't work properly.
+
+---

Old:

  libisds-0.10.3.tar.xz
  libisds-0.10.3.tar.xz.asc

New:

  libisds-0.10.5.tar.xz
  libisds-0.10.5.tar.xz.asc



Other differences:
--
++ libisds.spec ++
--- /var/tmp/diff_new_pack.noBGvg/_old  2016-10-10 16:25:56.0 +0200
+++ /var/tmp/diff_new_pack.noBGvg/_new  2016-10-10 16:25:56.0 +0200
@@ -18,7 +18,7 @@
 
 %define libname %{name}5
 Name:   libisds
-Version:0.10.3
+Version:0.10.5
 Release:0
 Summary:Library for accessing the Czech Data Boxes
 License:LGPL-3.0+

++ libisds-0.10.3.tar.xz -> libisds-0.10.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libisds-0.10.3/ChangeLog new/libisds-0.10.5/ChangeLog
--- old/libisds-0.10.3/ChangeLog2016-03-18 19:48:21.0 +0100
+++ new/libisds-0.10.5/ChangeLog2016-10-01 23:01:35.0 +0200
@@ -1,4 +1,51 @@
-commit bf9cd27c03dd0882efd5daf7708bb0ee1f01 (HEAD -> 
refs/heads/v0.10-stable)
+commit 0337dc573ac68ab28a41dc2f38dffc51f34c7eeb (HEAD -> 
refs/heads/v0.10-stable)
+Author: Petr Písař 
+Date:   Sat Oct 1 23:01:19 2016 +0200
+
+l10n: Update translation catalogues
+
+commit dabe9fc12ac7f11a466c6aac20090094d489535b
+Author: Petr Písař 
+Date:   Sat Oct 1 22:49:01 2016 +0200
+
+Increase version to 0.10.5
+
+commit a5a9c308c3514dd025fd2faf0228b92d564146f6
+Author: Karel Slany 
+Date:   Tue Sep 27 12:53:12 2016 +0200
+
+Added a new value into isds_DbState.
+
+A new data-box state 6 has been introduced. (13.4.2016, Provozni rad ISDS,
+WS_ISDS_Sprava_datovych_schranek.pdf). Because of the functional
+similarity, the name for the new state has been derived from the existing
+name for state 2.
+
+commit cc0d4844118e493b604f329264d6e7d3bd607862 (tag: refs/tags/v0.10.4, 
refs/remotes/repo.or.cz/v0.10-stable)
+Author: Petr Písař 
+Date:   Wed Jun 8 21:41:05 2016 +0200
+
+l10n: Update translation catalogues
+
+commit 521de2f82f8bfd95b2f66b70297accb21767ba4c
+Author: Petr Písař 
+Date:   Wed Jun 8 21:20:44 2016 +0200
+
+Increase version to 0.10.4
+
+commit 451707fd988a9bcdefc468d5864d0efc7ae650b7
+Author: Petr Písař 
+Date:   Wed Jun 8 21:02:29 2016 +0200
+
+test: Fix a warning about unsued arguments in the online test
+
+commit 2e1a742adbce8fd7c7ed92ff9e22a8f8a2fe02d0
+Author: Karel Slany 
+Date:   Wed Jun 8 11:45:59 2016 +0200
+
+Fixed a bug. User identification didn't work properly.
+
+commit bf9cd27c03dd0882efd5daf7708bb0ee1f01 (tag: refs/tags/v0.10.3)
 Author: Petr Písař 
 Date:   Fri Mar 18 19:47:45 2016 +0100
 
@@ -69,7 +116,7 @@
  if (state_in->stepcount >= 0)
  ^~
 
-commit 6340b771dcb8a22775086f6fccf69d40094b09c5 
(refs/remotes/repo.or.cz/v0.10-stable)
+commit 6340b771dcb8a22775086f6fccf69d40094b09c5
 Author: Petr Písař 
 Date:   Thu Jan 14 20:46:57 2016 +0100
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libisds-0.10.3/NEWS new/libisds-0.10.5/NEWS
--- old/libisds-0.10.3/NEWS 2016-03-18 18:28:27.0 +0100
+++ new/libisds-0.10.5/NEWS 2016-10-01 22:52:17.0 +0200
@@ -1,3 +1,24 @@
+Version 0.10.5
+==
+
+• This release is fully compatible with the previous one.
+
+• isds_DbState enumeration type recognizes box state 6 as
+DBSTATE_TEMP_UNACCESSIBLE_LAW. Although latest specification from 2016-04-10
+declares all web services return value 2 instead of 6, it was reported the
+value 6 was seen in the wild.
+
+Version 0.10.4
+==
+
+• This release is fully compatible with the previous one.
+
+• If a new message was sent, publishing recipient identity controlled by
+dmPublishOwnID member of the isds_envelope structure was not respected. This
+bug is fixed now.
+
+• A 

commit xautolock for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package xautolock for openSUSE:Factory 
checked in at 2016-10-10 16:25:46

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


Package is "xautolock"

Changes:

--- /work/SRC/openSUSE:Factory/xautolock/xautolock.changes  2014-11-11 
01:11:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.xautolock.new/xautolock.changes 2016-10-10 
16:25:59.0 +0200
@@ -1,0 +2,5 @@
+Mon Oct 10 10:06:32 UTC 2016 - meiss...@suse.com
+
+- xautolock-fixbuild.patch: fix build on factory, boo#1003289
+
+---

New:

  xautolock-fixbuild.patch



Other differences:
--
++ xautolock.spec ++
--- /var/tmp/diff_new_pack.OKKIJb/_old  2016-10-10 16:26:00.0 +0200
+++ /var/tmp/diff_new_pack.OKKIJb/_new  2016-10-10 16:26:00.0 +0200
@@ -23,6 +23,7 @@
 Url:http://freecode.com/projects/xautolock/
 Group:  System/X11/Utilities
 Source: 
http://www.ibiblio.org/pub/Linux/X11/screensavers/%{name}-%{version}.tgz
+Patch0: xautolock-fixbuild.patch
 Provides:   xautolck = %{version}
 Obsoletes:  xautolck <= %{version}
 BuildRequires:  imake
@@ -38,6 +39,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 xmkmf -a

++ xautolock-fixbuild.patch ++
Index: xautolock-2.2/src/engine.c
===
--- xautolock-2.2.orig/src/engine.c
+++ xautolock-2.2/src/engine.c
@@ -210,7 +210,7 @@ evaluateTriggers (Display* d)
 #else /* VMS */
   if (lockerPid)
   {
-#if !defined (UTEKV) && !defined (SYSV) && !defined (SVR4)
+#if !defined (UTEKV) && !defined (SYSV) && !defined (SVR4) && !defined(linux)
 union wait  status;  /* childs process status */
 #else /* !UTEKV && !SYSV && !SVR4 */
 int status = 0;  /* childs process status */
@@ -221,7 +221,7 @@ evaluateTriggers (Display* d)
   (void) kill (lockerPid, SIGTERM);
 }
 
-#if !defined (UTEKV) && !defined (SYSV) && !defined (SVR4)
+#if !defined (UTEKV) && !defined (SYSV) && !defined (SVR4) && !defined(linux)
 if (wait3 (, WNOHANG, 0))
 #else /* !UTEKV && !SYSV && !SVR4 */
 if (waitpid (-1, , WNOHANG)) 



commit python-ciscoconfparse for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

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

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


Package is "python-ciscoconfparse"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-ciscoconfparse/python-ciscoconfparse.changes  
2016-03-17 16:47:53.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-ciscoconfparse.new/python-ciscoconfparse.changes
 2016-10-10 16:25:52.0 +0200
@@ -1,0 +2,11 @@
+Sun Oct  9 17:25:20 UTC 2016 - mar...@gmx.de
+
+- Update to version 1.2.40
+  * Fix Github issue #44 (Could not parse 'ipv6 router ospf 6').
+  * Modify default value for access_vlan.
+  * Add new is_portchannel property.
+  * Update copyright dates.
+  * Remove OSX from test matrix
+- Fix source url
+
+---

Old:

  ciscoconfparse-1.2.39.tar.gz

New:

  ciscoconfparse-1.2.40.tar.gz



Other differences:
--
++ python-ciscoconfparse.spec ++
--- /var/tmp/diff_new_pack.L9ga3k/_old  2016-10-10 16:25:54.0 +0200
+++ /var/tmp/diff_new_pack.L9ga3k/_new  2016-10-10 16:25:54.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   python-ciscoconfparse
-Version:1.2.39
+Version:1.2.40
 Release:0
 Summary:Parse, Audit, Query, Build, and Modify Cisco IOS-style 
configurations
 License:GPL-3.0+
 Group:  Development/Languages/Python
 Url:http://www.pennington.net/py/ciscoconfparse/
-Source: 
https://pypi.python.org/packages/source/c/ciscoconfparse/ciscoconfparse-%{version}.tar.gz
+Source: 
https://pypi.io/packages/source/c/ciscoconfparse/ciscoconfparse-%{version}.tar.gz
 # PATCH-FIX-OPENSUSE skip-setuptools-hg-require.patch
 Patch0: skip-setuptools-hg-require.patch
 BuildRequires:  python-colorama
@@ -35,11 +35,7 @@
 Requires:   python-dnspython
 Requires:   python-ipaddr
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
 BuildArch:  noarch
-%endif
 
 %description
 ciscoconfparse is a Python library, which parses through Cisco IOS-style
@@ -67,6 +63,8 @@
 %files
 %defattr(-,root,root,-)
 %doc CHANGES LICENSE README.rst
-%{python_sitelib}/*
+%{python_sitelib}/ciscoconfparse
+%{python_sitelib}/version_info
+%{python_sitelib}/ciscoconfparse-%{version}-py%{py_ver}.egg-info
 
 %changelog

++ ciscoconfparse-1.2.39.tar.gz -> ciscoconfparse-1.2.40.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ciscoconfparse-1.2.39/.travis.yml 
new/ciscoconfparse-1.2.40/.travis.yml
--- old/ciscoconfparse-1.2.39/.travis.yml   2015-10-28 02:35:30.0 
+0100
+++ new/ciscoconfparse-1.2.40/.travis.yml   2016-05-01 22:11:13.0 
+0200
@@ -12,7 +12,6 @@
 
 # http://docs.travis-ci.com/user/multi-os/
 os:
- - osx
  - linux
 
 install:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ciscoconfparse-1.2.39/CHANGES 
new/ciscoconfparse-1.2.40/CHANGES
--- old/ciscoconfparse-1.2.39/CHANGES   2015-10-28 02:40:14.0 +0100
+++ new/ciscoconfparse-1.2.40/CHANGES   2016-05-01 22:11:40.0 +0200
@@ -1,3 +1,4 @@
+1.2.40  20160430 Fix Github issue #44 (Could not parse 'ipv6 router ospf 6').  
Modify default value for access_vlan.  Add new is_portchannel property.  Update 
copyright dates.  Remove OSX from test matrix
 1.2.39  20151027 Fix TravisCI breakage
 1.2.38  20151027 Integrate PR #48, which fixes github issue #47
 1.2.37  20150706 Fix Github issue #37 (sync_diff() includes double negatives)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ciscoconfparse-1.2.39/Makefile 
new/ciscoconfparse-1.2.40/Makefile
--- old/ciscoconfparse-1.2.39/Makefile  2015-10-28 02:35:30.0 +0100
+++ new/ciscoconfparse-1.2.40/Makefile  2016-04-30 20:31:06.0 +0200
@@ -52,6 +52,9 @@
pip install --upgrade pytest==2.6.4
pip install --upgrade mccabe
pip install --upgrade flake8
+   pip install --upgrade dnspython
+   pip install --upgrade colorama
+   pip install --upgrade ipaddr
 .PHONY: flake
 flake:
flake8 --ignore 
E501,E226,E225,E221,E303,E302,E265,E128,E125,E124,E41,W291 --max-complexity 10 
ciscoconfparse | less
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ciscoconfparse-1.2.39/PKG-INFO 

commit opera for openSUSE:Factory:NonFree

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package opera for openSUSE:Factory:NonFree 
checked in at 2016-10-10 16:25:53

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


Package is "opera"

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/opera/opera.changes  2016-09-25 
14:45:31.0 +0200
+++ /work/SRC/openSUSE:Factory:NonFree/.opera.new/opera.changes 2016-10-10 
16:26:11.0 +0200
@@ -1,0 +2,14 @@
+Fri Oct  7 17:14:39 UTC 2016 - kiel...@gmail.com
+
+- Update to 40.0.2308.81:
+  * Whitelist some AV software certificates
+  * Backspace in URL field navigates back in history
+  * Opera 39 fails to import firefox bookmarks.
+  * Broken tab bar and crash on dragging a tab while it loads
+  * [Settings] Checkbox aligned to top of text
+  * Transparent UI items in case DWM Accent Color key missing
+  * ‘Show system color on top bar’ shouldn’t be visible if 
+accent color cannot be determined.
+  * Remove VPN ‘Coming soon’ – WP2
+
+---

Old:

  opera-stable_40.0.2308.62_amd64.deb
  opera-stable_40.0.2308.62_i386.deb

New:

  opera-stable_40.0.2308.81_amd64.deb
  opera-stable_40.0.2308.81_i386.deb



Other differences:
--
++ opera.spec ++
--- /var/tmp/diff_new_pack.pUGKYF/_old  2016-10-10 16:26:20.0 +0200
+++ /var/tmp/diff_new_pack.pUGKYF/_new  2016-10-10 16:26:20.0 +0200
@@ -27,7 +27,7 @@
 %define alt_deb_arch amd64
 %endif
 Name:   opera
-Version:40.0.2308.62
+Version:40.0.2308.81
 Release:0
 Summary:Proprietary web browser
 License:SUSE-NonFree




commit datovka for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package datovka for openSUSE:Factory checked 
in at 2016-10-10 16:25:38

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


Package is "datovka"

Changes:

--- /work/SRC/openSUSE:Factory/datovka/datovka.changes  2016-05-16 
12:04:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.datovka.new/datovka.changes 2016-10-10 
16:25:56.0 +0200
@@ -1,0 +2,13 @@
+Mon Oct 10 08:22:08 UTC 2016 - jsl...@suse.com
+
+- Version update to 4.6.1:
+  * Message envelope can be exported to a PDF file along with other message
+attachments.
+  * Fixed issue when the sending of a new message lasted too long. In such case
+the application could occasionally crash.
+  * Patched bundled libisds to fix wrong sender identification. This fix
+affects only Windows and OS X users. Linux users should update to latest
+libisds version (0.10.4).
+  * Fixed version string shown in notification dialogue.
+
+---

Old:

  datovka-4.6.0-src.tar.xz

New:

  datovka-4.6.1-src.tar.xz



Other differences:
--
++ datovka.spec ++
--- /var/tmp/diff_new_pack.S0dW9A/_old  2016-10-10 16:25:58.0 +0200
+++ /var/tmp/diff_new_pack.S0dW9A/_new  2016-10-10 16:25:58.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   datovka
-Version:4.6.0
+Version:4.6.1
 Release:0
 Summary:Library to access Czech eGov system \"Datove schranky\"
 License:LGPL-2.0+

++ datovka-4.6.0-src.tar.xz -> datovka-4.6.1-src.tar.xz ++
 8431 lines of diff (skipped)




commit hawk2 for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package hawk2 for openSUSE:Factory checked 
in at 2016-10-10 16:25:14

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  2016-09-14 
23:34:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.hawk2.new/hawk2.changes 2016-10-10 
16:25:44.0 +0200
@@ -1,0 +2,20 @@
+Mon Oct 10 07:19:30 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.0.0+git.1476083916.a1e9463:
+  * Allow use of spring 2.0.0
+
+---
+Tue Oct 04 12:29:38 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.0.0+git.1475584027.541506e:
+  * Add preference to disable STONITH warning
+  * Support for configuring event-based alerts (fate#321118)
+  * Increase size of eventcontrol markers (bsc#1001357)
+  * Fix crash when redirecting after editing missing object for tags and 
templates
+  * Fix crash when creating alert with recipients (fate#321118)
+  * Fix incorrect paths in systemd script
+  * Install sysconfig script for hawk
+  * Don't try to start hawk via bundle unless gems are bundled
+  * Set verify_mode: none to workaround puma bug in 3.6.0
+
+---

Old:

  hawk2-2.0.0+git.1471356649.a5ecac4.tar.bz2

New:

  hawk2-2.0.0+git.1476083916.a1e9463.tar.bz2



Other differences:
--
++ hawk2.spec ++
--- /var/tmp/diff_new_pack.CuD2ZI/_old  2016-10-10 16:25:51.0 +0200
+++ /var/tmp/diff_new_pack.CuD2ZI/_new  2016-10-10 16:25:51.0 +0200
@@ -33,13 +33,13 @@
 %definegname   haclient
 %defineuname   hacluster
 
-%define version_unconverted 2.0.0+git.1471356649.a5ecac4
+%define version_unconverted 2.0.0+git.1476083916.a1e9463
 
 Name:   hawk2
 Summary:HA Web Konsole
 License:GPL-2.0
 Group:  %{pkg_group}
-Version:2.0.0+git.1471356649.a5ecac4
+Version:2.0.0+git.1476083916.a1e9463
 Release:0
 Url:http://www.clusterlabs.org/wiki/Hawk
 Source: %{name}-%{version}.tar.bz2
@@ -51,6 +51,7 @@
 Requires:   crmsh >= 2.2.0+git.1464237560
 Requires:   graphviz
 Requires:   graphviz-gd
+Requires(post): %fillup_prereq
 # Need a font of some kind for graphviz to work correctly (bsc#931950)
 Requires:   dejavu
 Requires:   pacemaker >= 1.1.8
@@ -93,7 +94,7 @@
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:sass) >= 3.4
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:sass-rails) >= 5.0.1
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:sexp_processor) >= 4.5.1
-BuildRequires:  rubygem(%{rb_default_ruby_abi}:spring:1) >= 1.3
+BuildRequires:  rubygem(%{rb_default_ruby_abi}:spring) >= 1.3
 BuildRequires:  rubygem(%{rb_default_ruby_abi}:virtus)
 
 %if 0%{?suse_version} <= 1310
@@ -197,6 +198,7 @@
 %endif
 
 install -p -d -m 755 %{buildroot}%{_sysconfdir}/hawk
+install -D -m 0644 -T rpm/sysconfig.hawk 
%{buildroot}%{_localstatedir}/adm/fillup-templates/sysconfig.hawk
 
 %clean
 rm -rf %{buildroot}
@@ -218,6 +220,7 @@
 %set_permissions %{_sbindir}/hawk_chkpwd
 %set_permissions %{_sbindir}/hawk_invoke
 %service_add_post hawk.service
+%{fillup_only -n hawk}
 
 %preun
 %service_del_preun hawk.service
@@ -233,6 +236,7 @@
 
 %files -f hawk.lang
 %defattr(644,root,root,755)
+%{_localstatedir}/adm/fillup-templates/sysconfig.hawk
 %attr(4750, root, %{gname})%{_sbindir}/hawk_chkpwd
 %attr(4750, root, %{gname})%{_sbindir}/hawk_invoke
 %attr(0755, root, root) %{_sbindir}/hawk_monitor

++ _service ++
--- /var/tmp/diff_new_pack.CuD2ZI/_old  2016-10-10 16:25:51.0 +0200
+++ /var/tmp/diff_new_pack.CuD2ZI/_new  2016-10-10 16:25:51.0 +0200
@@ -5,7 +5,7 @@
 .git
 hawk2
 2.0.0+git.%ct.%h
-master
+hawk-2
 enable
   
 

++ _servicedata ++
--- /var/tmp/diff_new_pack.CuD2ZI/_old  2016-10-10 16:25:51.0 +0200
+++ /var/tmp/diff_new_pack.CuD2ZI/_new  2016-10-10 16:25:51.0 +0200
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/hawk.git
-  a5ecac42ea9ff6c0273db4b5dfb245e57ad46fc8
\ No newline at end of file
+  a1e94635283727bc3ecad3478aa0a49b089d4610
\ No newline at end of file

++ hawk2-2.0.0+git.1471356649.a5ecac4.tar.bz2 -> 
hawk2-2.0.0+git.1476083916.a1e9463.tar.bz2 ++
/work/SRC/openSUSE:Factory/hawk2/hawk2-2.0.0+git.1471356649.a5ecac4.tar.bz2 
/work/SRC/openSUSE:Factory/.hawk2.new/hawk2-2.0.0+git.1476083916.a1e9463.tar.bz2
 differ: char 11, line 1




commit nitroshare for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

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

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


Package is "nitroshare"

Changes:

--- /work/SRC/openSUSE:Factory/nitroshare/nitroshare.changes2016-08-11 
18:53:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.nitroshare.new/nitroshare.changes   
2016-10-10 16:25:18.0 +0200
@@ -1,0 +2,5 @@
+Sat Oct  8 19:13:17 UTC 2016 - sor.ale...@meowr.ru
+
+- Remove the appindicator dependency: causes problems.
+
+---



Other differences:
--
++ nitroshare.spec ++
--- /var/tmp/diff_new_pack.Xyyqcm/_old  2016-10-10 16:25:23.0 +0200
+++ /var/tmp/diff_new_pack.Xyyqcm/_new  2016-10-10 16:25:23.0 +0200
@@ -40,9 +40,6 @@
 BuildRequires:  pkgconfig(Qt5Network) >= 5.1
 BuildRequires:  pkgconfig(Qt5Svg) >= 5.1
 BuildRequires:  pkgconfig(Qt5Widgets) >= 5.1
-BuildRequires:  pkgconfig(appindicator-0.1)
-BuildRequires:  pkgconfig(gtk+-2.0)
-BuildRequires:  pkgconfig(libnotify)
 
 %description
 A cross-platform network file transfer application designed to make
@@ -103,7 +100,7 @@
 
 %build
 %cmake
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 %cmake_install





commit patchinfo.5675 for openSUSE:13.2:Update

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.5675 for 
openSUSE:13.2:Update checked in at 2016-10-10 08:05:13

Comparing /work/SRC/openSUSE:13.2:Update/patchinfo.5675 (Old)
 and  /work/SRC/openSUSE:13.2:Update/.patchinfo.5675.new (New)


Package is "patchinfo.5675"

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++

  XRevan86
  A bug in cairo causes a crash in 
libwnck3
  recommended
  moderate
  Recommended update for cairo
  This recommended update for cairo fixes the following issues: 

- boo#997189: crash in cairo related to libwnck3 and faulty icons (fdo#91967)





commit cairo for openSUSE:13.2:Update

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package cairo for openSUSE:13.2:Update 
checked in at 2016-10-10 08:04:26

Comparing /work/SRC/openSUSE:13.2:Update/cairo (Old)
 and  /work/SRC/openSUSE:13.2:Update/.cairo.new (New)


Package is "cairo"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.IctDZS/_old  2016-10-10 08:04:28.0 +0200
+++ /var/tmp/diff_new_pack.IctDZS/_new  2016-10-10 08:04:28.0 +0200
@@ -1 +1 @@
-
+




commit MozillaThunderbird.5690 for openSUSE:13.2:Update

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package MozillaThunderbird.5690 for 
openSUSE:13.2:Update checked in at 2016-10-10 15:48:18

Comparing /work/SRC/openSUSE:13.2:Update/MozillaThunderbird.5690 (Old)
 and  /work/SRC/openSUSE:13.2:Update/.MozillaThunderbird.5690.new (New)


Package is "MozillaThunderbird.5690"

Changes:

New Changes file:

--- /dev/null   2016-09-15 12:42:18.240042505 +0200
+++ 
/work/SRC/openSUSE:13.2:Update/.MozillaThunderbird.5690.new/MozillaThunderbird.changes
  2016-10-10 15:48:18.0 +0200
@@ -0,0 +1,2628 @@
+---
+Sat Oct  1 07:12:08 UTC 2016 - w...@rosenauer.org
+
+- update to Thunderbird 45.4.0 (boo#999701)
+  * Display name was truncated if no separating space before email
+address.
+  * Recipient addresses were shown in wrong color in some circumstances.
+  * Additional spaces were inserted when drafts were edited.
+  * Mail saved as template copied In-Reply-To and References from
+original email.
+  * Threading broken when editing message draft, due to loss of Message-ID
+  * "Apply columns to..." did not honor special folders
+
+---
+Tue Aug 30 06:55:14 UTC 2016 - w...@rosenauer.org
+
+- update to Thunderbird 45.3.0 (boo#991809)
+  * Disposition-Notification-To could not be used in
+mail.compose.other.header
+  * "edit as new message" on a received message pre-filled the sender
+as the composing identity.
+  * Certain messages caused corruption of the drafts summary database.
+  security fixes:
+  * MFSA 2016-62/CVE-2016-2836
+Miscellaneous memory safety hazards
+  * MFSA 2016-63/CVE-2016-2830 (bmo#1255270)
+Favicon network connection can persist when page is closed
+  * MFSA 2016-64/CVE-2016-2838 (bmo#1279814)
+Buffer overflow rendering SVG with bidirectional content
+  * MFSA 2016-65/CVE-2016-2839 (bmo#1275339)
+Cairo rendering crash due to memory allocation issue with FFmpeg 0.10
+  * MFSA 2016-67/CVE-2016-5252 (bmo#1268854)
+Stack underflow during 2D graphics rendering
+  * MFSA 2016-70/CVE-2016-5254 (bmo#1266963)
+Use-after-free when using alt key and toplevel menus
+  * MFSA 2016-72/CVE-2016-5258 (bmo#1279146)
+Use-after-free in DTLS during WebRTC session shutdown
+  * MFSA 2016-73/CVE-2016-5259 (bmo#1282992)
+Use-after-free in service workers with nested sync events
+  * MFSA 2016-76/CVE-2016-5262 (bmo#1277475)
+Scripts on marquee tag can execute in sandboxed iframes
+  * MFSA 2016-77/CVE-2016-2837 (bmo#1274637)
+Buffer overflow in ClearKey Content Decryption Module (CDM)
+during video playback
+  * MFSA 2016-78/CVE-2016-5263 (bmo#1276897)
+Type confusion in display transformation
+  * MFSA 2016-79/CVE-2016-5264 (bmo#1286183)
+Use-after-free when applying SVG effects
+  * MFSA 2016-80/CVE-2016-5265 (bmo#1278013)
+Same-origin policy violation using local HTML file and saved shortcut file
+
+---
+Fri Aug  5 13:47:12 UTC 2016 - pce...@suse.com
+
+- Fix for possible buffer overrun (bsc#990856)
+  CVE-2016-6354 (bmo#1292534)
+  [mozilla-flex_buffer_overrun.patch]
+
+---
+Thu Jul 21 11:50:27 UTC 2016 - mailaen...@opensuse.org
+
+- add a screenshot to appdata.xml
+
+---
+Thu Jun 30 09:18:14 UTC 2016 - w...@rosenauer.org
+
+- update to Thunderbird 45.2 (boo#983549)
+  Security fixes:
+  * CVE-2016-2818, CVE-2016-2815: Memory safety bugs (MFSA2016-49)
+- drop mozilla-flexible-array-member-in-union.patch, upstream
+
+---
+Fri Jun 24 14:10:58 UTC 2016 - w...@rosenauer.org
+
+- mozilla-binutils-visibility.patch to fix build issues with
+  gcc/binutils combination used in Leap 42.2 (boo#984637)
+
+---
+Thu Jun 23 10:15:51 UTC 2016 - w...@rosenauer.org
+
+- build with -fno-delete-null-pointer-checks for Tumbleweed/gcc6
+  as long as underlying issues have been addressed upstream
+  (boo#986162)
+
+---
+Mon Jun 13 20:28:01 UTC 2016 - ag...@suse.com
+
+- Fix running on 48bit va aarch64 (bsc#984126)
+  - Add patch mozilla-aarch64-48bit-va.patch
+
+---
+Fri May 27 12:51:23 UTC 2016 - w...@rosenauer.org
+
+- update to Thunderbird 45.1.1
+  * When entering members into a mailing list, the enter key
+dismissed the panel instead of just moving onto the next line
+  * Email without HTML elements was sent as HTML, despite
+"Delivery Format: Auto-detect" option
+  * 

commit patchinfo.5690 for openSUSE:13.2:Update

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.5690 for 
openSUSE:13.2:Update checked in at 2016-10-10 15:48:45

Comparing /work/SRC/openSUSE:13.2:Update/patchinfo.5690 (Old)
 and  /work/SRC/openSUSE:13.2:Update/.patchinfo.5690.new (New)


Package is "patchinfo.5690"

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++

  wrosenauer
  VUL-0: MozillaFirefox 49 / 45.4 security 
release "MFSA 2016-85" and "MFSA 2016-86"
  security
  moderate
  Security update for MozillaThunderbird
  This update for Mozilla Thunderbird to version 45.4.0 fixes the 
following issues:

- When using Thunderbird in a browser like context, for rendering HTML e-mail 
or feeds,
  it may be affected by vulnerabilities also fixed in Firefox ESR 45.4. (MFSA 
2016-86, boo#999701)

The following bugs were fixed in this release:

- Display name was truncated if no separating space before email address
- Recipient addresses were shown in wrong color in some circumstances
- Additional spaces were inserted when drafts were edited.
- Mail saved as template copied In-Reply-To and References from original email.
- Threading broken when editing message draft, due to loss of Message-ID
- "Apply columns to..." did not honor special folders





commit MozillaThunderbird for openSUSE:13.2:Update

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package MozillaThunderbird for 
openSUSE:13.2:Update checked in at 2016-10-10 15:48:30

Comparing /work/SRC/openSUSE:13.2:Update/MozillaThunderbird (Old)
 and  /work/SRC/openSUSE:13.2:Update/.MozillaThunderbird.new (New)


Package is "MozillaThunderbird"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.fdVgIf/_old  2016-10-10 15:48:31.0 +0200
+++ /var/tmp/diff_new_pack.fdVgIf/_new  2016-10-10 15:48:31.0 +0200
@@ -1 +1 @@
-
+




commit timezone for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package timezone for openSUSE:Factory 
checked in at 2016-10-10 17:26:07

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


Package is "timezone"

Changes:

--- /work/SRC/openSUSE:Factory/timezone/timezone-java.changes   2016-10-06 
14:32:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.timezone.new/timezone-java.changes  
2016-10-10 17:26:09.0 +0200
@@ -1,0 +2,35 @@
+Thu Oct  6 19:14:45 UTC 2016 - astie...@suse.com
+
+- timezone update 2016g:
+  * Turkey will remain on UTC+03 after 2016-10-30 bsc#997830
+  * New leap second 2016-12-31 23:59:60 UTC 
+Remove 0001-Positive-leap-second-on-2016-12-31.patch
+  * Corrections for past DST transitions
+  * Antarcica and nautical time zones now use numeric time zone
+abbreviations instead of obsolete alphanumeric ones
+  * Renamed Asia/Rangoon to Asia/Yangon
+  * The following change was previously patched in the package
+and is now upstream:
++ If the installed localtime and/or posixrules files are
+  symbolic links, zic now keeps them symbolic links when
+  updating them, for compatibility with platforms like
+  openSUSE where other programs configure these files as
+  symlinks.
++ zic now avoids hard linking to symbolic links, avoids
+  some unnecessary mkdir and stat system calls, and uses
+  shorter file names internally.
++ Drop the patches:
+  tzcode-link.diff
+  tzcode-revert-01-8c9cb9580.patch
+  tzcode-revert-02-301f794f3.patch
+  tzcode-revert-03-39fd078a6.patch
+  tzcode-symlink.patch
+  tzcode-zic.diff
+  tzcode-fromname.patch
++ Upstream changes did not account for TZDEFAULT being an
+  absolute path. Prevent broken symlinks (bsc#1003324),
+  add timezone-2016g-absolute-TZDEFAULT.patch
+  * zdump has a new -i option to generate transitions in a
+more-compact but still human-readable format. (experimental)
+
+---
timezone.changes: same change

Old:

  0001-Positive-leap-second-on-2016-12-31.patch
  tzcode-fromname.patch
  tzcode-link.diff
  tzcode-revert-01-8c9cb9580.patch
  tzcode-revert-02-301f794f3.patch
  tzcode-revert-03-39fd078a6.patch
  tzcode-symlink.patch
  tzcode-zic.diff
  tzcode2016f.tar.gz
  tzcode2016f.tar.gz.asc
  tzdata2016f.tar.gz
  tzdata2016f.tar.gz.asc

New:

  timezone-2016g-absolute-TZDEFAULT.patch
  timezone-java.keyring
  tzcode2016g.tar.gz
  tzcode2016g.tar.gz.asc
  tzdata2016g.tar.gz
  tzdata2016g.tar.gz.asc



Other differences:
--
++ timezone-java.spec ++
--- /var/tmp/diff_new_pack.KE5dkR/_old  2016-10-10 17:26:10.0 +0200
+++ /var/tmp/diff_new_pack.KE5dkR/_new  2016-10-10 17:26:10.0 +0200
@@ -25,26 +25,17 @@
 Group:  System/Base
 # COMMON-BEGIN
 # COMMON-BEGIN
-Version:2016f
+Version:2016g
 Release:0
-Source: ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz
-Source1:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz
-Source2:ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz.asc
-Source3:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz.asc
-# http://sks.mrball.net/pks/lookup?op=get=0xED97E90E62AA7E34
-Source4:timezone.keyring
-Patch100:   tzcode-revert-01-8c9cb9580.patch
-Patch101:   tzcode-revert-02-301f794f3.patch
-Patch102:   tzcode-revert-03-39fd078a6.patch
+Source: 
https://www.iana.org/time-zones/repository/releases/tzdata%{version}.tar.gz
+Source1:
https://www.iana.org/time-zones/repository/releases/tzcode%{version}.tar.gz
+Source2:
https://www.iana.org/time-zones/repository/releases/tzdata%{version}.tar.gz.asc
+Source3:
https://www.iana.org/time-zones/repository/releases/tzcode%{version}.tar.gz.asc
+Source4:%{name}.keyring
+Source5:%{name}.changes
 Patch0: tzdata-china.diff
-Patch1: tzcode-zic.diff
-# PATCH-FIX-OPENSUSE bnc#845530
-Patch2: tzcode-fromname.patch
 Patch3: iso3166-uk.diff
-Patch4: tzcode-link.diff
-Patch5: tzcode-symlink.patch
-# PATCH-FIX-UPSTREAM 0001-Positive-leap-second-on-2016-12-31.patch bsc#988184
-Patch6: 0001-Positive-leap-second-on-2016-12-31.patch
+Patch4: timezone-2016g-absolute-TZDEFAULT.patch
 # COMMON-END
 # COMMON-END
 Url:http://www.gnu.org/software/libc/libc.html
@@ -64,19 +55,9 @@
 %setup -c  -a 1
 # COMMON-PREP-BEGIN
 # COMMON-PREP-BEGIN
-%patch100 -p1 -R
-%patch101 -p1 -R
-%patch102 -p1 -R
 %patch0 -p1
-%patch1 -p1
-%patch2 -p1
 %patch3 -p1
-%if 0%{?suse_version} < 1220
 %patch4 -p1
-%else
-%patch5 -p1
-%endif

commit llvm for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package llvm for openSUSE:Factory checked in 
at 2016-10-10 17:26:35

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


Package is "llvm"

Changes:

--- /work/SRC/openSUSE:Factory/llvm/llvm.changes2016-09-16 
10:59:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.llvm.new/llvm.changes   2016-10-10 
17:26:36.0 +0200
@@ -1,0 +2,32 @@
+Thu Oct  6 07:05:41 UTC 2016 - idon...@suse.com
+
+- Remove unneeded emacs-nox dependency. 
+
+---
+Wed Oct  5 08:14:31 UTC 2016 - idon...@suse.com
+
+- BuildIgnore emacs and vim to avoid cycles. 
+
+---
+Fri Sep  9 18:26:41 UTC 2016 - toddrme2...@gmail.com
+
+- Split out llvm and lldb into a version-specific package.
+- Turn this package into a wrapper around the version-specific
+  packages.
+- Remove patches:
+   * default-to-i586.patch
+   * assume-opensuse.patch
+   * glibc-2.23-libcxx.patch
+   * arm_suse_support.diff
+   * llvm-remove-clang-only-flags.patch
+   * clang-resourcedirs.patch
+   * lldb-add-pthread-dl-libs.patch
+   * llvm-nonvoid-return.patch
+   * glibc-2.24-libcxx.patch
+   * revert-cmake-soname.patch
+   * set-revision.patch
+   * lldb-cmake.patch
+   * D15067.id41365.diff
+   * llvm-fix-find-gcc5-install.patch
+
+---

Old:

  D15067.id41365.diff
  _constraints
  arm_suse_support.diff
  assume-opensuse.patch
  cfe-3.8.1.src.tar.xz
  cfe-docs-3.8.1.src.tar.xz
  clang-resourcedirs.patch
  clang-tools-extra-3.8.1.src.tar.xz
  compiler-rt-3.8.1.src.tar.xz
  default-to-i586.patch
  glibc-2.23-libcxx.patch
  glibc-2.24-libcxx.patch
  libcxx-3.8.1.src.tar.xz
  libcxxabi-3.8.1.src.tar.xz
  lldb-3.8.1.src.tar.xz
  lldb-add-pthread-dl-libs.patch
  lldb-cmake.patch
  lldb.changes
  lldb.spec
  llvm-3.8.1.src.tar.xz
  llvm-docs-3.8.1.src.tar.xz
  llvm-fix-find-gcc5-install.patch
  llvm-nonvoid-return.patch
  llvm-remove-clang-only-flags.patch
  llvm-rpmlintrc
  openmp-3.8.1.src.tar.xz
  revert-cmake-soname.patch
  set-revision.patch

New:

  README.packaging



Other differences:
--
++ llvm.spec ++
 829 lines (skipped)
 between /work/SRC/openSUSE:Factory/llvm/llvm.spec
 and /work/SRC/openSUSE:Factory/.llvm.new/llvm.spec

++ README.packaging ++

OVERVIEW

This package is a dummy package that always depends on the
version of corresponding LLVM packages that openSUSE
currently supports.  This file documents the procedure for
updating the various LLVM components.

There are three major update scenarios that will be addressed
here, patch-level updates to the current LLVM version,
patch-level updates to older LLVM versions, and major/minor
version updates.

LLVM version numbers come in three levels.  For version
X.Y.Z, changes to the X level are major updates, changes to
the Y level are minor updates, and changes to the Z level
are patch-level updates.  Library .so numbers are based on
the major and minor version, for example libllvm.so.X.Y.
Patch-level updates do not update the version number of
libraries.  For this reason, only changes to major and minor
version numbers get a new llvm package.

There are up to three packages that need to be handled in a
given update.  This package, the base "llvm" package, the
current "llvmX_Y" package (X and Y are the major and minor
version numbers, respectively), and the next "llvmX_Y"
package if the major or minor version has been changed.

NOTE: This package should always have the same "License"
tag as the currently-supported version of the llvmX_Y 
package.

===
PATCH-LEVEL UPDATES TO CURRENT LLVM VERSION

For patch level updates, this package (llvm) and the current
llvmX_Y package need to be updated.

1. llvmX_Y package:
   1. Add the new sources to the package and delete the old
  ones
   2. Update the "Version" tag in llvmX_Y.spec and
  lldbX_Y.spec to match the new sources.
   3. Update the "_revsn" tag in  llvmX_Y.spec and
  lldbX_Y.spec to match the revision number of the 
  tag.  This can be found on
  http://lists.llvm.org/pipermail/llvm-branch-commits
  and should have like "[llvm-tag]" and 
  "Creating release candidate final" in the subject
  line.  You want to find the one for the current LLVM
  release.
   4. Update the "_relver" tag in llvmX_Y.spec to match
  the "Version" tag.
   5. Confirm everything builds successfully and there are
  no new rpmlint issues.
2. llvm package:
   1. Update the "Version" tag to match the new llvmX_Y
  version.

commit yast2-theme for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package yast2-theme for openSUSE:Factory 
checked in at 2016-10-10 17:27:23

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.changes  2016-07-16 
22:12:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-theme.new/yast2-theme.changes 
2016-10-10 17:27:24.0 +0200
@@ -1,0 +2,16 @@
+Tue Oct  4 13:38:27 UTC 2016 - jreidin...@suse.com
+
+- unify back -SLE subpackage to main yast2-theme. This is done by
+  separated build results on opensuse and SLE ( as there is
+  colliding files, like icewm configuration ). (bsc#996498)
+- 3.1.42
+
+---
+Wed Aug 17 07:03:35 UTC 2016 - lsle...@suse.cz
+
+- Added back the style and assets for the left pane global
+  progress, it is still used by the firstboot module (bsc#963034)
+  [by Fabian Vogt]
+- 3.1.41
+
+---
@@ -3,0 +20,2 @@
+- Fixed a typo in an image name in installation.qss
+- Added missing separator.png
@@ -6,0 +25,46 @@
+
+---
+Fri Jun 17 09:08:44 UTC 2016 - lsle...@suse.cz
+
+- Add a style for disabled menu items, gray them out
+  (bsc#983919) [by mvidner]
+- 3.1.39
+
+---
+Thu Feb 25 13:55:27 UTC 2016 - lsle...@suse.cz
+
+- Hide the window title during installation (workaround: set the
+  same foreground and background colors) (bsc#965086)
+- 3.1.38
+
+---
+Wed Feb 10 13:12:22 UTC 2016 - c...@suse.com
+
+- Fix spelling of SUSE Linux. (bsc#964241)
+- 3.1.37
+
+---
+Thu Jan 28 17:06:29 UTC 2016 - alarr...@suse.com
+
+- add yast-modem icon which is needed by the Communication package group
+  in the Yast2's software manager (bnc#953027)
+- 3.1.36
+
+---
+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 18 10:17:54 UTC 2015 - si...@simotek.net
+
+- apps/pattern-e17.png -> apps/pattern-enlightenment.png due to 
+  pattern rename
+
+---
+Fri Sep 18 10:10:54 UTC 2015 - lsle...@suse.cz
+
+- use a bigger font for the main dialog title (bsc#930864)
+- 3.1.34

Old:

  yast2-theme-3.1.40.tar.bz2
  yast2-theme-SLE.changes
  yast2-theme-SLE.spec

New:

  yast2-theme-3.1.42.tar.bz2



Other differences:
--
++ yast2-theme.spec ++
--- /var/tmp/diff_new_pack.o2Q4GH/_old  2016-10-10 17:27:26.0 +0200
+++ /var/tmp/diff_new_pack.o2Q4GH/_new  2016-10-10 17:27:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-theme
-Version:3.1.40
+Version:3.1.42
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -28,15 +28,19 @@
 BuildRequires:  pkg-config
 BuildRequires:  update-desktop-files
 BuildRequires:  yast2-devtools >= 3.1.10
+%if 0%{?is_opensuse}
 BuildRequires:  yast2-qt-branding-openSUSE
+%endif
 BuildArch:  noarch
 Summary:YaST2 - Theme
 License:GPL-2.0
 Group:  System/YaST
+Url:http://github.com/yast/yast-theme
 
 %description
 Contains the SUSE Linux theme for YaST2.
 
+%if 0%{?is_opensuse}
 %package -n yast2-branding-openSUSE
 Summary:YaST2 - Theme (openSUSE)
 Group:  System/YaST
@@ -56,6 +60,22 @@
 %description -n yast2-branding-openSUSE
 This package contains the openSUSE theme for YaST2.
 
+%else
+%package SLE
+Summary:YaST2 - SLE Theme
+Group:  System/YaST
+Provides:   yast2-theme-NLD = 0.4.6
+Provides:   yast2_theme = %{version}
+Obsoletes:  yast2-theme-NLD <= 0.4.5
+Conflicts:  yast2-theme-openSUSE
+Conflicts:  yast2-theme-openSUSE-any
+PreReq: /bin/ln
+
+%description SLE
+This package contains the YaST2 theme for the SUSE Linux Enterprise
+Family.
+%endif
+
 %prep
 %setup -n %{name}-%{version}
 
@@ -65,6 +85,7 @@
 %install
 %yast_install
 
+%if 0%{?is_opensuse}
 rm -rf $RPM_BUILD_ROOT/%{yast_themedir}/SLE
 mv $RPM_BUILD_ROOT%{yast_themedir}/openSUSE 
$RPM_BUILD_ROOT%{yast_themedir}/current
 
@@ -77,11 +98,188 @@
 
 cp -R "$RPM_BUILD_ROOT/%{yast_docdir}" 
"$RPM_BUILD_ROOT/%{yast_docdir}-openSUSE"
 rm -rf "$RPM_BUILD_ROOT/%{yast_docdir}"
-# 

commit perl-Sub-Name for openSUSE:Factory

2016-10-10 Thread h_root
Hello community,

here is the log from the commit of package perl-Sub-Name for openSUSE:Factory 
checked in at 2016-10-10 17:27:38

Comparing /work/SRC/openSUSE:Factory/perl-Sub-Name (Old)
 and  /work/SRC/openSUSE:Factory/.perl-Sub-Name.new (New)


Package is "perl-Sub-Name"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Sub-Name/perl-Sub-Name.changes  
2016-08-22 10:50:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Sub-Name.new/perl-Sub-Name.changes 
2016-10-10 17:27:39.0 +0200
@@ -1,0 +2,14 @@
+Mon Oct  3 06:14:45 UTC 2016 - co...@suse.com
+
+- updated to 0.21
+   see /usr/share/doc/packages/perl-Sub-Name/Changes
+
+  0.21  2016-10-02 05:00:12Z
+  - no change since 0.20
+  
+  0.20  2016-09-11 00:33:10Z (TRIAL RELEASE)
+  - fix occasional segmentation fault on OpenBSD when malloc randomization
+causes nameptr to be at the beginning of the page (RT#117072, Alexander
+Bluhm)
+
+---

Old:

  Sub-Name-0.19.tar.gz

New:

  Sub-Name-0.21.tar.gz



Other differences:
--
++ perl-Sub-Name.spec ++
--- /var/tmp/diff_new_pack.g7ZB3F/_old  2016-10-10 17:27:40.0 +0200
+++ /var/tmp/diff_new_pack.g7ZB3F/_new  2016-10-10 17:27:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Sub-Name
-Version:0.19
+Version:0.21
 Release:0
 %define cpan_name Sub-Name
 Summary:(Re)name a sub
@@ -29,7 +29,6 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Module::Metadata)
 BuildRequires:  perl(Test::More) >= 0.88
 %{perl_requires}
 # MANUAL BEGIN

++ Sub-Name-0.19.tar.gz -> Sub-Name-0.21.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sub-Name-0.19/CONTRIBUTING 
new/Sub-Name-0.21/CONTRIBUTING
--- old/Sub-Name-0.19/CONTRIBUTING  2016-08-18 20:52:37.0 +0200
+++ new/Sub-Name-0.21/CONTRIBUTING  2016-10-02 07:00:17.0 +0200
@@ -99,4 +99,4 @@
 
 
 This file was generated via Dist::Zilla::Plugin::GenerateFile::FromShareDir 
0.012 from a
-template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.118.
+template file originating in Dist-Zilla-PluginBundle-Author-ETHER-0.120.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sub-Name-0.19/Changes new/Sub-Name-0.21/Changes
--- old/Sub-Name-0.19/Changes   2016-08-18 20:52:37.0 +0200
+++ new/Sub-Name-0.21/Changes   2016-10-02 07:00:17.0 +0200
@@ -1,5 +1,13 @@
 Revision history for Sub-Name
 
+0.21  2016-10-02 05:00:12Z
+- no change since 0.20
+
+0.20  2016-09-11 00:33:10Z (TRIAL RELEASE)
+- fix occasional segmentation fault on OpenBSD when malloc randomization
+  causes nameptr to be at the beginning of the page (RT#117072, Alexander
+  Bluhm)
+
 0.19  2016-08-18 18:52:33Z
 - fix checking of SvUTF8 flag
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Sub-Name-0.19/META.json new/Sub-Name-0.21/META.json
--- old/Sub-Name-0.19/META.json 2016-08-18 20:52:37.0 +0200
+++ new/Sub-Name-0.21/META.json 2016-10-02 07:00:17.0 +0200
@@ -40,7 +40,7 @@
   },
   "develop" : {
  "recommends" : {
-"Dist::Zilla::PluginBundle::Author::ETHER" : "0.118"
+"Dist::Zilla::PluginBundle::Author::ETHER" : "0.120"
  },
  "requires" : {
 "Devel::PPPort" : "3.33",
@@ -96,7 +96,7 @@
 "Dist::Zilla::Plugin::Readme" : "0",
 "Dist::Zilla::Plugin::ReadmeAnyFromPod" : "0.142180",
 "Dist::Zilla::Plugin::RewriteVersion::Transitional" : "0.004",
-"Dist::Zilla::Plugin::Run::AfterBuild" : "0.038",
+"Dist::Zilla::Plugin::Run::AfterBuild" : "0.041",
 "Dist::Zilla::Plugin::Run::AfterRelease" : "0.038",
 "Dist::Zilla::Plugin::RunExtraTests" : "0.024",
 "Dist::Zilla::Plugin::StaticInstall" : "0.005",
@@ -115,7 +115,7 @@
 "Dist::Zilla::Plugin::Test::ReportPrereqs" : "0.022",
 "Dist::Zilla::Plugin::TestRelease" : "0",
 "Dist::Zilla::Plugin::UploadToCPAN" : "0",
-"Dist::Zilla::PluginBundle::Author::ETHER" : "0.095",
+"Dist::Zilla::PluginBundle::Author::ETHER" : "0.119",
 "File::Spec" : "0",
 "IO::Handle" : "0",
 "IPC::Open3" : "0",
@@ -156,8 +156,8 @@
 "B" : "0",
 "B::Deparse" : "0",
 "Carp" : "0",
+"ExtUtils::MakeMaker" : "0",
 "File::Spec" : "0",
-"Module::Metadata" : "0",

  1   2   >