commit libqt5-qtwebengine for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package libqt5-qtwebengine for 
openSUSE:Factory checked in at 2016-10-31 11:08:30

Comparing /work/SRC/openSUSE:Factory/libqt5-qtwebengine (Old)
 and  /work/SRC/openSUSE:Factory/.libqt5-qtwebengine.new (New)


Package is "libqt5-qtwebengine"

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-qtwebengine/libqt5-qtwebengine.changes
2016-10-06 16:46:30.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.libqt5-qtwebengine.new/libqt5-qtwebengine.changes   
2016-10-31 11:08:30.0 +0100
@@ -1,0 +2,12 @@
+Tue Oct 25 13:40:49 UTC 2016 - alarr...@suse.com
+
+- Add disable-gpu-when-using-nouveau-boo-1005323.diff. Disables the
+  use of the gpu by webengine when the nouveau opengl driver is
+  detected since nouveau doesn't support rendering from different
+  threads. Also, allows to use two environment variables
+  QT_WEBENGINE_DISABLE_GPU to force the disabling of the gpu and
+  QT_WEBENGINE_DISABLE_NOUVEAU_WORKAROUND to disable the detection
+  of nouveau, just in case someone wants to try with newer nouveau
+  releases (boo#1005323, boo#997171).
+
+---

New:

  disable-gpu-when-using-nouveau-boo-1005323.diff



Other differences:
--
++ libqt5-qtwebengine.spec ++
--- /var/tmp/diff_new_pack.Dnctp2/_old  2016-10-31 11:08:34.0 +0100
+++ /var/tmp/diff_new_pack.Dnctp2/_new  2016-10-31 11:08:34.0 +0100
@@ -41,6 +41,8 @@
 Patch3: webrtc-build-with-neon.patch
 # PATCH-FIX-UPSTREAM Do-not-depend-on-Linux-4.5.patch
 Patch4: Do-not-depend-on-Linux-4.5.patch
+# PATCH-FIX-UPSTREAM disable-gpu-when-using-nouveau-boo-1005323.diff -- Detect 
nouveau opengl drivers and disable gpu usage to work around nouveau crashing
+Patch5: disable-gpu-when-using-nouveau-boo-1005323.diff
 # http://www.chromium.org/blink not ported to PowerPC
 ExcludeArch:ppc ppc64 ppc64le s390 s390x
 # Try to fix i586 MemoryErrors with rpmlint
@@ -152,6 +154,7 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 
 %package devel
 Summary:Qt Development Kit

++ disable-gpu-when-using-nouveau-boo-1005323.diff ++
Index: qtwebengine-opensource-src-5.7.1/src/core/web_engine_context.cpp
===
--- qtwebengine-opensource-src-5.7.1.orig/src/core/web_engine_context.cpp
+++ qtwebengine-opensource-src-5.7.1/src/core/web_engine_context.cpp
@@ -87,6 +87,8 @@
 #include 
 #include 
 #include 
+#include 
+#include 
 #include 
 #include 
 #include 
@@ -158,6 +160,37 @@ void dummyGetPluginCallback(const std::v
 }
 #endif
 
+QString openGLVendor()
+{
+QString vendor;
+
+QOpenGLContext *oldContext = QOpenGLContext::currentContext();
+QSurface *oldSurface = 0;
+if (oldContext)
+oldSurface = oldContext->surface();
+
+QScopedPointer surface( new QOffscreenSurface );
+surface->create();
+QOpenGLContext context;
+if (!context.create()) {
+qDebug() << "Error creating openGL context";
+}
+else if (!context.makeCurrent(surface.data())) {
+qDebug() << "Error making openGL context current context";
+} else {
+const GLubyte *p;
+QOpenGLFunctions *f = context.functions();
+if ((p = f->glGetString(GL_VENDOR)))
+vendor = QString::fromLatin1(reinterpret_cast(p));
+}
+
+context.doneCurrent();
+if (oldContext && oldSurface)
+oldContext->makeCurrent(oldSurface);
+
+return vendor;
+}
+
 } // namespace
 
 namespace QtWebEngineCore {
@@ -294,7 +327,20 @@ WebEngineContext::WebEngineContext()
 
 GLContextHelper::initialize();
 
-if (usingANGLE() || usingSoftwareDynamicGL() || usingQtQuick2DRenderer()) {
+bool disableGpu = qEnvironmentVariableIsSet("QT_WEBENGINE_DISABLE_GPU");
+
+if (!qEnvironmentVariableIsSet("QT_WEBENGINE_DISABLE_NOUVEAU_WORKAROUND") 
&& openGLVendor() == QStringLiteral("nouveau"))
+{
+qWarning() << "Nouveau openGL driver detected. Qt WebEngine will 
disable usage of the GPU.\n"
+  "Please consider using the propietary NVIDIA 
drivers.\n\n"
+  "Alternatively, you can set the 
QT_WEBENGINE_DISABLE_NOUVEAU_WORKAROUND\n"
+  "environment variable before running this application, 
but this is \n"
+  "not recommended since this usually causes applications 
to crash as\n"
+  "Nouveau openGL drivers don't support multithreaded 
rendering";
+disableGpu = true;
+}
+
+if (usingANGLE() || usingSoftwareDynamicGL() || usingQtQuick2DRenderer() 
|| disableGpu) {
 parsedCommandLine->AppendSwitch(switches::kDisableGpu);
 } 

commit dbus-1-glib for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package dbus-1-glib for openSUSE:Factory 
checked in at 2016-10-31 11:08:21

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


Package is "dbus-1-glib"

Changes:

--- /work/SRC/openSUSE:Factory/dbus-1-glib/dbus-1-glib.changes  2016-10-22 
13:05:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.dbus-1-glib.new/dbus-1-glib.changes 
2016-10-31 11:08:22.0 +0100
@@ -1,0 +2,5 @@
+Thu Oct 20 09:25:32 UTC 2016 - zai...@opensuse.org
+
+- Split out dbus-binding-tool in own sub-package.
+
+---



Other differences:
--
++ dbus-1-glib.spec ++
--- /var/tmp/diff_new_pack.pF4M9C/_old  2016-10-31 11:08:23.0 +0100
+++ /var/tmp/diff_new_pack.pF4M9C/_new  2016-10-31 11:08:23.0 +0100
@@ -30,6 +30,7 @@
 BuildRequires:  libexpat-devel
 BuildRequires:  libselinux-devel
 Requires:   dbus-1
+Recommends: dbus-1-glib-tool
 #
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -38,6 +39,7 @@
 Group:  Development/Libraries/Other
 Requires:   dbus-1-devel
 Requires:   dbus-1-glib = %{version}
+Requires:   dbus-1-glib-tool = %{version}
 Requires:   glib2-devel
 
 %package -n dbus-1-glib-doc
@@ -47,6 +49,11 @@
 BuildArch:  noarch
 %endif
 
+%package -n dbus-1-glib-tool
+Summary:Tool package for D-Bus/GLib bindings
+Group:  Development/Libraries/Other
+Requires:   dbus-1-glib = %{version}
+
 %description
 D-Bus add-on library to integrate the standard D-Bus library with the
 GLib thread abstraction and main loop.
@@ -59,6 +66,10 @@
 D-Bus add-on library to integrate the standard D-Bus library with the
 GLib thread abstraction and main loop.
 
+%description -n dbus-1-glib-tool
+D-Bus add-on tool to integrate the standard D-Bus library with the
+GLib thread abstraction and main loop.
+
 %prep
 %setup -q -n dbus-glib-%{version}
 
@@ -92,8 +103,6 @@
 
 %files -n dbus-1-glib-devel
 %defattr(-, root, root)
-%{_bindir}/dbus-binding-tool
-%{_mandir}/man?/dbus-binding-tool.1%{ext_man}
 %{_includedir}/dbus-1.0/dbus/*
 %{_libdir}/*glib*.so
 %{_libdir}/pkgconfig/dbus-glib-1.pc
@@ -104,4 +113,9 @@
 %dir %{_datadir}/gtk-doc/html
 %{_datadir}/gtk-doc/html/dbus-glib
 
+%files -n dbus-1-glib-tool
+%defattr(-, root, root)
+%{_bindir}/dbus-binding-tool
+%{_mandir}/man?/dbus-binding-tool.1%{ext_man}
+
 %changelog




commit armadillo for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package armadillo for openSUSE:Factory 
checked in at 2016-10-31 09:56:48

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


Package is "armadillo"

Changes:

--- /work/SRC/openSUSE:Factory/armadillo/armadillo.changes  2016-09-30 
15:33:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.armadillo.new/armadillo.changes 2016-10-31 
09:56:50.0 +0100
@@ -1,0 +2,8 @@
+Mon Oct 24 13:16:30 UTC 2016 - badshah...@gmail.com
+
+- Update to version 7.500.0:
+  + Expanded qz() to optionally specify ordering of the Schur
+form.
+  + Expanded .each_slice() to support matrix multiplication.
+
+---

Old:

  armadillo-7.400.3.tar.xz

New:

  armadillo-7.500.0.tar.xz



Other differences:
--
++ armadillo.spec ++
--- /var/tmp/diff_new_pack.96NKpe/_old  2016-10-31 09:56:51.0 +0100
+++ /var/tmp/diff_new_pack.96NKpe/_new  2016-10-31 09:56:51.0 +0100
@@ -19,7 +19,7 @@
 %define soname libarmadillo7
 
 Name:   armadillo
-Version:7.400.3
+Version:7.500.0
 Release:0
 Summary:Fast C++ matrix library with interfaces to LAPACK and ATLAS
 License:MPL-2.0

++ armadillo-7.400.3.tar.xz -> armadillo-7.500.0.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/armadillo-7.400.3/CMakeLists.txt 
new/armadillo-7.500.0/CMakeLists.txt
--- old/armadillo-7.400.3/CMakeLists.txt2016-06-16 18:16:04.0 
+0200
+++ new/armadillo-7.500.0/CMakeLists.txt2016-06-16 18:16:06.0 
+0200
@@ -14,13 +14,9 @@
 
 cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
 
-set(ARMA_MAJOR 7)
-set(ARMA_MINOR 400)
-set(ARMA_PATCH 2)
-set(ARMADILLO_VERSION ${ARMA_MAJOR}.${ARMA_MINOR}.${ARMA_PATCH})
-
-message(STATUS "Configuring Armadillo ${ARMADILLO_VERSION}")
-
+project(armadillo CXX)
+include(CheckIncludeFileCXX)
+include(CheckLibraryExists)
 
 ## Set ARMA_USE_WRAPPER to false if you're getting linking errors when 
compiling your programs,
 ## or if you prefer to directly link with BLAS and/or LAPACK.
@@ -40,12 +36,24 @@
 set(ARMA_USE_EXTERN_CXX11_RNG false)
 set(ARMA_USE_SUPERLU  false)  # Caveat: only SuperLU version 5.x can 
be used!
 
-project(armadillo CXX)
 
-set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
"${CMAKE_CURRENT_SOURCE_DIR}/cmake_aux/Modules/")
+## extract version from sources
 
-include(CheckIncludeFileCXX)
-include(CheckLibraryExists)
+set(ARMA_VERSION_FILE_NAME 
"${PROJECT_SOURCE_DIR}/include/armadillo_bits/arma_version.hpp")
+
+if(NOT EXISTS ${ARMA_VERSION_FILE_NAME})
+  message(FATAL_ERROR "Can't read ${ARMA_VERSION_FILE_NAME}")
+endif()
+
+file(READ ${ARMA_VERSION_FILE_NAME} ARMA_VERSION_FILE_CONTENTS)
+string(REGEX REPLACE ".*#define ARMA_VERSION_MAJOR ([0-9]+).*" "\\1" 
ARMA_VERSION_MAJOR "${ARMA_VERSION_FILE_CONTENTS}")
+string(REGEX REPLACE ".*#define ARMA_VERSION_MINOR ([0-9]+).*" "\\1" 
ARMA_VERSION_MINOR "${ARMA_VERSION_FILE_CONTENTS}")
+string(REGEX REPLACE ".*#define ARMA_VERSION_PATCH ([0-9]+).*" "\\1" 
ARMA_VERSION_PATCH "${ARMA_VERSION_FILE_CONTENTS}")
+
+message(STATUS "Configuring Armadillo 
${ARMA_VERSION_MAJOR}.${ARMA_VERSION_MINOR}.${ARMA_VERSION_PATCH}")
+
+
+set(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} 
"${CMAKE_CURRENT_SOURCE_DIR}/cmake_aux/Modules/")
 
 
 if(MSVC)
@@ -312,13 +320,13 @@
 
 ## work around a silly limitation in Mac OS X
 if(APPLE)
-  if(${ARMA_MINOR} GREATER 99)
-math(EXPR ARMA_MINOR_ALT "${ARMA_MINOR} / 10")
+  if(${ARMA_VERSION_MINOR} GREATER 99)
+math(EXPR ARMA_VERSION_MINOR_ALT "${ARMA_VERSION_MINOR} / 10")
   else()
-set(ARMA_MINOR_ALT ${ARMA_MINOR})
+set(ARMA_VERSION_MINOR_ALT ${ARMA_VERSION_MINOR})
   endif()
 else()
-  set(ARMA_MINOR_ALT ${ARMA_MINOR})
+  set(ARMA_VERSION_MINOR_ALT ${ARMA_VERSION_MINOR})
 endif()
 
 
@@ -339,7 +347,7 @@
 
 add_library( armadillo ${PROJECT_SOURCE_DIR}/src/wrapper.cpp )
 target_link_libraries( armadillo ${ARMA_LIBS} )
-set_target_properties(armadillo PROPERTIES VERSION 
${ARMA_MAJOR}.${ARMA_MINOR_ALT}.${ARMA_PATCH} SOVERSION ${ARMA_MAJOR})
+set_target_properties(armadillo PROPERTIES VERSION 
${ARMA_VERSION_MAJOR}.${ARMA_VERSION_MINOR_ALT}.${ARMA_VERSION_PATCH} SOVERSION 
${ARMA_VERSION_MAJOR})
 
 
 

diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/armadillo-7.400.3/README.txt 
new/armadillo-7.500.0/README.txt
--- old/armadillo-7.400.3/README.txt2016-06-16 18:16:04.0 +0200
+++ new/armadillo-7.500.0/README.txt2016-06-16 

commit calligra for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package calligra for openSUSE:Factory 
checked in at 2016-10-31 09:56:35

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


Package is "calligra"

Changes:

--- /work/SRC/openSUSE:Factory/calligra/calligra.changes2016-10-24 
14:44:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.calligra.new/calligra.changes   2016-10-31 
09:56:36.0 +0100
@@ -1,0 +2,7 @@
+Wed Oct 26 15:51:20 UTC 2016 - wba...@tmo.at
+
+- Disable Vc-devel-static build requirement again, it currently
+  makes calligra crash on runtime, and Vc 1.3.0 is entering TW
+  soon anyway which will break calligra's build
+
+---



Other differences:
--
++ calligra.spec ++
--- /var/tmp/diff_new_pack.bbTkhQ/_old  2016-10-31 09:56:42.0 +0100
+++ /var/tmp/diff_new_pack.bbTkhQ/_new  2016-10-31 09:56:42.0 +0100
@@ -96,7 +96,7 @@
 %{kde4_pimlibs_requires}
 %if 0%{?suse_version} > 1320
 %ifarch %ix86 x86_64
-BuildRequires:  Vc-devel-static
+#BuildRequires:  Vc-devel-static
 %endif
 %endif
 %if 0%{?suse_version} > 1310





commit docker for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package docker for openSUSE:Factory checked 
in at 2016-10-31 09:56:29

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


Package is "docker"

Changes:

--- /work/SRC/openSUSE:Factory/docker/docker.changes2016-10-26 
13:29:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.docker.new/docker.changes   2016-10-31 
09:56:30.0 +0100
@@ -1,0 +2,8 @@
+Thu Oct 27 11:13:56 UTC 2016 - jmassaguer...@suse.com
+
+- update docker to 1.12.3
+ - fix bsc#1007249 - CVE-2016-8867: Fix ambient capability usage in containers
+ - other fixes:
+   https://github.com/docker/docker/releases/tag/v1.12.3
+
+---
@@ -276,0 +285,5 @@
+
+---
+Wed Apr 27 10:29:47 UTC 2016 - jmassaguer...@suse.com
+
+- Fix go version to 1.5 (bsc#977394)

Old:

  docker-1.12.2.tar.xz

New:

  docker-1.12.3.tar.xz



Other differences:
--
++ docker.spec ++
--- /var/tmp/diff_new_pack.Kwolph/_old  2016-10-31 09:56:32.0 +0100
+++ /var/tmp/diff_new_pack.Kwolph/_new  2016-10-31 09:56:32.0 +0100
@@ -36,7 +36,7 @@
 %global docker_migration_warnfile %{docker_store}/docker-update-message.txt
 %define docker_graph  %{docker_store}/graph
 %define git_version 8eab29e
-%define version_unconverted 1.12.2
+%define version_unconverted 1.12.3
 %define docker_version 1.12.1
 %define __arch_install_post export NO_BRP_STRIP_DEBUG=true
 # When upgrading to a new version requires the service not to be restarted
@@ -45,7 +45,7 @@
 # 1.10.1
 %global last_migration_version 1.10.1
 Name:   docker
-Version:1.12.2
+Version:1.12.3
 Release:0
 Summary:The Linux container runtime
 License:Apache-2.0

++ _service ++
--- /var/tmp/diff_new_pack.Kwolph/_old  2016-10-31 09:56:32.0 +0100
+++ /var/tmp/diff_new_pack.Kwolph/_new  2016-10-31 09:56:32.0 +0100
@@ -3,8 +3,8 @@
 https://github.com/docker/docker.git
 git
 .git
-1.12.2
-v1.12.2
+1.12.3
+v1.12.3
   
   
 docker-*.tar

++ docker-1.12.2.tar.xz -> docker-1.12.3.tar.xz ++
/work/SRC/openSUSE:Factory/docker/docker-1.12.2.tar.xz 
/work/SRC/openSUSE:Factory/.docker.new/docker-1.12.3.tar.xz differ: char 26, 
line 1




commit virt-viewer for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package virt-viewer for openSUSE:Factory 
checked in at 2016-10-31 09:56:08

Comparing /work/SRC/openSUSE:Factory/virt-viewer (Old)
 and  /work/SRC/openSUSE:Factory/.virt-viewer.new (New)


Package is "virt-viewer"

Changes:

--- /work/SRC/openSUSE:Factory/virt-viewer/virt-viewer.changes  2016-09-07 
11:46:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.virt-viewer.new/virt-viewer.changes 
2016-10-31 09:56:09.0 +0100
@@ -1,0 +2,5 @@
+Thu Oct 13 00:41:04 CEST 2016 - r...@suse.de
+
+- remove exclusivearch 
+
+---



Other differences:
--
++ virt-viewer.spec ++
--- /var/tmp/diff_new_pack.fr49bf/_old  2016-10-31 09:56:10.0 +0100
+++ /var/tmp/diff_new_pack.fr49bf/_new  2016-10-31 09:56:10.0 +0100
@@ -37,7 +37,6 @@
 Patch51:virtview-desktop.patch
 Patch52:reverse-3d5627d7-for-xen.patch
 Patch53:virtview-dont-show-Domain-0.patch
-ExclusiveArch:  %ix86 x86_64 s390x
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  automake




commit gstreamer-transcoder for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package gstreamer-transcoder for 
openSUSE:Factory checked in at 2016-10-31 09:56:00

Comparing /work/SRC/openSUSE:Factory/gstreamer-transcoder (Old)
 and  /work/SRC/openSUSE:Factory/.gstreamer-transcoder.new (New)


Package is "gstreamer-transcoder"

Changes:

--- 
/work/SRC/openSUSE:Factory/gstreamer-transcoder/gstreamer-transcoder.changes
2016-10-18 10:39:35.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.gstreamer-transcoder.new/gstreamer-transcoder.changes
   2016-10-31 09:56:01.0 +0100
@@ -1,0 +2,5 @@
+Sat Oct 22 22:18:36 UTC 2016 - jeng...@inai.de
+
+- Update descriptions
+
+---



Other differences:
--
++ gstreamer-transcoder.spec ++
--- /var/tmp/diff_new_pack.zMN4Ls/_old  2016-10-31 09:56:02.0 +0100
+++ /var/tmp/diff_new_pack.zMN4Ls/_new  2016-10-31 09:56:02.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package gst-transcoder
+# spec file for package gstreamer-transcoder
 #
 # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
@@ -29,35 +29,36 @@
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(glib-2.0)
 BuildRequires:  pkgconfig(gobject-2.0)
-BuildRequires:  pkgconfig(gstreamer-pbutils-1.0)
 BuildRequires:  pkgconfig(gobject-introspection-1.0)
+BuildRequires:  pkgconfig(gstreamer-pbutils-1.0)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 GStreamer Transcoding API
 
 %package -n libgsttranscoder-1_0-0
-Summary: GST Transcoder API
+Summary:GStreamer Transcoder API
 Group: System/Libraries
 
 %description -n libgsttranscoder-1_0-0
-GST Transcoding API - Shared library
+This subpackage contains the implementation of the GStreamer API.
 
 %package -n typelib-1_0-GstTranscoder-1_0
-Summary: GST Transcoder API -- Introspection bindings
+Summary:Introspection bindings for the GStreamer Transcoder API
 Group: System/Libraries
 
 %description -n typelib-1_0-GstTranscoder-1_0
-GST Transcoding API - Introspection bindings
+This subpackage contains the introspection bindings for the GStreamer 
Transcoding API.
 
 %package devel
+Summary:Development files for the GStreamer Transcoding API
 Group: Development/Languages/C and C++
-Summary: GStreamer Transcoding API - Development files
 Requires: libgsttranscoder-1_0-0 = %{version}
 Requires: typelib-1_0-GstTranscoder-1_0 = %{version}
 
 %description devel
-GStreamer Transcoding API - Development files
+This subpackage contains the header files needed to build applications
+making use of the GStreamer Transcoding API.
 
 %prep
 %setup -q -n %{_name}-%{version}




commit enlightenment-theme-openSUSE-ice for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package enlightenment-theme-openSUSE-ice for 
openSUSE:Factory checked in at 2016-10-31 09:56:42

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


Package is "enlightenment-theme-openSUSE-ice"

Changes:

--- 
/work/SRC/openSUSE:Factory/enlightenment-theme-openSUSE-ice/enlightenment-theme-openSUSE-ice.changes
2016-09-23 11:41:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.enlightenment-theme-openSUSE-ice.new/enlightenment-theme-openSUSE-ice.changes
   2016-10-31 09:56:43.0 +0100
@@ -1,0 +2,5 @@
+Fri Oct 28 03:23:48 UTC 2016 - sfl...@suse.de
+
+- 20161028 Fixes some minor regressions
+
+---

Old:

  enlightenment-theme-openSUSE-ice-20160705.tar.xz

New:

  enlightenment-theme-openSUSE-ice-20161028.tar.xz



Other differences:
--
++ enlightenment-theme-openSUSE-ice.spec ++
--- /var/tmp/diff_new_pack.C5JdgC/_old  2016-10-31 09:56:45.0 +0100
+++ /var/tmp/diff_new_pack.C5JdgC/_new  2016-10-31 09:56:45.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   enlightenment-theme-openSUSE-ice
-Version:20160705
+Version:20161028
 Release:0
 Summary:A light openSUSE theme modified to suite the openSUSE 13.2 
artwork
 License:BSD-2-Clause and LGPL-2.1 and CC-BY-SA-3.0

++ enlightenment-theme-openSUSE-ice-20160705.tar.xz -> 
enlightenment-theme-openSUSE-ice-20161028.tar.xz ++
/work/SRC/openSUSE:Factory/enlightenment-theme-openSUSE-ice/enlightenment-theme-openSUSE-ice-20160705.tar.xz
 
/work/SRC/openSUSE:Factory/.enlightenment-theme-openSUSE-ice.new/enlightenment-theme-openSUSE-ice-20161028.tar.xz
 differ: char 26, line 1




commit nagstamon for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package nagstamon for openSUSE:Factory 
checked in at 2016-10-31 09:56:20

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


Package is "nagstamon"

Changes:

--- /work/SRC/openSUSE:Factory/nagstamon/nagstamon.changes  2016-09-16 
11:00:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.nagstamon.new/nagstamon.changes 2016-10-31 
09:56:20.0 +0100
@@ -1,0 +2,19 @@
+Thu Oct 20 10:17:44 UTC 2016 - l...@linux-schulserver.de
+
+- update to 2.0.1:
+  Despite months of testing there were some bugs in the latest stable release,
+  which hopefully are gone now. This release tries to fix the following bugs:
+  + Major Centreon bug making it useless
+  + Wrong Icinga version check
+  + Thruk login problem
+  + EWMH initialization trouble
+  + Systrayicon left mouse click brought context menu
+  + DBus crashes
+
+---
+Wed Oct 19 11:09:49 UTC 2016 - l...@linux-schulserver.de
+
+- remove dependency on libqt5-qtmultimedia and build require
+  libqt5-qtmultimedia-devel instead
+
+---

Old:

  Nagstamon-2.0.tar.bz2

New:

  Nagstamon-2.0.1.tar.bz2



Other differences:
--
++ nagstamon.spec ++
--- /var/tmp/diff_new_pack.pA7gcD/_old  2016-10-31 09:56:22.0 +0100
+++ /var/tmp/diff_new_pack.pA7gcD/_new  2016-10-31 09:56:22.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   nagstamon
-Version:2.0
+Version:2.0.1
 Release:0
 Summary:Nagios status monitor for the desktop
 License:GPL-2.0
@@ -40,18 +40,22 @@
 Requires:   python3-psutil
 Requires:   python3-qt5
 Requires:   python3-requests
-Requires:   qt5-qtmultimedia
 Requires:   qt5-qtsvg
 %endif
 #
 # openSUSE dependencies
 #
 %if 0%{?suse_version}
+BuildRequires:  libqt5-qtmultimedia-devel
+BuildRequires:  python-SecretStorage
+BuildRequires:  python3-beautifulsoup4
+BuildRequires:  python3-psutil
+BuildRequires:  python3-pycrypto
 BuildRequires:  python3-qt5
+BuildRequires:  python3-qt5
+BuildRequires:  python3-requests
 BuildRequires:  python3-setuptools
 BuildRequires:  update-desktop-files
-Requires:   libqt5-qtmultimedia
-Requires:   libqt5-qtsvg
 Requires:   python-SecretStorage
 Requires:   python3-beautifulsoup4
 Requires:   python3-psutil
@@ -74,7 +78,7 @@
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
+%{!?python3_sitelib: %global python3_sitelib %(python3 -c "from 
distutils.sysconfig import get_python_lib; print(get_python_lib())")}
 
 %description
 Nagstamon is a Nagios status monitor which takes place in systray or on desktop
@@ -97,13 +101,17 @@
--single-version-externally-managed \
-O1 \
--root=%{buildroot} \
-   --install-lib=%{python_sitelib} \
+   --install-lib=%{python3_sitelib} \
--prefix=%{_prefix}
 mv %{buildroot}/%{_bindir}/nagstamon.py %{buildroot}/%{_bindir}/nagstamon
+if [ -d %buildroot/Nagstamon ]; then
+mkdir -p %{buildroot}/%{python3_sitelib}
+   my Nagstamon %{buildroot}/%{python3_sitelib}/
+fi
 # desktop stuff
 chmod -x %{buildroot}%{_datadir}/pixmaps/nagstamon.svg
-chmod -x %{buildroot}%{python_sitelib}/Nagstamon/resources/*.svg
-for file in $(grep -wlr bin/env %{buildroot}%{python_sitelib}/Nagstamon/*); do
+chmod -x %{buildroot}%{python3_sitelib}/Nagstamon/resources/*.svg
+for file in $(grep -wlr bin/env %{buildroot}%{python3_sitelib}/Nagstamon/*); do
chmod +x $file
 done
 # openSUSE
@@ -138,9 +146,9 @@
 %doc ChangeLog COPYRIGHT LICENSE
 %{_datadir}/pixmaps/nagstamon*
 %{_datadir}/applications/*nagstamon.desktop
-%{python_sitelib}/Nagstamon/
+%{python3_sitelib}/Nagstamon/
 %{_bindir}/nagstamon
 %{_mandir}/man1/nagstamon.1*
-%{python_sitelib}/%{name}*.egg-info
+%{python3_sitelib}/%{name}*.egg-info
 
 %changelog

++ Nagstamon-2.0.tar.bz2 -> Nagstamon-2.0.1.tar.bz2 ++
 3035 lines of diff (skipped)




commit mysql-community-server for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package mysql-community-server for 
openSUSE:Factory checked in at 2016-10-31 09:56:14

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


Package is "mysql-community-server"

Changes:

--- 
/work/SRC/openSUSE:Factory/mysql-community-server/mysql-community-server.changes
2016-04-30 23:31:10.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.mysql-community-server.new/mysql-community-server.changes
   2016-10-31 09:56:16.0 +0100
@@ -1,0 +2,46 @@
+Mon Oct 24 19:08:22 UTC 2016 - kstreit...@suse.com
+
+- update to 5.6.34
+  * changes
+http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-34.html
+http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-33.html
+http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-32.html
+http://dev.mysql.com/doc/relnotes/mysql/5.6/en/news-5-6-31.html
+  * fixed CVEs:
+CVE-2016-6304, CVE-2016-6662, CVE-2016-7440, CVE-2016-5584,
+CVE-2016-5617, CVE-2016-5616, CVE-2016-5626, CVE-2016-3492,
+CVE-2016-5629, CVE-2016-5507, CVE-2016-8283, CVE-2016-5609,
+CVE-2016-5612, CVE-2016-5627, CVE-2016-5630, CVE-2016-8284,
+CVE-2016-8288, CVE-2016-3477, CVE-2016-2105, CVE-2016-3486,
+CVE-2016-3501, CVE-2016-3521, CVE-2016-3615, CVE-2016-3614,
+CVE-2016-3459, CVE-2016-5439, CVE-2016-5440
+  * fix 
+[bsc#999666],  [bsc#998309],  [bsc#1005581], [bsc#1005558], 
+[bsc#1005563], [bsc#1005562], [bsc#1005566], [bsc#100], 
+[bsc#1005569], [bsc#1005557], [bsc#1005582], [bsc#1005560], 
+[bsc#1005561], [bsc#1005567], [bsc#1005570], [bsc#1005583], 
+[bsc#1005586], [bsc#989913],  [bsc#977614],  [bsc#989914], 
+[bsc#989915],  [bsc#989919],  [bsc#989922],  [bsc#989921], 
+[bsc#989911],  [bsc#989925],  [bsc#989926]
+  * refresh mysql-community-server-5.6.10-group.patch
+- requires devel packages for aio and lzo2
+- append "--ignore-db-dir=lost+found" to the mysqld options in
+  "mysql-systemd-helper" script if "lost+found" directory is found
+  in $datadir [bnc#986251]  
+- remove syslog.target from *.service files [bsc#983938]
+- add BuildRequires: systemd-devel
+- make some dependecies switchable
+- add systemd to deps to build on leap and friends  
+- replace '%{_libexecdir}/systemd/system' with %{_unitdir} macro
+- remove useless mysql@default.service [bsc#971456]
+- replace all occurrences of the string "@sysconfdir@" with "/etc" in
+  mysql-community-server-5.6.3-logrotate.patch as it wasn't expanded
+  properly [bsc#990890]
+- remove '%define _rundir' as 13.1 is out of support scope
+- run 'usermod -g mysql mysql' only if mysql user is not in mysql group.
+  Run 'usermod -s /bin/false/ mysql' only if mysql user doesn't have
+  '/bin/false' shell set.
+- re-enable mysql profiling
+- fix constraints conditions for 32bit architectures
+
+---

Old:

  mysql-5.6.30.tar.gz

New:

  mysql-5.6.34.tar.gz



Other differences:
--
++ mysql-community-server.spec ++
--- /var/tmp/diff_new_pack.EVIJN7/_old  2016-10-31 09:56:20.0 +0100
+++ /var/tmp/diff_new_pack.EVIJN7/_new  2016-10-31 09:56:20.0 +0100
@@ -26,14 +26,11 @@
 %define preferred 0
 %define builtin_plugins partition,csv,heap,myisam,innobase
 %define extra_provides mysql-community-server_56
-%define with_mandatory_boost 0
+%define with_mandatory_lz4 0
+%define build_readline 0
 %define build_extras 0
 # _tmpfilesdir is not defined in systemd macros up to openSUSE 13.2
 %{!?_tmpfilesdir: %global _tmpfilesdir %{_libexecdir}/tmpfiles.d }
-# Remove when 13.1 is out of support scope
-%if ! %{defined _rundir}
-%define _rundir %{_localstatedir}/run
-%endif
 %if 0%{build_extras} > 0
 %define with_jemalloc 1
 #temporarily disable OQGraph (see MDEV-9479)
@@ -46,7 +43,7 @@
 %define with_cassandra 0
 %endif
 Name:   mysql-community-server
-Version:5.6.30
+Version:5.6.34
 Release:0
 Summary:Server part of %{pretty_name}
 License:SUSE-GPL-2.0-with-FLOSS-exception
@@ -102,7 +99,10 @@
 BuildRequires:  tcpd-devel
 BuildRequires:  time
 BuildRequires:  zlib-devel
-BuildRequires:  pkgconfig(systemd)
+# pkgconfig(systemd) on most versions is in systemd main pkg, remove
+# after oldest supported is Leap 43
+BuildRequires:  systemd
+BuildRequires:  systemd-devel
 # required by rcmysql
 Requires:   %{name}-client
 Requires:   %{name}-errormessages = %{version}
@@ -129,19 +129,21 @@
 Obsoletes:  %{extra_provides}-debug-version < %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{?systemd_requires}
+%if 0%{with_mandatory_lz4} > 0
+# Dependency 

commit pdfmod for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package pdfmod for openSUSE:Factory checked 
in at 2016-10-31 09:55:33

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


Package is "pdfmod"

Changes:

--- /work/SRC/openSUSE:Factory/pdfmod/pdfmod.changes2016-03-11 
09:38:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.pdfmod.new/pdfmod.changes   2016-10-31 
09:55:36.0 +0100
@@ -1,0 +2,5 @@
+Sat Oct  8 14:09:53 UTC 2016 - mailaen...@opensuse.org
+
+- Add appdata.xml for https://en.opensuse.org/openSUSE:AppStore
+
+---

New:

  pdfmod.appdata.xml



Other differences:
--
++ pdfmod.spec ++
--- /var/tmp/diff_new_pack.R6vokZ/_old  2016-10-31 09:55:39.0 +0100
+++ /var/tmp/diff_new_pack.R6vokZ/_new  2016-10-31 09:55:39.0 +0100
@@ -28,6 +28,8 @@
 Patch0: pdfmod-mono-2.10.patch
 # PATCH-FIX-UPSTREAM pdfmod-dotnet4.patch dims...@opensuse.org -- Build for 
.Net 4.0 target
 Patch1: pdfmod-dotnet4.patch
+# PATCH-FEATURE-UPSTREAM https://bugzilla.gnome.org/show_bug.cgi?id=736860
+Source1:pdfmod.appdata.xml
 BuildRequires:  gconf-sharp2
 BuildRequires:  glib-sharp2
 BuildRequires:  gmime-sharp
@@ -77,19 +79,15 @@
 %makeinstall
 %suse_update_desktop_file pdfmod Utility DesktopUtility
 %find_lang %{name} %{?no_lang_C}
-
-%clean
-rm -rf %{buildroot}
+install -Dm0644 %{S:1} %{buildroot}%{_datadir}/appdata/%{name}.appdata.xml
 
 %if 0%{?suse_version} > 1130
-
 %post
 %desktop_database_post
 %icon_theme_cache_post
 %endif
 
 %if 0%{?suse_version} > 1130
-
 %postun
 %desktop_database_postun
 %icon_theme_cache_postun
@@ -106,6 +104,8 @@
 %{_libdir}/%{name}/
 %{_datadir}/icons/hicolor/*/apps/*
 %{_datadir}/applications/%{name}.desktop
+%dir %{_datadir}/appdata/
+%{_datadir}/appdata/%{name}.appdata.xml
 
 %files lang -f %{name}.lang
 




commit lmms for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package lmms for openSUSE:Factory checked in 
at 2016-10-31 09:55:45

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


Package is "lmms"

Changes:

--- /work/SRC/openSUSE:Factory/lmms/lmms.changes2016-06-25 
02:22:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.lmms.new/lmms.changes   2016-10-31 
09:55:46.0 +0100
@@ -1,0 +2,6 @@
+Tue Oct 25 13:33:37 UTC 2016 - stephan.ba...@suse.com
+
+- Added __requires_exclude_from to prevent RPM from adding a requirement for a
+  library that only exists during build time (bsc#997249)
+
+---



Other differences:
--
++ lmms.spec ++
--- /var/tmp/diff_new_pack.vqdYgw/_old  2016-10-31 09:55:48.0 +0100
+++ /var/tmp/diff_new_pack.vqdYgw/_new  2016-10-31 09:55:48.0 +0100
@@ -16,6 +16,9 @@
 #
 
 
+# Since 42.2 RPM creates a hard requirement on a build time library 
(libvstbase), the requirement is unnecessary and bad
+%global __requires_exclude_from ^%{_libdir}/lmms/.*\\.so$
+
 %bcond_with carla
 %bcond_without crippled_stk
 




commit inn for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package inn for openSUSE:Factory checked in 
at 2016-10-31 09:55:40

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


Package is "inn"

Changes:

--- /work/SRC/openSUSE:Factory/inn/inn.changes  2015-02-20 12:01:30.0 
+0100
+++ /work/SRC/openSUSE:Factory/.inn.new/inn.changes 2016-10-31 
09:55:41.0 +0100
@@ -1,0 +2,5 @@
+Wed Oct 26 13:30:59 CEST 2016 - ku...@suse.de
+
+- Fix tmpfiles.d usage to give it at least a chance to work
+
+---



Other differences:
--
++ inn.spec ++
--- /var/tmp/diff_new_pack.0vEhKh/_old  2016-10-31 09:55:42.0 +0100
+++ /var/tmp/diff_new_pack.0vEhKh/_new  2016-10-31 09:55:42.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package inn
 #
-# 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
@@ -266,8 +266,8 @@
 %set_permissions /usr/lib/news/bin/innbind /usr/lib/news/bin/inews 
/usr/lib/news/bin/rnews
 
 %post -n mininews
-if [ -x /bin/systemd-tmpfiles ]; then
-/bin/systemd-tmpfiles --create /usr/lib/tmpfiles.d/inn.conf
+if [ -x /usr/bin/systemd-tmpfiles ]; then
+/usr/bin/systemd-tmpfiles --create inn.conf
 fi
 %set_permissions /usr/lib/news/bin/inews /usr/lib/news/bin/rnews
 






commit zpaq for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package zpaq for openSUSE:Factory checked in 
at 2016-10-31 09:54:58

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


Package is "zpaq"

Changes:

--- /work/SRC/openSUSE:Factory/zpaq/zpaq.changes2016-05-10 
09:27:46.0 +0200
+++ /work/SRC/openSUSE:Factory/.zpaq.new/zpaq.changes   2016-10-31 
09:54:59.0 +0100
@@ -1,0 +2,5 @@
+Sun Oct 23 06:21:00 UTC 2016 - mplus...@suse.com
+
+- Small package cleanup and rename of devel package
+
+---



Other differences:
--
++ zpaq.spec ++
--- /var/tmp/diff_new_pack.V96hLj/_old  2016-10-31 09:55:00.0 +0100
+++ /var/tmp/diff_new_pack.V96hLj/_new  2016-10-31 09:55:00.0 +0100
@@ -70,12 +70,14 @@
 
 This package contains shared library
 
-%package  -n %{soname}-devel
+%packagedevel
 Summary:Development files for zpaq
 Group:  Development/Languages/C and C++
 Requires:   %{soname}%{sonum} = %{version}-%{release}
+Provides:   %{soname}-devel = %{version}
+Obsoletes:  %{soname}-devel < %{version}
 
-%description -n %{soname}-devel
+%description devel
 zpaq is a journaling, incremental, deduplicating archiver for Windows and
 Linux. "Journaling" means that when you update a file or directory, both
 the old and new versions are saved. You can extract from the archive as it
@@ -128,7 +130,7 @@
 %doc COPYING
 %{_libdir}/%{soname}.so.%{sover}
 
-%files -n %{soname}-devel
+%files  devel
 %defattr(-,root,root,-)
 %doc COPYING
 %{_libdir}/%{soname}.so





commit python-jenkins-job-builder for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package python-jenkins-job-builder for 
openSUSE:Factory checked in at 2016-10-31 09:54:22

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


Package is "python-jenkins-job-builder"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jenkins-job-builder/python-jenkins-job-builder.changes
2016-07-20 09:20:58.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jenkins-job-builder.new/python-jenkins-job-builder.changes
   2016-10-31 09:54:23.0 +0100
@@ -1,0 +2,5 @@
+Tue Oct 18 05:58:56 UTC 2016 - tbecht...@suse.com
+
+- Add 0001-Fix-timeout-wrapper-version-detection.patch
+
+---

New:

  0001-Fix-timeout-wrapper-version-detection.patch



Other differences:
--
++ python-jenkins-job-builder.spec ++
--- /var/tmp/diff_new_pack.dCZfLn/_old  2016-10-31 09:54:24.0 +0100
+++ /var/tmp/diff_new_pack.dCZfLn/_new  2016-10-31 09:54:24.0 +0100
@@ -25,6 +25,8 @@
 Group:  Development/Languages/Python
 Url:https://github.com/openstack-ci/jenkins-job-builder
 Source: 
https://pypi.io/packages/source/j/jenkins-job-builder/jenkins-job-builder-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM 0001-Fix-timeout-wrapper-version-detection.patch -- 
https://review.openstack.org/387799
+Patch1: 0001-Fix-timeout-wrapper-version-detection.patch
 BuildRequires:  python-pbr
 BuildRequires:  python-setuptools-git
 Requires:   python-PyYAML
@@ -47,6 +49,7 @@
 
 %prep
 %setup -q -n jenkins-job-builder-%{version}
+%patch1 -p1
 
 %build
 python setup.py build

++ 0001-Fix-timeout-wrapper-version-detection.patch ++
>From a9ea7223f6c3c1c4dbf95126661eb1bd64236b88 Mon Sep 17 00:00:00 2001
From: Thomas Bechtold 
Date: Tue, 18 Oct 2016 07:56:57 +0200
Subject: [PATCH] Fix timeout wrapper version detection

If, for whatever reason, the version of the build-timeout
plugin can not be detected, assume that we use a newer version (>= 1.14).
Version 1.14 is already ~ 2 1/2 years old so this is a sane assumption.
Alo adjust fixtures to use the newer plugin version xml output.

Change-Id: I86295933d0c3247f55d0114473fc9c8f8feb7441
---
 jenkins_jobs/modules/wrappers.py   |  8 ++--
 tests/jsonparser/fixtures/complete001.xml  | 14 --
 tests/wrappers/fixtures/timeout/timeout001.xml | 12 ++--
 tests/wrappers/fixtures/timeout/timeout002.xml | 14 +++---
 tests/wrappers/fixtures/timeout/timeout003.xml | 14 --
 tests/yamlparser/fixtures/complete001.xml  | 14 --
 tests/yamlparser/fixtures/include-raw001.xml   | 14 --
 tests/yamlparser/fixtures/include001.xml   | 14 --
 tests/yamlparser/fixtures/yaml_anchor.xml  | 12 ++--
 9 files changed, 65 insertions(+), 51 deletions(-)

Index: jenkins-job-builder-1.6.1/jenkins_jobs/modules/wrappers.py
===
--- jenkins-job-builder-1.6.1.orig/jenkins_jobs/modules/wrappers.py
+++ jenkins-job-builder-1.6.1/jenkins_jobs/modules/wrappers.py
@@ -312,12 +312,16 @@ def timeout(parser, xml_parent, data):
 
 plugin_info = parser.registry.get_plugin_info(
 "Jenkins build timeout plugin")
-version = pkg_resources.parse_version(plugin_info.get("version", "0"))
+version = plugin_info.get("version", None)
+if version:
+version = pkg_resources.parse_version(version)
 
 valid_strategies = ['absolute', 'no-activity', 'likely-stuck', 'elastic',
 'deadline']
 
-if version >= pkg_resources.parse_version("1.14"):
+# NOTE(toabctl): if we don't know the version assume that we
+# use a newer version of the plugin
+if not version or version >= pkg_resources.parse_version("1.14"):
 strategy = data.get('type', 'absolute')
 if strategy not in valid_strategies:
 InvalidAttributeError('type', strategy, valid_strategies)
Index: jenkins-job-builder-1.6.1/tests/jsonparser/fixtures/complete001.xml
===
--- jenkins-job-builder-1.6.1.orig/tests/jsonparser/fixtures/complete001.xml
+++ jenkins-job-builder-1.6.1/tests/jsonparser/fixtures/complete001.xml
@@ -115,12 +115,14 @@ print(Doing something cool with py
   
   
 
-  3
-  true
-  false
-  150
-  90
-  elastic
+  
+150
+0
+90
+  
+  
+
+  
 
 
   
Index: jenkins-job-builder-1.6.1/tests/wrappers/fixtures/timeout/timeout001.xml

commit yast2-network for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-10-31 09:53:45

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


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-10-20 23:05:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-10-31 09:53:45.0 +0100
@@ -1,0 +2,6 @@
+Tue Oct 25 13:25:53 UTC 2016 - mvid...@suse.com
+
+- Fixed a hardcoded interface name in a CLI test (bsc#1006799)
+- 3.2.8
+
+---

Old:

  yast2-network-3.2.7.tar.bz2

New:

  yast2-network-3.2.8.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.ZnVkRi/_old  2016-10-31 09:53:46.0 +0100
+++ /var/tmp/diff_new_pack.ZnVkRi/_new  2016-10-31 09:53:46.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.7
+Version:3.2.8
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.2.7.tar.bz2 -> yast2-network-3.2.8.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.7/package/yast2-network.changes 
new/yast2-network-3.2.8/package/yast2-network.changes
--- old/yast2-network-3.2.7/package/yast2-network.changes   2016-10-17 
11:39:41.0 +0200
+++ new/yast2-network-3.2.8/package/yast2-network.changes   2016-10-25 
15:35:00.0 +0200
@@ -1,4 +1,10 @@
 ---
+Tue Oct 25 13:25:53 UTC 2016 - mvid...@suse.com
+
+- Fixed a hardcoded interface name in a CLI test (bsc#1006799)
+- 3.2.8
+
+---
 Mon Oct 17 08:13:38 UTC 2016 - kanders...@suse.com
 
 - Bridge handling has been improved (bsc#962824).
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.7/package/yast2-network.spec 
new/yast2-network-3.2.8/package/yast2-network.spec
--- old/yast2-network-3.2.7/package/yast2-network.spec  2016-10-17 
11:39:41.0 +0200
+++ new/yast2-network-3.2.8/package/yast2-network.spec  2016-10-25 
15:35:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.2.7
+Version:3.2.8
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.2.7/t/add-del.t 
new/yast2-network-3.2.8/t/add-del.t
--- old/yast2-network-3.2.7/t/add-del.t 2016-10-17 11:39:41.0 +0200
+++ new/yast2-network-3.2.8/t/add-del.t 2016-10-25 15:35:00.0 +0200
@@ -17,12 +17,13 @@
 
 YAST=/usr/sbin/yast
 
-echo "# assume and check that eth0 exists, as a base for the vlan"
-ip addr show dev eth0
-echo "ok 1 eth0: exists already"
+echo "# find the base device for the vlan"
+BASEDEVICE=$(ip -o addr show scope global | head -n1 | cut -d' ' -f2)
+ip addr show dev $BASEDEVICE
+echo "ok 1 $BASEDEVICE: found"
 
 echo "# add a (virtual) interface"
-$YAST lan add name=vlan50 ethdevice=eth0 bootproto=dhcp || tapfail
+$YAST lan add name=vlan50 ethdevice=$BASEDEVICE bootproto=dhcp || tapfail
 echo "ok 2 vlan50: added"
 
 # check it has worked




commit cmocka for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package cmocka for openSUSE:Factory checked 
in at 2016-10-31 09:53:55

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


Package is "cmocka"

Changes:

--- /work/SRC/openSUSE:Factory/cmocka/cmocka.changes2015-07-23 
15:22:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.cmocka.new/cmocka.changes   2016-10-31 
09:53:56.0 +0100
@@ -1,0 +2,19 @@
+Tue Oct 25 14:05:35 UTC 2016 - a...@cryptomilk.org
+
+- Fix url for Source0
+
+---
+Wed Sep 21 15:01:34 UTC 2016 - a...@cryptomilk.org
+
+- Update to version 1.1.0
+  * Added support to catch multiple exceptions
+  * Added support to verify call ordering
+  * Added support to pass initial data to test cases
+  * Added will_return_maybe() for ignoring mock returns
+  * Added subtests for groups using TAP output
+  * Added support to write multiple XML files for groups
+  * Improved documentation
+  * Fixed XML output generataion
+  * Fixed Windows builds with VS2015
+
+---

Old:

  cmocka-1.0.1.tar.xz

New:

  cmocka-1.1.0.tar.xz



Other differences:
--
++ cmocka.spec ++
--- /var/tmp/diff_new_pack.ci0nUu/_old  2016-10-31 09:53:57.0 +0100
+++ /var/tmp/diff_new_pack.ci0nUu/_new  2016-10-31 09:53:57.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package cmocka
 #
-# 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:   cmocka
-Version:1.0.1
+Version:1.1.0
 Release:0
 Summary:Lightweight library to simplify and generalize unit tests for C
 License:Apache-2.0
 Group:  Productivity/Networking/Other
 Url:http://cmocka.org
-Source0:https://cmocka.org/files/1.0/%{name}-%{version}.tar.xz
+Source0:https://cmocka.org/files/1.1/%{name}-%{version}.tar.xz
 Source1:baselibs.conf
 BuildRequires:  cmake
 BuildRequires:  glibc-devel

++ cmocka-1.0.1.tar.xz -> cmocka-1.1.0.tar.xz ++
 2478 lines of diff (skipped)




commit resource-agents for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package resource-agents for openSUSE:Factory 
checked in at 2016-10-31 09:52:59

Comparing /work/SRC/openSUSE:Factory/resource-agents (Old)
 and  /work/SRC/openSUSE:Factory/.resource-agents.new (New)


Package is "resource-agents"

Changes:

--- /work/SRC/openSUSE:Factory/resource-agents/resource-agents.changes  
2016-10-10 17:28:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.resource-agents.new/resource-agents.changes 
2016-10-31 09:53:00.0 +0100
@@ -1,0 +2,13 @@
+Tue Oct 18 09:29:39 UTC 2016 - kgronl...@suse.com
+
+- Update to version 3.9.7+git.1475827855.a95ea74:
+  * High: nfsserver: Delete the temp file correctly.
+  * Low: nfsserver: Prevent unnecessary log output
+
+---
+Tue Oct 18 09:27:32 UTC 2016 - kgronl...@suse.com
+
+- Revert send_arp to libnet version (bsc#985486) 
+  * For infiniband support in IPaddr2, install ipoibtools
+
+---

Old:

  resource-agents-3.9.7+git.1475676827.4af1003.tar.xz

New:

  resource-agents-3.9.7+git.1475827855.a95ea74.tar.xz



Other differences:
--
++ resource-agents.spec ++
--- /var/tmp/diff_new_pack.xf7Afy/_old  2016-10-31 09:53:01.0 +0100
+++ /var/tmp/diff_new_pack.xf7Afy/_new  2016-10-31 09:53:01.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   resource-agents
-Version:3.9.7+git.1475676827.4af1003
+Version:3.9.7+git.1475827855.a95ea74
 Release:0
 Summary:Open Source HA Reusable Cluster Resource Scripts
 License:GPL-2.0 and LGPL-2.1+ and GPL-3.0+
@@ -112,8 +112,7 @@
 --enable-fatal-warnings=no \
 --with-systemdsystemunitdir=%{_unitdir} \ \
 --with-pkg-name=%{name} \
---with-rsctmpdir=%{_rundir}/%{name} \
---enable-libnet=no
+--with-rsctmpdir=%{_rundir}/%{name}
 make %{?_smp_mflags}
 
 %install

++ _servicedata ++
--- /var/tmp/diff_new_pack.xf7Afy/_old  2016-10-31 09:53:02.0 +0100
+++ /var/tmp/diff_new_pack.xf7Afy/_new  2016-10-31 09:53:02.0 +0100
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/resource-agents.git
-  e1ac560cdf37dca96b84babae11172eb9d8538ed
\ No newline at end of file
+  a95ea74ce7bbe721f8f063c6de3af9161e0d713a
\ No newline at end of file

++ resource-agents-3.9.7+git.1475676827.4af1003.tar.xz -> 
resource-agents-3.9.7+git.1475827855.a95ea74.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/resource-agents-3.9.7+git.1475676827.4af1003/heartbeat/nfsserver 
new/resource-agents-3.9.7+git.1475827855.a95ea74/heartbeat/nfsserver
--- old/resource-agents-3.9.7+git.1475676827.4af1003/heartbeat/nfsserver
2016-10-05 16:13:47.0 +0200
+++ new/resource-agents-3.9.7+git.1475827855.a95ea74/heartbeat/nfsserver
2016-10-07 10:10:55.0 +0200
@@ -310,8 +310,9 @@
 {
local threads_num
local rc
+   local fn
 
-   ocf_log info "Status: rpcbind"
+   ocf_log debug "Status: rpcbind"
rpcinfo > /dev/null 2>&1
rc=$?
if [ "$rc" -ne "0" ]; then
@@ -319,7 +320,7 @@
return $OCF_NOT_RUNNING
fi
 
-   ocf_log info "Status: nfs-mountd"
+   ocf_log debug "Status: nfs-mountd"
rpcinfo -t localhost 15 > /dev/null 2>&1
rc=$?
if [ "$rc" -ne "0" ]; then
@@ -327,7 +328,7 @@
return $OCF_NOT_RUNNING
fi
 
-   ocf_log info "Status: nfs-idmapd"
+   ocf_log debug "Status: nfs-idmapd"
fn=`mktemp`
nfs_exec status nfs-idmapd > $fn 2>&1
rc=$?
@@ -338,7 +339,7 @@
return $OCF_NOT_RUNNING
fi
 
-   ocf_log info "Status: rpc-statd"
+   ocf_log debug "Status: rpc-statd"
rpcinfo -t localhost 100024 > /dev/null 2>&1
rc=$?
if [ "$rc" -ne "0" ]; then
@@ -371,6 +372,8 @@
 
 nfsserver_monitor ()
 {
+   local fn
+
set_exec_mode
fn=`mktemp`
case $EXEC_MODE in
@@ -603,6 +606,7 @@
 nfsserver_start ()
 {
local rc;
+   local fn
 
if nfsserver_monitor; then
ocf_log debug "NFS server is already started"
@@ -731,6 +735,8 @@
 
 nfsserver_stop ()
 {
+   local fn
+
ocf_log info "Stopping NFS server ..."
 
# backup the current sm state information to the ha folder before 
stopping.




commit llvm3_8 for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package llvm3_8 for openSUSE:Factory checked 
in at 2016-10-31 09:53:20

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


Package is "llvm3_8"

Changes:

--- /work/SRC/openSUSE:Factory/llvm3_8/llvm3_8.changes  2016-10-10 
17:26:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.llvm3_8.new/llvm3_8.changes 2016-10-31 
09:53:21.0 +0100
@@ -1,0 +2,5 @@
+Mon Oct 24 11:17:14 UTC 2016 - idon...@suse.com
+
+- Install FileCheck utility, needed by rust bsc#1006199 
+
+---



Other differences:
--
++ llvm3_8.spec ++
--- /var/tmp/diff_new_pack.lbCemW/_old  2016-10-31 09:53:23.0 +0100
+++ /var/tmp/diff_new_pack.lbCemW/_new  2016-10-31 09:53:23.0 +0100
@@ -447,6 +447,9 @@
 %install
 %cmake_install
 
+# Install FileCheck needed by rust bsc#1006199
+install -m 0755 build/bin/FileCheck %{buildroot}%{_bindir}/FileCheck
+
 # Docs are prebuilt due to sphinx dependency
 #
 # pushd llvm-3.8.1.src/docs
@@ -535,7 +538,7 @@
 
 # Prepare for update-alternatives usage
 mkdir -p %{buildroot}%{_sysconfdir}/alternatives
-binfiles=( bugpoint llc lli \
+binfiles=( bugpoint FileCheck llc lli \
llvm-ar llvm-as llvm-bcanalyzer llvm-c-test llvm-cov \
llvm-cxxdump llvm-diff llvm-dis llvm-dsymutil llvm-dwarfdump \
llvm-dwp llvm-extract llvm-lib llvm-link llvm-lto llvm-mc \
@@ -650,6 +653,7 @@
 %_sbindir/update-alternatives \
--install %{_bindir}/llvm-ar llvm-ar %{_bindir}/llvm-ar-%{version} 
%{_uaver} \
--slave %{_bindir}/bugpoint bugpoint %{_bindir}/bugpoint-%{version} \
+   --slave %{_bindir}/FileCheck FileCheck %{_bindir}/FileCheck-%{version} \
--slave %{_bindir}/llc llc %{_bindir}/llc-%{version} \
--slave %{_bindir}/lli lli %{_bindir}/lli-%{version} \
--slave %{_bindir}/llvm-as llvm-as %{_bindir}/llvm-as-%{version} \
@@ -742,6 +746,7 @@
 %files
 %defattr(-,root,root)
 %{_bindir}/bugpoint
+%{_bindir}/FileCheck
 %{_bindir}/llc
 %{_bindir}/lli
 %{_bindir}/llvm-ar
@@ -779,6 +784,7 @@
 %{_bindir}/verify-uselistorder
 %{_bindir}/yaml2obj
 %{_bindir}/bugpoint-%{version}
+%{_bindir}/FileCheck-%{version}
 %{_bindir}/llc-%{version}
 %{_bindir}/lli-%{version}
 %{_bindir}/llvm-ar-%{version}
@@ -816,6 +822,7 @@
 %{_bindir}/verify-uselistorder-%{version}
 %{_bindir}/yaml2obj-%{version}
 %ghost %{_sysconfdir}/alternatives/bugpoint
+%ghost %{_sysconfdir}/alternatives/FileCheck
 %ghost %{_sysconfdir}/alternatives/llc
 %ghost %{_sysconfdir}/alternatives/lli
 %ghost %{_sysconfdir}/alternatives/llvm-ar





commit perl-Mojolicious for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package perl-Mojolicious for 
openSUSE:Factory checked in at 2016-10-31 09:53:31

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


Package is "perl-Mojolicious"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Mojolicious/perl-Mojolicious.changes
2016-10-10 17:31:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Mojolicious.new/perl-Mojolicious.changes   
2016-10-31 09:53:32.0 +0100
@@ -1,0 +2,11 @@
+Mon Oct 24 05:53:29 UTC 2016 - co...@suse.com
+
+- updated to 7.09
+   see /usr/share/doc/packages/perl-Mojolicious/Changes
+
+  7.09  2016-10-22
+- Added every_header method to Mojo::Headers.
+- Fixed redirect bug in Mojo::UserAgent::Transactor.
+- Fixed a few proxy bugs in Mojo::UserAgent.
+
+---

Old:

  Mojolicious-7.08.tar.gz

New:

  Mojolicious-7.09.tar.gz



Other differences:
--
++ perl-Mojolicious.spec ++
--- /var/tmp/diff_new_pack.M1zLYt/_old  2016-10-31 09:53:33.0 +0100
+++ /var/tmp/diff_new_pack.M1zLYt/_new  2016-10-31 09:53:33.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Mojolicious
-Version:7.08
+Version:7.09
 Release:0
 %define cpan_name Mojolicious
 Summary:Real-time web framework

++ Mojolicious-7.08.tar.gz -> Mojolicious-7.09.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-7.08/Changes new/Mojolicious-7.09/Changes
--- old/Mojolicious-7.08/Changes2016-09-23 14:49:49.0 +0200
+++ new/Mojolicious-7.09/Changes2016-10-22 18:59:15.0 +0200
@@ -1,4 +1,9 @@
 
+7.09  2016-10-22
+  - Added every_header method to Mojo::Headers.
+  - Fixed redirect bug in Mojo::UserAgent::Transactor.
+  - Fixed a few proxy bugs in Mojo::UserAgent.
+
 7.08  2016-09-23
   - Added -i and -o options to get command.
   - Updated jQuery to version 3.1.1.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-7.08/META.json 
new/Mojolicious-7.09/META.json
--- old/Mojolicious-7.08/META.json  2016-09-23 19:18:40.0 +0200
+++ new/Mojolicious-7.09/META.json  2016-10-23 11:45:53.0 +0200
@@ -58,6 +58,6 @@
   },
   "x_IRC" : "irc://irc.perl.org/#mojo"
},
-   "version" : "7.08",
+   "version" : "7.09",
"x_serialization_backend" : "JSON::PP version 2.27400"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-7.08/META.yml 
new/Mojolicious-7.09/META.yml
--- old/Mojolicious-7.08/META.yml   2016-09-23 19:18:40.0 +0200
+++ new/Mojolicious-7.09/META.yml   2016-10-23 11:45:52.0 +0200
@@ -31,5 +31,5 @@
   homepage: http://mojolicious.org
   license: http://www.opensource.org/licenses/artistic-license-2.0
   repository: https://github.com/kraih/mojo.git
-version: '7.08'
+version: '7.09'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-7.08/lib/Mojo/Headers.pm 
new/Mojolicious-7.09/lib/Mojo/Headers.pm
--- old/Mojolicious-7.08/lib/Mojo/Headers.pm2016-08-23 13:24:27.0 
+0200
+++ new/Mojolicious-7.09/lib/Mojo/Headers.pm2016-10-22 18:58:03.0 
+0200
@@ -49,6 +49,8 @@
 
 sub clone { $_[0]->new->from_hash($_[0]->to_hash(1)) }
 
+sub every_header { shift->{headers}{lc shift} || [] }
+
 sub from_hash {
   my ($self, $hash) = @_;
 
@@ -396,6 +398,16 @@
 
 Get or replace current header value, shortcut for the C header.
 
+=head2 every_header
+
+  my $all = $headers->every_header('Location');
+
+Similar to L, but returns all headers sharing the same name as an
+array reference.
+
+  # Get first header value
+  say $headers->every_header('Location')->[0];
+
 =head2 expect
 
   my $expect = $headers->expect;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Mojolicious-7.08/lib/Mojo/IOLoop/Client.pm 
new/Mojolicious-7.09/lib/Mojo/IOLoop/Client.pm
--- old/Mojolicious-7.08/lib/Mojo/IOLoop/Client.pm  2016-07-19 
02:38:18.0 +0200
+++ new/Mojolicious-7.09/lib/Mojo/IOLoop/Client.pm  2016-10-22 
19:31:42.0 +0200
@@ -96,7 +96,7 @@
 
   # Socket changes in between attempts and needs to be re-added for 
epoll/kqueue
   my $handle = $self->{handle};
-  if ($handle->isa('IO::Socket::IP') && !$handle->connect) {
+  unless ($handle->connect) {
 return $self->emit(error => $!) unless $! == EINPROGRESS;
 $self->reactor->remove($handle);
 return 

commit kiwi for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2016-10-31 09:53:10

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


Package is "kiwi"

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2016-10-18 
10:08:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2016-10-31 
09:53:11.0 +0100
@@ -1,0 +2,48 @@
+Tue Oct 25 14:38:05 CEST 2016 - m...@suse.de
+
+- v7.04.8 released
+  
+---
+Tue Oct 25 14:37:35 CEST 2016 - m...@suse.de
+  
+- Only one changelog section is allowed
+  
+---
+Tue Oct 25 12:08:59 CEST 2016 - m...@suse.de
+  
+- Make sure an empty %changelog tag exists
+  
+---
+Tue Oct 25 11:33:57 CEST 2016 - m...@suse.de
+  
+- No longer write a %changelog section in the spec
+  
+  For some reason the packaging concept no longer needs a changelog
+  section in the spec file. Most likely the build service scripts
+  now generates those information from the .changes file which lead
+  to duplicate changelog information in the package
+  
+---
+Fri Oct 21 09:59:07 CEST 2016 - m...@suse.de
+  
+- v7.04.7 released
+  
+---
+Wed Oct 19 14:27:26 CEST 2016 - andrew.ch...@gmail.com
+  
+- Fixed a rounding error in partedMBToCylinder():
+  
+  bc truncates number of cylinders to zero decimal places, which results in a
+  partition that is slightly smaller than the requested size. Add one cylinder
+  to compensate.
+  
+---
+Wed Oct 19 12:53:45 CEST 2016 - adr...@suse.de
+  
+- drop kiwi-instsource-plugins
+  
+  It got moved to
+  
+  https://github.com/openSUSE/kiwi-instsource-plugins
+  
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.tmwCRY/_old  2016-10-31 09:53:12.0 +0100
+++ /var/tmp/diff_new_pack.tmwCRY/_new  2016-10-31 09:53:12.0 +0100
@@ -27,7 +27,7 @@
 Name:   kiwi
 License:GPL-2.0
 Group:  System/Management
-Version:7.04.6
+Version:7.04.8
 Provides:   kiwi-schema = 6.2
 Provides:   kiwi-image:aci
 Provides:   kiwi-image:lxc

++ kiwi-docu.tar.bz2 ++

++ kiwi-repo.tar.bz2 ++

++ kiwi.tar.bz2 ++
 14363 lines of diff (skipped)




commit spdylay for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package spdylay for openSUSE:Factory checked 
in at 2016-10-31 09:52:03

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


Package is "spdylay"

Changes:

--- /work/SRC/openSUSE:Factory/spdylay/spdylay.changes  2016-10-22 
13:00:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.spdylay.new/spdylay.changes 2016-10-31 
09:52:04.0 +0100
@@ -1,0 +2,5 @@
+Sat Oct 22 17:27:46 UTC 2016 - jeng...@inai.de
+
+- Rectify rpm group classification and trim descriptions.
+
+---



Other differences:
--
++ spdylay.spec ++
--- /var/tmp/diff_new_pack.bvajw5/_old  2016-10-31 09:52:06.0 +0100
+++ /var/tmp/diff_new_pack.bvajw5/_new  2016-10-31 09:52:06.0 +0100
@@ -23,7 +23,7 @@
 Release:0
 Summary:SPDY C Library
 License:MIT
-Group:  System/Libraries
+Group:  Development/Libraries/C and C++
 Url:https://tatsuhiro-t.github.io/spdylay/
 Source: 
https://github.com/tatsuhiro-t/spdylay/releases/download/v%{version}/spdylay-%{version}.tar.xz
 BuildRequires:  gcc-c++
@@ -38,42 +38,39 @@
 BuildRequires:  pkgconfig(zlib) >= 1.2.3
 
 %description
-This is an experimental implementation of Google’s SPDY protocol in C. This
-library provides SPDY version 2, 3 and 3.1 framing layer implementation. It
-does not perform any I/O operations. When the library needs them, it calls the
-callback functions provided by the application. It also does not include any
-event polling mechanism, so the application can freely choose the way of
-handling events. This library code does not depend on any particular SSL
-library (except for example programs which depend on OpenSSL 1.0.1 or later).
+This is an experimental implementation of Google’s SPDY protocol in
+C. This library provides SPDY version 2, 3 and 3.1 framing layer
+implementation. It does not perform any I/O operations but uses
+callback functions provided by the application. Likewise, it includes
+no event polling mechanism, so the application can freely choose.
+Except for sample programs, this library code does not depend on any
+particular SSL library.
 
 %package -n %{c_lib}
-Summary:SPDY C Library - Shared C library
+Summary:SPDY C Library
 Group:  System/Libraries
 
 %description -n %{c_lib}
-This is an experimental implementation of Google’s SPDY protocol in C. This
-library provides SPDY version 2, 3 and 3.1 framing layer implementation. It
-does not perform any I/O operations. When the library needs them, it calls the
-callback functions provided by the application. It also does not include any
-event polling mechanism, so the application can freely choose the way of
-handling events. This library code does not depend on any particular SSL
-library (except for example programs which depend on OpenSSL 1.0.1 or later).
+This is an experimental implementation of Google’s SPDY protocol in
+C. This library provides SPDY version 2, 3 and 3.1 framing layer
+implementation. It does not perform any I/O operations but uses
+callback functions provided by the application. Likewise, it includes
+no event polling mechanism, so the application can freely choose.
 
 This package holds the shared C library.
 
 %package devel
-Summary:SPDY C Library - Development Files
+Summary:Development files for the SPDY C Library
 Group:  Development/Libraries/C and C++
 Requires:   %{c_lib} = %{version}
 
 %description devel
-This is an experimental implementation of Google’s SPDY protocol in C. This
-library provides SPDY version 2, 3 and 3.1 framing layer implementation. It
-does not perform any I/O operations. When the library needs them, it calls the
-callback functions provided by the application. It also does not include any
-event polling mechanism, so the application can freely choose the way of
-handling events. This library code does not depend on any particular SSL
-library (except for example programs which depend on OpenSSL 1.0.1 or later).
+This is an experimental implementation of Google’s SPDY protocol in
+C. This library provides SPDY version 2, 3 and 3.1 framing layer
+implementation. It does not perform any I/O operations but uses
+callback functions provided by the application. Likewise, it includes
+no event polling mechanism, so the application can freely choose.
+There is no dependency on a particular SSL library.
 
 This package holds the development files.
 




commit libwps for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package libwps for openSUSE:Factory checked 
in at 2016-10-31 09:52:19

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


Package is "libwps"

Changes:

--- /work/SRC/openSUSE:Factory/libwps/libwps.changes2016-10-20 
23:05:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.libwps.new/libwps.changes   2016-10-31 
09:52:20.0 +0100
@@ -1,0 +2,5 @@
+Sat Oct 22 16:59:30 UTC 2016 - jeng...@inai.de
+
+- Remove redundant pkgconfig requires
+
+---



Other differences:
--
++ libwps.spec ++
--- /var/tmp/diff_new_pack.NCQ3Wm/_old  2016-10-31 09:52:21.0 +0100
+++ /var/tmp/diff_new_pack.NCQ3Wm/_new  2016-10-31 09:52:21.0 +0100
@@ -48,8 +48,6 @@
 Summary:Files for Developing with libwps
 Group:  Development/Libraries/C and C++
 Requires:   %{libname} = %{version}
-Requires:   pkgconfig
-Requires:   pkgconfig(glu)
 
 %description devel
 libwps is a library for importing the Microsoft Works word processor




commit apparmor for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package apparmor for openSUSE:Factory 
checked in at 2016-10-31 09:52:34

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


Package is "apparmor"

Changes:

--- /work/SRC/openSUSE:Factory/apparmor/apparmor.changes2016-10-18 
10:09:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.apparmor.new/apparmor.changes   2016-10-31 
09:52:34.0 +0100
@@ -1,0 +2,6 @@
+Sun Oct 23 13:18:43 UTC 2016 - suse-b...@cboltz.de
+
+- add nscd-var-lib.diff to allow /var/lib/nscd/ in the nscd profile and
+  abstractions/nameservice (path changed in latest nscd in Tumbleweed)
+
+---

New:

  nscd-var-lib.diff



Other differences:
--
++ apparmor.spec ++
--- /var/tmp/diff_new_pack.ebjcpV/_old  2016-10-31 09:52:35.0 +0100
+++ /var/tmp/diff_new_pack.ebjcpV/_new  2016-10-31 09:52:35.0 +0100
@@ -101,6 +101,9 @@
 # upstream changes/fixes from 2.10 branch r3347..3353
 Patch9: changes-since-2.10.1--r3347..3353.diff
 
+# update nscd profile and abstractions/nameservice to allow /var/lib/nscd/ 
paths (submitted upstream 2016-10-23)
+Patch10:nscd-var-lib.diff
+
 Url:https://launchpad.net/apparmor
 PreReq: sed
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -452,6 +455,7 @@
 %patch7 -p1
 %patch8
 %patch9
+%patch10
 
 # search for left-over multiline rules
 test -z "$(grep -r '^\s*\(unix\|dbus\)[^,]\(([^)]*)\)*[^,]*$' 
profiles/apparmor.d/)"



++ nscd-var-lib.diff ++
=== modified file 'profiles/apparmor.d/abstractions/nameservice'
--- profiles/apparmor.d/abstractions/nameservice2016-06-22 22:15:49 
+
+++ profiles/apparmor.d/abstractions/nameservice2016-10-22 19:55:04 
+
@@ -46,7 +46,7 @@
   # to vast speed increases when working with network-based lookups.
   /{,var/}run/.nscd_socket   rw,
   /{,var/}run/nscd/socketrw,
-  /{var/db,var/cache,var/run,run}/nscd/{passwd,group,services,hosts}r,
+  /{var/db,var/cache,var/lib,var/run,run}/nscd/{passwd,group,services,hosts}   
 r,
   # nscd renames and unlinks files in it's operation that clients will
   # have open
   /{,var/}run/nscd/db*  rmix,

=== modified file 'profiles/apparmor.d/usr.sbin.nscd'
--- profiles/apparmor.d/usr.sbin.nscd   2016-03-21 20:30:19 +
+++ profiles/apparmor.d/usr.sbin.nscd   2016-10-22 19:54:36 +
@@ -28,7 +28,7 @@
   /{,var/}run/nscd/ rw,
   /{,var/}run/nscd/db* rwl,
   /{,var/}run/nscd/socket wl,
-  /{var/cache,var/run,run}/nscd/{passwd,group,services,hosts,netgroup} rw,
+  /{var/cache,var/lib,var/run,run}/nscd/{passwd,group,services,hosts,netgroup} 
rw,
   /{,var/}run/{nscd/,}nscd.pid rwl,
   /var/log/nscd.log rw,
   @{PROC}/@{pid}/cmdline r,




commit python3-pyserial for openSUSE:Factory

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package python3-pyserial for 
openSUSE:Factory checked in at 2016-10-31 09:51:43

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


Package is "python3-pyserial"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pyserial/python3-pyserial-doc.changes
2016-07-12 23:50:04.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-pyserial.new/python3-pyserial-doc.changes   
2016-10-31 09:51:44.0 +0100
@@ -1,0 +2,31 @@
+Sat Oct 22 15:36:48 UTC 2016 - a...@gmx.de
+
+- update to version 3.2.1:
+  * Improvements:
++ remove "serial.aio" in favor of separate package,
+  "pyserial-asyncio"
++ add client mode to example "tcp_serial_redirect.py"
++ use of monotonic clock for timeouts, when available (Python 3.3
+  and up)
++ [#169] arbitrary baud rate support for BSD family
++ improve tests, improve "loop://"
+  * Bugfixes:
++ [#137] Exception while cancel in miniterm (python3)
++ [#143] Class Serial in protocol_loop.py references variable
+  before assigning to it
++ [#149] Python 3 fix for threaded.FramedPacket
+  * Bugfixes (posix):
++ [#133] _update_dtr_state throws Inappropriate ioctl for virtual
+  serial port created by socat on OS X
++ [#157] Broken handling of CMSPAR in serialposix.py
+  * Bugfixes (win32):
++ [#144] Use Unicode API for list_ports
++ [#145] list_ports_windows: support devices with only VID
++ [#162] Write in non-blocking mode returns incorrect value on
+  windows
+
+- changes from version 3.2.0:
+  * See 3.2.1, this one missed a merge request related to removing
+aio.
+
+---
python3-pyserial.changes: same change

Old:

  pyserial-3.1.1.tar.gz

New:

  pyserial-3.2.1.tar.gz



Other differences:
--
++ python3-pyserial-doc.spec ++
--- /var/tmp/diff_new_pack.EcGHO7/_old  2016-10-31 09:51:45.0 +0100
+++ /var/tmp/diff_new_pack.EcGHO7/_new  2016-10-31 09:51:45.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pyserial-doc
-Version:3.1.1
+Version:3.2.1
 Release:0
 Url:https://github.com/pyserial/pyserial
 Summary:Documentation for python3-pyserial

python3-pyserial.spec: same change
++ pyserial-3.1.1.tar.gz -> pyserial-3.2.1.tar.gz ++
 2687 lines of diff (skipped)




commit patchinfo.5709 for openSUSE:13.2:Update

2016-10-31 Thread h_root
Hello community,

here is the log from the commit of package patchinfo.5709 for 
openSUSE:13.2:Update checked in at 2016-10-31 08:53:12

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


Package is "patchinfo.5709"

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _patchinfo



Other differences:
--
++ _patchinfo ++

  Dovecot 2.2: ldap auth broken when sasl 
bind is used
  recommended
  moderate
  matwey
  
This recommended update for dovecot22 fixes the following issue: 

- Fix LDAP based authentication for some setups (boo #1003952)

  Recommended update for dovecot22