commit digikam for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package digikam for openSUSE:Factory checked 
in at 2017-11-23 09:45:25

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


Package is "digikam"

Thu Nov 23 09:45:25 2017 rev:163 rq:544531 version:5.7.0

Changes:

--- /work/SRC/openSUSE:Factory/digikam/digikam.changes  2017-10-13 
14:14:36.120148054 +0200
+++ /work/SRC/openSUSE:Factory/.digikam.new/digikam.changes 2017-11-23 
09:45:40.349758890 +0100
@@ -1,0 +2,6 @@
+Wed Nov 22 11:51:13 UTC 2017 - wba...@tmo.at
+
+- Add Adapt-to-KCalCore-API-changes.patch to make it build with
+  KDE Applications 17.12
+
+---

New:

  Adapt-to-KCalCore-API-changes.patch



Other differences:
--
++ digikam.spec ++
--- /var/tmp/diff_new_pack.fz5HMB/_old  2017-11-23 09:45:44.373612052 +0100
+++ /var/tmp/diff_new_pack.fz5HMB/_new  2017-11-23 09:45:44.377611906 +0100
@@ -26,6 +26,8 @@
 Source0:
http://download.kde.org/stable/%{name}/%{name}-%{version}.tar.xz
 # PATCH-FIX-OPENSUSE 0001-Disable-detection-of-OpenGL-for-GLES-platforms.patch 
-- The OpenGL slideshow depends on Desktop GL, see kde#383715
 Patch0: 0001-Disable-detection-of-OpenGL-for-GLES-platforms.patch
+# PATCH-FIX-UPSTREAM
+Patch1: Adapt-to-KCalCore-API-changes.patch
 #This pulls in QWebEngine, which is not available on ppc64
 %ifarch %ix86 x86_64 %arm aarch64 mips mips64
 BuildRequires:  akonadi-contact-devel
@@ -169,6 +171,7 @@
 # Disable OpenGL slideshow on embedded platforms
 %patch0 -p1
 %endif
+%patch1 -p1
 
 # Remove build time references so build-compare can do its work
 FAKE_BUILDDATE=$(LC_ALL=C date -u -r %{_sourcedir}/%{name}.changes '+%%b %%e 
%%Y')

++ Adapt-to-KCalCore-API-changes.patch ++
>From dad750fadc926b62603cc9d64009ee5072a46d97 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= 
Date: Wed, 13 Sep 2017 16:51:14 +0200
Subject: Adapt to KCalCore API changes

This change supports both old (pre-QDateTime) and new version.

Differential Revision: https://phabricator.kde.org/D7802
---
 core/CMakeLists.txt  |  3 +++
 core/app/utils/digikam_config.h.cmake.in |  3 +++
 core/utilities/assistants/calendar/print/calsettings.cpp | 14 ++
 3 files changed, 16 insertions(+), 4 deletions(-)

diff --git a/core/CMakeLists.txt b/core/CMakeLists.txt
index 3ad686d..e2f28a7 100644
--- a/core/CMakeLists.txt
+++ b/core/CMakeLists.txt
@@ -174,6 +174,9 @@ find_package(KF5 ${CALENDAR_MIN_VERSION} QUIET
  OPTIONAL_COMPONENTS
  CalendarCore   # For Calendar tool.
 )
+if ("${KF5CalendarCore_VERSION}" VERSION_GREATER 5.6.40)
+set(HAVE_KCALENDAR_QDATETIME TRUE)
+endif()
 
 if(ENABLE_AKONADICONTACTSUPPORT AND NOT KF5AkonadiContact_FOUND)
 set(ENABLE_KFILEMETADATASUPPORT OFF)
diff --git a/core/app/utils/digikam_config.h.cmake.in 
b/core/app/utils/digikam_config.h.cmake.in
index 8a2e8e5..ffd3a22 100644
--- a/core/app/utils/digikam_config.h.cmake.in
+++ b/core/app/utils/digikam_config.h.cmake.in
@@ -75,6 +75,9 @@
 /* Define to 1 if you have KCalendar core shared libraries installed */
 #cmakedefine HAVE_KCALENDAR 1
 
+/* Define to 1 if you have KCalendar core shared libraries with QDateTime 
support installed */
+#cmakedefine HAVE_KCALENDAR_QDATETIME 1
+
 /* Define to 1 if Panorama tool is supported */
 #cmakedefine HAVE_PANORAMA 1
 
diff --git a/core/utilities/assistants/calendar/print/calsettings.cpp 
b/core/utilities/assistants/calendar/print/calsettings.cpp
index 46e995d..c6554ef 100644
--- a/core/utilities/assistants/calendar/print/calsettings.cpp
+++ b/core/utilities/assistants/calendar/print/calsettings.cpp
@@ -290,7 +290,13 @@ void CalSettings::loadSpecial(const QUrl& url, const 
QColor& color)
 return;
 }
 
-KCalCore::MemoryCalendar::Ptr memCal(new 
KCalCore::MemoryCalendar(QString::fromLatin1("UTC")));
+#if HAVE_KCALENDAR_QDATETIME
+KCalCore::MemoryCalendar::Ptr memCal(new 
KCalCore::MemoryCalendar(QTimeZone::utc()));
+using DateTime = QDateTime;
+#else
+KCalCore::MemoryCalendar::Ptr memCal(new 
KCalCore::MemoryCalendar(QString::fromLatin1("UTC")));
+using DateTime = KDateTime;
+#endif
 KCalCore::FileStorage::Ptr fileStorage(new KCalCore::FileStorage(memCal, 
url.toLocalFile(), new KCalCore::ICalFormat));
 
 qCDebug(DIGIKAM_GENERAL_LOG) << "Loading calendar from file " << 
url.toLocalFile();
@@ -308,9 +314,9 @@ void CalSettings::loadSpecial(const QUrl& url, const 
QColor& color)
 qLast  = calSys.date(params.year + 1, 1, 1);
 qLast  = qLast.addDays(-1);
 
-KDateTime 

commit calligra for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package calligra for openSUSE:Factory 
checked in at 2017-11-23 09:45:19

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


Package is "calligra"

Thu Nov 23 09:45:19 2017 rev:68 rq:544530 version:3.0.1

Changes:

--- /work/SRC/openSUSE:Factory/calligra/calligra.changes2017-07-26 
13:06:24.044737164 +0200
+++ /work/SRC/openSUSE:Factory/.calligra.new/calligra.changes   2017-11-23 
09:45:30.982100736 +0100
@@ -1,0 +2,6 @@
+Wed Nov 22 11:44:30 UTC 2017 - wba...@tmo.at
+
+- Add fix-build-with-newer-kcalcore.patch to make it build with
+  KDE Applications 17.12
+
+---

New:

  fix-build-with-newer-kcalcore.patch



Other differences:
--
++ calligra.spec ++
--- /var/tmp/diff_new_pack.EAq1NM/_old  2017-11-23 09:45:33.126022500 +0100
+++ /var/tmp/diff_new_pack.EAq1NM/_new  2017-11-23 09:45:33.130022354 +0100
@@ -24,6 +24,8 @@
 Group:  Productivity/Office/Suite
 Url:http://www.calligra.org/
 Source0:
http://download.kde.org/stable/%{name}/%{version}/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM
+Patch:  fix-build-with-newer-kcalcore.patch
 BuildRequires:  Mesa-devel
 BuildRequires:  OpenColorIO-devel
 BuildRequires:  OpenEXR-devel
@@ -338,6 +340,7 @@
 
 %prep
 %setup -q
+%patch -p1
 
 %build
 %cmake_kf5 -d build -- -DAPP_ACTIVE=FALSE

++ fix-build-with-newer-kcalcore.patch ++
>From 9a02a545e8606aa91aff2038da137226a9432e1a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Daniel=20Vr=C3=A1til?= 
Date: Mon, 18 Sep 2017 21:56:07 +0200
Subject: Make iCal export compile with newer KCalCore

KCalCore API has been ported to QDateTime, this change makes the iCalendar
export plugin to compile against the new API. Since Calligra has different
release cycle than KCalCore, this change is backwards compatible with older
versions of KCalCore.

Differential Revision: https://phabricator.kde.org/D7873
---
 CMakeLists.txt|  5 +
 KoConfig.h.cmake  |  3 +++
 plan/plugins/filters/icalendar/export/icalendarexport.cpp | 13 ++---
 3 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/CMakeLists.txt b/CMakeLists.txt
index 281f764..8cc8c97 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -430,6 +430,11 @@ set_package_properties(KF5CalendarCore PROPERTIES
 TYPE OPTIONAL
 )
 
+if ("${KF5CalendarCore_VERSION}" VERSION_GREATER 5.6.40)
+set(HAVE_QDATETIME_KCALCORE TRUE)
+endif()
+
+
 ##
 ## Test for KF5Contacts
 ##
diff --git a/KoConfig.h.cmake b/KoConfig.h.cmake
index 735e2e3..7e86479 100644
--- a/KoConfig.h.cmake
+++ b/KoConfig.h.cmake
@@ -56,3 +56,6 @@
 
 /* Defines if the old plugin metadata for mimetypes is used */
 #cmakedefine CALLIGRA_OLD_PLUGIN_METADATA 1
+
+/* Defines if KCalCore version with QDateTime-based API is available */
+#cmakedefine HAVE_QDATETIME_KCALCORE 1
diff --git a/plan/plugins/filters/icalendar/export/icalendarexport.cpp 
b/plan/plugins/filters/icalendar/export/icalendarexport.cpp
index 5f04ed5..afeb5e4 100644
--- a/plan/plugins/filters/icalendar/export/icalendarexport.cpp
+++ b/plan/plugins/filters/icalendar/export/icalendarexport.cpp
@@ -18,6 +18,7 @@
 */
 
 #include "icalendarexport.h"
+#include "KoConfig.h"
 
 #include 
 #include 
@@ -49,6 +50,12 @@ using namespace KPlato;
 K_PLUGIN_FACTORY_WITH_JSON(ICalendarExportFactory, 
"plan_icalendar_export.json",
registerPlugin();)
 
+#ifdef HAVE_QDATETIME_KCALCORE
+#define KQDT QDateTime
+#else
+#define KQDT KDateTime
+#endif
+
 ICalendarExport::ICalendarExport(QObject* parent, const QVariantList &)
 : KoFilter(parent)
 {
@@ -141,10 +148,10 @@ void ICalendarExport::createTodos(KCalCore::Calendar::Ptr 
cal, const Node *node,
 DateTime st = node->startTime(id);
 DateTime et = node->endTime(id);
 if (st.isValid()) {
-todo->setDtStart( KDateTime( st ) );
+todo->setDtStart( KQDT( st ) );
 }
 if (et.isValid()) {
-todo->setDtDue( KDateTime( et ) );
+todo->setDtDue( KQDT( et ) );
 }
 if (node->type() == Node::Type_Task) {
 const Task *task = qobject_cast(const_cast(node));
@@ -167,7 +174,7 @@ void ICalendarExport::createTodos(KCalCore::Calendar::Ptr 
cal, const Node *node,
 }
 } else if (node->type() == Node::Type_Milestone) {
 const Task *task = qobject_cast(const_cast(node));
-todo->setDtStart(KDateTime());
+todo->setDtStart(KQDT());
 todo->setPercentComplete(task->completion().percentFinished());
 }

commit python-terminado for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package python-terminado for 
openSUSE:Factory checked in at 2017-11-23 09:44:57

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


Package is "python-terminado"

Thu Nov 23 09:44:57 2017 rev:3 rq:544491 version:0.7

Changes:

--- /work/SRC/openSUSE:Factory/python-terminado/python-terminado.changes
2017-05-08 19:02:51.861412994 +0200
+++ /work/SRC/openSUSE:Factory/.python-terminado.new/python-terminado.changes   
2017-11-23 09:45:25.874287131 +0100
@@ -1,0 +2,16 @@
+Sun Nov 19 05:57:21 UTC 2017 - a...@gmx.de
+
+- update to version 0.7:
+  * :meth:`terminado.TermSocket.open` now calls the "open()" method on
+the parent class using "super()". This allows a mixin class; for
+instance, to periodically send ping messages to keep a connection
+open.
+  * When a websocket client disconnects from a terminal managed by
+:class:`~.UniqueTermManager`, the "SIGHUP" signal is sent to the
+process group, not just the main process.
+  * Fixed :meth:`terminado.NamedTermManager.kill` to use the signal
+number passed to it.
+  * Switched to Flit packaging.
+  * README and requirements for demos.
+
+---

Old:

  terminado-0.6.tar.gz

New:

  terminado-0.7.tar.gz



Other differences:
--
++ python-terminado.spec ++
--- /var/tmp/diff_new_pack.FD68zK/_old  2017-11-23 09:45:27.254236774 +0100
+++ /var/tmp/diff_new_pack.FD68zK/_new  2017-11-23 09:45:27.262236482 +0100
@@ -20,19 +20,19 @@
 
 %{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-terminado
-Version:0.6
+Version:0.7
 Release:0
 Summary:Terminals served to termjs using Tornado websockets
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Url:https://github.com/takluyver/terminado
 Source: 
https://files.pythonhosted.org/packages/source/t/terminado/terminado-%{version}.tar.gz
-BuildRequires:  fdupes
-BuildRequires:  python-rpm-macros
 BuildRequires:  %{python_module devel}
-BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module ptyprocess}
+BuildRequires:  %{python_module setuptools}
 BuildRequires:  %{python_module tornado}
+BuildRequires:  fdupes
+BuildRequires:  python-rpm-macros
 %if %{with tests}
 BuildRequires:  %{python_module nose}
 %endif

++ terminado-0.6.tar.gz -> terminado-0.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/terminado-0.6/.gitignore new/terminado-0.7/.gitignore
--- old/terminado-0.6/.gitignore1970-01-01 01:00:00.0 +0100
+++ new/terminado-0.7/.gitignore2016-02-10 12:40:12.004862800 +0100
@@ -0,0 +1,17 @@
+.DS_Store
+*~
+*.pyc
+*.prev
+*.sav
+*.old
+*.pem
+README.html
+build/*
+dist/*
+MANIFEST
+terminado.egg-info/*
+BAK
+IGNORE
+ORIG
+SUBMIT
+doc/_build/
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/terminado-0.6/.travis.yml 
new/terminado-0.7/.travis.yml
--- old/terminado-0.6/.travis.yml   1970-01-01 01:00:00.0 +0100
+++ new/terminado-0.7/.travis.yml   2017-11-15 15:59:11.110917300 +0100
@@ -0,0 +1,16 @@
+language: python
+python:
+  - "3.6"
+  - "3.5"
+  - "3.4"
+  - "2.7"
+
+# Install dependencies
+install:
+ - pip install tornado ptyprocess
+
+# command to run tests
+script: py.test
+
+# Enable new Travis stack, should speed up builds
+sudo: false
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/terminado-0.6/COPYING new/terminado-0.7/COPYING
--- old/terminado-0.6/COPYING   1970-01-01 01:00:00.0 +0100
+++ new/terminado-0.7/COPYING   2016-02-10 12:40:12.004862800 +0100
@@ -0,0 +1,9 @@
+Unless otherwise indicated, pyxterm files are distributed
+under the BSD License (see LICENSE.txt).
+
+This package also includes other bundled open source
+components which are governed by their own licenses,
+as indicated in the respective files. These include:
+
+  pyxshell.py: Public Domain
+  index.html, term.js, pyxterm.js: MIT
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/terminado-0.6/LICENSE.txt 
new/terminado-0.7/LICENSE.txt
--- old/terminado-0.6/LICENSE.txt   1970-01-01 01:00:00.0 +0100
+++ new/terminado-0.7/LICENSE.txt   2016-02-10 12:40:12.004862800 +0100
@@ -0,0 +1,27 @@
+# pyxterm: A python websocket server backend for term.js
+#
+#  BSD License
+#
+#  Copyright (c) 2014, Ramalingam Saravanan 
+#  All rights reserved.
+#  
+#  Redistribution and use 

commit mpibash for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package mpibash for openSUSE:Factory checked 
in at 2017-11-23 09:45:05

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


Package is "mpibash"

Thu Nov 23 09:45:05 2017 rev:2 rq:544496 version:1.3

Changes:

--- /work/SRC/openSUSE:Factory/mpibash/mpibash.changes  2017-11-15 
17:00:58.849044668 +0100
+++ /work/SRC/openSUSE:Factory/.mpibash.new/mpibash.changes 2017-11-23 
09:45:29.774144817 +0100
@@ -1,0 +2,9 @@
+Wed Nov 22 23:26:48 UTC 2017 - jungh...@votca.org
+
+- Version bump to v1.3
+  * drop 8.patch - got merge upstream
+  * "This release includes a few bug fixes, a few improvements to 
+ the build process, and some extra information added to the
+ documentation."
+
+---

Old:

  8.patch
  mpibash-1.2.tar.gz

New:

  mpibash-1.3.tar.gz



Other differences:
--
++ mpibash.spec ++
--- /var/tmp/diff_new_pack.KjTKlc/_old  2017-11-23 09:45:30.718110369 +0100
+++ /var/tmp/diff_new_pack.KjTKlc/_new  2017-11-23 09:45:30.722110223 +0100
@@ -22,15 +22,13 @@
 %endif
 
 Name:   mpibash
-Version:1.2
+Version:1.3
 Release:0
 Summary:Parallel scripting right from the Bourne-Again Shell
 License:GPL-3.0+
 Group:  Productivity/Networking/Other
 Url:https://github.com/lanl/MPI-Bash
 Source0:
https://github.com/lanl/MPI-Bash/releases/download/v%{version}/mpibash-%{version}.tar.gz
-#PATCH-FIX-UPSTREAM - 8.patch - circle_init_builtin: fix return value
-Patch0: 
https://patch-diff.githubusercontent.com/raw/lanl/MPI-Bash/pull/8.patch
 BuildRequires:  bash-devel >= 4.4
 BuildRequires:  %{mpi_implem}
 BuildRequires:  %{mpi_implem}-devel
@@ -60,11 +58,10 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 . %{_libdir}/mpi/gcc/%{mpi_implem}/bin/mpivars.sh
-%configure --with-bashdir=/usr/include/bash --docdir=%{_docdir}/%{name} 
--with-plugindir=%{_libdir}/%{name}/ CC=mpicc
+%configure --docdir=%{_docdir}/%{name} --with-plugindir=%{_libdir}/%{name}/ 
CC=mpicc
 %make_build
 
 %install

++ mpibash-1.2.tar.gz -> mpibash-1.3.tar.gz ++
 22767 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/mpibash-1.2/README.md new/mpibash-1.3/README.md
--- old/mpibash-1.2/README.md   2015-02-17 19:40:22.0 +0100
+++ new/mpibash-1.3/README.md   2017-11-21 22:39:13.0 +0100
@@ -13,24 +13,7 @@
 Installation
 
 
-1. Download the [Bash source code](http://www.gnu.org/software/bash/).  As of 
this writing, MPI-Bash is being tested primarily with Bash v4.3.  On a Debian 
Linux system (or derivative such as Ubuntu), the following is a convenient 
approach:
-
-apt-get source bash
-
-2. Build Bash as normal.  There is no need to install it if you already have 
Bash on your system.
-
-./configure
-make
-
-3. Go into the MPI-Bash source directory.  If you're building MPI-Bash from a 
Git clone rather than a release you'll have to generate the MPI-Bash 
`configure` script:
-
-autoreconf -fvi
-
-4. Configure, build, and install MPI-Bash, pointing it to your Bash source 
tree:
-
-./configure --with-bashdir=$HOME/bash-4.3.30 --prefix=$HOME/mpibash 
CC=mpicc
-make
-make install
+[Installation 
instructions](https://github.com/lanl/MPI-Bash/blob/master/INSTALL.md) are 
provided in a separate file.
 
 Usage
 -
@@ -50,17 +33,19 @@
 
 mpirun -np 16 ./my-script.sh
 
-If MPI-Bash is run on a large number of nodes, a parallel filesystem (e.g., 
[Lustre](http://lustre.opensfs.org/)) is essential for performance. Otherwise, 
most of the parallelism that a script exposes will be lost as file operations 
are serialized during writes to a non-parallel filesystem.
+If `MPI_Init` fails, it may because your system is unable to `mpirun` one 
script (`mpibash`) that itself runs another script (your program) that 
dynamically loads the MPI libraries.  See if the workaround discussed in [issue 
#6](https://github.com/lanl/MPI-Bash/issues/6) applies in your situation.
+
+When running MPI-Bash on a large number of nodes, a parallel filesystem (e.g., 
[Lustre](http://lustre.opensfs.org/)) is essential for performance. Otherwise, 
most of the parallelism that a script exposes will be lost as file operations 
are serialized during writes to a non-parallel 

commit xtables-addons for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package xtables-addons for openSUSE:Factory 
checked in at 2017-11-23 09:44:43

Comparing /work/SRC/openSUSE:Factory/xtables-addons (Old)
 and  /work/SRC/openSUSE:Factory/.xtables-addons.new (New)


Package is "xtables-addons"

Thu Nov 23 09:44:43 2017 rev:54 rq:544464 version:2.14

Changes:

--- /work/SRC/openSUSE:Factory/xtables-addons/xtables-addons.changes
2017-08-28 15:16:44.408310032 +0200
+++ /work/SRC/openSUSE:Factory/.xtables-addons.new/xtables-addons.changes   
2017-11-23 09:45:00.831201008 +0100
@@ -1,0 +2,7 @@
+Wed Nov 22 17:38:47 UTC 2017 - jeng...@inai.de
+
+- Update to new upstream release 2.14
+  * Support for Linux 4.14 [boo#1068098]
+  * DNETMAP buffer overflow fix
+
+---

Old:

  xtables-addons-2.13.tar.asc
  xtables-addons-2.13.tar.xz

New:

  xtables-addons-2.14.tar.asc
  xtables-addons-2.14.tar.xz



Other differences:
--
++ xtables-addons.spec ++
--- /var/tmp/diff_new_pack.DrEbaT/_old  2017-11-23 09:45:04.059083216 +0100
+++ /var/tmp/diff_new_pack.DrEbaT/_new  2017-11-23 09:45:04.063083070 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   xtables-addons
-Version:2.13
+Version:2.14
 Release:0
 Summary:IP Packet Filter Administration Extensions
 License:GPL-2.0 and GPL-2.0+

++ xtables-addons-2.13.tar.xz -> xtables-addons-2.14.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xtables-addons-2.13/Makefile.in 
new/xtables-addons-2.14/Makefile.in
--- old/xtables-addons-2.13/Makefile.in 2017-06-29 14:47:23.282324761 +0200
+++ new/xtables-addons-2.14/Makefile.in 2017-11-22 18:30:06.274672333 +0100
@@ -1,7 +1,7 @@
-# Makefile.in generated by automake 1.15 from Makefile.am.
+# Makefile.in generated by automake 1.15.1 from Makefile.am.
 # @configure_input@
 
-# Copyright (C) 1994-2014 Free Software Foundation, Inc.
+# Copyright (C) 1994-2017 Free Software Foundation, Inc.
 
 # This Makefile.in is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xtables-addons-2.13/aclocal.m4 
new/xtables-addons-2.14/aclocal.m4
--- old/xtables-addons-2.13/aclocal.m4  2017-06-29 14:47:21.586334804 +0200
+++ new/xtables-addons-2.14/aclocal.m4  2017-11-22 18:30:04.990679510 +0100
@@ -1,6 +1,6 @@
-# generated automatically by aclocal 1.15 -*- Autoconf -*-
+# generated automatically by aclocal 1.15.1 -*- Autoconf -*-
 
-# Copyright (C) 1996-2014 Free Software Foundation, Inc.
+# Copyright (C) 1996-2017 Free Software Foundation, Inc.
 
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -296,7 +296,7 @@
 AS_VAR_IF([$1], [""], [$5], [$4])dnl
 ])dnl PKG_CHECK_VAR
 
-# Copyright (C) 2002-2014 Free Software Foundation, Inc.
+# Copyright (C) 2002-2017 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -311,7 +311,7 @@
 [am__api_version='1.15'
 dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
 dnl require some minimum version.  Point them to the right macro.
-m4_if([$1], [1.15], [],
+m4_if([$1], [1.15.1], [],
   [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
 ])
 
@@ -327,12 +327,12 @@
 # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
 # This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
 AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
-[AM_AUTOMAKE_VERSION([1.15])dnl
+[AM_AUTOMAKE_VERSION([1.15.1])dnl
 m4_ifndef([AC_AUTOCONF_VERSION],
   [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
 _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
 
-# Copyright (C) 2011-2014 Free Software Foundation, Inc.
+# Copyright (C) 2011-2017 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -394,7 +394,7 @@
 
 # AM_AUX_DIR_EXPAND -*- Autoconf -*-
 
-# Copyright (C) 2001-2014 Free Software Foundation, Inc.
+# Copyright (C) 2001-2017 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
@@ -446,7 +446,7 @@
 
 # AM_CONDITIONAL-*- Autoconf -*-
 
-# Copyright (C) 1997-2014 Free Software Foundation, Inc.
+# Copyright (C) 1997-2017 Free Software Foundation, Inc.
 #
 # This file is free software; the 

commit monitoring-plugins-sar-perf for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package monitoring-plugins-sar-perf for 
openSUSE:Factory checked in at 2017-11-23 09:44:11

Comparing /work/SRC/openSUSE:Factory/monitoring-plugins-sar-perf (Old)
 and  /work/SRC/openSUSE:Factory/.monitoring-plugins-sar-perf.new (New)


Package is "monitoring-plugins-sar-perf"

Thu Nov 23 09:44:11 2017 rev:3 rq:544408 version:0.1

Changes:

--- 
/work/SRC/openSUSE:Factory/monitoring-plugins-sar-perf/monitoring-plugins-sar-perf.changes
  2017-05-02 08:54:59.653464773 +0200
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins-sar-perf.new/monitoring-plugins-sar-perf.changes
 2017-11-23 09:44:27.716409443 +0100
@@ -1,0 +2,12 @@
+Wed Nov 15 12:52:11 CET 2017 - r...@suse.de
+
+- check_iostat: get field numbers from iostat dynamically
+  by parsing header line (r/s and w/s fields move between versions) 
+
+---
+Tue Nov 14 17:27:19 CET 2017 - r...@suse.de
+
+- check_iostat: pass warning and critical level to perfdata
+- use iostat fields r/s and w/s for tps calculation 
+
+---



Other differences:
--
++ check_iostat ++
--- /var/tmp/diff_new_pack.bZKpQr/_old  2017-11-23 09:44:28.184392365 +0100
+++ /var/tmp/diff_new_pack.bZKpQr/_new  2017-11-23 09:44:28.184392365 +0100
@@ -33,7 +33,7 @@
 sub HELP_MESSAGE {
 print "\n\tThis plugin shows the I/O usage of the specified disk, using 
the iostat external program.\n";
 print "\tIt prints three statistics: Transactions per second (tps), 
Kilobytes per second\n";
-print "tread from the disk (KB_read/s) and and written to the disk 
(KB_written/s)\n\n";
+print "read from the disk (KB_read/s) and and written to the disk 
(KB_written/s)\n\n";
 print "$progname:\n\t-d \t\tDevice to be checked (without the full 
path, eg. sda)\n";
 print "\t\t\t\t(also accepted are device mapper names)\n";
 print "\t-c ,,\tSets the CRITICAL level for tps, 
KB_read/s and KB_written/s, respectively\n";
@@ -58,10 +58,10 @@
 my $disk = $opts{'d'};
 my $warning = $opts{'w'};
 my $critical = $opts{'c'};
-my $warning_iowait = $opts{'W'};
-my $critical_iowait = $opts{'C'};
-my $warning_util = $opts{'X'};
-my $critical_util = $opts{'Y'};
+my $warn_iowait = $opts{'W'};
+my $crit_iowait = $opts{'C'};
+my $warn_util = $opts{'X'};
+my $crit_util = $opts{'Y'};
 
 VERSION_MESSAGE() if $opts{'v'};
 HELP_MESSAGE() if $opts{'h'};
@@ -92,12 +92,12 @@
 HELP_MESSAGE();
 }
 
-if ($warning_iowait && $critical_iowait && $warning_iowait > $critical_iowait) 
{
+if ($warn_iowait && $crit_iowait && $warn_iowait > $crit_iowait) {
 warn "ERROR: critical iowait level must be higher than warning level\n";
 HELP_MESSAGE();
 }
 
-if ($warning_util && $critical_util && $warning_util > $critical_util) {
+if ($warn_util && $crit_util && $warn_util > $crit_util) {
 warn "ERROR: critical utilization level must be higher than warning 
level\n";
 HELP_MESSAGE();
 }
@@ -105,6 +105,11 @@
 my ($tps,$rps,$wps,$kbread,$kbwritten,$iowait,$util);
 my $seen_usage = 0;
 my $seen_disk = 0;
+my $field_rps = 3;
+my $field_wps = 4;
+my $field_rmbps = 5;
+my $field_wmbps = 6;
+my $field_util = 13;
 
 # Doing the actual check:
 open (IOSTAT,"-|","$iostat -kx $disk 5 2");
@@ -117,11 +122,25 @@
 $iowait = $stats[4];
 next;
 }
+if (/^Device:/) {
+   my @hdrs = split('\s+', $_);
+   my ($search_rps) = grep { $hdrs[$_] eq "r/s" } 0..$#hdrs;
+   $field_rps = $search_rps if $search_rps;
+   my ($search_wps) = grep { $hdrs[$_] eq "w/s" } 0..$#hdrs;
+   $field_wps = $search_wps if $search_wps;
+   my ($search_rmbps) = grep { $hdrs[$_] eq "rkB/s" } 0..$#hdrs;
+   $field_rmbps = $search_rmbps if $search_rmbps;
+   my ($search_wmbps) = grep { $hdrs[$_] eq "wkB/s" } 0..$#hdrs;
+   $field_wmbps = $search_wmbps if $search_wmbps;
+   my ($search_util) = grep { $hdrs[$_] eq "%util" } 0..$#hdrs;
+   $field_util = $search_util if $search_util;
+   next;
+}
 if (/^$disk /) {
$seen_disk++;
next if $seen_disk < 2;
my (@stats) = split ('\s+', $_);
-($rps,$wps,$kbread,$kbwritten,$util) = @stats[1,2,5,6,13];
+($rps,$wps,$kbread,$kbwritten,$util) = 
@stats[$field_rps,$field_wps,$field_rmbps,$field_wmbps,$field_util];
$tps = $rps + $wps;
last;
 }
@@ -137,12 +156,12 @@
$status = 1;
 }
 
-if ($warning_iowait && $iowait >= $warning_iowait) {
+if ($warn_iowait && $iowait >= $warn_iowait) {
$msg = "WARNING";
$status = 1;
 }
 
-if ($warning_util && $util >= $warning_util) {
+if ($warn_util && $util >= $warn_util) {
$msg = "WARNING";
$status = 1;
 }

commit kiwi for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package kiwi for openSUSE:Factory checked in 
at 2017-11-23 09:44:37

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


Package is "kiwi"

Thu Nov 23 09:44:37 2017 rev:660 rq:544426 version:7.04.40

Changes:

--- /work/SRC/openSUSE:Factory/kiwi/kiwi.changes2017-11-08 
15:10:21.173567813 +0100
+++ /work/SRC/openSUSE:Factory/.kiwi.new/kiwi.changes   2017-11-23 
09:44:46.787713487 +0100
@@ -1,0 +2,48 @@
+Wed Nov 22 15:22:51 CET 2017 - m...@suse.de
+
+- v7.04.40 released
+  
+---
+Tue Nov 21 12:36:36 CET 2017 - dims...@opensuse.org
+  
+- Tumbleweed templates: drop pam-modules dependency
+  
+---
+Tue Nov 21 12:35:12 CET 2017 - dims...@opensuse.org
+  
+- kiwi.spec: Prepare for Tumbleweed moving to suse_version 1550
+  
+---
+Mon Nov 13 09:31:55 CET 2017 - m...@suse.de
+  
+- v7.04.39 released
+  
+---
+Sun Nov 12 21:22:23 CET 2017 - ft...@geeko.jp
+  
+- KIWIImage: add grub2-mkimage prefix option
+  
+  grub2-mkimage on openSUSE Leap 42.3 now requires "-p" option.
+  See also ece8cb9e
+  
+---
+Thu Nov  9 14:31:48 CET 2017 - rjsch...@suse.com
+  
+- Keep Melanox and hyperv kernel modules in the initrd
+  + Due to jitters in boot on Azure the drivers are not always found, keeping
+then in the initrd avoids the issue in the virtualized environment
+
+---
+Thu Nov  9 10:54:24 CET 2017 - m...@suse.de
+
+- Fixed blocksize setup in losetup
+  
+  The -L option was used to set the blocksize value for losetup
+  However there is an option name clash between suse util-linux
+  and upstream which now leads to the problem that option -L
+  has changed its meaning and actually means --nooverlap which
+  completely breaks the call in kiwi. This patch changes the
+  call to use the long form --logical-blocksize.
+  This Fixes bsc#1066873
+  
+---



Other differences:
--
++ kiwi.spec ++
--- /var/tmp/diff_new_pack.q4y88e/_old  2017-11-23 09:44:47.759678018 +0100
+++ /var/tmp/diff_new_pack.q4y88e/_new  2017-11-23 09:44:47.759678018 +0100
@@ -36,7 +36,7 @@
 Name:   kiwi
 License:GPL-2.0
 Group:  System/Management
-Version:7.04.38
+Version:7.04.40
 Provides:   kiwi-schema = 6.2
 Provides:   kiwi-image:aci
 Provides:   kiwi-image:lxc
@@ -163,7 +163,7 @@
 %endif
 # Tumbleweed:
 # Current Tumbleweed version, moving target
-%if 0%{?suse_version} == 1330
+%if 0%{?suse_version} >= 1330 && !0%{?sle_version}
 %define mysystems suse-tumbleweed
 %endif
 # redefine for the SLE11 case if no sles_version exists

++ kiwi-docu.tar.bz2 ++

++ kiwi-repo.tar.bz2 ++

++ kiwi.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/.revision new/kiwi/.revision
--- old/kiwi/.revision  2016-04-18 16:58:06.610211984 +0200
+++ new/kiwi/.revision  2016-04-18 16:58:06.610211984 +0200
@@ -1 +1 @@
-379e18e5e328699eec7e3f677a81101cf350f7ac
+f6fdd2a1e6831accb0334d9cc817a3f0ab4fa0a3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kiwi/modules/KIWIGlobals.pm 
new/kiwi/modules/KIWIGlobals.pm
--- old/kiwi/modules/KIWIGlobals.pm 2017-10-13 09:09:07.162081549 +0200
+++ new/kiwi/modules/KIWIGlobals.pm 2017-11-22 15:22:44.905236808 +0100
@@ -170,7 +170,7 @@
 my $kiwi = $this->{kiwi};
 my $locator = KIWILocator -> instance();
 my $losetup_exec = $locator -> getExecPath("losetup");
-my $logical_sector_size = '';
+my $logical_block_size = '';
 if (! $losetup_exec) {
 $kiwi -> error("losetup not found on build system");
 $kiwi -> failed();
@@ -181,11 +181,11 @@
 my $blocksize = $bldType -> getTargetBlockSize();
 my $default_blocksize = $this -> getKiwiConfigEntry('DiskSectorSize');
 if (($blocksize) && ($blocksize != $default_blocksize)) {
-$logical_sector_size = "-L $blocksize";
+$logical_block_size = "--logical-blocksize $blocksize";
 }
 }
 my $result = KIWIQX::qxx (
-"$losetup_exec $logical_sector_size -f --show $source 2>&1"
+"$losetup_exec $logical_block_size -f --show $source 2>&1"
 );
 my $status = $? >> 8;
 if ($status != 0) {
@@ -2045,7 

commit armadillo for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package armadillo for openSUSE:Factory 
checked in at 2017-11-23 09:44:08

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


Package is "armadillo"

Thu Nov 23 09:44:08 2017 rev:116 rq:544399 version:8.300.0

Changes:

--- /work/SRC/openSUSE:Factory/armadillo/armadillo.changes  2017-11-07 
10:04:37.487877367 +0100
+++ /work/SRC/openSUSE:Factory/.armadillo.new/armadillo.changes 2017-11-23 
09:44:20.996654663 +0100
@@ -1,0 +2,11 @@
+Wed Nov 22 09:21:39 UTC 2017 - badshah...@gmail.com
+
+- Update to version 8.300.0:
+  + Faster handling of band matrices by solve().
+  + Faster handling of band matrices by chol().
+  + Faster randg() when using OpenMP.
+  + Added normpdf().
+  + Expanded .save() to allow appending new datasets to existing
+HDF5 files.
+
+---

Old:

  armadillo-8.200.2.tar.xz

New:

  armadillo-8.300.0.tar.xz



Other differences:
--
++ armadillo.spec ++
--- /var/tmp/diff_new_pack.fsUVkP/_old  2017-11-23 09:44:22.048616274 +0100
+++ /var/tmp/diff_new_pack.fsUVkP/_new  2017-11-23 09:44:22.052616129 +0100
@@ -18,7 +18,7 @@
 
 %define soname libarmadillo8
 Name:   armadillo
-Version:8.200.2
+Version:8.300.0
 Release:0
 Summary:C++ matrix library with interfaces to LAPACK and ATLAS
 License:Apache-2.0

++ armadillo-8.200.2.tar.xz -> armadillo-8.300.0.tar.xz ++
 3949 lines of diff (skipped)




commit otrs for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package otrs for openSUSE:Factory checked in 
at 2017-11-23 09:44:30

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


Package is "otrs"

Thu Nov 23 09:44:30 2017 rev:55 rq:544413 version:4.0.26

Changes:

--- /work/SRC/openSUSE:Factory/otrs/otrs.changes2017-10-02 
16:54:29.012035121 +0200
+++ /work/SRC/openSUSE:Factory/.otrs.new/otrs.changes   2017-11-23 
09:44:38.468017092 +0100
@@ -1,0 +2,18 @@
+Wed Nov 22 12:49:38 UTC 2017 - ch...@computersalat.de
+
+- fix for boo#1069391 (CVE-2017-16664, OSA-2017-07)
+  * vulnerabilities discovered in the OTRS framework:
+An attacker who is logged into OTRS as an agent can request special
+ URLs from OTRS which can lead to the execution of shell commands
+ with the permissions of the web server user.
+- Update to 4.0.26
+  * Improved handling of spell checker.
+  * https://github.com/OTRS/otrs/blob/rel-4_0_26/CHANGES.md 
+- improve itsm-update.sh
+  * only package latest packages (<10)
+- rebase patches
+  * otrs-httpd_conf.patch
+  * otrs-perm_test.patch
+- fix permissions (SLE 11)
+
+---

Old:

  itsm-4.0.25.tar.bz2
  otrs-4.0.25.tar.bz2

New:

  itsm-4.0.26.tar.bz2
  otrs-4.0.26.tar.bz2



Other differences:
--
++ otrs.spec ++
--- /var/tmp/diff_new_pack.F7LPWM/_old  2017-11-23 09:44:41.755897110 +0100
+++ /var/tmp/diff_new_pack.F7LPWM/_new  2017-11-23 09:44:41.759896964 +0100
@@ -18,8 +18,8 @@
 
 Name:   otrs
 
-%define otrs_ver 4.0.25
-%define itsm_ver 4.0.25
+%define otrs_ver 4.0.26
+%define itsm_ver 4.0.26
 %define itsm_min 4
 %define otrs_root /srv/%{name}
 %define otrsdoc_dir_files AUTHORS* CHANGES* COPYING* CREDITS README* 
UPGRADING.SUSE doc
@@ -546,7 +546,7 @@
 
 # var/tmp
 %if 0%{?suse_version} < 1140
-%dir %{otrs_root}/var/tmp
+%dir %attr(2770,wwwrun,www) %{otrs_root}/var/tmp
 %else
 %verify(not user group mode) %attr(2770,wwwrun,www) %dir %{otrs_root}/var/tmp
 %endif

++ itsm-4.0.25.tar.bz2 -> itsm-4.0.26.tar.bz2 ++
/work/SRC/openSUSE:Factory/otrs/itsm-4.0.25.tar.bz2 
/work/SRC/openSUSE:Factory/.otrs.new/itsm-4.0.26.tar.bz2 differ: char 11, line 1

++ itsm-update.sh ++
--- /var/tmp/diff_new_pack.F7LPWM/_old  2017-11-23 09:44:41.847893752 +0100
+++ /var/tmp/diff_new_pack.F7LPWM/_new  2017-11-23 09:44:41.847893752 +0100
@@ -8,13 +8,13 @@
 if [[ ${MAJOR} -eq 4 ]]; then
 PMINOR='3.3'
 PMINOR_PKG=33
-PREJECT="*3.2.9?.opm,*${PMINOR}.9?.opm"
-REJECT="*${PMINOR}.9?.opm,*${MAJOR}.0.9?.opm"
+PREJECT="*3.2.9?.opm,*${PMINOR}.?.opm,*${PMINOR}.9?.opm"
+REJECT="*${PMINOR}.9?.opm,*${MAJOR}.0.?.opm,*${MAJOR}.0.1?.opm"
 elif [[ ${MAJOR} -eq 5 ]]; then
 PMINOR=$((${MAJOR} - 1))
 PMINOR_PKG=${PMINOR}
-PREJECT="*3.3.9?.opm,*${PMINOR}.0.9?.opm"
-REJECT="*${PMINOR}.0.9?.opm,*${MAJOR}.0.9?.opm"
+PREJECT="*${PMINOR}.?.opm,*${PMINOR}.1?.opm,*${PMINOR}.0.9?.opm"
+REJECT="*${PMINOR}.0.9?.opm,*${MAJOR}.0.?.opm,*${MAJOR}.0.1?.opm"
 elif [[ ${MAJOR} -ge 6 ]]; then
 PMINOR=$((${MAJOR} - 1))
 PMINOR_PKG=${PMINOR}
@@ -29,6 +29,10 @@
 wget -nH --cut-dirs=3 -m \
 ${URL}/INSTALL-${MAJOR}.ITSM
 
+# convert "ASCII English text, with CRLF line terminators"
+#  into "ASCII English text"
+perl -p -i -e 's|\r\n|\n|' INSTALL-*
+
 # get packages of current version, exclude RC's
 wget -nH --cut-dirs=3 -m \
 -R ${REJECT} \

++ otrs-4.0.25.tar.bz2 -> otrs-4.0.26.tar.bz2 ++
/work/SRC/openSUSE:Factory/otrs/otrs-4.0.25.tar.bz2 
/work/SRC/openSUSE:Factory/.otrs.new/otrs-4.0.26.tar.bz2 differ: char 11, line 1

++ otrs-perm_test.patch ++
--- /var/tmp/diff_new_pack.F7LPWM/_old  2017-11-23 09:44:41.911891417 +0100
+++ /var/tmp/diff_new_pack.F7LPWM/_new  2017-11-23 09:44:41.911891417 +0100
@@ -2,7 +2,7 @@
 ===
 --- Kernel/System/Package.pm.orig
 +++ Kernel/System/Package.pm
-@@ -3651,7 +3651,7 @@ sub _FileSystemCheck {
+@@ -3654,7 +3654,7 @@ sub _FileSystemCheck {
  
  # create test files in following directories
  for my $Filepath (




commit openSUSE-release-tools for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package openSUSE-release-tools for 
openSUSE:Factory checked in at 2017-11-23 09:44:20

Comparing /work/SRC/openSUSE:Factory/openSUSE-release-tools (Old)
 and  /work/SRC/openSUSE:Factory/.openSUSE-release-tools.new (New)


Package is "openSUSE-release-tools"

Thu Nov 23 09:44:20 2017 rev:22 rq:544410 version:20171122.b428ed3

Changes:

--- 
/work/SRC/openSUSE:Factory/openSUSE-release-tools/openSUSE-release-tools.changes
2017-11-21 15:32:46.120347988 +0100
+++ 
/work/SRC/openSUSE:Factory/.openSUSE-release-tools.new/openSUSE-release-tools.changes
   2017-11-23 09:44:34.144174879 +0100
@@ -1,0 +2,29 @@
+Wed Nov 22 13:06:25 UTC 2017 - opensuse-releaset...@opensuse.org
+
+- Update to version 20171122.b428ed3:
+  * compare_pkglist: Add --submit param to submit new package
+
+---
+Tue Nov 21 10:33:54 UTC 2017 - opensuse-releaset...@opensuse.org
+
+- Update to version 20171121.734e384:
+  * pkglistgen: need to expand link
+  * pkglistgen: require python-solv
+
+---
+Tue Nov 21 09:59:21 UTC 2017 - opensuse-releaset...@opensuse.org
+
+- Update to version 20171121.0d31ae5:
+  * pkglistgen: Fix script name
+  * Skip maintainer review for certain Leap 15 submissions
+
+---
+Mon Nov 20 13:17:14 UTC 2017 - opensuse-releaset...@opensuse.org
+
+- Update to version 20171120.fc6eb19:
+  * pkglistgen: require obs-service-product_converter
+  * pkglistgen: add systemd units
+  * pkglistgen: use new cache format of repo_checker
+  * pkglistgen: process DVD subproject first
+
+---

Old:

  openSUSE-release-tools-20171120.87649f1.obscpio

New:

  openSUSE-release-tools-20171122.b428ed3.obscpio



Other differences:
--
++ openSUSE-release-tools.spec ++
--- /var/tmp/diff_new_pack.y1WiAi/_old  2017-11-23 09:44:34.976144518 +0100
+++ /var/tmp/diff_new_pack.y1WiAi/_new  2017-11-23 09:44:34.980144372 +0100
@@ -20,7 +20,7 @@
 %define source_dir osc-plugin-factory
 %define announcer_filename factory-package-news
 Name:   openSUSE-release-tools
-Version:20171120.87649f1
+Version:20171122.b428ed3
 Release:0
 Summary:Tools to aid in staging and release work for openSUSE/SUSE
 License:GPL-2.0+ and MIT
@@ -201,7 +201,11 @@
 Summary:Generates package lists in 000product
 Group:  Development/Tools/Other
 BuildArch:  noarch
+Requires:   obs-service-product_converter
 Requires:   osclib = %{version}
+Requires:   python-solv
+# we use the same user as repo-checker
+PreReq: openSUSE-release-tools-repo-checker
 
 %description pkglistgen
 Generates package lists based on 000package-groups and puts them
@@ -347,6 +351,9 @@
   fi
 fi
 
+%postun pkglistgen
+%systemd_postun
+
 %files
 %defattr(-,root,root,-)
 %doc README.asciidoc
@@ -476,9 +483,12 @@
 %files pkglistgen
 %defattr(-,root,root,-)
 %{_bindir}/osrt-pkglistgen
-%{_bindir}/osrt-pkglistgen-openSUSE:Leap:15.0.sh
-%{_bindir}/osrt-pkglistgen-openSUSE:Leap:15.0:Rings.sh
-%{_bindir}/osrt-pkglistgen-openSUSE:Leap:15.0:Staging.sh
+%{_bindir}/osrt-pkglistgen-openSUSE:Leap:15.0
+%{_bindir}/osrt-pkglistgen-openSUSE:Leap:15.0-all
+%{_bindir}/osrt-pkglistgen-openSUSE:Leap:15.0:Rings
+%{_bindir}/osrt-pkglistgen-openSUSE:Leap:15.0:Staging
+%{_unitdir}/osrt-pkglistgen@.service
+%{_unitdir}/osrt-pkglistgen@.timer
 
 %files -n osclib
 %defattr(-,root,root,-)

++ _servicedata ++
--- /var/tmp/diff_new_pack.y1WiAi/_old  2017-11-23 09:44:35.028142621 +0100
+++ /var/tmp/diff_new_pack.y1WiAi/_new  2017-11-23 09:44:35.028142621 +0100
@@ -1,6 +1,6 @@
 
   
 https://github.com/openSUSE/osc-plugin-factory.git
-67f5d0213b1a292ef2534a339c7f44c2cad039c5
+4838dbec828febf522d3d23ac1945207aed5c01a
   
 

++ openSUSE-release-tools-20171120.87649f1.obscpio -> 
openSUSE-release-tools-20171122.b428ed3.obscpio ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/openSUSE-release-tools-20171120.87649f1/compare_pkglist.py 
new/openSUSE-release-tools-20171122.b428ed3/compare_pkglist.py
--- old/openSUSE-release-tools-20171120.87649f1/compare_pkglist.py  
2017-11-20 09:10:15.0 +0100
+++ new/openSUSE-release-tools-20171122.b428ed3/compare_pkglist.py  
2017-11-22 14:00:16.0 +0100
@@ -40,11 +40,12 @@
 http_POST = osc.core.http_POST
 
 class CompareList(object):
-def __init__(self, old_prj, new_prj, verbose, newonly, removedonly):
+def __init__(self, old_prj, new_prj, verbose, newonly, 

commit cinnamon-session for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package cinnamon-session for 
openSUSE:Factory checked in at 2017-11-23 09:44:34

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


Package is "cinnamon-session"

Thu Nov 23 09:44:34 2017 rev:13 rq:544421 version:3.6.1

Changes:

--- /work/SRC/openSUSE:Factory/cinnamon-session/cinnamon-session.changes
2017-11-10 14:55:53.483346464 +0100
+++ /work/SRC/openSUSE:Factory/.cinnamon-session.new/cinnamon-session.changes   
2017-11-23 09:44:45.043777128 +0100
@@ -1,0 +2,7 @@
+Wed Nov 22 14:00:23 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 3.6.1:
+  * configure: Add an option to disable support for D-Bus user
+sessions.
+
+---

Old:

  cinnamon-session-3.6.0.tar.gz

New:

  cinnamon-session-3.6.1.tar.gz



Other differences:
--
++ cinnamon-session.spec ++
--- /var/tmp/diff_new_pack.gkpnFK/_old  2017-11-23 09:44:46.319730565 +0100
+++ /var/tmp/diff_new_pack.gkpnFK/_new  2017-11-23 09:44:46.323730419 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   cinnamon-session
-Version:3.6.0
+Version:3.6.1
 Release:0
 Summary:The session manager for the Cinnamon Desktop
 License:GPL-2.0+ AND LGPL-2.1+

++ cinnamon-session-3.6.0.tar.gz -> cinnamon-session-3.6.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/cinnamon-session-3.6.0/cinnamon-session/csm-manager.c 
new/cinnamon-session-3.6.1/cinnamon-session/csm-manager.c
--- old/cinnamon-session-3.6.0/cinnamon-session/csm-manager.c   2017-10-23 
15:07:03.0 +0200
+++ new/cinnamon-session-3.6.1/cinnamon-session/csm-manager.c   2017-11-22 
13:29:51.0 +0100
@@ -978,7 +978,11 @@
(CsmStoreFunc)_client_stop,
NULL);
 }
-maybe_restart_user_bus (manager);
+
+if (WITH_DBUS_USER_SESSION) {
+maybe_restart_user_bus (manager);
+}
+
 end_phase (manager);
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cinnamon-session-3.6.0/configure.ac 
new/cinnamon-session-3.6.1/configure.ac
--- old/cinnamon-session-3.6.0/configure.ac 2017-10-23 15:07:03.0 
+0200
+++ new/cinnamon-session-3.6.1/configure.ac 2017-11-22 13:29:51.0 
+0100
@@ -1,5 +1,5 @@
 AC_INIT([cinnamon-session],
-[3.6.0],
+[3.6.1],
 [https://github.com/linuxmint/cinnamon-session/issues])
 
 AC_CONFIG_SRCDIR([cinnamon-session])
@@ -110,6 +110,19 @@
 AC_SUBST(LOGIND_LIBS)
 
 dnl 
+dnl Option to disable DBus user session support.
+dnl 
+AC_ARG_ENABLE([dbus_user_session],
+  AS_HELP_STRING([--disable-dbus-user-session], [Disable support 
for DBus user sessions]),
+  [], [enable_dbus_user_session=yes])
+
+if test x$enable_dbus_user_session = xyes; then
+AC_DEFINE(WITH_DBUS_USER_SESSION, 1, [Define to 1 if support for DBus user 
session is enabled])
+else
+AC_DEFINE(WITH_DBUS_USER_SESSION, 0, [Define to 0 if support for DBus user 
session is disabled])
+fi
+
+dnl 
 dnl Check for qt 5.7+ to set correct env var for theme/styling
 dnl 
 AC_ARG_ENABLE(qt57_theme_support,
@@ -371,6 +384,7 @@
 
 GConf support:${enable_gconf}
 Logind support:   ${have_logind}
+DBus user session sup.:   ${enable_dbus_user_session}
 Qt 5.7+ theme support:${enable_qt57_theme_support}
 IPv6 support: ${have_full_ipv6}
 Backtrace support:${have_backtrace}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cinnamon-session-3.6.0/debian/changelog 
new/cinnamon-session-3.6.1/debian/changelog
--- old/cinnamon-session-3.6.0/debian/changelog 2017-10-23 15:07:03.0 
+0200
+++ new/cinnamon-session-3.6.1/debian/changelog 2017-11-22 13:29:51.0 
+0100
@@ -1,3 +1,10 @@
+cinnamon-session (3.6.1) sylvia; urgency=medium
+
+  [ Björn Esser ]
+  * configure: Add option to disable support for DBus user sessions (#103)
+
+ -- Clement Lefebvre   Wed, 22 Nov 2017 12:29:17 +
+
 cinnamon-session (3.6.0) sylvia; urgency=medium
 
   [ Michael Webster ]




commit chromium for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2017-11-23 09:44:05

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


Package is "chromium"

Thu Nov 23 09:44:05 2017 rev:171 rq:544382 version:62.0.3202.94

Changes:

--- /work/SRC/openSUSE:Factory/chromium/chromium.changes2017-11-20 
17:05:15.954067312 +0100
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2017-11-23 
09:44:07.333153277 +0100
@@ -1,0 +2,5 @@
+Wed Nov 22 11:05:42 UTC 2017 - idon...@suse.com
+
+- BuildRequire nodejs8 instead of nodejs6 for suse_version >= 1330
+
+---



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.ug3bGK/_old  2017-11-23 09:44:16.852805882 +0100
+++ /var/tmp/diff_new_pack.ug3bGK/_new  2017-11-23 09:44:16.856805736 +0100
@@ -96,7 +96,11 @@
 BuildRequires:  libva-devel
 BuildRequires:  ncurses-devel
 BuildRequires:  ninja >= 1.7.2
+%if 0%{?suse_version} >= 1330
+BuildRequires:  nodejs8
+%else
 BuildRequires:  nodejs6
+%endif
 BuildRequires:  pam-devel
 BuildRequires:  pkgconfig
 BuildRequires:  procps




commit mobidict for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package mobidict for openSUSE:Factory 
checked in at 2017-11-23 09:44:01

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


Package is "mobidict"

Thu Nov 23 09:44:01 2017 rev:2 rq:544377 version:1.0

Changes:

--- /work/SRC/openSUSE:Factory/mobidict/mobidict.changes2017-11-22 
11:21:39.395021623 +0100
+++ /work/SRC/openSUSE:Factory/.mobidict.new/mobidict.changes   2017-11-23 
09:44:02.485330186 +0100
@@ -1,0 +2,5 @@
+Tue Nov 21 15:53:49 UTC 2017 - jeng...@inai.de
+
+- Remove filler wording from description.
+
+---



Other differences:
--
++ mobidict.spec ++
--- /var/tmp/diff_new_pack.51DJX5/_old  2017-11-23 09:44:03.273301431 +0100
+++ /var/tmp/diff_new_pack.51DJX5/_new  2017-11-23 09:44:03.277301285 +0100
@@ -36,8 +36,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-A dictionary viewer for AZW/MOBI files. Easily use your mobile dictionaries
-on your desktop.
+A dictionary viewer for AZW/MOBI files.
 
 %prep
 %setup -q






commit hwloc for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package hwloc for openSUSE:Factory checked 
in at 2017-11-23 09:44:02

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


Package is "hwloc"

Thu Nov 23 09:44:02 2017 rev:12 rq:544379 version:1.11.8

Changes:

--- /work/SRC/openSUSE:Factory/hwloc/hwloc.changes  2017-11-21 
15:37:35.617857424 +0100
+++ /work/SRC/openSUSE:Factory/.hwloc.new/hwloc.changes 2017-11-23 
09:44:05.225230200 +0100
@@ -1,0 +2,51 @@
+Tue Nov 21 12:29:26 UTC 2017 - thomas.bl...@suse.com
+
+- update to latest released upstream version 1.11.8 (fate#324166)
+
+* Multiple Solaris improvements
+  + Detect caches on Sparc.
+  + Properly detect allowed/disallowed PUs and NUMA nodes with processor sets.
+  + Add hwloc_get_last_cpu_location() support for the current thread.
+* Add support for CUDA compute capability 7.0 and fix support for 6.[12].
+* Tools improvements
+  + Fix search for objects by physical index in command-line tools.
+  + Add missing "cpubind:get_thisthread_last_cpu_location" in the output
+of hwloc-info --support.
+  + Add --pid and --name to specify target processes in hwloc-ps.
+  + Display thread names in lstopo and hwloc-ps on Linux.
+* Doc improvements
+  + Add a FAQ entry about building on Windows.
+  + Install missing sub-manpage for hwloc_obj_add_info() and
+hwloc_obj_get_info_by_name().
+* Fix hwloc-bind --membind for CPU-less NUMA nodes (again).
+  Thanks to Gilles Gouaillardet for reporting the issue.
+* Fix a memory leak on IBM S/390 platforms running Linux.
+* Fix a memory leak when forcing the x86 backend first on amd64/topoext
+  platforms running Linux.
+* Command-line tools now support "hbm" instead "numanode" for filtering
+  only high-bandwidth memory nodes when selecting locations.
+  + hwloc-bind also support --hbm and --no-hbm for filtering only or
+no HBM nodes.
+* Add --children and --descendants to hwloc-info for listing object
+  children or object descendants of a specific type.
+* Add --no-index, --index, --no-attrs, --attrs to disable/enable display
+  of index numbers or attributes in the graphical lstopo output.
+* Try to gather hwloc-dump-hwdata output from all possible locations
+  in hwloc-gather-topology.
+* Updates to the documentation of locations in hwloc(7) and
+  command-line tools manpages.
+* Make the Linux discovery about twice faster, especially on the CPU side,
+  by trying to avoid sysfs file accesses as much as possible.
+* Add support for AMD Family 17h processors (Zen) SMT cores in the Linux
+  and x86 backends.
+* Add the HWLOC_TOPOLOGY_FLAG_THISSYSTEM_ALLOWED_RESOURCES flag (and the
+  HWLOC_THISSYSTEM_ALLOWED_RESOURCES environment variable) for reading the
+  set of allowed resources from the local operating system even if the
+  topology was loaded from XML or synthetic.
+* Fix hwloc_bitmap_set/clr_range() for infinite ranges that do not
+  overlap currently defined ranges in the bitmap.
+* Don't reset the lstopo zoom scale when moving the X11 window.
+* lstopo now has --flags for manually setting topology flags.
+* hwloc_get_depth_type() returns HWLOC_TYPE_DEPTH_UNKNOWN for Misc objects.
+
+---

Old:

  hwloc-1.11.5.tar.gz

New:

  hwloc-1.11.8.tar.gz



Other differences:
--
++ hwloc.spec ++
--- /var/tmp/diff_new_pack.bu8FyV/_old  2017-11-23 09:44:05.805209036 +0100
+++ /var/tmp/diff_new_pack.bu8FyV/_new  2017-11-23 09:44:05.809208890 +0100
@@ -20,7 +20,7 @@
 %if ! 0%{?is_opensuse}
 %define version_prefix 2.0.0.
 %endif
-%define mainversion 1.11.5
+%define mainversion 1.11.8
 Name:   hwloc
 Version:%{?version_prefix}%{?mainversion}
 Release:0

++ hwloc-1.11.5.tar.gz -> hwloc-1.11.8.tar.gz ++
 11462 lines of diff (skipped)




commit normaliz for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package normaliz for openSUSE:Factory 
checked in at 2017-11-23 09:43:50

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


Package is "normaliz"

Thu Nov 23 09:43:50 2017 rev:2 rq:544347 version:3.4.1

Changes:

--- /work/SRC/openSUSE:Factory/normaliz/normaliz.changes2017-10-08 
20:14:08.494845725 +0200
+++ /work/SRC/openSUSE:Factory/.normaliz.new/normaliz.changes   2017-11-23 
09:43:51.573728377 +0100
@@ -1,0 +2,6 @@
+Wed Nov 22 09:25:13 UTC 2017 - badshah...@gmail.com
+
+- Update to version 3.4.1:
+  * Miscellaneous bug fixes.
+
+---

Old:

  normaliz-3.4.0.tar.gz

New:

  normaliz-3.4.1.tar.gz



Other differences:
--
++ normaliz.spec ++
--- /var/tmp/diff_new_pack.KIHqAn/_old  2017-11-23 09:43:52.629689843 +0100
+++ /var/tmp/diff_new_pack.KIHqAn/_new  2017-11-23 09:43:52.629689843 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package normaliz
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   normaliz
-Version:3.4.0
+Version:3.4.1
 Release:0
 Summary:Tools for computations in affine monoids and rational cones
 License:GPL-3.0+
@@ -63,8 +63,8 @@
 Summary:Development files for Normaliz, a tool for computation of 
rotational cones
 Group:  Development/Libraries/C and C++
 Requires:   boost-devel
-Requires:   libnormaliz0 = %version
 Requires:   gmp-devel
+Requires:   libnormaliz0 = %version
 
 %description devel
 Normaliz is an open source tool for computations in affine monoids,
@@ -103,3 +103,5 @@
 %defattr(-,root,root)
 %_includedir/libnormaliz/
 %_libdir/libnormaliz.so
+
+%changelog

++ normaliz-3.4.0.tar.gz -> normaliz-3.4.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/normaliz-3.4.0/.travis.yml 
new/normaliz-3.4.1/.travis.yml
--- old/normaliz-3.4.0/.travis.yml  2017-05-11 09:56:24.0 +0200
+++ new/normaliz-3.4.1/.travis.yml  2017-11-12 16:20:18.0 +0100
@@ -128,3 +128,5 @@
   - time
 
 script: ./.travis-build.sh
+
+dist: precise
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/normaliz-3.4.0/Qsource/libQnormaliz/Qversion.h 
new/normaliz-3.4.1/Qsource/libQnormaliz/Qversion.h
--- old/normaliz-3.4.0/Qsource/libQnormaliz/Qversion.h  2017-08-25 
13:02:48.0 +0200
+++ new/normaliz-3.4.1/Qsource/libQnormaliz/Qversion.h  2017-11-13 
13:34:36.0 +0100
@@ -4,7 +4,7 @@
 #define QNMZ_VERSION_MAJOR  3
 #define QNMZ_VERSION_MINOR  2
 #define QNMZ_VERSION_PATCH  1
-#define QNMZ_VERSION3.4.0
+#define QNMZ_VERSION3.4.1
 #define QNMZ_RELEASE (QNMZ_VERSION_MAJOR * 1 + QNMZ_VERSION_MINOR * 100 + 
QNMZ_VERSION_PATCH)
 
 namespace libQnormaliz {
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/normaliz-3.4.0/configure new/normaliz-3.4.1/configure
--- old/normaliz-3.4.0/configure2017-08-25 13:01:58.0 +0200
+++ new/normaliz-3.4.1/configure2017-11-13 13:34:33.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for Normaliz 3.4.0.
+# Generated by GNU Autoconf 2.69 for Normaliz 3.4.1.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -587,8 +587,8 @@
 # Identity of this package.
 PACKAGE_NAME='Normaliz'
 PACKAGE_TARNAME='normaliz'
-PACKAGE_VERSION='3.4.0'
-PACKAGE_STRING='Normaliz 3.4.0'
+PACKAGE_VERSION='3.4.1'
+PACKAGE_STRING='Normaliz 3.4.1'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1358,7 +1358,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures Normaliz 3.4.0 to adapt to many kinds of systems.
+\`configure' configures Normaliz 3.4.1 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1429,7 +1429,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of Normaliz 3.4.0:";;
+ short | recursive ) echo "Configuration of Normaliz 3.4.1:";;
esac
   cat <<\_ACEOF
 
@@ -1553,7 +1553,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-Normaliz 

commit appcenter for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package appcenter for openSUSE:Factory 
checked in at 2017-11-23 09:43:43

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


Package is "appcenter"

Thu Nov 23 09:43:43 2017 rev:9 rq:544305 version:0.2.7

Changes:

--- /work/SRC/openSUSE:Factory/appcenter/appcenter.changes  2017-10-19 
19:32:11.488722838 +0200
+++ /work/SRC/openSUSE:Factory/.appcenter.new/appcenter.changes 2017-11-23 
09:43:45.641944843 +0100
@@ -1,0 +2,15 @@
+Tue Nov 21 18:00:39 UTC 2017 - avvi...@yandex.by
+
+- Update to 0.2.7:
+  * Clean up config.vala.in
+  * Rename config.vala.cmake to config.vala.in
+  * Rename DbusInterfaces.vala to DBusInterfaces.vala (#542)
+  * Use string.length rather than string.len (#534)
+  * Remove app_icon (#533)
+  * Add package information to OS Updates details (#518)
+  * Style cache update fail dialog details as Terminal (#530)
+  * Show an error when updating cache failed (#503)
+  * Banner CSS Fixes (#521)
+  * Move CSS to application.css (#519)
+
+---

Old:

  appcenter-0.2.6.tar.gz

New:

  appcenter-0.2.7.tar.gz



Other differences:
--
++ appcenter.spec ++
--- /var/tmp/diff_new_pack.OPVB1y/_old  2017-11-23 09:43:46.405916964 +0100
+++ /var/tmp/diff_new_pack.OPVB1y/_new  2017-11-23 09:43:46.405916964 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   appcenter
-Version:0.2.6
+Version:0.2.7
 Release:0
 Summary:Browse and manage apps
 License:GPL-3.0

++ appcenter-0.2.6.tar.gz -> appcenter-0.2.7.tar.gz ++
 3201 lines of diff (skipped)




commit paperkey for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package paperkey for openSUSE:Factory 
checked in at 2017-11-23 09:43:40

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


Package is "paperkey"

Thu Nov 23 09:43:40 2017 rev:3 rq:544133 version:1.5

Changes:

--- /work/SRC/openSUSE:Factory/paperkey/paperkey.changes2016-11-24 
21:25:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.paperkey.new/paperkey.changes   2017-11-23 
09:43:42.830047456 +0100
@@ -1,0 +2,8 @@
+Tue Nov 21 11:01:40 UTC 2017 - astie...@suse.com
+
+- paperkey 1.5:
+  * Added support for OpenPGP EdDSA elliptic curve keys
+  * Properly handle a secret key where the primary key is of a
+known type but a subkey is not of a known type.
+
+---

Old:

  paperkey-1.4.tar.gz
  paperkey-1.4.tar.gz.sig

New:

  paperkey-1.5.tar.gz
  paperkey-1.5.tar.gz.sig



Other differences:
--
++ paperkey.spec ++
--- /var/tmp/diff_new_pack.rdt2Yu/_old  2017-11-23 09:43:43.850010235 +0100
+++ /var/tmp/diff_new_pack.rdt2Yu/_new  2017-11-23 09:43:43.850010235 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package paperkey
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   paperkey
-Version:1.4
+Version:1.5
 Release:0
 Summary:Tool to backup GnuPG secret keys on paper
 License:GPL-3.0+

++ paperkey-1.4.tar.gz -> paperkey-1.5.tar.gz ++
 8093 lines of diff (skipped)





commit swift-im for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package swift-im for openSUSE:Factory 
checked in at 2017-11-23 09:43:53

Comparing /work/SRC/openSUSE:Factory/swift-im (Old)
 and  /work/SRC/openSUSE:Factory/.swift-im.new (New)


Package is "swift-im"

Thu Nov 23 09:43:53 2017 rev:5 rq:544360 version:4.0~rc2

Changes:

--- /work/SRC/openSUSE:Factory/swift-im/swift-im.changes2017-11-09 
13:56:39.401608896 +0100
+++ /work/SRC/openSUSE:Factory/.swift-im.new/swift-im.changes   2017-11-23 
09:43:53.401661671 +0100
@@ -1,0 +2,7 @@
+Wed Nov 22 09:43:03 UTC 2017 - mvet...@suse.com
+
+- bsc#1062799:
+  * Replace big boost-devel with only required boost devel libs
+  * Use boost_bundled_enable=false switch
+
+---



Other differences:
--
++ swift-im.spec ++
--- /var/tmp/diff_new_pack.GVmMB5/_old  2017-11-23 09:43:54.289629268 +0100
+++ /var/tmp/diff_new_pack.GVmMB5/_new  2017-11-23 09:43:54.289629268 +0100
@@ -22,7 +22,6 @@
 %else
 %define _flags V=1 swiften_dll=1 test=none optimize=1 debug=0 
cxxflags='%{optflags}'
 %endif
-
 Name:   swift-im
 Version:4.0~rc2
 Release:0
@@ -31,12 +30,22 @@
 Group:  Productivity/Networking/Talk/Clients
 Url:http://swift.im/
 Source0:
http://swift.im/downloads/releases/%{_name}-4.0rc2/%{_name}-4.0rc2.tar.gz
-BuildRequires:  boost-devel
 BuildRequires:  desktop-file-utils
 BuildRequires:  docbook-dtds
 BuildRequires:  fdupes
 BuildRequires:  hicolor-icon-theme
+BuildRequires:  libboost_atomic-devel
+BuildRequires:  libboost_date_time-devel
+BuildRequires:  libboost_filesystem-devel
+BuildRequires:  libboost_headers-devel
+BuildRequires:  libboost_program_options-devel
+BuildRequires:  libboost_regex-devel
+BuildRequires:  libboost_serialization-devel
+BuildRequires:  libboost_signals-devel
+BuildRequires:  libboost_system-devel
+BuildRequires:  libboost_thread-devel
 BuildRequires:  libminiupnpc-devel
+BuildRequires:  pkgconfig
 BuildRequires:  scons
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(Qt5Core)
@@ -125,7 +134,7 @@
 sed -e 's:, myenv.File("../../COPYING.thirdparty")::' -i Swift/QtUI/SConscript
 
 %build
-scons %{_flags} Swift Swiften %{?_smp_mflags}
+scons %{_flags} Swift Swiften %{?_smp_mflags} boost_bundled_enable=false
 
 %install
 scons %{_flags} \
@@ -144,7 +153,6 @@
 %postun -n libSwiften4 -p /sbin/ldconfig
 
 %files
-%defattr(-,root,root)
 %doc COPYING
 %{_bindir}/%{_name}-im
 %{_bindir}/%{_name}-open-uri
@@ -160,11 +168,9 @@
 %{_datadir}/%{_name}/translations/swift_*.qm
 
 %files -n libSwiften4
-%defattr(-,root,root)
 %{_prefix}/lib/libSwiften.so.*
 
 %files -n swiften-devel
-%defattr(-,root,root)
 %{_bindir}/swiften-config
 %{_includedir}/Swiften
 %{_prefix}/lib/libSwiften.so




commit ypserv for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package ypserv for openSUSE:Factory checked 
in at 2017-11-23 09:43:55

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


Package is "ypserv"

Thu Nov 23 09:43:55 2017 rev:40 rq:544366 version:4.0

Changes:

--- /work/SRC/openSUSE:Factory/ypserv/ypserv.changes2017-11-10 
14:57:17.404311105 +0100
+++ /work/SRC/openSUSE:Factory/.ypserv.new/ypserv.changes   2017-11-23 
09:43:58.777465495 +0100
@@ -1,0 +2,6 @@
+Wed Nov 22 11:13:19 CET 2017 - ku...@suse.de
+
+- Prepare for new fillup location
+- Remove check for transactional-update, done in systemd macros now
+
+---



Other differences:
--
++ ypserv.spec ++
--- /var/tmp/diff_new_pack.eD6lZB/_old  2017-11-23 09:43:59.573436448 +0100
+++ /var/tmp/diff_new_pack.eD6lZB/_new  2017-11-23 09:43:59.577436302 +0100
@@ -48,6 +48,10 @@
 Requires(post): %fillup_prereq
 %{?systemd_requires}
 
+%if ! %{defined _fillupdir}
+  %define _fillupdir /var/adm/fillup-templates
+%endif
+
 %description
 The Network Information Service (NIS) provides a simple network
 lookup service consisting of databases and processes. It was formerly
@@ -77,7 +81,7 @@
 %install
 %make_install
 mkdir -p %{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services
-mkdir -p %{buildroot}%{_localstatedir}/adm/fillup-templates
+mkdir -p %{buildroot}%{_fillupdir}
 mkdir -p %{buildroot}%{_libexecdir}/yp
 mkdir -p %{buildroot}%{_unitdir}
 mkdir -p %{buildroot}%{_initddir}
@@ -89,7 +93,7 @@
 install -m 644 etc/securenets %{buildroot}%{_libexecdir}/yp/securenets.example
 mv %{buildroot}%{_localstatedir}/yp/Makefile 
%{buildroot}%{_libexecdir}/yp/ypMakefile
 # install sysconfig.ypserv
-install -m 644 %{SOURCE4} %{buildroot}%{_localstatedir}/adm/fillup-templates/
+install -m 644 %{SOURCE4} %{buildroot}%{_fillupdir}
 # install SuSEfirewall2 service script
 install -m 644 %{SOURCE5} 
%{buildroot}%{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ypserv
 # install ypserv.conf in tmpfiles.d
@@ -138,13 +142,11 @@
 if [ -f /var/yp/Makefile.rpmsave -a ! -e /var/yp/Makefile ]; then
   mv /var/yp/Makefile.rpmsave /var/yp/Makefile
 fi
-if [ -z ${TRANSACTIONAL_UPDATE} ]; then
-  %tmpfiles_create ypserv.conf
-fi
+%tmpfiles_create ypserv.conf
 
 %files
 %doc NEWS README TODO COPYING ChangeLog
-%{_localstatedir}/adm/fillup-templates/sysconfig.ypserv
+%{_fillupdir}/sysconfig.ypserv
 %config(noreplace) %{_sysconfdir}/ypserv.conf
 %config %{_sysconfdir}/sysconfig/SuSEfirewall2.d/services/ypserv
 %dir %{_libexecdir}/yp




commit docker-compose for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package docker-compose for openSUSE:Factory 
checked in at 2017-11-23 09:43:29

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


Package is "docker-compose"

Thu Nov 23 09:43:29 2017 rev:11 rq:544123 version:1.17.0

Changes:

--- /work/SRC/openSUSE:Factory/docker-compose/docker-compose.changes
2017-10-19 19:32:23.816146054 +0200
+++ /work/SRC/openSUSE:Factory/.docker-compose.new/docker-compose.changes   
2017-11-23 09:43:39.442171088 +0100
@@ -1,0 +2,15 @@
+Fri Nov 03 16:18:29 UTC 2017 - cobe...@gmail.com
+
+- Update to version 1.17.0:
+  * Bump 1.17.0
+  * Miscellaneous test fixes
+  * Add flake8 to dev requirements
+  * flake8 error on master branch (fixes #5298)
+  * Add bash completion for `up --no-start`
+  * Bump 1.17.0-rc1
+  * flake8
+  * Add check_duplicate=True when creating network
+  * Add specific handling for pywintypes.error
+  * Config command generates invalid volumes (fixes #5176)
+
+---

Old:

  compose-1.8.1.tar.xz

New:

  _servicedata
  compose-1.17.0.tar.xz



Other differences:
--
++ docker-compose.spec ++
--- /var/tmp/diff_new_pack.CHP0vE/_old  2017-11-23 09:43:40.182144085 +0100
+++ /var/tmp/diff_new_pack.CHP0vE/_new  2017-11-23 09:43:40.186143939 +0100
@@ -19,20 +19,22 @@
 %define mod_name compose
 
 Name:   docker-compose
-Version:1.8.1
+Version:1.17.0
 Release:0
 Summary:Define and run complex applications using Docker
 License:Apache-2.0
 Group:  System/Management
-Url:https://pypi.python.org/pypi/fig
+Url:https://pypi.python.org/pypi/docker-compose
 Source0:%{mod_name}-%{version}.tar.xz
 Source1:README.SUSE
 Patch0: fix-requirements.patch
 Requires:   docker
+Requires:   python-PySocks  >= 1.5.6
+Conflicts:  python-PySocks  >= 2
 Requires:   python-PyYAML   >= 3.11
 Conflicts:  python-PyYAML   >= 4
-Requires:   python-docker   >= 1.10.3
-Conflicts:  python-docker   >= 2
+Requires:   python-docker   >= 2.5.1
+Conflicts:  python-docker   >= 3
 Requires:   python-dockerpty>= 0.4.1
 Conflicts:  python-dockerpty>= 0.5
 Requires:   python-docopt   >= 0.6.1
@@ -46,12 +48,13 @@
 Requires:   python-setuptools
 Requires:   python-six  >= 1.7.3
 Conflicts:  python-six  >= 2
-Requires:   python-texttable>= 0.8.2
-Conflicts:  python-texttable>= 0.9
+Requires:   python-texttable>= 0.8.1
+Conflicts:  python-texttable>= 0.10
 Requires:   python-websocket-client >= 0.32.0
 Conflicts:  python-websocket-client >= 1.0
 Requires:   python-cached-property  >= 1.2.0
 Conflicts:  python-cached-property  >= 2
+Requires:   python-ipaddress>= 1.0.16
 BuildRequires:  python-setuptools
 Requires:   python >= 2.7
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ _service ++
--- /var/tmp/diff_new_pack.CHP0vE/_old  2017-11-23 09:43:40.226142479 +0100
+++ /var/tmp/diff_new_pack.CHP0vE/_new  2017-11-23 09:43:40.230142333 +0100
@@ -4,13 +4,13 @@
 g...@github.com:docker/compose.git
 .git
 compose
-1.8.1
-1.8.1
+1.17.0
+1.17.0
 enable
   
   
 *.tar
 xz
   
-  
+  
 

++ _servicedata ++


g...@github.com:docker/compose.git
  ac53b73e7958b825f7235a661c208f4f6f6e90f7++
 compose-1.8.1.tar.xz -> compose-1.17.0.tar.xz ++
 24889 lines of diff (skipped)

++ fix-requirements.patch ++
--- /var/tmp/diff_new_pack.CHP0vE/_old  2017-11-23 09:43:40.474133430 +0100
+++ /var/tmp/diff_new_pack.CHP0vE/_new  2017-11-23 09:43:40.474133430 +0100
@@ -1,22 +1,24 @@
 diff --git a/setup.py b/setup.py
-index 80258fb..5d1745b 100644
+index 192a0f6a..75adb686 100644
 --- a/setup.py
 +++ b/setup.py
-@@ -31,7 +31,7 @@ install_requires = [
+@@ -33,8 +33,8 @@ install_requires = [
  'cached-property >= 1.2.0, < 2',
  'docopt >= 0.6.1, < 0.7',
  'PyYAML >= 3.10, < 4',
--'requests >= 2.6.1, < 2.8',
+-'requests >= 2.6.1, != 2.11.0, < 2.12',
+-'texttable >= 0.9.0, < 0.10',
 +'requests >= 2.6.1',
- 'texttable >= 0.8.1, < 0.9',
++'texttable >= 0.8.1, < 0.10',
  'websocket-client >= 0.32.0, < 1.0',
- 'docker-py >= 1.10.3, < 2.0',
-@@ -48,7 +48,7 @@ tests_require = [
- 
- if sys.version_info[:2] < (3, 4):
+ 'docker >= 2.5.1, < 3.0',
+ 'dockerpty >= 0.4.1, < 0.5',
+@@ -52,7 +52,7 @@ if 

commit perl-Minion for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package perl-Minion for openSUSE:Factory 
checked in at 2017-11-23 09:43:35

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


Package is "perl-Minion"

Thu Nov 23 09:43:35 2017 rev:34 rq:544127 version:8.02

Changes:

--- /work/SRC/openSUSE:Factory/perl-Minion/perl-Minion.changes  2017-11-15 
16:53:58.316449027 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Minion.new/perl-Minion.changes 
2017-11-23 09:43:40.770122628 +0100
@@ -1,0 +2,36 @@
+Tue Nov 21 06:34:58 UTC 2017 - co...@suse.com
+
+- updated to 8.02
+   see /usr/share/doc/packages/perl-Minion/Changes
+
+  8.02  2017-11-19
+- Improved admin ui with alerts for job management.
+
+---
+Sun Nov 19 06:35:30 UTC 2017 - co...@suse.com
+
+- updated to 8.01
+   see /usr/share/doc/packages/perl-Minion/Changes
+
+  8.01  2017-11-18
+- Fixed installation problems with some versions of Perl on Windows.
+
+---
+Sat Nov 18 06:35:52 UTC 2017 - co...@suse.com
+
+- updated to 8.0
+   see /usr/share/doc/packages/perl-Minion/Changes
+
+  
+  8.0  2017-11-16
+- Removed job_info and worker_info methods from Minion::Backend and
+  Minion::Backend::Pg.
+- Changed return value of list_jobs and list_workers methods in
+  Minion::Backend and Minion::Backend::Pg.
+- Added new module Mojolicious::Plugin::Minion::Admin.
+- Added ids option to list_jobs and list_workers methods in Minion::Backend
+  and Minion::Backend::Pg.
+- Added uptime field to stats methods in Minion, Minion::Backend and
+  Minion::Backend::Pg.
+
+---

Old:

  Minion-7.09.tar.gz

New:

  Minion-8.02.tar.gz



Other differences:
--
++ perl-Minion.spec ++
--- /var/tmp/diff_new_pack.7ZBhTO/_old  2017-11-23 09:43:41.378100442 +0100
+++ /var/tmp/diff_new_pack.7ZBhTO/_new  2017-11-23 09:43:41.378100442 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Minion
-Version:7.09
+Version:8.02
 Release:0
 %define cpan_name Minion
 Summary:Job queue
@@ -30,8 +30,8 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Mojolicious) >= 7.29
-Requires:   perl(Mojolicious) >= 7.29
+BuildRequires:  perl(Mojolicious) >= 7.56
+Requires:   perl(Mojolicious) >= 7.56
 %{perl_requires}
 
 %description
@@ -39,8 +39,8 @@
 framework, with support for multiple named queues, priorities, delayed
 jobs, job dependencies, job progress, job results, retries with backoff,
 rate limiting, unique jobs, statistics, distributed workers, parallel
-processing, autoscaling, remote control, resource leak protection and
-multiple backends (such as at http://www.postgresql.org).
+processing, autoscaling, remote control, admin ui, resource leak protection
+and multiple backends (such as at http://www.postgresql.org).
 
 Job queues allow you to process time and/or computationally intensive tasks
 in background processes, outside of the request/response lifecycle. Among
@@ -79,6 +79,13 @@
 
   $ ./myapp.pl minion job
 
+You can also add an admin ui to your application by loading the plugin
+Mojolicious::Plugin::Minion::Admin. Just make sure to secure access before
+making your application publically accessible.
+
+  # Make admin ui available under "/minion"
+  plugin 'Minion::Admin';
+
 To manage background worker processes with systemd, you can use a unit
 configuration file like this.
 

++ Minion-7.09.tar.gz -> Minion-8.02.tar.gz ++
 4896 lines of diff (skipped)




commit unison for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package unison for openSUSE:Factory checked 
in at 2017-11-23 09:43:47

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


Package is "unison"

Thu Nov 23 09:43:47 2017 rev:36 rq:544309 version:2.48.4

Changes:

--- /work/SRC/openSUSE:Factory/unison/unison.changes2017-10-11 
23:03:12.524025030 +0200
+++ /work/SRC/openSUSE:Factory/.unison.new/unison.changes   2017-11-23 
09:43:49.073819605 +0100
@@ -1,0 +2,9 @@
+Mon Nov 13 07:13:47 UTC 2017 - ok...@suse.com
+
+- Update to 2.48.4
+  * Fix build for OCaml 4.03
+(and add Makefile improvements for exporting under git)
+  * Better reporting for OCaml compiler version mismatch
+- drop patch unison-ocaml-4.03.patch: Change included in upstream sources
+
+---

Old:

  unison-2.48.3-manual.html
  unison-2.48.3.tar.gz
  unison-ocaml-4.03.patch

New:

  unison-2.48.4-manual.html
  unison-2.48.4.tar.gz



Other differences:
--
++ unison.spec ++
--- /var/tmp/diff_new_pack.2ekCmR/_old  2017-11-23 09:43:50.605763701 +0100
+++ /var/tmp/diff_new_pack.2ekCmR/_new  2017-11-23 09:43:50.609763555 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package unison
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   unison
-Version:2.48.3
+Version:2.48.4
 Release:0
 %{?ocaml_preserve_bytecode}
 Summary:File synchronization tool
@@ -28,7 +28,6 @@
 Source1:
http://www.cis.upenn.edu/~bcpierce/unison/download/releases/stable/unison-%{version}-manual.html
 Source2:%{name}.desktop
 Source3:%{name}.png
-Patch0: unison-ocaml-4.03.patch
 BuildRequires:  gtk2-devel
 BuildRequires:  ncurses-devel
 BuildRequires:  ocaml-lablgtk2-devel
@@ -44,8 +43,7 @@
 replica to the other.
 
 %prep
-%setup -q
-%patch0 -p1
+%setup -qn src
 
 %build
 # This package failed when testing with -Wl,-as-needed being default.

++ unison-2.48.3-manual.html -> unison-2.48.4-manual.html ++
--- /work/SRC/openSUSE:Factory/unison/unison-2.48.3-manual.html 2015-02-23 
13:19:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.unison.new/unison-2.48.4-manual.html
2017-11-23 09:43:48.609836537 +0100
@@ -36,8 +36,8 @@
 
 Unison File Synchronizer
 User Manual and Reference Guide
-Version 2.48.3
-Copyright 1998-2015, Benjamin C. Pierce
+Version 2.48.4
+Copyright 1998-2012, Benjamin C. Pierce
  
 
 
@@ -105,7 +105,7 @@
 Installing Ssh
 Unix
 Windows
-Changes in Version 2.48.3
+Changes in Version 2.48.4
 
  
  
@@ -387,15 +387,8 @@
 
 Unix
 
-Unison can be built with or without a graphical user interface (GUI). The
-build system will decide automatically depending on the libraries installed
-on your system, but you can also type make UISTYLE=text to build
-Unison without GUI.
-
-You'll need the Objective Caml compiler, 
-available from http://caml.inria.fr;>http://caml.inria.fr. OCaml is 
available from most
-package managers 
-Building and installing OCaml
+You'll need the Objective Caml compiler (version 3.11.2 or later), which is
+available from http://caml.inria.fr;>http://caml.inria.fr. Building and 
installing OCaml
 on Unix systems is very straightforward; just follow the instructions in the
 distribution. You'll probably want to build the native-code compiler in
 addition to the bytecode compiler, as Unison runs much faster when compiled
@@ -410,30 +403,39 @@
 not parallelizable, so don't use make flags which cause it to start
 processes in parallel, e.g. -j for GNU make.
 
-Once you've got OCaml installed, grab a copy of the Unison sources, unzip
-and untar them, change to the new unison 
directory, and type make UISTYLE=text. The result should 
be an executable file called
-unison. Type ./unison to make sure the program is
-executable. You should get back a usage message.
+Once you've got OCaml installed, grab a copy of the Unison sources,
+unzip and untar them, change to the new unison 
directory, and
+type make UISTYLE=text.
+The result should be an executable file called unison.
+Type ./unison to make sure the program is 
executable. You
+should get back a usage message.
 
 If you want to build the graphical user interface, you will need to install
-some additional things:
+two additional things:
 
-The Gtk2 development libraries (package libgtk2.0-dev on debian
-based systems).
-OCaml bindings for Gtk2. Install them from your 
software repositories
-(package 

commit connman for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package connman for openSUSE:Factory checked 
in at 2017-11-23 09:42:33

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


Package is "connman"

Thu Nov 23 09:42:33 2017 rev:1 rq:541136 version:1.35

Changes:

New Changes file:

--- /dev/null   2017-10-14 16:26:57.428140955 +0200
+++ /work/SRC/openSUSE:Factory/.connman.new/connman.changes 2017-11-23 
09:42:36.980450483 +0100
@@ -0,0 +1,260 @@
+---
+Thu Oct 26 01:13:17 UTC 2017 - avvi...@yandex.by
+
+- Change the mode of download_files (sr#521762)
+- Remove connman-rpmlintrc (bnc#1057697)
+- Add client as a recommended dependency
+
+---
+Fri Oct 20 15:44:11 UTC 2017 - avvi...@yandex.by
+
+- Remove unrecognized options: disable-gtk-doc, enable-threads, 
+  disable-iwmx, enable-session-policy
+
+---
+Thu Oct 19 18:04:38 UTC 2017 - avvi...@yandex.by
+
+- Add configuration file (/etc/connman/main.conf)
+- Add ghost lines: main.conf connman connman-vpn
+
+---
+Tue Oct  3 02:12:17 UTC 2017 - avvi...@yandex.by
+
+- Add connman-1.35-resolvconf.patch
+- Activate connman.service if the network services disabled
+- Add info in /var/adm/update-messages
+
+---
+Fri Sep  8 00:54:17 UTC 2017 - avvi...@yandex.by
+
+- Remove obsolete macros
+- Add polkit-agent-1 dependency
+- Use the %tmpfiles_create macro
+- Removal of ldconfig scriptlets from all packages
+- Add connman-wait-online.service in post{un}
+- Spec file cleanup
+
+---
+Tue Aug 22 05:20:00 UTC 2017 - sleep_wal...@opensuse.org
+
+- bump to 1.35
+  besides other things contains fix for CVE-2017-12865
+
+---
+Tue Oct 13 22:22:59 UTC 2015 - sleep_wal...@opensuse.org
+
+- bumpt to 1.30
+Fix issue with pending DNS request during server change.
+Fix issue with empty strings in nameservers configuration.
+Fix issue with time servers during IP configuration change.
+Fix issue with 4-way handshake during roaming.
+Fix issue with open WiFi networks security.
+Fix issue with support for WiFi AnonymousIdentity.
+Fix issue with memory leak and DHCPv6 DUID handling.
+Fix issue with DHCP client and P2P interaction.
+Fix issue with handling provision file updates.
+Fix issue with VPN state updates.
+Disable 6to4 support by default.
+- add keyring file
+- clean with spec-cleaner
+- fix builds for all possible distributions and architectures
+
+---
+Fri Aug  7 13:00:42 UTC 2015 - sleep_wal...@opensuse.org
+
+- bump to 1.29
+   Fix issue with IPv6 autoconfiguration when disabled.
+   Fix issue with IPv6 temporary route handling.
+   Fix issue with IPv6 timers for nameservers.
+   Fix issue with DHPCv6 and route configuration.
+   Fix issue with DHCPv6 source port and buggy servers.
+   Fix issue with DHCPv6 rapid commit option length.
+   Fix issue with DHCPv6 rapid commit error handling.
+   Fix issue with handling invalid WiFi passphrases.
+   Fix issue with connecting Ethernet devices.
+   Add support for Ethernet and VLAN usage.
+
+---
+Fri Feb  6 22:01:38 UTC 2015 - sleep_wal...@suse.cz
+
+- bump to 1.28
+  ver 1.28:
+   Fix issue with DHCPv6 re-transmission timer.
+   Fix issue with DHCP service ID option byte order.
+   Fix issue with IPv6 connections and SLAAC/DHCPv6.
+   Fix issue with telephony and IPv6 autoconfiguration.
+   Fix issue with Bluetooth technology setting changes.
+   Fix issue with WiFi autoscan interval calculation.
+   Fix issue with WiFi and missing BSS signal strength.
+   Add support for IPv4 information for WiFi Display.
+
+  ver 1.27:
+   Fix issue with memory leak in IP configuration.
+   Fix issue with providing random numbers for DHCP.
+   Fix issue with handling IN_MOVED_TO inotify events.
+   Fix issue with channel selection for WiFi scanning.
+   Add support for handling Bluetooth GN and PANU roles.
+
+  ver 1.26:
+   Fix issue with missing WiFi security provisioning support.
+   Fix issue with immutable setting and provisioned services.
+   Fix issue with scheduling DNS cache cleanup procedure.
+   Fix issue with IPv6 Privacy setting on service removal.
+   Fix issue 

commit perl-JSON for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package perl-JSON for openSUSE:Factory 
checked in at 2017-11-23 09:41:19

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


Package is "perl-JSON"

Thu Nov 23 09:41:19 2017 rev:21 rq:544104 version:2.97000

Changes:

--- /work/SRC/openSUSE:Factory/perl-JSON/perl-JSON.changes  2017-06-07 
09:52:37.48241 +0200
+++ /work/SRC/openSUSE:Factory/.perl-JSON.new/perl-JSON.changes 2017-11-23 
09:41:32.610799141 +0100
@@ -1,0 +2,26 @@
+Tue Nov 21 06:28:09 UTC 2017 - co...@suse.com
+
+- updated to 2.97000
+   see /usr/share/doc/packages/perl-JSON/Changes
+
+  2.97000 2017-11-21
+  - updated backportPP with JSON::PP 2.97000
+  - use 5 digit minor version number for a while to avoid
+confusion
+  - fixed is_bool to use blessed() instead of ref()
+
+---
+Mon Nov 20 06:29:28 UTC 2017 - co...@suse.com
+
+- updated to 2.96
+   see /usr/share/doc/packages/perl-JSON/Changes
+
+  2.96 2017-11-20
+  - fixed packaging issue
+  - updated backportPP with JSON::PP 2.96
+  - not to use newer Test::More features (RT-122421; ilmari++)
+  
+  2.95 2017-11-20
+  - updated backportPP with JSON::PP 2.95
+
+---

Old:

  JSON-2.94.tar.gz

New:

  JSON-2.97000.tar.gz



Other differences:
--
++ perl-JSON.spec ++
--- /var/tmp/diff_new_pack.EHPFdu/_old  2017-11-23 09:41:34.302737410 +0100
+++ /var/tmp/diff_new_pack.EHPFdu/_new  2017-11-23 09:41:34.306737264 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   perl-JSON
-Version:2.94
+Version:2.97000
 Release:0
 %define cpan_name JSON
 Summary:JSON (JavaScript Object Notation) encoder/decoder

++ JSON-2.94.tar.gz -> JSON-2.97000.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/JSON-2.94/Changes new/JSON-2.97000/Changes
--- old/JSON-2.94/Changes   2017-05-29 07:41:28.0 +0200
+++ new/JSON-2.97000/Changes2017-11-20 18:19:16.0 +0100
@@ -1,5 +1,19 @@
 Revision history for Perl extension JSON.
 
+2.97000 2017-11-21
+- updated backportPP with JSON::PP 2.97000
+- use 5 digit minor version number for a while to avoid
+  confusion
+- fixed is_bool to use blessed() instead of ref()
+
+2.96 2017-11-20
+- fixed packaging issue
+- updated backportPP with JSON::PP 2.96
+- not to use newer Test::More features (RT-122421; ilmari++)
+
+2.95 2017-11-20
+- updated backportPP with JSON::PP 2.95
+
 2.94 2017-05-29
 - fixed VERSION issue caused by VERSION methods added to abstract
   backend packages (RT-121892; ppisar++)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/JSON-2.94/MANIFEST new/JSON-2.97000/MANIFEST
--- old/JSON-2.94/MANIFEST  2017-05-29 07:42:27.0 +0200
+++ new/JSON-2.97000/MANIFEST   2017-11-20 18:21:19.0 +0100
@@ -10,6 +10,7 @@
 Makefile.PL
 MANIFEST   This list of files
 README
+t/00_backend_version.t
 t/00_load.t
 t/00_load_backport_pp.t
 t/00_pod.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/JSON-2.94/META.json new/JSON-2.97000/META.json
--- old/JSON-2.94/META.json 2017-05-29 07:42:27.0 +0200
+++ new/JSON-2.97000/META.json  2017-11-20 18:21:19.0 +0100
@@ -45,5 +45,5 @@
  "url" : "https://github.com/makamaka/JSON;
   }
},
-   "version" : "2.94"
+   "version" : "2.97000"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/JSON-2.94/META.yml new/JSON-2.97000/META.yml
--- old/JSON-2.94/META.yml  2017-05-29 07:42:27.0 +0200
+++ new/JSON-2.97000/META.yml   2017-11-20 18:21:19.0 +0100
@@ -23,4 +23,4 @@
   Test::More: '0'
 resources:
   repository: https://github.com/makamaka/JSON
-version: '2.94'
+version: '2.97000'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/JSON-2.94/lib/JSON/backportPP/Boolean.pm 
new/JSON-2.97000/lib/JSON/backportPP/Boolean.pm
--- old/JSON-2.94/lib/JSON/backportPP/Boolean.pm2017-05-29 
07:23:22.0 +0200
+++ new/JSON-2.97000/lib/JSON/backportPP/Boolean.pm 2017-11-20 
18:16:47.0 +0100
@@ -9,7 +9,7 @@
 fallback => 1,
 );
 
-$JSON::backportPP::Boolean::VERSION = '2.94';
+$JSON::backportPP::Boolean::VERSION = '2.97000';
 
 1;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/JSON-2.94/lib/JSON/backportPP.pm 
new/JSON-2.97000/lib/JSON/backportPP.pm

commit libpsm2 for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package libpsm2 for openSUSE:Factory checked 
in at 2017-11-23 09:40:54

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


Package is "libpsm2"

Thu Nov 23 09:40:54 2017 rev:7 rq:544102 version:10.3.17

Changes:

--- /work/SRC/openSUSE:Factory/libpsm2/libpsm2.changes  2017-09-08 
20:40:43.001786349 +0200
+++ /work/SRC/openSUSE:Factory/.libpsm2.new/libpsm2.changes 2017-11-23 
09:41:13.203507217 +0100
@@ -1,0 +2,13 @@
+Mon Nov 20 16:42:59 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Updated to version 10.3.17:
+- Small bug fixes and some enhanced debugging.
+- Assigned context is not freed on close() which could lead to
+  context starvation. Therefore release hfi1 mappings when closing a
+  context.
+- Close receive thread only while closing last endpoint
+- Rebase libpsm2-include-ioctl_h.patch, libpsm2-use_RPM_OPT_FLAGS.patch and
+  libpsm2-use-exported-variable-for-version-and-release.patch to the
+  latest sources.
+
+---

Old:

  libpsm2-10.2.260.tar.bz2

New:

  libpsm2-10.3.17.tar.bz2



Other differences:
--
++ libpsm2.spec ++
--- /var/tmp/diff_new_pack.23nXba/_old  2017-11-23 09:41:16.099401560 +0100
+++ /var/tmp/diff_new_pack.23nXba/_new  2017-11-23 09:41:16.099401560 +0100
@@ -20,7 +20,7 @@
 
 %define psm_so 2
 Name:   libpsm2
-Version:10.2.260
+Version:10.3.17
 Release:0
 Summary:Intel PSM Messaging API libraries
 License:BSD-2-Clause or GPL-2.0
@@ -84,8 +84,8 @@
 %prep
 %setup -q -n %{name}-%{version}%{git_ver}
 %patch2
-%patch3 -p1
-%patch4 -p1
+%patch3
+%patch4
 
 cp %{S:1} ChangeLog
 

++ _service ++
--- /var/tmp/diff_new_pack.23nXba/_old  2017-11-23 09:41:16.127400538 +0100
+++ /var/tmp/diff_new_pack.23nXba/_new  2017-11-23 09:41:16.131400392 +0100
@@ -5,11 +5,11 @@
 no
 .git
 libpsm2
-10.2.260
+10.3.17
 PSM2_(.*)
 \1
 PSM2_*
-3f30d743ffbd39703e3cecdb25d319ed199d3d97
+96f6e83d0445246ebe39f2fcdd987749daaad049
   
   
 libpsm2*.tar

++ libpsm2-10.2.260.tar.bz2 -> libpsm2-10.3.17.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libpsm2-10.2.260/COMMIT new/libpsm2-10.3.17/COMMIT
--- old/libpsm2-10.2.260/COMMIT 2017-09-06 01:28:41.0 +0200
+++ new/libpsm2-10.3.17/COMMIT  2017-10-20 00:34:17.0 +0200
@@ -1 +1 @@
-d7e63ede75bc080c68117cfa3f4e9e8b2d85e2cd
\ No newline at end of file
+f8df7f0de7139df384ea8b94dc8567885bf76070
\ No newline at end of file
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libpsm2-10.2.260/Makefile 
new/libpsm2-10.3.17/Makefile
--- old/libpsm2-10.2.260/Makefile   2017-09-06 01:28:41.0 +0200
+++ new/libpsm2-10.3.17/Makefile2017-10-20 00:34:17.0 +0200
@@ -177,23 +177,34 @@
 export LIBPSM2_COMPAT_CONF_DIR
 
 # The desired version number comes from the most recent tag starting with "v"
-VERSION := $(shell if [ -e .git ] ; then  git  describe --tags --abbrev=0 
--match='v*' | sed -e 's/^v//' -e 's/-/_/'; else echo "version" ; fi)
+ifeq (true, $(shell git rev-parse --is-inside-work-tree 2>/dev/null))
+ISGIT := 1 # Cache the result for later
+# Note, we don't define ISGIT if we are not in a git folder
+VERSION := $(shell git describe --tags --abbrev=0 --match='psm-v*' | sed -e 
's/^psm-v//' -e 's/-/_/')
+else
+ISGIT := 0
+VERSION := version
+endif
 
 # If we have a file called 'rpm_release_extension' (as on github),
 # we take the release extension number from this file
-RELEASE_EXT := $(shell if [ -e rpm_release_extension ] ; then cat 
rpm_release_extension; fi)
-CURRENTSHA := $(shell if [ -e .git -a -f rpm_release_extension ] ; then git 
log --pretty=format:'%h' -n 1; fi)
-RPMEXTHASH := $(shell if [ -e .git -a -f rpm_release_extension ] ; then git 
log --pretty=format:'%h' -n 1 rpm_release_extension; fi)
+RELEASE_EXT := $(shell if [ -e rpm_release_extension ] ;\
+   then cat rpm_release_extension; fi)
+CURRENTSHA := $(shell if [ $(ISGIT) = 1 -a -f rpm_release_extension ] ;\
+  then git log --pretty=format:'%h' -n 1; fi)
+RPMEXTHASH := $(shell if [ $(ISGIT) = 1 -a -f rpm_release_extension ] ;\
+  then git log --pretty=format:'%h' -n 1 
rpm_release_extension; fi)
 
+# This logic should kick-in only on github
+ifdef RELEASE_EXT
+ifneq ($(CURRENTSHA), $(RPMEXTHASH))
 # On github, the last commit for each release should be the one to bump up
 # the release extension number in 'rpm_release_extension'. Further commits
 # are 

commit kmod for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package kmod for openSUSE:Factory checked in 
at 2017-11-23 09:40:23

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


Package is "kmod"

Thu Nov 23 09:40:23 2017 rev:43 rq:543991 version:24

Changes:

--- /work/SRC/openSUSE:Factory/kmod/kmod.changes2017-10-17 
01:49:28.870970661 +0200
+++ /work/SRC/openSUSE:Factory/.kmod.new/kmod.changes   2017-11-23 
09:40:37.688802974 +0100
@@ -1,0 +2,5 @@
+Mon Nov 20 14:34:59 UTC 2017 - msucha...@suse.com
+
+- Move dependency on suse-module-tools to kmod-compat (bsc#1047911).
+
+---



Other differences:
--
++ kmod.spec ++
--- /var/tmp/diff_new_pack.HtRVE2/_old  2017-11-23 09:40:39.620732487 +0100
+++ /var/tmp/diff_new_pack.HtRVE2/_new  2017-11-23 09:40:39.624732341 +0100
@@ -44,7 +44,6 @@
 BuildRequires:  pkgconfig(liblzma) >= 4.99
 BuildRequires:  pkgconfig(zlib)
 Requires(post): coreutils
-Requires:   suse-module-tools
 Conflicts:  kmod-compat < 24
 
 %description
@@ -70,6 +69,7 @@
 License:GPL-2.0+
 Group:  System/Kernel
 Requires:   kmod = %version-%release
+Requires:   suse-module-tools
 Obsoletes:  module-init-tools < 3.16
 Provides:   module-init-tools = 3.16
 Provides:   modutils





commit libyui-ncurses for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package libyui-ncurses for openSUSE:Factory 
checked in at 2017-11-23 09:39:58

Comparing /work/SRC/openSUSE:Factory/libyui-ncurses (Old)
 and  /work/SRC/openSUSE:Factory/.libyui-ncurses.new (New)


Package is "libyui-ncurses"

Thu Nov 23 09:39:58 2017 rev:36 rq:543944 version:2.49.0

Changes:

--- /work/SRC/openSUSE:Factory/libyui-ncurses/libyui-ncurses.changes
2017-08-12 20:00:56.360812255 +0200
+++ /work/SRC/openSUSE:Factory/.libyui-ncurses.new/libyui-ncurses.changes   
2017-11-23 09:40:15.513612039 +0100
@@ -1,0 +2,6 @@
+Wed Nov 15 15:30:34 UTC 2017 - shundham...@suse.de
+
+- Send a widget ID with Shift-F6 for automated testing (fate#324098)
+- 2.49.0
+
+---

Old:

  libyui-ncurses-2.48.4.tar.bz2

New:

  libyui-ncurses-2.49.0.tar.bz2



Other differences:
--
++ libyui-ncurses-doc.spec ++
--- /var/tmp/diff_new_pack.ONoch8/_old  2017-11-23 09:40:17.521538780 +0100
+++ /var/tmp/diff_new_pack.ONoch8/_new  2017-11-23 09:40:17.525538634 +0100
@@ -20,7 +20,7 @@
 %define so_version 8
 
 Name:   %{parent}-doc
-Version:2.48.4
+Version:2.49.0
 Release:0
 Source: %{parent}-%{version}.tar.bz2
 
@@ -31,7 +31,7 @@
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  graphviz-gnome
-BuildRequires:  libyui-devel >= 3.0.4
+BuildRequires:  libyui-devel >= 3.4.0
 BuildRequires:  texlive-latex
 
 Url:http://github.com/libyui/

++ libyui-ncurses.spec ++
--- /var/tmp/diff_new_pack.ONoch8/_old  2017-11-23 09:40:17.553537612 +0100
+++ /var/tmp/diff_new_pack.ONoch8/_new  2017-11-23 09:40:17.557537466 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libyui-ncurses
-Version:2.48.4
+Version:2.49.0
 Release:0
 Source: %{name}-%{version}.tar.bz2
 
@@ -33,7 +33,7 @@
 BuildRequires:  gcc-c++
 BuildRequires:  pkg-config
 
-%define libyui_devel_version libyui-devel >= 3.0.4
+%define libyui_devel_version libyui-devel >= 3.4.0
 BuildRequires:  %{libyui_devel_version}
 BuildRequires:  ncurses-devel
 

++ libyui-ncurses-2.48.4.tar.bz2 -> libyui-ncurses-2.49.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.48.4/VERSION.cmake 
new/libyui-ncurses-2.49.0/VERSION.cmake
--- old/libyui-ncurses-2.48.4/VERSION.cmake 2017-08-07 16:00:58.008836040 
+0200
+++ new/libyui-ncurses-2.49.0/VERSION.cmake 2017-11-20 17:15:10.844081564 
+0100
@@ -1,12 +1,12 @@
 SET( VERSION_MAJOR "2" )
-SET( VERSION_MINOR "48" )
-SET( VERSION_PATCH "4" )
+SET( VERSION_MINOR "49" )
+SET( VERSION_PATCH "0" )
 SET( VERSION 
"${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION}" )
 
 # This is need for the libyui core, ONLY.
 # These will be overridden from exports in LibyuiConfig.cmake
 SET( SONAME_MAJOR "5" )
-SET( SONAME_MINOR "0" )
+SET( SONAME_MINOR "1" )
 SET( SONAME_PATCH "0" )
 SET( SONAME "${SONAME_MAJOR}.${SONAME_MINOR}.${SONAME_PATCH}" )
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/libyui-ncurses-2.48.4/package/libyui-ncurses-doc.spec 
new/libyui-ncurses-2.49.0/package/libyui-ncurses-doc.spec
--- old/libyui-ncurses-2.48.4/package/libyui-ncurses-doc.spec   2017-08-07 
16:00:58.012836040 +0200
+++ new/libyui-ncurses-2.49.0/package/libyui-ncurses-doc.spec   2017-11-20 
17:15:10.848081564 +0100
@@ -19,7 +19,7 @@
 %define so_version 8
 
 Name:   %{parent}-doc
-Version:2.48.4
+Version:2.49.0
 Release:0
 Source: %{parent}-%{version}.tar.bz2
 
@@ -30,8 +30,8 @@
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  graphviz-gnome
-BuildRequires:  libyui-devel >= 3.0.4
 BuildRequires:  texlive-latex
+BuildRequires:  libyui-devel >= 3.4.0
 
 Url:http://github.com/libyui/
 Summary:Libyui-ncurses documentation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-ncurses-2.48.4/package/libyui-ncurses.changes 
new/libyui-ncurses-2.49.0/package/libyui-ncurses.changes
--- old/libyui-ncurses-2.48.4/package/libyui-ncurses.changes2017-08-07 
16:00:58.012836040 +0200
+++ new/libyui-ncurses-2.49.0/package/libyui-ncurses.changes2017-11-20 
17:15:10.848081564 +0100
@@ -1,4 +1,10 @@
 ---
+Wed Nov 15 15:30:34 UTC 2017 - shundham...@suse.de
+
+- Send a widget ID with Shift-F6 for automated testing (fate#324098)
+- 2.49.0
+
+---
 Mon Aug  7 13:21:35 UTC 2017 - mvid...@suse.com
 
 - Adjusted to increased 

commit papi for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package papi for openSUSE:Factory checked in 
at 2017-11-23 09:39:28

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


Package is "papi"

Thu Nov 23 09:39:28 2017 rev:23 rq:543931 version:5.5.1

Changes:

--- /work/SRC/openSUSE:Factory/papi/papi.changes2017-11-10 
14:41:33.830429678 +0100
+++ /work/SRC/openSUSE:Factory/.papi.new/papi.changes   2017-11-23 
09:39:41.410856285 +0100
@@ -1,0 +2,5 @@
+Sun Nov 12 12:28:10 UTC 2017 - e...@suse.com
+
+- Add lua-lmod as dependency to HPC package.
+
+---



Other differences:
--
++ papi.spec ++
--- /var/tmp/diff_new_pack.d2DkAt/_old  2017-11-23 09:39:44.430746104 +0100
+++ /var/tmp/diff_new_pack.d2DkAt/_new  2017-11-23 09:39:44.434745958 +0100
@@ -91,6 +91,7 @@
 %if %{with hpc}
 BuildRequires:  lua-lmod
 BuildRequires:  suse-hpc
+Requires:   lua-lmod
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 #PAPI doesn't support the s390 architecture




commit libyui for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package libyui for openSUSE:Factory checked 
in at 2017-11-23 09:39:06

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


Package is "libyui"

Thu Nov 23 09:39:06 2017 rev:33 rq:543905 version:3.4.0

Changes:

--- /work/SRC/openSUSE:Factory/libyui/libyui.changes2017-08-12 
19:59:12.423370832 +0200
+++ /work/SRC/openSUSE:Factory/.libyui.new/libyui.changes   2017-11-23 
09:39:17.491728981 +0100
@@ -1,0 +2,7 @@
+Wed Nov 15 15:06:20 UTC 2017 - shundham...@suse.de
+
+- Support for sending a widget ID with Shift-F6 for automated testing
+  (fate#324098)
+- 3.4.0
+
+---
@@ -1006 +1013 @@
-Thu Jan  1 00:00:00 CET 1970 - s...@suse.de
+Wed Jun 21 00:00:00 CEST 2007 - s...@suse.de

Old:

  libyui-3.3.3.tar.bz2

New:

  libyui-3.4.0.tar.bz2



Other differences:
--
++ libyui-doc.spec ++
--- /var/tmp/diff_new_pack.rG9PLz/_old  2017-11-23 09:39:20.019636750 +0100
+++ /var/tmp/diff_new_pack.rG9PLz/_new  2017-11-23 09:39:20.023636604 +0100
@@ -20,7 +20,7 @@
 %define so_version 8
 
 Name:   %{parent}-doc
-Version:3.3.3
+Version:3.4.0
 Release:0
 Source: %{parent}-%{version}.tar.bz2
 

++ libyui.spec ++
--- /var/tmp/diff_new_pack.rG9PLz/_old  2017-11-23 09:39:20.043635874 +0100
+++ /var/tmp/diff_new_pack.rG9PLz/_new  2017-11-23 09:39:20.047635729 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libyui
-Version:3.3.3
+Version:3.4.0
 Release:0
 Source: %{name}-%{version}.tar.bz2
 
@@ -66,7 +66,6 @@
 YaST for generic (C++) applications. This package has very few
 dependencies.
 
-
 %package devel
 
 %if 0%{?suse_version} > 1325
@@ -94,7 +93,6 @@
 This can be used independently of YaST for generic (C++) applications.
 This package has very few dependencies.
 
-
 %prep
 %setup -q -n %{name}-%{version}
 

++ libyui-3.3.3.tar.bz2 -> libyui-3.4.0.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.3.3/README.md new/libyui-3.4.0/README.md
--- old/libyui-3.3.3/README.md  2017-05-04 15:17:37.029375667 +0200
+++ new/libyui-3.4.0/README.md  2017-11-20 15:16:10.320612359 +0100
@@ -68,3 +68,12 @@
 ```
 rake osc:build
 ```
+
+### Versioning
+
+Changing `SONAME_MAJOR` in VERSION.cmake currently means that you must also
+change `so_version` in libyui.spec *and also in **all** other* libyui-*.spec
+files in the other repositories. Yes, such a design is suboptimal.
+
+This is because the program-libyui API is not distinct
+from the libyui-plugin API.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.3.3/VERSION.cmake 
new/libyui-3.4.0/VERSION.cmake
--- old/libyui-3.3.3/VERSION.cmake  2017-08-03 13:11:10.664609964 +0200
+++ new/libyui-3.4.0/VERSION.cmake  2017-11-20 15:16:10.332612359 +0100
@@ -1,12 +1,14 @@
 SET( VERSION_MAJOR "3")
-SET( VERSION_MINOR "3" )
-SET( VERSION_PATCH "3" )
+SET( VERSION_MINOR "4" )
+SET( VERSION_PATCH "0" )
 SET( VERSION 
"${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}${GIT_SHA1_VERSION}" )
 
 # This is need for the libyui core, ONLY.
 # These will be overridden from exports in LibyuiConfig.cmake
-# must also adjust "Requires: yui_backend = SONAME_MAJOR" in libyui.spec.in
+# Currently you must also change so_version in libyui.spec
+# *and also in **all** other* libyui-*.spec files in the other repositories.
+# Yes, such a design is suboptimal.
 SET( SONAME_MAJOR "8" )
-SET( SONAME_MINOR "0" )
+SET( SONAME_MINOR "1" )
 SET( SONAME_PATCH "0" )
 SET( SONAME "${SONAME_MAJOR}.${SONAME_MINOR}.${SONAME_PATCH}" )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.3.3/package/libyui-doc.spec 
new/libyui-3.4.0/package/libyui-doc.spec
--- old/libyui-3.3.3/package/libyui-doc.spec2017-08-03 13:11:10.664609964 
+0200
+++ new/libyui-3.4.0/package/libyui-doc.spec2017-11-20 15:16:10.380612359 
+0100
@@ -20,7 +20,7 @@
 %define so_version 8
 
 Name:   %{parent}-doc
-Version:3.3.3
+Version:3.4.0
 Release:0
 Source: %{parent}-%{version}.tar.bz2
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-3.3.3/package/libyui.changes 
new/libyui-3.4.0/package/libyui.changes
--- old/libyui-3.3.3/package/libyui.changes 2017-08-03 13:11:10.668609964 
+0200
+++ new/libyui-3.4.0/package/libyui.changes 2017-11-20 15:16:10.380612359 
+0100
@@ -1,4 +1,11 @@
 ---
+Wed Nov 15 15:06:20 UTC 2017 

commit installation-images for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package installation-images for 
openSUSE:Factory checked in at 2017-11-23 09:38:53

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


Package is "installation-images"

Thu Nov 23 09:38:53 2017 rev:27 rq:543868 version:14.343

Changes:

--- /work/SRC/openSUSE:Factory/installation-images/installation-images.changes  
2017-11-18 00:19:24.939216701 +0100
+++ 
/work/SRC/openSUSE:Factory/.installation-images.new/installation-images.changes 
2017-11-23 09:39:01.676306012 +0100
@@ -1,0 +2,7 @@
+Mon Nov 20 12:02:01 UTC 2017 - wfe...@opensuse.org
+
+- merge gh#openSUSE/installation-images#216
+- adjust to ruby2.5
+- 14.343
+
+

Old:

  installation-images-14.342.tar.xz

New:

  installation-images-14.343.tar.xz



Other differences:
--
++ installation-images.spec ++
--- /var/tmp/diff_new_pack.JOypno/_old  2017-11-23 09:39:03.204250264 +0100
+++ /var/tmp/diff_new_pack.JOypno/_new  2017-11-23 09:39:03.208250118 +0100
@@ -537,7 +537,7 @@
 Summary:Installation Image Files for %theme
 License:GPL-2.0+
 Group:  Metapackages
-Version:14.342
+Version:14.343
 Release:0
 Provides:   installation-images = %version-%release
 Conflicts:  otherproviders(installation-images)

++ installation-images-14.342.tar.xz -> installation-images-14.343.tar.xz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.342/VERSION 
new/installation-images-14.343/VERSION
--- old/installation-images-14.342/VERSION  2017-11-17 11:06:24.0 
+0100
+++ new/installation-images-14.343/VERSION  2017-11-20 13:02:01.0 
+0100
@@ -1 +1 @@
-14.342
+14.343
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.342/changelog 
new/installation-images-14.343/changelog
--- old/installation-images-14.342/changelog2017-11-17 11:06:24.0 
+0100
+++ new/installation-images-14.343/changelog2017-11-20 13:02:01.0 
+0100
@@ -1,3 +1,6 @@
+2017-11-20:14.343
+   - adjust to ruby2.5
+
 2017-11-17:14.342
- add fixed.ko (bsc #1067827)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/installation-images-14.342/data/root/root.file_list 
new/installation-images-14.343/data/root/root.file_list
--- old/installation-images-14.342/data/root/root.file_list 2017-11-17 
11:06:24.0 +0100
+++ new/installation-images-14.343/data/root/root.file_list 2017-11-20 
13:02:01.0 +0100
@@ -284,6 +284,7 @@
   r /usr/bin/rake*
   r /usr/bin/rdoc*
   r /usr/bin/ri*
+  r /usr/bin/bundle*
   e cd usr/bin ; for i in erb gem irb ruby ; do [ -x $i ] || ln -snf 
${i}.ruby2* $i ; done
 
 yast2-devtools:




commit ruby2.4 for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package ruby2.4 for openSUSE:Factory checked 
in at 2017-11-23 09:38:05

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


Package is "ruby2.4"

Thu Nov 23 09:38:05 2017 rev:3 rq:543851 version:2.4.2

Changes:

--- /work/SRC/openSUSE:Factory/ruby2.4/ruby2.4.changes  2017-06-04 
01:56:43.954447531 +0200
+++ /work/SRC/openSUSE:Factory/.ruby2.4.new/ruby2.4.changes 2017-11-23 
09:38:20.709800689 +0100
@@ -1,0 +2,50 @@
+Mon Nov 20 11:10:12 UTC 2017 - mrueck...@suse.de
+
+- disable jemalloc again because of: (boo#1068883)
+  https://github.com/jemalloc/jemalloc/issues/937
+
+---
+Thu Nov  9 13:43:41 UTC 2017 - jdelv...@suse.de
+
+- Add conflicts to libruby to make sure ruby and ruby-stdlib are
+  also updated when libruby is updated (bsc#1048072.)
+
+---
+Tue Nov  7 21:38:07 UTC 2017 - mrueck...@suse.de
+
+- devel package needs to require jemalloc-devel when building with
+  it
+
+---
+Tue Nov  7 13:19:33 UTC 2017 - mrueck...@suse.de
+
+- only use jemalloc on opensuse and sle >= 15
+
+---
+Mon Nov  6 14:26:31 UTC 2017 - mrueck...@suse.de
+
+- update to 2.4.2
+  - CVE-2017-0898: Buffer underrun vulnerability in Kernel.sprintf
+(boo#1058755)
+  - CVE-2017-10784: Escape sequence injection vulnerability in the
+Basic authentication of WEBrick (boo#1058754)
+  - CVE-2017-14033: Buffer underrun vulnerability in OpenSSL ASN1
+decode (boo#1058757)
+  - CVE-2017-14064: Heap exposure in generating JSON
+(boo#1056782)
+  - Multiple vulnerabilities in RubyGems (boo#1056286)
+CVE-2017-0899 CVE-2017-0900 CVE-2017-0901 CVE-2017-0902
+  - Update bundled libyaml to version 0.1.7.
+  - There are also many bug-fixes. For more details see:
+https://github.com/ruby/ruby/compare/v2_4_1...v2_4_2
+- added 
https://bugs.ruby-lang.org/attachments/download/6735/configure-2.4.2.diff
+  to allow building with libgmp and libjemalloc again
+
+---
+Mon Aug  7 09:46:16 UTC 2017 - mrueck...@suse.de
+
+- provide a ruby-default symbol and conflict with other providers
+  of that symbol so we can uninstall older default ruby versions
+  during zypper dup.
+
+---

Old:

  ruby-2.4.1.tar.xz

New:

  configure-2.4.2.diff
  ruby-2.4.2.tar.xz



Other differences:
--
++ ruby2.4.spec ++
--- /var/tmp/diff_new_pack.qmlDxD/_old  2017-11-23 09:38:21.597768291 +0100
+++ /var/tmp/diff_new_pack.qmlDxD/_new  2017-11-23 09:38:21.597768291 +0100
@@ -25,7 +25,7 @@
 
 
 %define patch_level p0
-Version:2.4.1
+Version:2.4.2
 Release:0
 # make the exported API version explicit
 %define api_version 2.4.0
@@ -36,7 +36,7 @@
 %define rpm_macros_version 3
 
 #
-%define pkg_version 2.4.1
+%define pkg_version 2.4.2
 %define libname libruby2_4-2_4
 # keep in sync with macro file!
 %define rb_ver  %{api_version}
@@ -50,6 +50,10 @@
 %define rb_extdocdir  
%{_libdir}/ruby/gems/%{rb_ver}/doc/extensions
 %define rb_extarchdocdir  
%{_libdir}/ruby/gems/%{rb_ver}/doc/extensions/%{rb_arch_short}
 
+%if "%{rb_default_ruby_suffix}" == "%{rb_soname}"
+%define is_default_ruby 1
+%endif
+
 # keep in sync with macro file!
 #
 # from valgrind.spec
@@ -58,11 +62,19 @@
 %endif
 # turn on testsuite by default. we dont hard fail anyway.
 %bcond_without run_tests
+%if 0%{?is_opensuse} || 0%{?sle_version} >= 15
+%bcond_withjemalloc
+%else
+%bcond_withjemalloc
+%endif
 
 #
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  awk
 BuildRequires:  gdbm-devel
+%if %{with jemalloc}
+BuildRequires:  jemalloc-devel
+%endif
 BuildRequires:  libffi-devel
 BuildRequires:  libyaml-devel
 BuildRequires:  ncurses-devel
@@ -91,7 +103,11 @@
 %if 0%{?suse_version} > 1130
 Conflicts:  ruby(abi) = %{rb_ver}
 %endif
-Provides:   ruby22  = %{version}-%{release}
+Provides:   ruby24  = %{version}-%{release}
+%if 0%{?is_default_ruby}
+Provides:   ruby-default = %{version}-%{release}
+Conflicts:  otherproviders(ruby-default)
+%endif
 Requires:   %{libname} = %{version}
 Requires:   %{name}-stdlib = %{version}
 PreReq: update-alternatives
@@ -109,6 +125,7 @@
 
 Patch01:0001-make-gem-build-reproducible.patch
 Patch02:0002-gc.c-tick-for-POWER-arch.patch
+Patch03:configure-2.4.2.diff
 
 #
 Summary:An 

commit lynx for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package lynx for openSUSE:Factory checked in 
at 2017-11-23 09:38:22

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


Package is "lynx"

Thu Nov 23 09:38:22 2017 rev:35 rq:543854 version:2.8.9~dev.16

Changes:

--- /work/SRC/openSUSE:Factory/lynx/lynx.changes2017-09-09 
20:22:41.310618743 +0200
+++ /work/SRC/openSUSE:Factory/.lynx.new/lynx.changes   2017-11-23 
09:38:31.341412791 +0100
@@ -1,0 +2,20 @@
+Mon Nov 20 11:16:20 UTC 2017 - pgaj...@suse.com
+
+- update to 2.8.9dev.16:
+* add a note in the comments for INCLUDE in lynx.cfg regarding the default
+  directory searches LYOpenCFG(), added in 2.8.4dev.20 (Debian #818047) -TD
+* add a check to ensure that HTML_put_string() will not append a chunk onto
+  itself (report by Ned Williamson) -TD
+* add note in lynx.cfg about default values (Debian #408448) -TD
+* amended Backes' change to the COLLAPSE_BR_TAGS feature for compatibility -TD
+  + use ENABLE_LYNXRC to determine whether it is written to the .lynxrc file.
+  + add command-line option, etc., for controlling whether blank lines are
+trimmed, e.g., trailing lines as well as the special case for collapsing
+br-tags.  Leading blank lines at the top of the document are untouched.
+  + modify limit for trimmed lines to retain as little as 1 line; previously
+the trimming would go no smaller than 2 lines.
+* add command-line option and options-menu item for COLLAPSE_BR_TAGS (patch
+  by Peter Backes).
+* correct logic in HTCopy() when re-reading a page (Debian #863008) -TD
+
+---

Old:

  lynx2.8.9dev.14.tar.bz2

New:

  lynx2.8.9dev.16.tar.bz2



Other differences:
--
++ lynx.spec ++
--- /var/tmp/diff_new_pack.5ddRS6/_old  2017-11-23 09:38:39.241124567 +0100
+++ /var/tmp/diff_new_pack.5ddRS6/_new  2017-11-23 09:38:39.245124421 +0100
@@ -16,9 +16,9 @@
 #
 
 
-%define tarbase 2.8.9dev.14
+%define tarbase 2.8.9dev.16
 Name:   lynx
-Version:2.8.9~dev.14
+Version:2.8.9~dev.16
 Release:0
 Summary:A Text-Based WWW Browser
 License:GPL-2.0

++ lynx2.8.9dev.14.tar.bz2 -> lynx2.8.9dev.16.tar.bz2 ++
 48125 lines of diff (skipped)




commit ruby2.5 for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package ruby2.5 for openSUSE:Factory checked 
in at 2017-11-23 09:37:42

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


Package is "ruby2.5"

Thu Nov 23 09:37:42 2017 rev:6 rq:543850 version:2.5.0~svn.60813

Changes:

--- /work/SRC/openSUSE:Factory/ruby2.5/ruby2.5.changes  2017-11-19 
11:08:05.618601540 +0100
+++ /work/SRC/openSUSE:Factory/.ruby2.5.new/ruby2.5.changes 2017-11-23 
09:37:45.911070336 +0100
@@ -1,0 +2,6 @@
+Mon Nov 20 11:01:40 UTC 2017 - mrueck...@suse.de
+
+- disable jemalloc again because of: (boo#1068883)
+  https://github.com/jemalloc/jemalloc/issues/937
+
+---



Other differences:
--
++ ruby2.5.spec ++
--- /var/tmp/diff_new_pack.oj4UQQ/_old  2017-11-23 09:37:51.446868360 +0100
+++ /var/tmp/diff_new_pack.oj4UQQ/_new  2017-11-23 09:37:51.450868214 +0100
@@ -63,7 +63,7 @@
 # turn on testsuite by default. we dont hard fail anyway.
 %bcond_without run_tests
 %if 0%{?is_opensuse} || 0%{?sle_version} >= 15
-%bcond_without jemalloc
+%bcond_withjemalloc
 %else
 %bcond_withjemalloc
 %endif




commit perl-Devel-StackTrace for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package perl-Devel-StackTrace for 
openSUSE:Factory checked in at 2017-11-23 09:37:36

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


Package is "perl-Devel-StackTrace"

Thu Nov 23 09:37:36 2017 rev:19 rq:543840 version:2.03

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Devel-StackTrace/perl-Devel-StackTrace.changes  
2016-12-10 18:30:01.474635313 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Devel-StackTrace.new/perl-Devel-StackTrace.changes
 2017-11-23 09:37:39.307311278 +0100
@@ -1,0 +2,14 @@
+Sun Nov 19 06:16:22 UTC 2017 - co...@suse.com
+
+- updated to 2.03
+   see /usr/share/doc/packages/perl-Devel-StackTrace/Changes
+
+  2.03   2017-11-18
+  
+  - If all frames in the trace were skipped (via skip_frames, frame_filter,
+ignore_*, etc.), then the stringified stack trace would be an empty
+string. Now this has been changed to always return the message given to the
+constructor or the string "Trace begun". Fixes GH #15, reported by Karen
+Etheridge.
+
+---

Old:

  Devel-StackTrace-2.02.tar.gz

New:

  Devel-StackTrace-2.03.tar.gz



Other differences:
--
++ perl-Devel-StackTrace.spec ++
--- /var/tmp/diff_new_pack.A0cFeE/_old  2017-11-23 09:37:39.939288220 +0100
+++ /var/tmp/diff_new_pack.A0cFeE/_new  2017-11-23 09:37:39.943288074 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Devel-StackTrace
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,14 +17,14 @@
 
 
 Name:   perl-Devel-StackTrace
-Version:2.02
+Version:2.03
 Release:0
 %define cpan_name Devel-StackTrace
 Summary:An object representing a stack trace
 License:Artistic-2.0
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Devel-StackTrace/
-Source0:
http://www.cpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -63,6 +63,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING.md LICENSE README.md
+%doc appveyor.yml Changes CONTRIBUTING.md README.md
+%license LICENSE
 
 %changelog

++ Devel-StackTrace-2.02.tar.gz -> Devel-StackTrace-2.03.tar.gz ++
 1787 lines of diff (skipped)




commit time for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package time for openSUSE:Factory checked in 
at 2017-11-23 09:37:09

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


Package is "time"

Thu Nov 23 09:37:09 2017 rev:7 rq:543004 version:1.8

Changes:

--- /work/SRC/openSUSE:Factory/time/time.changes2014-06-16 
21:43:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.time.new/time.changes   2017-11-23 
09:37:14.188227760 +0100
@@ -1,0 +2,32 @@
+Sat Nov 18 20:41:15 UTC 2017 - astie...@suse.com
+
+- time 1.8:
+  * license changed to GPL-3.0+
+- incorporate functionality previously carried as patches:
+  * -q/--quiet option to suppresses abnormal program terminal
+(non-exit codes or signals).
+Drop time-debian-quiet.patch
+Drop time-fedora-verbose.patch
+  * use the following exit codes (same as GNU coreutils' env):
+125 = Wrong usage or internal error prior to exec attempt.
+126 = Program located, but not usable.
+127 = Could not find program to exec.
+  * exit with code '128 + Signal number' when the program
+is terminated by a signal.
+Drop time-debian-non-normal-exit.patch
+  * report MAX-RSS values correctly on modern systems
+Drop time-fedora-ru_maxrss-is-in-kilobytes-on-Linux.patch
+Drop time-fedora-Recompute-CPU-usage-at-microsecond-level.patch
+  * Use gnulib modules and build infrastructure.
+  * New tests infrastructure (make check).
+- drop unneeded patches:
+  * time-debian-bug-address.patch
+  * time-alpha.patch
+  * time-debian-configure.patch
+  * time-debian-info-direntry.patch
+  * time-debian-info-nav.patch
+  * time-debian-rusage-portability.patch
+  * time-fsf-address.patch
+- add upstream keyring and verify source signature
+
+---

Old:

  time-1.7.tar.bz2
  time-alpha.patch
  time-debian-bug-address.patch
  time-debian-configure.patch
  time-debian-info-direntry.patch
  time-debian-info-nav.patch
  time-debian-non-normal-exit.patch
  time-debian-quiet.patch
  time-debian-rusage-portability.patch
  time-fedora-Recompute-CPU-usage-at-microsecond-level.patch
  time-fedora-ru_maxrss-is-in-kilobytes-on-Linux.patch
  time-fedora-verbose.patch
  time-fsf-address.patch

New:

  time-1.8.tar.gz
  time-1.8.tar.gz.sig
  time.keyring



Other differences:
--
++ time.spec ++
--- /var/tmp/diff_new_pack.herXfB/_old  2017-11-23 09:37:14.872202805 +0100
+++ /var/tmp/diff_new_pack.herXfB/_new  2017-11-23 09:37:14.876202659 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package time
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,51 +17,18 @@
 
 
 Name:   time
-Version:1.7
+Version:1.8
 Release:0
 Summary:Run Programs And Summarize System Resource Usage
-License:GPL-2.0+
+License:GPL-3.0+
 Group:  System/Base
 Url:http://www.gnu.org/software/time/
-Source: %{name}-%{version}.tar.bz2
+Source: http://ftp.gnu.org/gnu/time/%{name}-%{version}.tar.gz
 Source1:%{name}.rpmlintrc
-# Sync with:
-# Debian version: 1.7-24, patch naming: s/^/time-debian-/
-# Fedora version: 1.7-44, patch naming: s/^time-1.7/^time-fedora/
-# PATCH-FIX-OPENSUSE time-alpha.patch r...@suse.de -- Fix compilation on Alpha.
-Patch1: time-alpha.patch
-# PATCH-FIX-OPENSUSE time-fsf-address.patch sbra...@suse.cz -- Fix FSF address.
-Patch2: time-fsf-address.patch
-# Patch10 time-fedora-destdir.patch not applied, use Debian patch and 
autoreconf instead
-# PATCH-FEATURE-FEDORA time-fedora-verbose.patch sbra...@suse.cz -- Roman 
Rakus  - 1.7-33 - Added patch from JW (red...@zacglen.com), 
less nonverbose output.
-Patch11:time-fedora-verbose.patch
-# PATCH-FIX-FEDORA time-fedora-ru_maxrss-is-in-kilobytes-on-Linux.patch 
Redhat#702826 bnc#836049 sbra...@suse.cz -- Petr Pisar  - 
1.7-39 - Fix maximal RSS report.
-Patch12:time-fedora-ru_maxrss-is-in-kilobytes-on-Linux.patch
-# Bug Redhat#527276 Recompute CPU usage at microsecond level
-# PATCH-FEATURE-FEDORA 
time-fedora-Recompute-CPU-usage-at-microsecond-level.patch Redhat#527276 
sbra...@suse.cz -- H.J. Lu  - Switch to microsecond 
accuracy if miliseconds arithmetic rounds to zero.
-Patch13:time-fedora-Recompute-CPU-usage-at-microsecond-level.patch
-# PATCH-FIX-DEBIAN time-debian-non-normal-exit.patch sbra...@suse.cz -- When 
time exits in a non-normal 

commit firewalld for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package firewalld for openSUSE:Factory 
checked in at 2017-11-23 09:37:24

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


Package is "firewalld"

Thu Nov 23 09:37:24 2017 rev:22 rq:543832 version:0.4.4.6

Changes:

--- /work/SRC/openSUSE:Factory/firewalld/firewalld.changes  2017-11-19 
11:11:30.263139750 +0100
+++ /work/SRC/openSUSE:Factory/.firewalld.new/firewalld.changes 2017-11-23 
09:37:31.883582136 +0100
@@ -1,0 +2,5 @@
+Sun Nov 19 18:37:31 UTC 2017 - mplus...@suse.com
+
+- Make sure to use python3 everywhere (boo#1068778)
+
+---



Other differences:
--
++ firewalld.spec ++
--- /var/tmp/diff_new_pack.coFAy8/_old  2017-11-23 09:37:32.847546965 +0100
+++ /var/tmp/diff_new_pack.coFAy8/_new  2017-11-23 09:37:32.851546820 +0100
@@ -94,6 +94,8 @@
 
 %build
 export PYTHON="python3"
+sed -i "s|/usr/bin/python -Es|/usr/bin/python3 -Es|g" fix_python_shebang.sh
+sed -i "s|python|python3|g" config/lockdown-whitelist.xml
 ./autogen.sh
 %configure \
   --enable-sysconfig \




commit apache2 for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package apache2 for openSUSE:Factory checked 
in at 2017-11-23 09:37:15

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


Package is "apache2"

Thu Nov 23 09:37:15 2017 rev:138 rq:543119 version:2.4.29

Changes:

--- /work/SRC/openSUSE:Factory/apache2/apache2.changes  2017-10-23 
16:42:08.116012366 +0200
+++ /work/SRC/openSUSE:Factory/.apache2.new/apache2.changes 2017-11-23 
09:37:17.656101233 +0100
@@ -1,0 +2,6 @@
+Mon Nov 20 08:43:45 UTC 2017 - pgaj...@suse.com
+
+- APACHE_MODULES now contains authn_core in default configuration
+  [bsc#101]
+
+---



Other differences:
--



++ sysconfig.apache2 ++
--- /var/tmp/diff_new_pack.CyZbLG/_old  2017-11-23 09:37:20.276005645 +0100
+++ /var/tmp/diff_new_pack.CyZbLG/_new  2017-11-23 09:37:20.280005499 +0100
@@ -77,7 +77,7 @@
 # apache's default installation
 # APACHE_MODULES="authz_host actions alias asis auth autoindex cgi dir imap 
include log_config mime negotiation setenvif status userdir"
 # your settings
-APACHE_MODULES="actions alias auth_basic authn_file authz_host authz_groupfile 
authz_core authz_user autoindex cgi dir env expires include log_config mime 
negotiation setenvif ssl socache_shmcb userdir reqtimeout"
+APACHE_MODULES="actions alias auth_basic authn_core authn_file authz_host 
authz_groupfile authz_core authz_user autoindex cgi dir env expires include 
log_config mime negotiation setenvif ssl socache_shmcb userdir reqtimeout"
 
 
 ## Type:   string




commit ovmf for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package ovmf for openSUSE:Factory checked in 
at 2017-11-23 09:36:59

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


Package is "ovmf"

Thu Nov 23 09:36:59 2017 rev:19 rq:543002 version:2017+git1510945757.b2662641d5

Changes:

--- /work/SRC/openSUSE:Factory/ovmf/ovmf.changes2017-10-23 
16:39:01.292755474 +0200
+++ /work/SRC/openSUSE:Factory/.ovmf.new/ovmf.changes   2017-11-23 
09:37:11.996307734 +0100
@@ -1,0 +2,104 @@
+Mon Nov 20 04:23:04 UTC 2017 - g...@suse.com
+
+- Update to 2017+git1510945757.b2662641d5
+  + ArmPlatformPkg/ArmPlatformLibNull: remove bogus PCD dependencies
+  + MdeModulePkg/UsbMassStorageDxe: Enhance Request Sense Handling
+  + OvmfPkg: save on I/O port accesses when the debug port is not
+in use
+  + OvmfPkg: create a separate PlatformDebugLibIoPort instance for
+SEC
+  + OvmfPkg: make PlatformDebugLibIoPort a proper BASE library
+  + OvmfPkg: restore temporary SEC/PEI RAM size to 64KB
+  + OvmfPkg/Sec/X64: seed the temporary RAM with PcdInitValueInTempStack
+  + ArmVirtPkg: switch to new PL011UartLib implementation
+  + OvmfPkg/XenHypercallLib: enable virt extensions for ARM
+  + MdeModulePkg/PiSmmCore: Implement heap guard feature for SMM mode
+  + MdeModulePkg/DxeCore: Implement heap guard feature for UEFI
+  + ArmVirtPkg/ArmVirtQemu: use non-accelerated CopyMem for
+VariableRuntimeDxe
+  + NetworkPkg: Fix incorrect SizeofHeaders returned from
+HttpTcpReceiveHeader()
+  + NetworkPkg: Print error message to screen if error occurs
+during HTTP boot
+  + MdeModulePkg/PartitionDxe: Fix UDF fs access on certain CD/DVD
+medias
+  + MdeModulePkg/UsbMassStorageDxe: Fix USB Mass Storage detection
+  + MdeModulePkg SerialDxe: Handle Timeout change more robustly
+  + CryptoPkg/BaseCryptLib: Fix mismatched memory allocation/free
+  + CryptoPkg/BaseCryptLib: Fix buffer overflow issue in realloc
+wrapper
+  + ArmPlatformPkg/PlatformPeim: allow PlatformPeiLib to set the
+boot mode
+  + Deprecate EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS
+  + SecurityPkg: Remove Counter Based AuthVariable support
+  + BaseTools/tools_def AARCH64 ARM: disable PIE linking
+  + NetworkPkg/TlsAuthConfigDxe: Remove the extra FreePool
+  + NetworkPkg/HttpBootDxe: Add IPv6 support condition check
+  + NetworkPkg/IScsiDxe: Fix the incorrect/needless DHCP process
+  + MdeModulePkg/PciBus: Fix bug that PCI BUS claims too much resource
+  + UefiCpuPkg/MtrrLib: Use SetMem instead of SetMem64 to fix hang
+  + NetworkPkg: Remove ping6 and ifconfig shell application
+  + OvmfPkg: fix dynamic default for oprom verification policy PCD
+without SB
+  + OvmfPkg/PlatformPei: DENY_EXECUTE_ON_SECURITY_VIOLATION when
+SEV is active
+  + SecurityPkg\Tcg2Pei: FV measure performance enhancement
+  + SecurityPkg:AuthVariableLib:Implement ECR1707 for Private Auth
+Variable
+  + ArmPlatformPkg: Store initial timer value
+  + ArmVirtPkg ArmVirtDxeHobLib: Implement BuildFv3Hob
+  +  MdeModulePkg/Variable/RuntimeDxe: delete and lock OS-created
+ MOR variable
+  + ArmPkg/PlatformBootManagerLib: fix bug in ESRT invocation
+  + OvmfPkg/PciHotPlugInitDxe: translate QEMU's resource 
+reservation hints
+  + OvmfPkg/PciHotPlugInitDxe: generalize RESOURCE_PADDING
+composition
+  + OvmfPkg/IndustryStandard: define PCI Capabilities for QEMU's
+PCI Bridges
+  + MdeModulePkg/BdsDxe: Don't delete "BootNext" until booting it
+  + Clarify the usage of HttpConfigData in HTTP protocol
+  + SecurityPkg/SecureBootConfigImpl.c: Secure Boot DBX UI
+Enhancement
+  + MdeModulePkg/UDF: Fix creation of UDF logical partition
+  + CryptoPkg: Add new API to retrieve commonName of X.509 certificate
+  + OvmfPkg/VirtioNetDxe: log debug message in VirtioNetExitBoot()
+  + OvmfPkg/QemuBootOrderLib: recognize "usb-storage" devices in
+XHCI ports
+  + MdeModulePkg/Core: Fix out-of-sync issue in GCD
+  + UefiCpuPkg/CpuDxe: Fix out-of-sync issue in page attributes
+  + OvmfPkg/QemuVideoDxe/VbeShim: handle PAM1 register on Q35
+correctly
+  + OvmfPkg/QemuVideoDxe/VbeShim: rename Status to
+Segment0AllocationStatus
+  + OvmfPkg/CsmSupportLib: move PAM register addresses to
+IndustryStandard
+  + NetworkPkg/IScsiDxe: Remove redundant call to StrLen
+  + BaseTools/tools_def AARCH64: enable frame pointers for RELEASE
+builds
+  + ArmPkg/PlatformBootManagerLib: process pending capsules
+  + MdeModulePkg/Udf: Avoid declaring and initializing local GUID
+variable
+  + MdeModulePkg/UdfDxe: Avoid short (single character) variable name
+  + MdeModulePkg/UdfDxe: Use compare operator for non-boolean
+comparisons
+  + MdeModulePkg/UdfDxe: Fix operands of different size in bitwise
+OP
+  + MdeModulePkg/UdfDxe: Add checks to ensure no 

commit libnettle for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package libnettle for openSUSE:Factory 
checked in at 2017-11-23 09:36:48

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


Package is "libnettle"

Thu Nov 23 09:36:48 2017 rev:28 rq:542964 version:3.4

Changes:

--- /work/SRC/openSUSE:Factory/libnettle/libnettle.changes  2017-09-07 
22:10:51.418908509 +0200
+++ /work/SRC/openSUSE:Factory/.libnettle.new/libnettle.changes 2017-11-23 
09:36:49.881114619 +0100
@@ -1,0 +2,34 @@
+Sun Nov 19 18:22:58 UTC 2017 - astie...@suse.com
+
+- libnettle 3.4:
+  * Fixed an improper use of GMP mpn_mul, breaking curve2559 and
+eddsa on certain platforms
+  * Fixed memory leak when handling invalid signatures in 
+ecdsa_verify. Fix contributed by Nikos Mavrogiannopoulos.
+  * Reorganized the way certain data items are made available:
+Nettle header files now define the symbols
+nettle_hashes, nettle_ciphers, and nettle_aeads, as
+preprocessor macros invoking a corresponding accessor
+function. For backwards ABI compatibility, the symbols are
+still present in the compiled libraries, and with the same
+sizes as in nettle-3.3.
+  * Support for RSA-PSS signatures
+  * Support for the HKDF key derivation function, defined by RFC
+5869
+  * Support for the Cipher Feedback Mode (CFB)
+  * New accessor functions: nettle_get_hashes,
+nettle_get_ciphers, nettle_get_aeads, nettle_get_secp_192r1,
+nettle_get_secp_224r1, nettle_get_secp_256r1,
+nettle_get_secp_384r1, nettle_get_secp_521r1.
+Direct access to data items is deprecated going forward.
+  * The base16 and base64 functions now use the type char * for
+ascii data, rather than uint8_t *. This eliminates the last
+pointer-signedness warnings when building Nettle
+  * The contents of the header file nettle/version.h is now
+architecture independent, except in --enable-mini-gmp
+  * Prevent data sizes from leaking into the ABI
+- Fixes previously carried as patches:
+  * Fix compilation error with --enable-fat om ARM
+Drop nettle-3.3-fix-fat-arm.patch
+
+---

Old:

  nettle-3.3-fix-fat-arm.patch
  nettle-3.3.tar.gz
  nettle-3.3.tar.gz.sig

New:

  nettle-3.4.tar.gz
  nettle-3.4.tar.gz.sig



Other differences:
--
++ libnettle.spec ++
--- /var/tmp/diff_new_pack.16pe5g/_old  2017-11-23 09:36:53.564980211 +0100
+++ /var/tmp/diff_new_pack.16pe5g/_new  2017-11-23 09:36:53.564980211 +0100
@@ -19,7 +19,7 @@
 %define soname 6
 %define hogweed_soname 4
 Name:   libnettle
-Version:3.3
+Version:3.4
 Release:0
 Summary:Cryptographic Library
 License:LGPL-2.1+ AND GPL-2.0+
@@ -31,8 +31,6 @@
 Source3:baselibs.conf
 # PATCH-FIX-UPSTREAM respect cflags while building
 Patch0: nettle-respect-cflags.patch
-# PATCH-FIX-UPSTREAM Fix define to access secure_getenv() prototype
-Patch1: nettle-3.3-fix-fat-arm.patch
 BuildRequires:  gmp-devel
 BuildRequires:  m4
 BuildRequires:  makeinfo
@@ -96,7 +94,6 @@
 %prep
 %setup -q -n nettle-%{version}
 %patch0 -p1
-%patch1 -p1
 
 %build
 %configure \
@@ -112,7 +109,6 @@
 %postun -n libnettle%{soname} -p /sbin/ldconfig
 %post   -n libhogweed%{hogweed_soname} -p /sbin/ldconfig
 %postun -n libhogweed%{hogweed_soname} -p /sbin/ldconfig
-
 %post -n libnettle-devel
 %install_info --info-dir="%{_infodir}" "%{_infodir}"/nettle.info%{ext_info}
 


++ nettle-3.3.tar.gz -> nettle-3.4.tar.gz ++
 8068 lines of diff (skipped)




commit systemtap for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package systemtap for openSUSE:Factory 
checked in at 2017-11-23 09:36:13

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


Package is "systemtap"

Thu Nov 23 09:36:13 2017 rev:97 rq:544287 version:3.2

Changes:

--- /work/SRC/openSUSE:Factory/systemtap/systemtap-docs.changes 2017-04-24 
09:45:35.671022147 +0200
+++ /work/SRC/openSUSE:Factory/.systemtap.new/systemtap-docs.changes
2017-11-23 09:36:18.742250740 +0100
@@ -1,0 +2,6 @@
+Mon Nov 20 23:06:17 UTC 2017 - to...@suse.com
+
+- Upgrade to version 3.2. See systemtap.spec for changelog
+  Drop patch: systemtap-doc-back-down-gettext-version.diff
+
+---
--- /work/SRC/openSUSE:Factory/systemtap/systemtap.changes  2017-11-14 
14:18:59.539744882 +0100
+++ /work/SRC/openSUSE:Factory/.systemtap.new/systemtap.changes 2017-11-23 
09:36:18.890245340 +0100
@@ -1,0 +2,11 @@
+Mon Nov 20 23:01:35 UTC 2017 - to...@suse.com
+
+- Upgrade to version 3.2
+  Changelog: https://sourceware.org/ml/systemtap/2017-q4/msg00096.html
+  Drop patch: systemtap-tweak-i386-argument-passing.patch (upstream)
+  Update keyring.
+
+- Fix issue with Kbuild handling of escaped paths (bsc#1067437)
+  Add patch: systemtap-change-extra_cflags-escape-processing.patch 
+
+---

Old:

  systemtap-3.1.tar.gz
  systemtap-3.1.tar.gz.asc
  systemtap-doc-back-down-gettext-version.diff
  systemtap-tweak-i386-argument-passing.patch

New:

  systemtap-3.2.tar.gz
  systemtap-3.2.tar.gz.asc
  systemtap-change-extra_cflags-escape-processing.patch



Other differences:
--
++ systemtap-docs.spec ++
--- /var/tmp/diff_new_pack.AMibX1/_old  2017-11-23 09:36:20.174198494 +0100
+++ /var/tmp/diff_new_pack.AMibX1/_new  2017-11-23 09:36:20.174198494 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   systemtap-docs
-Version:3.1
+Version:3.2
 Release:0
 Summary:Documents and examples for systemtap
 License:GPL-2.0+
@@ -29,7 +29,6 @@
 Source3:README-BEFORE-ADDING-PATCHES
 Source4:README-KEYRING
 Patch1: systemtap-docdir-fix.diff
-Patch2: systemtap-doc-back-down-gettext-version.diff
 BuildRequires:  autoconf
 BuildRequires:  automake
 # for documents
@@ -59,7 +58,6 @@
 %prep
 %setup -q -n systemtap-%{version}
 %patch1 -p1
-%patch2 -p1
 
 %build
 # fix interpreter

++ systemtap.spec ++
--- /var/tmp/diff_new_pack.AMibX1/_old  2017-11-23 09:36:20.202197473 +0100
+++ /var/tmp/diff_new_pack.AMibX1/_new  2017-11-23 09:36:20.206197327 +0100
@@ -20,7 +20,7 @@
 %define _rundir %{_localstatedir}/run
 %endif
 Name:   systemtap
-Version:3.1
+Version:3.2
 Release:0
 Summary:Instrumentation System
 License:GPL-2.0+
@@ -33,7 +33,7 @@
 Source4:README-KEYRING
 Source5:stap-server.conf
 Patch1: systemtap-build-source-dir.patch
-Patch2: systemtap-tweak-i386-argument-passing.patch
+Patch2: systemtap-change-extra_cflags-escape-processing.patch
 BuildRequires:  gcc-c++
 BuildRequires:  glib2-devel
 BuildRequires:  libcap-devel
@@ -144,6 +144,7 @@
 %{_bindir}/stapsh
 %{_bindir}/stap-merge
 %{_bindir}/stap-report
+%{_bindir}/stapbpf
 %dir %{_libexecdir}/%{name}
 %{_libexecdir}/%{name}/stapio
 %{_libexecdir}/%{name}/stap-env
@@ -153,6 +154,7 @@
 %{_mandir}/cs/man8/systemtap.8*
 %{_mandir}/man8/stapsh.8*
 %{_mandir}/cs/man8/stapsh.8*
+%{_mandir}/man8/stapbpf.8*
 
 %files server
 %defattr(-,root,root)

++ systemtap-3.1.tar.gz -> systemtap-3.2.tar.gz ++
 160366 lines of diff (skipped)

++ systemtap-change-extra_cflags-escape-processing.patch ++
From: David Smith 
Date: Mon Nov 20 09:51:40 2017 -0600
Subject: change EXTRA_CFLAGS escape processing
Git-commit: c0a01780574234b7c87a7babdc7ee41f33a83983
References: bsc#1067437
Signed-off-by: Tony Jones 

Fix PR22462 by updating the way we generate the Makefile.

* buildrun.cxx (compile_pass): If the runtime path doesn't have any odd
  characters in it, don't bother quoting it in the generated Makefile.

diff --git a/buildrun.cxx b/buildrun.cxx
index 6dc4e5fda..c286a4a80 100644
--- a/buildrun.cxx
+++ b/buildrun.cxx
@@ -36,6 +36,8 @@ extern "C" {
 // https://bugs.gentoo.org/show_bug.cgi?id=522908
 #define WERROR ("-W" "error")
 
+#define PATH_ALLOWED_CHARS 
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+,-./_"
+
 using namespace std;
 
 /* Adjust and run make_cmd to build a kernel module. */
@@ -513,7 +515,18 @@ compile_pass (systemtap_session& s)
   #if 

commit cargo for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package cargo for openSUSE:Factory checked 
in at 2017-11-23 09:36:22

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


Package is "cargo"

Thu Nov 23 09:36:22 2017 rev:12 rq:544300 version:0.22.0

Changes:

--- /work/SRC/openSUSE:Factory/cargo/cargo.changes  2017-10-25 
17:44:23.448230715 +0200
+++ /work/SRC/openSUSE:Factory/.cargo.new/cargo.changes 2017-11-23 
09:36:23.530076053 +0100
@@ -1,0 +2,7 @@
+Tue Nov 20 13:24:06 UTC 2017 - mman...@outlook.de
+
+- adapt cargo bootstrap version to 0.22
+- adapt rustc bootstrap version to 1.21
+- add armv6 support
+
+---



Other differences:
--
++ cargo.spec ++
--- /var/tmp/diff_new_pack.N6ML6m/_old  2017-11-23 09:36:25.218014467 +0100
+++ /var/tmp/diff_new_pack.N6ML6m/_new  2017-11-23 09:36:25.218014467 +0100
@@ -19,9 +19,15 @@
 #
 
 
-%global bootstrap_version 0.20.0
-%global bootstrap_rustc_version 1.20.0
+%global bootstrap_version 0.22.0
+%global bootstrap_rustc_version 1.21.0
 %global current_rustc_version 1.21.0
+
+# context hasn't been ported to all architectures yet
+%ifarch %arm aarch64
+%define _with_cargo_bootstrap 1
+%endif
+
 %bcond_with cargo_bootstrap
 
 %global rust_arch %{_arch}
@@ -30,6 +36,10 @@
 %global rust_arch armv7
 %global abi gnueabihf
 %endif
+%ifarch armv6hl
+%global rust_arch arm
+%global abi gnueabihf
+%endif
 %ifarch ppc64
 %global rust_arch powerpc64
 %endif




commit python3 for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package python3 for openSUSE:Factory checked 
in at 2017-11-23 09:36:03

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


Package is "python3"

Thu Nov 23 09:36:03 2017 rev:79 rq:544285 version:3.6.3

Changes:

--- /work/SRC/openSUSE:Factory/python3/python3-base.changes 2017-10-23 
16:37:10.741929841 +0200
+++ /work/SRC/openSUSE:Factory/.python3.new/python3-base.changes
2017-11-23 09:36:05.442735982 +0100
@@ -1,0 +2,5 @@
+Thu Nov 16 11:02:18 UTC 2017 - mimi...@gmail.com
+
+- move 2to3 to python3-tools package
+
+---
python3-doc.changes: same change
python3.changes: same change



Other differences:
--
++ python3-base.spec ++
--- /var/tmp/diff_new_pack.X0VfZg/_old  2017-11-23 09:36:10.186562901 +0100
+++ /var/tmp/diff_new_pack.X0VfZg/_new  2017-11-23 09:36:10.190562754 +0100
@@ -185,6 +185,8 @@
 Requires:   %{name} = %{version}
 Obsoletes:  python3-demo < %{version}
 Provides:   python3-demo = %{version}
+Obsoletes:  python3-2to3 < %{version}
+Provides:   python3-2to3 = %{version}
 
 %description -n python3-tools
 A number of scripts that are useful for building, testing or extending Python,
@@ -206,8 +208,6 @@
 Summary:Include Files and Libraries Mandatory for Building Python 
Modules
 Group:  Development/Languages/Python
 Requires:   %{name} = %{version}
-Provides:   python3-2to3 = %{version}
-Obsoletes:  python3-2to3 < %{version}
 
 %description -n python3-devel
 The Python programming language's interpreter can be extended with
@@ -463,6 +463,8 @@
 %files -n python3-tools
 %defattr(644, root, root, 755)
 %{sitedir}/turtledemo
+%{_bindir}/2to3
+%{_bindir}/2to3-%{python_version}
 %doc %{_docdir}/%{name}/Tools
 
 %files -n python3-idle
@@ -489,8 +491,6 @@
 %{_bindir}/python%{python_abi}-config
 %{_bindir}/python%{python_version}-config
 %{_bindir}/python3-config
-%{_bindir}/2to3
-%{_bindir}/2to3-%{python_version}
 
 %files -n python3-testsuite
 %defattr(644, root, root, 755)

python3.spec: same change





commit fontpackages for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package fontpackages for openSUSE:Factory 
checked in at 2017-11-23 09:35:33

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


Package is "fontpackages"

Thu Nov 23 09:35:33 2017 rev:15 rq:544185 version:0.2

Changes:

--- /work/SRC/openSUSE:Factory/fontpackages/fontpackages.changes
2016-03-29 09:53:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.fontpackages.new/fontpackages.changes   
2017-11-23 09:35:36.015809644 +0100
@@ -1,0 +2,8 @@
+Tue Nov 21 15:14:15 CET 2017 - ku...@suse.de
+
+- /var/adm/update-scripts is deprecated and will be removed at 
+  some point in the future, since %posttrans support in libzypp
+  was fixed with SLE12. Remove the workaround, only use the RPM
+  posttrans to simplify the code and testing.
+
+---



Other differences:
--
++ fontpackages.spec ++
--- /var/tmp/diff_new_pack.Td9i2S/_old  2017-11-23 09:35:36.791781332 +0100
+++ /var/tmp/diff_new_pack.Td9i2S/_new  2017-11-23 09:35:36.795781186 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fontpackages
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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

++ rpm-macros.fonts-config ++
--- /var/tmp/diff_new_pack.Td9i2S/_old  2017-11-23 09:35:36.851779143 +0100
+++ /var/tmp/diff_new_pack.Td9i2S/_new  2017-11-23 09:35:36.855778997 +0100
@@ -10,7 +10,7 @@
 
 # macro: link_avail_to_system_fontsconf name
 # (takes exactly one argument, name of configuration file)
-# creates symlink pointing from /etc/fonts/conf.d/name to 
+# creates symlink pointing from /etc/fonts/conf.d/name to
 # ../../../usr/share/%{name}/conf.avail/name
 %link_avail_to_system_fontsconf() \
   if [ "x%1" == "x%%1" ]; then \
@@ -43,7 +43,7 @@
 
 # macro: files_fontsconf_availdir
 # packages /usr/share/%{name}/conf.avail directory,
-# which is intended for fontconfig files shipped by the 
+# which is intended for fontconfig files shipped by the
 # (font) package
 
 %files_fontsconf_availdir() \
@@ -52,7 +52,7 @@
 %nil
 
 # macro: files_fontsconf_file
-# takes exactly one argument; for given fontconfig file 
+# takes exactly one argument; for given fontconfig file
 # (01-fontconfig.conf) macro expands in correct %%files entry
 #
 # -l  option also packages %%{_fontsconfddir}/01-fontconfig.conf link
@@ -101,40 +101,12 @@
 # options:
 # -c  (the fonts are CJK fonts, also do setup which is only needed
 #  for CJK)
-# The pattern is fixed within libzypp:
-# /var/adm/update-scripts/name-version-release-anything
-# (place version-release at the end of a line to help build-compare)
 %reconfigure_fonts_post(c) \
   mkdir -p `dirname %{__fontsconfigrunflag}` \
   touch %{__fontsconfigrunflag} \
   %{-c: \
  touch %{__fontsconfigrunflag}-cjk \
} \
-  if [ -n "$ZYPP_IS_RUNNING" ]; then \
-__fontsupdatescript=/var/adm/update-scripts/%{name}-%{version}-%{release}\
-__fontsupdatescript="${__fontsupdatescript}-reconfigure-fonts" \
-echo 'if [ -e %{__fontsconfigrunflag} ]; then' >  "${__fontsupdatescript}" 
\
-echo '  if [ -x /usr/sbin/fonts-config ]; then' >>  
"${__fontsupdatescript}" \
-echo '/usr/sbin/fonts-config --quiet' >>  "${__fontsupdatescript}" \
-echo '  fi' >>  "${__fontsupdatescript}" \
-echo '  rm %{__fontsconfigrunflag}' >>  "${__fontsupdatescript}" \
-echo 'fi' >>  "${__fontsupdatescript}" \
-echo "rm ${__fontsupdatescript}" >> "${__fontsupdatescript}" \
-%{-c: \
-  
__fontsupdatescript_cjk=/var/adm/update-scripts/%{name}-%{version}-%{release}\
-  
__fontsupdatescript_cjk="${__fontsupdatescript_cjk}-reconfigure-cjk-fonts" \
-  echo 'if [ -e %{__fontsconfigrunflag}-cjk ]; then' > 
"${__fontsupdatescript_cjk}" \
-  echo '  if [ -x /usr/sbin/acroread-cidfont-config ]; then' >> 
"${__fontsupdatescript_cjk}" \
-  echo '/usr/sbin/acroread-cidfont-config' >> 
"${__fontsupdatescript_cjk}" \
-  echo '  fi' >> "${__fontsupdatescript_cjk}" \
-  echo '  if [ -x /usr/sbin/ghostscript-cjk-config ]; then' >> 
"${__fontsupdatescript_cjk}" \
-  echo '/usr/sbin/ghostscript-cjk-config' >> 
"${__fontsupdatescript_cjk}" \
-  echo '  fi' >> "${__fontsupdatescript_cjk}" \
-  echo '  rm %{__fontsconfigrunflag}-cjk' >>  "${__fontsupdatescript_cjk}" 
\
-  echo 'fi' >> "${__fontsupdatescript_cjk}" \
-  echo "rm  ${__fontsupdatescript_cjk}" >>  "${__fontsupdatescript_cjk}" \
- } \
-  fi \
   %nil
 
 

commit spamassassin for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package spamassassin for openSUSE:Factory 
checked in at 2017-11-23 09:35:42

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


Package is "spamassassin"

Thu Nov 23 09:35:42 2017 rev:70 rq:544186 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/spamassassin/spamassassin.changes
2017-09-15 21:02:07.317060357 +0200
+++ /work/SRC/openSUSE:Factory/.spamassassin.new/spamassassin.changes   
2017-11-23 09:35:43.375541119 +0100
@@ -1,0 +2,6 @@
+Tue Nov 21 09:07:53 UTC 2017 - mplus...@suse.com
+
+- Update umask in cronjob (boo#861539)
+- Make sure that spamd can start (boo#961291)
+
+---



Other differences:
--
++ spamd.service ++
--- /var/tmp/diff_new_pack.hOZOnE/_old  2017-11-23 09:35:46.247436336 +0100
+++ /var/tmp/diff_new_pack.hOZOnE/_new  2017-11-23 09:35:46.247436336 +0100
@@ -15,8 +15,8 @@
 
 [Unit]
 Description=Daemonized version of spamassassin
-Wants=remote-fs.target
-After=remote-fs.target
+Wants=remote-fs.target network.target
+After=remote-fs.target network.target
 Before=mail-transfer-agent.target
 
 [Service]

++ suse.cron-sa-update ++
--- /var/tmp/diff_new_pack.hOZOnE/_old  2017-11-23 09:35:46.279435168 +0100
+++ /var/tmp/diff_new_pack.hOZOnE/_new  2017-11-23 09:35:46.279435168 +0100
@@ -1,5 +1,13 @@
 #!/bin/bash
 
+#
+# paranoia settings
+#
+umask 022
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+export PATH
+
 if [ -e /etc/sysconfig/spamd ]
 then
. /etc/sysconfig/spamd




commit rpmlint for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory checked 
in at 2017-11-23 09:35:48

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


Package is "rpmlint"

Thu Nov 23 09:35:48 2017 rev:285 rq:544218 version:1.10

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes  2017-11-14 
14:17:50.154275998 +0100
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes 2017-11-23 
09:35:50.415284269 +0100
@@ -1,0 +2,8 @@
+Tue Nov 14 15:47:20 UTC 2017 - dims...@opensuse.org
+
+- Add rpmlint-slpp-NUM-NUM.patch: Match libFOO- as a
+  valid dependency on a libary. According the openSUSE packaging
+  policy, if the library name ends on a number, we add a dash
+  between the basename (before the .so) and the version after .so.
+
+---

New:

  rpmlint-slpp-NUM-NUM.patch



Other differences:
--
++ rpmlint.spec ++
--- /var/tmp/diff_new_pack.UYUqB1/_old  2017-11-23 09:35:53.295179194 +0100
+++ /var/tmp/diff_new_pack.UYUqB1/_new  2017-11-23 09:35:53.299179048 +0100
@@ -88,6 +88,7 @@
 Patch69:0007-Validate-Appdata-also-when-appstream-util-is-unavail.patch
 Patch70:rpmlint-all-pie.patch
 Patch71:0001-Avoid-calling-close-on-undefined-fd-variable.patch
+Patch72:rpmlint-slpp-NUM-NUM.patch
 BuildRequires:  obs-service-format_spec_file
 BuildRequires:  python3-flake8
 BuildRequires:  python3-pytest

++ rpmlint-slpp-NUM-NUM.patch ++
Index: rpmlint-rpmlint-1.10/TagsCheck.py
===
--- rpmlint-rpmlint-1.10.orig/TagsCheck.py
+++ rpmlint-rpmlint-1.10/TagsCheck.py
@@ -673,7 +673,7 @@ class TagsCheck(AbstractCheck.AbstractCh
 base_or_libs = base + '*' + '/' + base + '-libs/lib' + 
base + '*'
 # try to match *%_isa as well (e.g. "(x86-64)", "(x86-32)")
 base_or_libs_re = re.compile(
-r'^(lib)?%s(-libs)?[\d_]*(\(\w+-\d+\))?$' % 
re.escape(base))
+r'^(lib)?%s(-libs)?[\d_-]*(\(\w+-\d+\))?$' % 
re.escape(base))
 for d in deps:
 if base_or_libs_re.match(d[0]):
 dep = d



commit vlc for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package vlc for openSUSE:Factory checked in 
at 2017-11-23 09:35:56

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


Package is "vlc"

Thu Nov 23 09:35:56 2017 rev:73 rq:544273 version:2.2.6

Changes:

--- /work/SRC/openSUSE:Factory/vlc/vlc.changes  2017-09-25 13:54:44.758261821 
+0200
+++ /work/SRC/openSUSE:Factory/.vlc.new/vlc.changes 2017-11-23 
09:35:57.419028733 +0100
@@ -1,0 +2,6 @@
+Tue Nov 14 16:14:57 UTC 2017 - dims...@opensuse.org
+
+- Prepare for Tumbleweed potentially changing suse_version: request
+  ffmpeg2 for all suse_version >= 1330 (not == 1330 only).
+
+---



Other differences:
--
++ vlc.spec ++
--- /var/tmp/diff_new_pack.aYvdfL/_old  2017-11-23 09:35:59.482953428 +0100
+++ /var/tmp/diff_new_pack.aYvdfL/_new  2017-11-23 09:35:59.486953282 +0100
@@ -199,7 +199,7 @@
 %if 0%{?suse_version} >= 1320
 BuildRequires:  pkgconfig(ncursesw)
 %endif
-%if (0%{?suse_version} == 1330) || (0%{?suse_version} == 1315 && 
0%{?sle_version} >= 120200)
+%if (0%{?suse_version} >= 1330) || (0%{?suse_version} == 1315 && 
0%{?sle_version} >= 120200)
 # for TW, we favor ffmpeg2-devel. Older distros have ffmpeg 2.x intree
 BuildRequires:  ffmpeg2-devel
 %endif
@@ -312,10 +312,10 @@
 %if 0%{?BUILD_ORIG}
 %package codecs
 Summary:Additional codecs for the VLC media player
-Group:  Productivity/Multimedia/Video/Players
 # We require the unrestricted libavcodec - same ABI version we linked
-Requires:   %(rpm --qf "%%{name}" -qf $(readlink -f 
%{_libdir}/libavcodec.so))(unrestricted)
+Group:  Productivity/Multimedia/Video/Players
 Requires:   %{name}-noX = %{version}
+Requires:   %(rpm --qf "%%{name}" -qf $(readlink -f 
%{_libdir}/libavcodec.so))(unrestricted)
 Supplements:%{name}-noX
 
 %description codecs




commit liblogging for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package liblogging for openSUSE:Factory 
checked in at 2017-11-23 09:35:24

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


Package is "liblogging"

Thu Nov 23 09:35:24 2017 rev:13 rq:544182 version:1.0.6

Changes:

--- /work/SRC/openSUSE:Factory/liblogging/liblogging.changes2017-11-14 
14:14:04.286514944 +0100
+++ /work/SRC/openSUSE:Factory/.liblogging.new/liblogging.changes   
2017-11-23 09:35:28.884069851 +0100
@@ -1,0 +2,5 @@
+Tue Nov 14 13:43:01 UTC 2017 - astie...@suse.com
+
+- fix SLE 12 build
+
+---



Other differences:
--
++ liblogging.spec ++
--- /var/tmp/diff_new_pack.dxNzRf/_old  2017-11-23 09:35:29.872033804 +0100
+++ /var/tmp/diff_new_pack.dxNzRf/_new  2017-11-23 09:35:29.876033658 +0100
@@ -30,7 +30,7 @@
 BuildRequires:  dos2unix
 BuildRequires:  pkgconfig >= 0.9.0
 %if %{with_rst2man}
-%if %{?is_opensuse}
+%if 0%{?is_opensuse}
 BuildRequires:  python3-docutils
 %else
 BuildRequires:  python-docutils
@@ -99,6 +99,7 @@
 %postun -n %{name}%{sover} -p /sbin/ldconfig
 
 %files -n %{name}%{sover}
+%defattr(-,root,root)
 %doc COPYING
 %{_libdir}/liblogging-rfc3195.so.*
 %{_libdir}/liblogging-stdlog.so.*
@@ -106,6 +107,7 @@
 %{_mandir}/man1/stdlogctl*
 
 %files devel
+%defattr(-,root,root)
 %doc ChangeLog COPYING README
 %doc rfc3195/doc/html
 %{_libdir}/liblogging-rfc3195.so




commit xset for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package xset for openSUSE:Factory checked in 
at 2017-11-23 09:35:17

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


Package is "xset"

Thu Nov 23 09:35:17 2017 rev:7 rq:544171 version:1.2.3

Changes:

--- /work/SRC/openSUSE:Factory/xset/xset.changes2013-08-19 
10:51:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.xset.new/xset.changes   2017-11-23 
09:35:20.724367564 +0100
@@ -1,0 +2,6 @@
+Mon Nov 20 23:27:49 UTC 2017 - zai...@opensuse.org
+
+- Add U_xset_fix-warning-about-usage-format-string.patch: Fix one
+  last warning about usage() format string.
+
+---

New:

  U_xset_fix-warning-about-usage-format-string.patch



Other differences:
--
++ xset.spec ++
--- /var/tmp/diff_new_pack.pS2L9z/_old  2017-11-23 09:35:21.872325680 +0100
+++ /var/tmp/diff_new_pack.pS2L9z/_new  2017-11-23 09:35:21.872325680 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xset
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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,6 +24,7 @@
 Group:  System/X11/Utilities
 Url:http://xorg.freedesktop.org/
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
+Patch0: U_xset_fix-warning-about-usage-format-string.patch
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xext)
@@ -42,6 +43,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure

++ U_xset_fix-warning-about-usage-format-string.patch ++
>From c3ce2c28deac121db0de50af63c902e5883fe140 Mon Sep 17 00:00:00 2001
From: Matthieu Herrb 
Date: Sat, 17 Aug 2013 18:25:49 +0200
Subject: Fix one last warning about usage() format string.

Signed-off-by: Matthieu Herrb 
Reviewed-by: Alan Coopersmith 

diff --git a/xset.c b/xset.c
index f461d4b..98f552f 100644
--- a/xset.c
+++ b/xset.c
@@ -325,8 +325,7 @@ main(int argc, char *argv[])
usage("low-mark must be greater than 0");
}
if (himark <= lowmark) {
-   usage("hi-mark must be greater than low-mark",
- NULL);
+   usage("hi-mark must be greater than low-mark");
}
if (i >= argc) {
set_font_cache(dpy, himark, lowmark, balance);
-- 
cgit v0.10.2



commit xrandr for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package xrandr for openSUSE:Factory checked 
in at 2017-11-23 09:35:11

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


Package is "xrandr"

Thu Nov 23 09:35:11 2017 rev:13 rq:544170 version:1.5.0

Changes:

--- /work/SRC/openSUSE:Factory/xrandr/xrandr.changes2017-06-04 
01:45:49.750877744 +0200
+++ /work/SRC/openSUSE:Factory/.xrandr.new/xrandr.changes   2017-11-23 
09:35:13.328637403 +0100
@@ -1,0 +2,13 @@
+Mon Nov 20 23:06:03 UTC 2017 - zai...@opensuse.org
+
+- Add U_xrandr_suppress-misleading-indentation-warning.patch: When
+  printing out rotations, we print a space before any item other
+  than the first, and set `first = False` in each block where we
+  print. However, this is done in the same line as the conditional
+  that checks if first is set, which may give the impression that
+  the assignment is also under the conditional. This is not the
+  case, and recent GCC warns about this.
+- Add U_xrandr_add-filter-flag.patch: Flag can be set to
+  "nearest" or "bilinear".
+
+---

New:

  U_xrandr_add-filter-flag.patch
  U_xrandr_suppress-misleading-indentation-warning.patch



Other differences:
--
++ xrandr.spec ++
--- /var/tmp/diff_new_pack.m2QRD3/_old  2017-11-23 09:35:13.948614783 +0100
+++ /var/tmp/diff_new_pack.m2QRD3/_new  2017-11-23 09:35:13.948614783 +0100
@@ -26,6 +26,8 @@
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
 # PATCH-FEATURE-UPSTREAM xrandr-print-outputs-per-provider.patch 
feder...@suse.com - Make the --listproviders option also print which outputs 
are supported by each provider
 Patch1: xrandr-print-outputs-per-provider.patch
+Patch2: U_xrandr_suppress-misleading-indentation-warning.patch
+Patch3: U_xrandr_add-filter-flag.patch
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(x11)
 BuildRequires:  pkgconfig(xorg-macros) >= 1.8
@@ -47,6 +49,8 @@
 %prep
 %setup -q
 %patch1 -p1
+%patch2 -p1
+%patch3 -p1
 
 %build
 %configure

++ U_xrandr_add-filter-flag.patch ++
>From 6ac2afc0d7d8d51d4085767b901667393c11061b Mon Sep 17 00:00:00 2001
From: Pablo De La Garza 
Date: Thu, 23 Mar 2017 16:05:02 -0700
Subject: xrandr: Add a "--filter" flag

Flag can be set to "nearest" or "bilinear"

Signed-off-by: Pablo De La Garza 
[aplatt...@nvidia.com: Fixed style and whitespace]
Signed-off-by: Aaron Plattner 

diff --git a/xrandr.c b/xrandr.c
index 2aad946..2d4cb72 100644
--- a/xrandr.c
+++ b/xrandr.c
@@ -54,6 +54,11 @@ static Bool  automatic = False;
 static Boolproperties = False;
 static Boolgrab_server = True;
 static Boolno_primary = False;
+static int filter_type = -1;
+
+static const char *filter_names[2] = {
+"bilinear",
+"nearest"};
 
 static const char *direction[5] = {
 "normal", 
@@ -135,6 +140,7 @@ usage(void)
"  --scale x\n"
"  --scale-from x\n"
"  --transform \n"
+   "  --filter nearest,bilinear\n"
"  --off\n"
"  --crtc \n"
"  --panning 
x[++[/x++[]]]\n"
@@ -285,6 +291,7 @@ typedef enum _changes {
 changes_panning = (1 << 10),
 changes_gamma = (1 << 11),
 changes_primary = (1 << 12),
+changes_filter = (1 << 13),
 } changes_t;
 
 typedef enum _name_kind {
@@ -1311,6 +1318,10 @@ set_output_info (output_t *output, RROutput xid, 
XRROutputInfo *output_info)
output->transform.params = NULL;
}
 }
+if (output->changes & changes_filter)
+{
+   output->transform.filter = filter_names[filter_type];
+}
 
 /* set primary */
 if (!(output->changes & changes_primary))
@@ -2808,6 +2819,28 @@ main (int argc, char **argv)
action_requested = True;
continue;
}
+   if (!strcmp("--filter", argv[i])) {
+   int t;
+
+   if (!config_output) argerr ("%s must be used after --output\n", 
argv[i]);
+   if (++i >= argc) argerr("%s requires an argument\n", argv[i-1]);
+
+   filter_type = -1;
+   for (t = 0; t < sizeof(filter_names) / sizeof(filter_names[0]); t++)
+   {
+   if (!strcmp(filter_names[t], argv[i]))
+   {
+   filter_type = t;
+   break;
+   }
+   }
+
+   if (filter_type == -1) argerr("Bad argument: %s, for a filter\n", 
argv[i]);
+
+   config_output->changes |= changes_filter;
+   action_requested = True;
+   continue;
+

commit xkeyboard-config for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package xkeyboard-config for 
openSUSE:Factory checked in at 2017-11-23 09:35:02

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


Package is "xkeyboard-config"

Thu Nov 23 09:35:02 2017 rev:83 rq:544169 version:2.22

Changes:

--- /work/SRC/openSUSE:Factory/xkeyboard-config/xkeyboard-config.changes
2017-10-20 16:11:16.412611332 +0200
+++ /work/SRC/openSUSE:Factory/.xkeyboard-config.new/xkeyboard-config.changes   
2017-11-23 09:35:07.456851640 +0100
@@ -1,0 +2,6 @@
+Mon Nov 20 23:50:38 UTC 2017 - zai...@opensuse.org
+
+- Add U_xkeyboard-config_fix-typo-hungarian.patch: Fix typo in
+  hungarian (fdo#103123).
+
+---

New:

  U_xkeyboard-config_fix-typo-hungarian.patch



Other differences:
--
++ xkeyboard-config.spec ++
--- /var/tmp/diff_new_pack.p71PVe/_old  2017-11-23 09:35:09.032794140 +0100
+++ /var/tmp/diff_new_pack.p71PVe/_new  2017-11-23 09:35:09.032794140 +0100
@@ -24,6 +24,7 @@
 Group:  System/X11/Utilities
 Url:http://www.freedesktop.org/Software/XKeyboardConfig
 Source: 
http://xorg.freedesktop.org/archive/individual/data/%{name}/%{name}-%{version}.tar.bz2
+Patch0: U_xkeyboard-config_fix-typo-hungarian.patch
 Patch100:   n_suse-ctrl-alt-bksp-terminate.patch
 # PATCH-FIX-OPENSUSE disable-2xalt_2xctrl-toggle.diff fdo#4927 -- This is just 
a workaround until fdo#4927 is fixed
 Patch109:   n_disable-2xalt_2xctrl-toggle.diff
@@ -52,6 +53,7 @@
 %prep
 %setup -q
 translation-update-upstream
+%patch0 -p1
 %patch100 -p1
 %patch109 -p1
 

++ U_xkeyboard-config_fix-typo-hungarian.patch ++
>From a6cba79b4ba1760b348db5145f597514e1773a16 Mon Sep 17 00:00:00 2001
From: Sergey Udaltsov 
Date: Fri, 6 Oct 2017 11:13:32 +0100
Subject: Typo fixed

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

diff --git a/symbols/hu b/symbols/hu
index a1b1ae5..679c535 100644
--- a/symbols/hu
+++ b/symbols/hu
@@ -467,7 +467,7 @@ key.type[Group1]="FOUR_LEVEL_SEMIALPHABETIC";
 key  {[ U10CFC,  plus,   3,  plus]};
 //Old Hungarian ten
 
-key  {[   U10CFD,exclam, 4,  excalm]};
+key  {[   U10CFD,exclam, 4,  exclam]};
 //Old Hungarian fifty
 
 key  {[   U10CFE,percent,5,  percent]};
-- 
cgit v0.10.2




commit bind for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package bind for openSUSE:Factory checked in 
at 2017-11-23 09:34:41

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


Package is "bind"

Thu Nov 23 09:34:41 2017 rev:128 rq:544110 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/bind/bind.changes2017-09-15 
21:09:11.457516676 +0200
+++ /work/SRC/openSUSE:Factory/.bind.new/bind.changes   2017-11-23 
09:34:44.861676044 +0100
@@ -1,0 +2,5 @@
+Mon Nov 13 14:20:43 UTC 2017 - mplus...@suse.com
+
+- Use python3 by default (fate#323526)
+
+---



Other differences:
--
++ bind.spec ++
--- /var/tmp/diff_new_pack.jBTaKn/_old  2017-11-23 09:34:46.433618690 +0100
+++ /var/tmp/diff_new_pack.jBTaKn/_new  2017-11-23 09:34:46.437618544 +0100
@@ -60,7 +60,7 @@
 BuildRequires:  openldap2-devel
 BuildRequires:  openssl
 BuildRequires:  openssl-devel
-BuildRequires:  python-base
+BuildRequires:  python3-base
 %if %{with_systemd}
 BuildRequires:  systemd-rpm-macros
 %else






commit python-numpy for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package python-numpy for openSUSE:Factory 
checked in at 2017-11-23 09:34:11

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


Package is "python-numpy"

Thu Nov 23 09:34:11 2017 rev:61 rq:544081 version:1.13.3

Changes:

--- /work/SRC/openSUSE:Factory/python-numpy/python-numpy.changes
2017-11-17 10:36:15.304876991 +0100
+++ /work/SRC/openSUSE:Factory/.python-numpy.new/python-numpy.changes   
2017-11-23 09:34:16.394714686 +0100
@@ -1,0 +2,6 @@
+Mon Nov 13 14:17:56 UTC 2017 - e...@suse.com
+
+- Add 'family "NumPy"' to modules file to avoid that different
+  versions of this get loaded.
+
+---



Other differences:
--
++ python-numpy.spec ++
--- /var/tmp/diff_new_pack.AhbbM7/_old  2017-11-23 09:34:17.878660543 +0100
+++ /var/tmp/diff_new_pack.AhbbM7/_new  2017-11-23 09:34:17.878660543 +0100
@@ -225,6 +225,7 @@
 setenv  %{hpc_upcase_trans_hyph %pname}_DIR%{hpc_prefix}
 setenv  %{hpc_upcase_trans_hyph %pname}_BIN%{hpc_bindir}
 
+family "NumPy"
 EOF
 }
 %endif





commit orc for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package orc for openSUSE:Factory checked in 
at 2017-11-23 09:33:54

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


Package is "orc"

Thu Nov 23 09:33:54 2017 rev:38 rq:544013 version:0.4.28

Changes:

--- /work/SRC/openSUSE:Factory/orc/orc.changes  2017-09-13 21:42:04.231124684 
+0200
+++ /work/SRC/openSUSE:Factory/.orc.new/orc.changes 2017-11-23 
09:34:01.135271441 +0100
@@ -1,0 +2,8 @@
+Mon Nov 20 18:15:15 UTC 2017 - zai...@opensuse.org
+
+- Update to version 0.4.28:
+  + Numerous undefined behaviour fixes.
+  + Ability to disable tests.
+  + Fix meson dist behaviour.
+
+---

Old:

  orc-0.4.27.tar.gz

New:

  orc-0.4.28.tar.gz



Other differences:
--
++ orc.spec ++
--- /var/tmp/diff_new_pack.5uRWYL/_old  2017-11-23 09:34:02.48360 +0100
+++ /var/tmp/diff_new_pack.5uRWYL/_new  2017-11-23 09:34:02.487222113 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   orc
-Version:0.4.27
+Version:0.4.28
 Release:0
 Summary:The Oil Runtime Compiler
 License:BSD-3-Clause

++ orc-0.4.27.tar.gz -> orc-0.4.28.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orc-orc-0.4.27/Makefile.am 
new/orc-orc-0.4.28/Makefile.am
--- old/orc-orc-0.4.27/Makefile.am  2017-07-17 17:16:35.0 +0200
+++ new/orc-orc-0.4.28/Makefile.am  2017-11-20 16:15:58.0 +0100
@@ -1,9 +1,22 @@
 
 AUTOMAKE_OPTIONS = foreign
 
-SUBDIRS = orc orc-test tools examples doc testsuite
+if BUILD_TESTS
+ORCTEST_DIR = orc-test
+TESTSUITE_DIR= testsuite
+else
+ORCTEST_DIR =
+TESTSUITE_DIR =
+endif
 
-EXTRA_DIST = COPYING RELEASE autogen.sh gtk-doc.make orc.m4
+SUBDIRS = orc $(ORCTEST_DIR) tools $(TESTSUITE_DIR) examples doc
+
+DIST_SUBDIRS = orc orc-test tools examples testsuite doc
+
+
+EXTRA_DIST = COPYING RELEASE autogen.sh gtk-doc.make orc.m4 \
+   $(shell find "$(top_srcdir)" -type f -name meson.build ! -path 
"$(top_srcdir)/orc-0.4.*" ) \
+   meson_options.txt orc/orc.map
 
 DISTCHECK_CONFIGURE_FLAGS=--enable-gtk-doc
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orc-orc-0.4.27/RELEASE new/orc-orc-0.4.28/RELEASE
--- old/orc-orc-0.4.27/RELEASE  2017-07-17 17:16:35.0 +0200
+++ new/orc-orc-0.4.28/RELEASE  2017-11-20 16:15:58.0 +0100
@@ -1,3 +1,10 @@
+0.4.28
+==
+
+  - Numerous undefined behaviour fixes (Edward Hervey)
+  - Ability to disable tests (Edward Hervey)
+  - Fix meson dist behaviour (Tim-Philipp Müller)
+
 0.4.27
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/orc-orc-0.4.27/configure.ac 
new/orc-orc-0.4.28/configure.ac
--- old/orc-orc-0.4.27/configure.ac 2017-07-17 17:16:35.0 +0200
+++ new/orc-orc-0.4.28/configure.ac 2017-11-20 16:15:58.0 +0100
@@ -1,5 +1,5 @@
 AC_PREREQ([2.68])
-AC_INIT([orc], [0.4.27], 
[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer=orc],[orc])
+AC_INIT([orc], [0.4.28], 
[http://bugzilla.gnome.org/enter_bug.cgi?product=GStreamer=orc],[orc])
 dnl don't forget to update libversion
 
 AS_NANO(ORC_GIT=no,ORC_GIT=yes)
@@ -22,7 +22,7 @@
 dnl - interfaces added/removed/changed -> increment CURRENT, REVISION = 0
 dnl - interfaces added -> increment AGE
 dnl - interfaces removed -> AGE = 0
-ORC_LIBVERSION="27:0:27"
+ORC_LIBVERSION="28:0:28"
 AC_SUBST(ORC_LIBVERSION)
 LT_PREREQ([2.2.6])
 LT_INIT([dlopen win32-dll disable-static])
@@ -204,6 +204,19 @@
 AM_CONDITIONAL(ENABLE_BACKEND_C64X, test "x$ENABLE_BACKEND_C64X" = "xyes")
 AM_CONDITIONAL(ENABLE_BACKEND_MIPS, test "x$ENABLE_BACKEND_MIPS" = "xyes")
 
+dnl building of tests
+AC_ARG_ENABLE(tests,
+  AS_HELP_STRING([--disable-tests],[disable building test apps]),
+  [
+case "${enableval}" in
+  yes) BUILD_TESTS=yes ;;
+  no)  BUILD_TESTS=no ;;
+  *)   AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
+esac
+  ],
+[BUILD_TESTS=yes]) dnl Default value
+AM_CONDITIONAL(BUILD_TESTS, test "x$BUILD_TESTS" = "xyes")
+
 dnl Check for -Bsymbolic-functions linker flag used to avoid
 dnl intra-library PLT jumps, if available.
 AC_ARG_ENABLE(Bsymbolic,
@@ -255,3 +268,22 @@
 ])
 AC_OUTPUT
 
+echo "
+
+Configuration
+   Version: ${VERSION}
+   Source code location   : ${srcdir}
+   Prefix : ${prefix}
+   Compiler   : ${CC}
+
+   API Documentation  : ${enable_gtk_doc}
+
+   Enable SSE backend : ${ENABLE_BACKEND_SSE}
+   Enable MMX backend : 

commit xkbcomp for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package xkbcomp for openSUSE:Factory checked 
in at 2017-11-23 09:34:49

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


Package is "xkbcomp"

Thu Nov 23 09:34:49 2017 rev:11 rq:544168 version:1.4.0

Changes:

--- /work/SRC/openSUSE:Factory/xkbcomp/xkbcomp.changes  2017-05-10 
20:35:11.756558901 +0200
+++ /work/SRC/openSUSE:Factory/.xkbcomp.new/xkbcomp.changes 2017-11-23 
09:34:54.557322290 +0100
@@ -1,0 +2,6 @@
+Mon Nov 20 22:42:36 UTC 2017 - zai...@opensuse.org
+
+- Add U_xkbcomp_pkgconfig-add-bindir.patch: pkgconfig: Add our
+  bindir to xkbcomp.pc.
+
+---

New:

  U_xkbcomp_pkgconfig-add-bindir.patch



Other differences:
--
++ xkbcomp.spec ++
--- /var/tmp/diff_new_pack.xBNXoD/_old  2017-11-23 09:34:56.609247424 +0100
+++ /var/tmp/diff_new_pack.xBNXoD/_new  2017-11-23 09:34:56.609247424 +0100
@@ -26,6 +26,7 @@
 Source0:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2
 Source1:
http://xorg.freedesktop.org/releases/individual/app/%{name}-%{version}.tar.bz2.sig
 Source2:%{name}.keyring
+Patch0: U_xkbcomp_pkgconfig-add-bindir.patch
 BuildRequires:  bison
 BuildRequires:  pkg-config
 BuildRequires:  pkgconfig(x11)
@@ -51,6 +52,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
 %configure

++ U_xkbcomp_pkgconfig-add-bindir.patch ++
>From 3e2a6ad4edfbf21c3f76f8319f0039b7f589944f Mon Sep 17 00:00:00 2001
From: Adam Jackson 
Date: Mon, 6 Nov 2017 12:54:41 -0500
Subject: pkgconfig: Add our bindir to xkbcomp.pc

Reviewed-by: Daniel Stone 
Signed-off-by: Adam Jackson 

diff --git a/xkbcomp.pc.in b/xkbcomp.pc.in
index b8d6023..4d138c8 100644
--- a/xkbcomp.pc.in
+++ b/xkbcomp.pc.in
@@ -1,4 +1,5 @@
 prefix=@prefix@
+bindir=@bindir@
 datarootdir=@datarootdir@
 datadir=@datadir@
 xkbconfigdir=@XKBCONFIGROOT@
-- 
cgit v0.10.2




commit libfabric for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package libfabric for openSUSE:Factory 
checked in at 2017-11-23 09:34:21

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


Package is "libfabric"

Thu Nov 23 09:34:21 2017 rev:9 rq:544094 version:1.5.2

Changes:

--- /work/SRC/openSUSE:Factory/libfabric/libfabric.changes  2017-11-09 
13:50:53.646203148 +0100
+++ /work/SRC/openSUSE:Factory/.libfabric.new/libfabric.changes 2017-11-23 
09:34:24.374423539 +0100
@@ -1,0 +2,16 @@
+Mon Nov 20 16:27:13 UTC 2017 - nmoreychaisemar...@suse.com
+
+- Update to v1.5.2
+  - Core
+- Fix Power PC 32-bit build
+  - Sockets
+- Fix incorrect reporting of counter attributes
+  - Verbs
+- Fix reporting attributes based on device limits
+- Fix incorrect CQ size reported for iWarp NICs
+- Update man page with known issues for specific NICs
+- Fix FI_RX_CQ_DATA mode check
+- Disable on-demand paging by default (can cause data corruption)
+- Disable loopback (localhost) addressing (causing failures in MPI)
+
+---

Old:

  libfabric-1.5.1.0.476d147d.tar.bz2

New:

  libfabric-1.5.2.0.480a6db3.tar.bz2



Other differences:
--
++ libfabric.spec ++
--- /var/tmp/diff_new_pack.cDhwfz/_old  2017-11-23 09:34:25.222392601 +0100
+++ /var/tmp/diff_new_pack.cDhwfz/_new  2017-11-23 09:34:25.222392601 +0100
@@ -17,13 +17,13 @@
 
 
 #
-%define git_ver .0.476d147d
+%define git_ver .0.480a6db3
 
 Name:   libfabric
 Summary:User-space RDMA Fabric Interfaces
 License:GPL-2.0 or BSD-2-Clause
 Group:  Development/Libraries/C and C++
-Version:1.5.1
+Version:1.5.2
 Release:0
 Source: %{name}-%{version}%{git_ver}.tar.bz2
 Source1:baselibs.conf

++ _service ++
--- /var/tmp/diff_new_pack.cDhwfz/_old  2017-11-23 09:34:25.254391432 +0100
+++ /var/tmp/diff_new_pack.cDhwfz/_new  2017-11-23 09:34:25.258391287 +0100
@@ -8,7 +8,7 @@
 @PARENT_TAG@.@TAG_OFFSET@.%h
 v(.*)
 \1
-476d147da5a010faae571f6f46585c777a141474
+480a6db351fbe8ee38077902c8df875e3cd13205
   
   
 libfabric*.tar

++ libfabric-1.5.1.0.476d147d.tar.bz2 -> libfabric-1.5.2.0.480a6db3.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libfabric-1.5.1.0.476d147d/.appveyor.yml 
new/libfabric-1.5.2.0.480a6db3/.appveyor.yml
--- old/libfabric-1.5.1.0.476d147d/.appveyor.yml2017-10-04 
19:21:50.0 +0200
+++ new/libfabric-1.5.2.0.480a6db3/.appveyor.yml2017-11-08 
22:12:47.0 +0100
@@ -17,6 +17,7 @@
 before_test:
   - git clone https://github.com/ofiwg/fabtests
   - cd fabtests
+  - git checkout -b v1.5.x origin/v1.5.x
   - msbuild fabtests.sln
 
 test_script:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libfabric-1.5.1.0.476d147d/.travis.yml 
new/libfabric-1.5.2.0.480a6db3/.travis.yml
--- old/libfabric-1.5.1.0.476d147d/.travis.yml  2017-10-04 19:21:50.0 
+0200
+++ new/libfabric-1.5.2.0.480a6db3/.travis.yml  2017-11-08 22:12:47.0 
+0100
@@ -70,6 +70,7 @@
 script:
 - git clone https://github.com/ofiwg/fabtests.git
 - cd fabtests
+- git checkout -b v1.5.x origin/v1.5.x
 - ./autogen.sh
 - ./configure --prefix=$PREFIX --with-libfabric=$PREFIX
 - make -j2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libfabric-1.5.1.0.476d147d/Makefile.am 
new/libfabric-1.5.2.0.480a6db3/Makefile.am
--- old/libfabric-1.5.1.0.476d147d/Makefile.am  2017-10-04 19:21:50.0 
+0200
+++ new/libfabric-1.5.2.0.480a6db3/Makefile.am  2017-11-08 22:12:47.0 
+0100
@@ -135,7 +135,7 @@
 src_libfabric_la_DEPENDENCIES = libfabric.map
 
 if !EMBEDDED
-src_libfabric_la_LDFLAGS += -version-info 10:1:9
+src_libfabric_la_LDFLAGS += -version-info 10:2:9
 endif
 src_libfabric_la_LDFLAGS += -export-dynamic \
   $(libfabric_version_script)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libfabric-1.5.1.0.476d147d/NEWS.md 
new/libfabric-1.5.2.0.480a6db3/NEWS.md
--- old/libfabric-1.5.1.0.476d147d/NEWS.md  2017-10-04 19:21:50.0 
+0200
+++ new/libfabric-1.5.2.0.480a6db3/NEWS.md  2017-11-08 22:12:47.0 
+0100
@@ -5,6 +5,32 @@
 bug fixes (and other actions) for each version of Libfabric since
 version 1.0.
 
+v1.5.2, Wed Nov 8, 2017
+===
+
+## Core
+
+- Fix Power PC 32-bit build
+
+## RXM
+
+-- Remove dependency on shared receive contexts
+-- Switch to automatic data progress
+-- Fix removing 

commit pidgin for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package pidgin for openSUSE:Factory checked 
in at 2017-11-23 09:34:27

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


Package is "pidgin"

Thu Nov 23 09:34:27 2017 rev:122 rq:544100 version:2.12.0

Changes:

--- /work/SRC/openSUSE:Factory/pidgin/pidgin.changes2017-11-11 
14:17:03.344808325 +0100
+++ /work/SRC/openSUSE:Factory/.pidgin.new/pidgin.changes   2017-11-23 
09:34:33.590087297 +0100
@@ -1,0 +2,5 @@
+Tue Nov 21 08:06:04 UTC 2017 - fezh...@suse.com
+
+- Add purple-import-empathy Recommends for SLE15 (FATE#322984).
+
+---



Other differences:
--
++ pidgin.spec ++
--- /var/tmp/diff_new_pack.oCCceB/_old  2017-11-23 09:34:36.413984265 +0100
+++ /var/tmp/diff_new_pack.oCCceB/_new  2017-11-23 09:34:36.417984119 +0100
@@ -72,6 +72,9 @@
 BuildRequires:  tk-devel
 BuildRequires:  update-desktop-files
 Requires:   perl-base >= %{perl_version}
+%if 0%{?suse_version} >= 1500 && !0%{?is_opensuse}
+Recommends: purple-import-empathy
+%endif
 %if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120300
 BuildRequires:  python2-devel
 %else





commit corosync for openSUSE:Factory

2017-11-23 Thread root
Hello community,

here is the log from the commit of package corosync for openSUSE:Factory 
checked in at 2017-11-23 09:34:05

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


Package is "corosync"

Thu Nov 23 09:34:05 2017 rev:48 rq:544014 version:2.4.3

Changes:

--- /work/SRC/openSUSE:Factory/corosync/corosync.changes2017-11-20 
17:02:27.940150543 +0100
+++ /work/SRC/openSUSE:Factory/.corosync.new/corosync.changes   2017-11-23 
09:34:07.971022032 +0100
@@ -18,0 +19,2 @@
+Modified: 0005-do-not-convert-empty-uid-gid-to-0.patch, 
+check whether the uid, gid is empty before calling strtol



Other differences:
--
++ 0005-do-not-convert-empty-uid-gid-to-0.patch ++
--- /var/tmp/diff_new_pack.NGnMhT/_old  2017-11-23 09:34:08.630997952 +0100
+++ /var/tmp/diff_new_pack.NGnMhT/_new  2017-11-23 09:34:08.630997952 +0100
@@ -1,34 +1,42 @@
-From 34e3accfcbf1d5dd08468f0e7a8aa6ceb0a7828e Mon Sep 17 00:00:00 2001
+From a7a13690db8fc7508177138265c6930fa11ade3e Mon Sep 17 00:00:00 2001
 From: Bin Liu 
-Date: Mon, 6 Nov 2017 16:59:30 +0800
-Subject: [PATCH] do not convert empty uid, gid to 0
+Date: Tue, 21 Nov 2017 11:03:10 +0800
+Subject: [PATCH] do not convert empty uid gid to 0
 
 ---
- exec/coroparse.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
+ exec/coroparse.c | 12 
+ 1 file changed, 12 insertions(+)
 
 diff --git a/exec/coroparse.c b/exec/coroparse.c
-index 374ed7dd..f27ead1a 100644
+index 374ed7dd..ac654a11 100644
 --- a/exec/coroparse.c
 +++ b/exec/coroparse.c
-@@ -140,7 +140,7 @@ static int uid_determine (const char *req_user)
+@@ -139,6 +139,12 @@ static int uid_determine (const char *req_user)
+   long int id;
char *ep;
  
++  if(*req_user == '\0') {
++  sprintf (error_string_response,
++ "The user can not be empty, please read the 
documentation.");
++  return (-1);
++  }
++
id = strtol(req_user, , 10);
--  if (*ep == '\0' && id >= 0 && id <= UINT_MAX) {
-+  if (*req_user != '\0' && *ep == '\0' && id >= 0 && id <= UINT_MAX) {
+   if (*ep == '\0' && id >= 0 && id <= UINT_MAX) {
return (id);
-   }
- 
-@@ -194,7 +194,7 @@ static int gid_determine (const char *req_group)
+@@ -193,6 +199,12 @@ static int gid_determine (const char *req_group)
+   long int id;
char *ep;
  
++  if(*req_group == '\0') {
++  sprintf (error_string_response,
++  "The group can not be empty, please read the 
documentation.");
++  return (-1);
++  }
++
id = strtol(req_group, , 10);
--  if (*ep == '\0' && id >= 0 && id <= UINT_MAX) {
-+  if (*req_group != '\0' && *ep == '\0' && id >= 0 && id <= UINT_MAX) {
+   if (*ep == '\0' && id >= 0 && id <= UINT_MAX) {
return (id);
-   }
- 
 -- 
 2.13.6