commit pidgin-sipe for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package pidgin-sipe for openSUSE:Factory 
checked in at 2015-08-17 11:52:19

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


Package is pidgin-sipe

Changes:

--- /work/SRC/openSUSE:Factory/pidgin-sipe/pidgin-sipe.changes  2015-04-10 
09:52:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.pidgin-sipe.new/pidgin-sipe.changes 
2015-08-17 11:52:21.0 +0200
@@ -1,0 +2,11 @@
+Tue Jun 30 15:14:25 UTC 2015 - dims...@opensuse.org
+
+- Port to GStreamer 1.0 (follow pidin's port):
+  + Add pidgin-sipe-gstreamer-1.0.patch
+  + Replace pkgconfig(gstreamer-0.10) BuildRequires with
+pkgconfig(gstreamer-1.0).
+  + Add autoreconf call, as the patch touches the buildsystem.
+  + Pass --with-vv to configure, to ensure we do not lose Voice 
+Video support.
+
+---

New:

  pidgin-sipe-gstreamer-1.0.patch



Other differences:
--
++ pidgin-sipe.spec ++
--- /var/tmp/diff_new_pack.LacmWf/_old  2015-08-17 11:52:22.0 +0200
+++ /var/tmp/diff_new_pack.LacmWf/_new  2015-08-17 11:52:22.0 +0200
@@ -26,6 +26,8 @@
 Group:  Productivity/Networking/Instant Messenger
 Url:http://sipe.sourceforge.net/
 Source: 
http://downloads.sourceforge.net/project/sipe/sipe/pidgin-sipe-1.19.1/%{name}-%{version}.tar.xz
+# PATCH-FEATURE-UPSTREAM pidgin-sipe-gstreamer-1.0.patch dims...@opensuse.org 
-- Read the GStreamer branch to be used from purple.pc; taken from 
https://pidgin.im/pipermail/devel/2015-March/023647.html
+Patch0: pidgin-sipe-gstreamer-1.0.patch
 BuildRequires:  gettext-devel
 BuildRequires:  glib2-devel = 2.12.0
 BuildRequires:  gmime-devel
@@ -38,7 +40,7 @@
 BuildRequires:  translation-update-upstream
 %if 0%{?suse_version}  1140
 # Put gstreamer in the %%if too, since it's only checked if we have libnice
-BuildRequires:  pkgconfig(gstreamer-0.10)
+BuildRequires:  pkgconfig(gstreamer-1.0)
 BuildRequires:  pkgconfig(nice) = 0.1.0
 %endif
 BuildRequires:  pkgconfig(nss)
@@ -95,13 +97,16 @@
 
 %prep
 %setup -q
+%patch0 -p1
 translation-update-upstream
 
 %build
 %{?env_options}
+autoreconf -fiv
 %configure \
 --with-krb5 \
 --enable-purple \
+--with-vv \
 %if %{build_telepathy}
 --enable-telepathy
 %else

++ pidgin-sipe-gstreamer-1.0.patch ++

diff --git a/configure.ac b/configure.ac
index 1129a18..bbd7371 100644
--- a/configure.ac
+++ b/configure.ac
@@ -346,7 +346,11 @@ AS_IF([test x$enable_purple != xno],
 dnl check whether enable voice and video support
 AS_IF([test x$with_vv = xno], [], dnl disabled by user
   [test x$with_vv = xcheck],  dnl autodetect
-[AC_MSG_CHECKING(for purple voice and video support)
+[dnl Let purple pkgconfig correct our assumptions 
about GStreamer
+ purple_gst=`$PKG_CONFIG --variable=gstreamer 
$purple_pkgconfig`
+ AS_IF([test x$purple_gst != x],
+   [gstreamer_pkgconfig=gstreamer-$purple_gst])
+ AC_MSG_CHECKING(for purple voice and video support)
  AC_RUN_IFELSE(
[AC_LANG_PROGRAM([[
 #include media.h





commit python-dateutil for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package python-dateutil for openSUSE:Factory 
checked in at 2015-08-17 15:34:11

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


Package is python-dateutil

Changes:

--- /work/SRC/openSUSE:Factory/python-dateutil/python-dateutil.changes  
2015-08-07 00:22:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-dateutil.new/python-dateutil.changes 
2015-08-17 15:34:13.0 +0200
@@ -1,0 +2,60 @@
+Thu Aug 13 03:13:09 UTC 2015 - greg.freem...@gmail.com
+
+- update url in specfile
+- use sed to eliminate MS-DOS style end of lines
+
+- update to version 2.4.2:
+  * Updated zoneinfo to 2015b.
+  * Fixed issue with parsing of tzstr on Python 2.7.x; tzstr will now
+be decoded if not a unicode type. gh #51 (lp:1331576), gh pr #55.
+  * Fix a parser issue where AM and PM tokens were showing up in fuzzy
+date stamps, triggering inappropriate errors. gh #56 (lp:
+1428895), gh pr #63.
+  * Missing function setcachsize removed from zoneinfo __all__ list
+by @ryanss, fixing an issue with wildcard imports of
+dateutil.zoneinfo. (gh pr #66).
+  * (PyPi only) Fix an issue with source distributions not including
+the test suite.
+
+- changes from version 2.4.1:
+  * Added explicit check for valid hours if AM/PM is specified in
+parser. (gh pr #22, issue #21)
+  * Fix bug in rrule introduced in 2.4.0 where byweekday parameter was
+not handled properly. (gh pr #35, issue #34)
+  * Fix error where parser allowed some invalid dates, overwriting
+existing hours with the last 2-digit number in the string. (gh pr
+#32, issue #31)
+  * Fix and add test for Python 2.x compatibility with boolean
+checking of relativedelta objects. Implemented by @nimasmi (gh pr
+#43) and Céic Krier (lp: 1035038)
+  * Replaced parse() calls with explicit datetime objects in unit
+tests unrelated to parser. (gh pr #36)
+  * Changed private _byxxx from sets to sorted tuples and fixed one
+currently unreachable bug in _construct_byset. (gh pr #54)
+  * Additional documentation for parser (gh pr #29, #33, #41) and
+rrule.
+  * Formatting fixes to documentation of rrule and README.rst.
+  * Updated zoneinfo to 2015a.
+
+- changes from version 2.4.0:
+  * Fix an issue with relativedelta and freezegun (lp:1374022)
+  * Fix tzinfo in windows for timezones without dst (lp:1010050, gh
+#2)
+  * Ignore missing timezones in windows like in POSIX
+  * Fix minimal version requirement for six (gh #6)
+  * Many rrule changes and fixes by @pganssle (gh pull requests #13
+#14 #17), including defusing some infinite loops (gh #4)
+
+- changes from version 2.3:
+  * Cleanup directory structure, moved test.py to
+dateutil/tests/test.py
+  * Changed many aspects of dealing with the zone info file. Instead
+of a cache, all the zones are loaded to memory, but symbolic links
+are loaded only once, so not much memory is used.
+  * The package is now zip-safe, and universal-wheelable, thanks to
+changes in the handling of the zoneinfo file.
+  * Fixed tzwin silently not imported on windows python2
+  * New maintainer, together with new hosting: GitHub, Travis,
+Read-The-Docs
+
+---

Old:

  python-dateutil-2.2.tar.gz

New:

  python-dateutil-2.4.2.tar.gz



Other differences:
--
++ python-dateutil.spec ++
--- /var/tmp/diff_new_pack.UBYr62/_old  2015-08-17 15:34:14.0 +0200
+++ /var/tmp/diff_new_pack.UBYr62/_new  2015-08-17 15:34:14.0 +0200
@@ -21,11 +21,11 @@
 Summary:A Python Datetime Library
 License:BSD-3-Clause
 Group:  Development/Libraries/Python
-Version:2.2
+Version:2.4.2
 Release:0
 Source0:
http://pypi.python.org/packages/source/p/%{name}/%{name}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Url:http://labix.org/python-dateutil
+Url:https://dateutil.readthedocs.org/en/latest/
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools = 18.0.1
 BuildRequires:  python-six = 1.9.0
@@ -70,6 +70,8 @@
 
 %prep
 %setup -q
+#cleanup and MSdos style end of line separators
+sed -i 's/\r$//' LICENSE NEWS PKG-INFO README.rst
 
 %build
 rm setup.cfg
@@ -83,8 +85,7 @@
 
 %files
 %defattr(-,root,root)
-%doc LICENSE NEWS PKG-INFO README
-%doc LICENSE NEWS PKG-INFO README
+%doc LICENSE NEWS PKG-INFO README.rst
 %{python_sitelib}/%{modname}/
 %{python_sitelib}/python_%{modname}-%{version}-py%{py_ver}.egg-info/
 

++ python-dateutil-2.2.tar.gz - python-dateutil-2.4.2.tar.gz ++
 14485 lines of diff (skipped)




commit python-setuptools for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package python-setuptools for 
openSUSE:Factory checked in at 2015-08-17 15:34:06

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


Package is python-setuptools

Changes:

--- /work/SRC/openSUSE:Factory/python-setuptools/python-setuptools.changes  
2015-08-07 00:20:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-setuptools.new/python-setuptools.changes 
2015-08-17 15:34:07.0 +0200
@@ -1,0 +2,6 @@
+Tue Aug 11 07:02:31 UTC 2015 - tbecht...@suse.com
+
+- update to 18.1:
+  * Upgrade to vendored packaging 15.3.
+
+---

Old:

  setuptools-18.0.1.tar.gz

New:

  setuptools-18.1.tar.gz



Other differences:
--
++ python-setuptools.spec ++
--- /var/tmp/diff_new_pack.I3H0Ap/_old  2015-08-17 15:34:08.0 +0200
+++ /var/tmp/diff_new_pack.I3H0Ap/_new  2015-08-17 15:34:08.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-setuptools
-Version:18.0.1
+Version:18.1
 Release:0
 Url:http://pypi.python.org/pypi/setuptools
 Summary:Easily download, build, install, upgrade, and uninstall Python 
packages

++ setuptools-18.0.1.tar.gz - setuptools-18.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.0.1/CHANGES.txt 
new/setuptools-18.1/CHANGES.txt
--- old/setuptools-18.0.1/CHANGES.txt   2015-06-24 22:58:42.0 +0200
+++ new/setuptools-18.1/CHANGES.txt 2015-08-02 20:51:01.0 +0200
@@ -2,6 +2,12 @@
 CHANGES
 ===
 
+
+18.1
+
+
+* Upgrade to vendored packaging 15.3.
+
 --
 18.0.1
 --
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.0.1/PKG-INFO 
new/setuptools-18.1/PKG-INFO
--- old/setuptools-18.0.1/PKG-INFO  2015-06-24 22:59:54.0 +0200
+++ new/setuptools-18.1/PKG-INFO2015-08-02 20:51:43.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: setuptools
-Version: 18.0.1
+Version: 18.1
 Summary: Easily download, build, install, upgrade, and uninstall Python 
packages
 Home-page: https://bitbucket.org/pypa/setuptools
 Author: Python Packaging Authority
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.0.1/docs/setuptools.txt 
new/setuptools-18.1/docs/setuptools.txt
--- old/setuptools-18.0.1/docs/setuptools.txt   2015-06-18 14:36:06.0 
+0200
+++ new/setuptools-18.1/docs/setuptools.txt 2015-08-02 20:49:57.0 
+0200
@@ -1467,7 +1467,7 @@
 over having to manually write a ``MANIFEST.in`` file and try to keep it in
 sync with your project.  So, if you are using CVS or Subversion, and your
 source distributions only need to include files that you're tracking in
-revision control, don't create a a ``MANIFEST.in`` file for your project.
+revision control, don't create a ``MANIFEST.in`` file for your project.
 (And, if you already have one, you might consider deleting it the next time
 you would otherwise have to change it.)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/setuptools-18.0.1/ez_setup.py 
new/setuptools-18.1/ez_setup.py
--- old/setuptools-18.0.1/ez_setup.py   2015-06-24 22:59:47.0 +0200
+++ new/setuptools-18.1/ez_setup.py 2015-08-02 20:51:39.0 +0200
@@ -30,7 +30,7 @@
 except ImportError:
 USER_SITE = None
 
-DEFAULT_VERSION = 18.0.1
+DEFAULT_VERSION = 18.1
 DEFAULT_URL = https://pypi.python.org/packages/source/s/setuptools/;
 DEFAULT_SAVE_DIR = os.curdir
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/setuptools-18.0.1/pkg_resources/_vendor/packaging/__about__.py 
new/setuptools-18.1/pkg_resources/_vendor/packaging/__about__.py
--- old/setuptools-18.0.1/pkg_resources/_vendor/packaging/__about__.py  
2015-06-18 14:36:06.0 +0200
+++ new/setuptools-18.1/pkg_resources/_vendor/packaging/__about__.py
2015-08-02 20:49:50.0 +0200
@@ -22,7 +22,7 @@
 __summary__ = Core utilities for Python packages
 __uri__ = https://github.com/pypa/packaging;
 
-__version__ = 15.1
+__version__ = 15.3
 
 __author__ = Donald Stufft
 __email__ = don...@stufft.io
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/setuptools-18.0.1/pkg_resources/_vendor/packaging/specifiers.py 
new/setuptools-18.1/pkg_resources/_vendor/packaging/specifiers.py
--- old/setuptools-18.0.1/pkg_resources/_vendor/packaging/specifiers.py 
2015-06-18 14:36:06.0 +0200
+++ 

commit gpg2 for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package gpg2 for openSUSE:Factory checked in 
at 2015-08-17 15:33:41

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


Package is gpg2

Changes:

--- /work/SRC/openSUSE:Factory/gpg2/gpg2.changes2015-07-16 
17:18:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.gpg2.new/gpg2.changes   2015-08-17 
15:33:42.0 +0200
@@ -1,0 +2,15 @@
+Wed Aug 12 10:58:48 UTC 2015 - astie...@suse.com
+
+- GnuPG 2.1.7:
+ * gpg: Support encryption with Curve25519 if Libgcrypt 1.7 is used.
+ * gpg: In the --edit-key menu: Removed the need for toggle, changed
+   how secret keys are indicated, new commands fpr * and grip.
+ * gpg: More fixes related to legacy keys in a keyring.
+ * gpgv: Does now also work with a trustedkeys.kbx file.
+ * scd: Support some feature from the OpenPGP card 3.0 specs.
+ * scd: Improved ECC support
+ * agent: New option --force for the DELETE_KEY command.
+ * Dropped deprecated gpgsm-gencert.sh
+ * Various other bug fixes.
+
+---

Old:

  gnupg-2.1.6.tar.bz2
  gnupg-2.1.6.tar.bz2.sig

New:

  gnupg-2.1.7.tar.bz2
  gnupg-2.1.7.tar.bz2.sig



Other differences:
--
++ gpg2.spec ++
--- /var/tmp/diff_new_pack.ac1BSP/_old  2015-08-17 15:33:43.0 +0200
+++ /var/tmp/diff_new_pack.ac1BSP/_new  2015-08-17 15:33:43.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gpg2
-Version:2.1.6
+Version:2.1.7
 Release:0
 Summary:GnuPG 2
 License:GPL-3.0+

++ gnupg-2.1.6.tar.bz2 - gnupg-2.1.7.tar.bz2 ++
 99895 lines of diff (skipped)





commit hdf5 for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package hdf5 for openSUSE:Factory checked in 
at 2015-08-17 15:33:57

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


Package is hdf5

Changes:

--- /work/SRC/openSUSE:Factory/hdf5/hdf5.changes2015-08-05 
19:13:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.hdf5.new/hdf5.changes   2015-08-17 
15:33:58.0 +0200
@@ -1,0 +2,7 @@
+Thu Aug 13 07:42:07 UTC 2015 - badshah...@gmail.com
+
+- Add hdf5-cpp-compilation-errors.patch: Reverts a change from
+  v1.8.15 to H5api_adpt.h that caused compilation errors for C++
+  HDF5 applications; patch taken from upstream svn.
+
+---

New:

  hdf5-cpp-compilation-errors.patch



Other differences:
--
++ hdf5.spec ++
--- /var/tmp/diff_new_pack.w5t1gd/_old  2015-08-17 15:33:59.0 +0200
+++ /var/tmp/diff_new_pack.w5t1gd/_new  2015-08-17 15:33:59.0 +0200
@@ -44,6 +44,8 @@
 Patch4: hdf5-1.8.10-tests-arm.patch
 %endif
 Patch5: hdf5-ldouble-ppc64le.patch
+# PATCH-FIX-UPSTREAM hdf5-cpp-compilation-errors.patch badshah...@gmail.com -- 
Reverted a change to the H5api_adpt.h that caused compilation errors for the 
C++ HDF5 applications; patch taken from upstream svn
+Patch6: hdf5-cpp-compilation-errors.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc-c++
 %if 0%{?suse_version}  1140
@@ -342,8 +344,8 @@
 %package openmpi-devel
 Summary:Development files for %{name}-openmpi
 Group:  Development/Libraries/Parallel
-Requires:   %{name}-openmpi = %{version}
 Requires:   %{name}-devel-data = %{version}
+Requires:   %{name}-openmpi = %{version}
 # Required by Fortran programs?
 Requires:   %{libname}-%{sonum}-openmpi = %{version}
 Requires:   %{libname}_hl%{sonum}-openmpi = %{version}
@@ -372,8 +374,8 @@
 %package mvapich2-devel
 Summary:Development files for %{name}-mvapich2
 Group:  Development/Libraries/Parallel
-Requires:   %{name}-mvapich2 = %{version}
 Requires:   %{name}-devel-data = %{version}
+Requires:   %{name}-mvapich2 = %{version}
 # Required by Fortran programs?
 Requires:   %{libname}-%{sonum}-mvapich2 = %{version}
 Requires:   %{libname}_hl%{sonum}-mvapich2 = %{version}
@@ -512,6 +514,7 @@
 %patch4 -p0 -b .tests-arm
 %endif
 %patch5 -p1
+%patch6 -p0
 
 echo prepare parallel builds: %_mpi
 for build_dir in build %_mpi; do

++ hdf5-cpp-compilation-errors.patch ++
Index: src/H5api_adpt.h
===
--- src/H5api_adpt.h(revision 26991)
+++ src/H5api_adpt.h(revision 27474)
@@ -21,13 +21,6 @@
 #ifndef H5API_ADPT_H
 #define H5API_ADPT_H
 
-#ifdef __cplusplus
-#define __attribute__(X)  /*void*/
-#endif /* __cplusplus */
-#ifndef H5_HAVE_ATTRIBUTE
-#define __attribute__(X)  /*void*/
-#endif /* H5_HAVE_ATTRIBUTE */
-
 /* This will only be defined if HDF5 was built with CMake */
 #ifdef H5_BUILT_AS_DYNAMIC_LIB




commit gnome-shell for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2015-08-17 15:34:34

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


Package is gnome-shell

Changes:

--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2015-07-16 
17:18:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new/gnome-shell.changes 
2015-08-17 15:34:36.0 +0200
@@ -1,0 +2,6 @@
+Wed Jul 29 10:31:09 UTC 2015 - zai...@opensuse.org
+
+- Add gnome-shell-Fix-nb-translation.patch: Fix translation for
+  Norwegian Bokmål (bgo#740906).
+
+---

New:

  gnome-shell-Fix-nb-translation.patch



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.waBrQm/_old  2015-08-17 15:34:37.0 +0200
+++ /var/tmp/diff_new_pack.waBrQm/_new  2015-08-17 15:34:37.0 +0200
@@ -26,6 +26,8 @@
 Source: 
http://download.gnome.org/sources/gnome-shell/3.16/%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM gnome-shell-private-connection.patch bnc#751211 
bgo#646187 dims...@opensuse.org -- create private connections if the user is 
not authorized
 Patch1: gnome-shell-private-connection.patch
+# PATCH-FIX-UPSTREAM gnome-shell-Fix-nb-translation.patch bgo#740906 
zai...@opensuse.org -- Fix Norwegian translation
+Patch2: gnome-shell-Fix-nb-translation.patch
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gcc-c++
 BuildRequires:  intltool
@@ -154,6 +156,7 @@
 %setup -q
 %patch1 -p1
 translation-update-upstream
+%patch2 -p1
 
 %build
 export BROWSER_PLUGIN_DIR=%{_libdir}/browser-plugins

++ gnome-shell-Fix-nb-translation.patch ++
--- gnome-shell-3.16.3-orig/po/nb.po2015-07-02 14:20:58.0 +0200
+++ gnome-shell-3.16.3/po/nb.po 2015-07-29 12:26:13.355541939 +0200
@@ -1530,11 +1530,11 @@
 
 #: ../js/ui/windowMenu.js:106
 msgid Move to Workspace Up
-msgstr Gå til arbeidsområdet over
+msgstr Flytt til arbeidsområdet over
 
 #: ../js/ui/windowMenu.js:111
 msgid Move to Workspace Down
-msgstr Gå til arbeidsområdet under
+msgstr Flytt til arbeidsområdet under
 
 #: ../src/calendar-server/evolution-calendar.desktop.in.in.h:1
 msgid Evolution Calendar




commit cairo for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package cairo for openSUSE:Factory checked 
in at 2015-08-17 15:34:40

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


Package is cairo

Changes:

--- /work/SRC/openSUSE:Factory/cairo/cairo.changes  2015-03-18 
13:00:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.cairo.new/cairo.changes 2015-08-17 
15:34:41.0 +0200
@@ -1,0 +2,5 @@
+Sat May 16 10:42:31 CEST 2015 - r...@suse.de
+
+- drop cairo-disable-lto.patch: lto was dropped upstream
+
+---

Old:

  cairo-disable-lto.patch



Other differences:
--
++ cairo.spec ++
--- /var/tmp/diff_new_pack.Pc4LST/_old  2015-08-17 15:34:42.0 +0200
+++ /var/tmp/diff_new_pack.Pc4LST/_new  2015-08-17 15:34:42.0 +0200
@@ -29,12 +29,10 @@
 Source99:   baselibs.conf
 # PATCH-FIX-UPSTREAM cairo-modules-no-version.patch fdo#29319 
dims...@opensuse.org -- Build modules with -module -avoid-version.
 Patch0: cairo-modules-no-version.patch
-# PATCH-FIX-OPENSUSE cairo-disable-lto.patch idoen...@suse.de -- Disable -flto 
on s390{x}
-Patch1: cairo-disable-lto.patch
 # PATCH-FIX-UPSTREAM cairo-render-thin-lines.patch fdo#77298 j...@suse.com -- 
Fix rendering of thin lines
-Patch2: cairo-render-thin-lines.patch
+Patch1: cairo-render-thin-lines.patch
 # PATCH-FIX-UPSTREAM cairo-xlib-endianness.patch fdo#63461 bnc#882951 
fcro...@suse.com -- Fix crash when client and server have different endianness
-Patch3: cairo-xlib-endianness.patch
+Patch2: cairo-xlib-endianness.patch
 BuildRequires:  gtk-doc
 # Needed by patch0
 BuildRequires:  libtool
@@ -143,12 +141,9 @@
 %prep
 %setup -q
 %patch0 -p1
-%ifarch s390 s390x
-%patch1 -p1
-%endif
 # fix_for_fdo77298.patch
+%patch1 -p1
 %patch2 -p1
-%patch3 -p1
 
 %build
 # Needed by patch0 and patch1




commit nghttp2 for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package nghttp2 for openSUSE:Factory checked 
in at 2015-08-17 15:35:30

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


Package is nghttp2

Changes:

--- /work/SRC/openSUSE:Factory/nghttp2/nghttp2.changes  2015-08-11 
08:27:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.nghttp2.new/nghttp2.changes 2015-08-17 
15:35:31.0 +0200
@@ -1,0 +2,8 @@
+Mon Aug 17 10:51:27 UTC 2015 - mplus...@suse.com
+
+- Update to 1.2.
+  * doc: Reword the HPACK tutorial (Patch from Tom Harwood)
+  * nghttpx: Fix stability issues
+  * h2load: Fix crash if -r  -n
+
+---

Old:

  nghttp2-1.2.0.tar.xz

New:

  nghttp2-1.2.1.tar.xz



Other differences:
--
++ nghttp2.spec ++
--- /var/tmp/diff_new_pack.AxG1in/_old  2015-08-17 15:35:32.0 +0200
+++ /var/tmp/diff_new_pack.AxG1in/_new  2015-08-17 15:35:32.0 +0200
@@ -19,7 +19,7 @@
 %define lib_name lib%{name}-14
 %define lib_name_asio lib%{name}_asio1
 Name:   nghttp2
-Version:1.2.0
+Version:1.2.1
 Release:0
 Summary:Implementation of Hypertext Transfer Protocol version 2 in C
 License:MIT

++ nghttp2-1.2.0.tar.xz - nghttp2-1.2.1.tar.xz ++
 2775 lines of diff (skipped)




commit python3-boto for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package python3-boto for openSUSE:Factory 
checked in at 2015-08-17 15:35:08

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


Package is python3-boto

Changes:

New Changes file:

--- /dev/null   2015-07-22 21:25:44.928025004 +0200
+++ /work/SRC/openSUSE:Factory/.python3-boto.new/python3-boto.changes   
2015-08-17 15:35:09.0 +0200
@@ -0,0 +1,996 @@
+---
+Thu Aug 13 11:08:04 UTC 2015 - toddrme2...@gmail.com
+
+- Fix update-alternatives usage.
+
+---
+Wed Jul 29 09:43:54 UTC 2015 - toddrme2...@gmail.com
+
+- Initial python 3 version.
+
+---
+Wed Jul 29 09:08:15 UTC 2015 - toddrme2...@gmail.com
+
+- Implement update-alternatives to allow for python 3 version,
+  which is now supported upstream.
+- specfile cleanups
+
+---
+Mon Apr 27 18:44:37 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 2.38.0:
+  * Add support for Amazon Machine Learning
+  * Fix issue with modify reserved instances for modifying instance
+type
+- additional changes from version 2.37.0:
+  * Update AWS CloudTrail to the latest API.
+  * Add support for UsePreviousValue to CloudFormation UpdateStack.
+  * Fix BOTH_PATH to work with Windows drives
+  * Fix division calculation in S3 docs.
+  * Add Boto 3 link in README.
+  * Add more regions for configservice
+  * Add ``eu-central-1`` endpoints (Frankfurt region) for IAM and
+Route53
+  * Fix unit tests from hanging
+  * Fixed wording in dynamodb tutorial
+  * Update SWF objects to keep a consistent region name.
+  * Print archive ID in glacier upload script.
+  * Add some minor documentation for Route53 tutorial.
+  * Add Amazon DynamoDB online indexing support on High level API
+  * Ensure Content-Length header is a string.
+  * Correct docs around overriding SGs on ELBs
+  * Fix DynamoDB tests.
+  * Fix region bug.
+  * Fix import for ``boto.cloudhsm.layer1.CloudHSMConnection``.
+- additional changes from version 2.36.0:
+  * Add Amazon DynamoDB online indexing support.
+  * Allow for binary to be passed to sqs message
+  * Kinesis update
+  * Fixed spelling of boto.awslambda package.
+  * Add support for Amazon EC2 Container Service
+  * Add support for CloudHSM
+  * Add support for AWS Config
+  * Add support for AWS CodeDeploy
+  * Add support for AWS Lambda
+  * Update both Cognito's to the latest APIs
+  * Add sts for eu-central-1.
+  * Update opsworks to latest API
+  * Add AWS Key Managment Support
+- additional changes from version 2.35.2:
+  * Add support for new data types in DynamoDB.
+  * Expose cloudformation `UsePreviousTemplate` parameter.
+  * Fix documentation around using custom connections for DynamoDB
+tables.
+  * Fixed bug that unable call query_2 after call describe method
+on dynamodb2 module.
+- additional changes from version 2.35.1:
+  * Check for results left after computing self._keys_left
+- additional changes from version 2.35.0:
+  * Add Amazon EC2 Classic Link support
+  * Add query string to body for anon STS POST
+  * Fix bug that prevented initializing a dynamo item from existing
+item
+  * switchover-sigv4:   Add integ tests for sigv4 switchover
+Switch elb/ec2 over to signature version 4
+  * Return SetStackPolicyResponse
+  * Added ELB Attributes to docs.
+  * Fix bug by using correct string joining syntax.
+  * Fix SES get_identity_dkim_attributes when input length  1.
+  * DynamoDB table batch_get fails to process all remaining results
+if single batch result is empty.
+  * Added suppport for additional fields in EMR objects.
+  * Pass version_id in copy if key is versioned.
+  * Add support for SQS PurgeQueue operation.
+  * Update documentation for launchconfig.
+  * Remove unimplemented config param.
+  * Add support for private hosted zones.
+  * Fix Key.change_storage_class so that it obeys dst_bucket.
+  * Fix for s3put host specification.
+  * Improve handling of Glacier HTTP 204 responses.
+  * Fix raising exception syntax in Python 3.
+  * Privatezone: Adding unit/integration test coverage
+  * Minor documentation/pep8 fixes.
+  * Correct argument type in doc string.
+  * Use exclusive start key to get all items from DynamoDB query.
+  * Updated link to current config documentation.
+  * Fix the SQS certificate error for region cn-north-1.
+  * Adds support for getting health checker IP ranges from Route53.
+  * fix: snap.create_volume documentation lists general purpose ssd
+Fixes @2774.
+  * Fixed param type in get_contents_to_filename docstring.
+  * Update DynamoDB 

commit clisp for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package clisp for openSUSE:Factory checked 
in at 2015-08-17 15:35:20

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


Package is clisp

Changes:

--- /work/SRC/openSUSE:Factory/clisp/clisp.changes  2013-07-02 
06:44:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.clisp.new/clisp.changes 2015-08-17 
15:35:22.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 14 12:53:11 UTC 2015 - norm...@linux.vnet.ibm.com
+
+- add ppc64le to list of ExcludeArch
+  related to src/lispbibl.d CLISP not ported to this platform
+
+---



Other differences:
--
++ clisp.spec ++
--- /var/tmp/diff_new_pack.L25uDg/_old  2015-08-17 15:35:23.0 +0200
+++ /var/tmp/diff_new_pack.L25uDg/_new  2015-08-17 15:35:23.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package clisp
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -58,7 +58,8 @@
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %global vimdir  %{_datadir}/vim/site/after/syntax
-ExcludeArch:ppc64 s390x armv4l
+# exclude from src/lispbibl.d CLISP not ported to this platform
+ExcludeArch:ppc64 ppc64le s390x armv4l
 BuildRequires:  db-devel
 BuildRequires:  ffcall
 BuildRequires:  gdbm-devel




commit libressl for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package libressl for openSUSE:Factory 
checked in at 2015-08-17 15:35:28

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


Package is libressl

Changes:

--- /work/SRC/openSUSE:Factory/libressl/libressl.changes2015-07-19 
11:45:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.libressl.new/libressl.changes   2015-08-17 
15:35:29.0 +0200
@@ -1,0 +2,26 @@
+Mon Aug 17 08:14:11 UTC 2015 - jeng...@inai.de
+
+- Avoid file conflict with ca-certificates by dropping
+  /etc/ssl/certs
+
+---
+Sun Aug  9 10:51:46 UTC 2015 - jeng...@inai.de
+
+- Update to new upstream release 2.2.2
+* Incorporated fix for OpenSSL issue #3683
+  [malformed private key via command line segfaults openssl]
+* Removed workarounds for TLS client padding bugs, removed
+  SSLv3 support from openssl(1), removed IE 6 SSLv3 workarounds,
+  removed RSAX engine.
+* Modified tls_write in libtls to allow partial writes, clarified with
+  examples in the documentation.
+* Building a program that intentionally uses SSLv3 will result in
+  a linker warning.
+* Added TLS_method, TLS_client_method and TLS_server_method as a
+  replacement for the SSLv23_*method calls.
+* Switched `openssl dhparam` default from 512 to 2048 bits
+* Fixed `openssl pkeyutl -verify` to exit with a 0 on success
+* Fixed dozens of Coverity issues including dead code, memory leaks,
+  logic errors and more.
+
+---

Old:

  libressl-2.2.1.tar.gz
  libressl-2.2.1.tar.gz.asc

New:

  libressl-2.2.2.tar.gz
  libressl-2.2.2.tar.gz.asc



Other differences:
--
++ libressl.spec ++
--- /var/tmp/diff_new_pack.b6HeSu/_old  2015-08-17 15:35:30.0 +0200
+++ /var/tmp/diff_new_pack.b6HeSu/_new  2015-08-17 15:35:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libressl
-Version:2.2.1
+Version:2.2.2
 Release:0
 Summary:An SSL/TLS protocol implementation
 License:OpenSSL
@@ -41,31 +41,31 @@
 OpenSSL, with the aim of refactoring the OpenSSL code so as to
 provide a more secure implementation.
 
-%package -n libcrypto34
+%package -n libcrypto35
 Summary:An SSL/TLS protocol implementation
 Group:  System/Libraries
 
-%description -n libcrypto34
+%description -n libcrypto35
 The crypto library implements a wide range of cryptographic
 algorithms used in various Internet standards. The services provided
 by this library are used by the LibreSSL implementations of SSL, TLS
 and S/MIME, and they have also been used to implement SSH, OpenPGP,
 and other cryptographic standards.
 
-%package -n libssl33
+%package -n libssl35
 Summary:An SSL/TLS protocol implementation
 Group:  System/Libraries
 
-%description -n libssl33
+%description -n libssl35
 LibreSSL is an open-source implementation of the Secure Sockets Layer
 (SSL) and Transport Layer Security (TLS) protocols. It derives from
 OpenSSL and intends to provide a more secure implementation.
 
-%package -n libtls4
+%package -n libtls6
 Summary:A simplified interface for the OpenSSL/LibreSSL TLS protocol 
implementation
 Group:  System/Libraries
 
-%description -n libtls4
+%description -n libtls6
 LibreSSL is an open-source implementation of the Secure Sockets Layer
 (SSL) and Transport Layer Security (TLS) protocols. It derives from
 OpenSSL and intends to provide a more secure implementation.
@@ -76,9 +76,9 @@
 %package devel
 Summary:Development files for LibreSSL, an SSL/TLS protocol 
implementation
 Group:  Development/Libraries/C and C++
-Requires:   libcrypto34 = %version
-Requires:   libssl33 = %version
-Requires:   libtls4 = %version
+Requires:   libcrypto35 = %version
+Requires:   libssl35 = %version
+Requires:   libtls6 = %version
 Conflicts:  libopenssl-devel
 
 %description devel
@@ -129,28 +129,32 @@
exit 1
 fi
 
-%post   -n libcrypto34 -p /sbin/ldconfig
-%postun -n libcrypto34 -p /sbin/ldconfig
-%post   -n libssl33 -p /sbin/ldconfig
-%postun -n libssl33 -p /sbin/ldconfig
-%post   -n libtls4 -p /sbin/ldconfig
-%postun -n libtls4 -p /sbin/ldconfig
+%post   -n libcrypto35 -p /sbin/ldconfig
+%postun -n libcrypto35 -p /sbin/ldconfig
+%post   -n libssl35 -p /sbin/ldconfig
+%postun -n libssl35 -p /sbin/ldconfig
+%post   -n libtls6 -p /sbin/ldconfig
+%postun -n libtls6 -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root)
+%dir %_sysconfdir/ssl/
+%config %_sysconfdir/ssl/openssl.cnf
+%config %_sysconfdir/ssl/cert.pem
+%config %_sysconfdir/ssl/x509v3.cnf
 %_bindir/openssl
 

commit openvpn for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package openvpn for openSUSE:Factory checked 
in at 2015-08-17 15:35:10

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


Package is openvpn

Changes:

--- /work/SRC/openSUSE:Factory/openvpn/openvpn.changes  2015-08-11 
08:27:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.openvpn.new/openvpn.changes 2015-08-17 
15:35:12.0 +0200
@@ -1,0 +2,7 @@
+Thu Aug 13 08:29:35 UTC 2015 - idon...@suse.com
+
+- Add revert-daemonize.patch, looks like under systemd the stdin
+  and stdout are not TTYs by default. This reverts to previous
+  behaviour fixing bsc#941569
+
+---

New:

  revert-daemonize.patch



Other differences:
--
++ openvpn.spec ++
--- /var/tmp/diff_new_pack.GZqkMp/_old  2015-08-17 15:35:13.0 +0200
+++ /var/tmp/diff_new_pack.GZqkMp/_new  2015-08-17 15:35:13.0 +0200
@@ -52,6 +52,7 @@
 Patch1: %{name}-2.3-plugin-man.dif
 Patch5: %{name}-2.3.0-man-dot.diff
 Patch6: %{name}-fips140-2.3.2.patch
+Patch7: revert-daemonize.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gpg-offline
 BuildRequires:  iproute2
@@ -129,6 +130,7 @@
 %patch1 -p0
 %patch5 -p0
 %patch6 -p1
+%patch7 -p1
 sed -e s|\ __DATE__|$(date '+%b %e %Y' -r version.m4)\|g \
 -i src/openvpn/options.c
 sed -e s|@PLUGIN_LIBDIR@|%{_libdir}/openvpn/plugins|g \



++ revert-daemonize.patch ++
Index: openvpn-2.3.8/src/openvpn/misc.c
===
--- openvpn-2.3.8.orig/src/openvpn/misc.c
+++ openvpn-2.3.8/src/openvpn/misc.c
@@ -1088,12 +1088,6 @@ get_user_pass_cr (struct user_pass *up,
*/
   else if (from_stdin)
{
-#ifndef WIN32
- /* did we --daemon'ize before asking for passwords? */
- if ( !isatty(0)  !isatty(2) )
-   { msg(M_FATAL, neither stdin nor stderr are a tty device, can't 
ask for %s password.  If you used --daemon, you need to use --askpass to make 
passphrase-protected keys work, and you can not use --auth-nocache., prefix ); 
}
-#endif
-
 #ifdef ENABLE_CLIENT_CR
  if (auth_challenge  (flags  GET_USER_PASS_DYNAMIC_CHALLENGE))
{



commit youtube-dl for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package youtube-dl for openSUSE:Factory 
checked in at 2015-08-17 15:35:23

Comparing /work/SRC/openSUSE:Factory/youtube-dl (Old)
 and  /work/SRC/openSUSE:Factory/.youtube-dl.new (New)


Package is youtube-dl

Changes:

--- /work/SRC/openSUSE:Factory/youtube-dl/youtube-dl.changes2015-08-10 
09:16:52.0 +0200
+++ /work/SRC/openSUSE:Factory/.youtube-dl.new/youtube-dl.changes   
2015-08-17 15:35:24.0 +0200
@@ -1,0 +2,5 @@
+Sat Aug 15 12:37:05 UTC 2015 - jeng...@inai.de
+
+- Avoid pandoc requirement when using regular release tarballs
+
+---



Other differences:
--
++ youtube-dl.spec ++
--- /var/tmp/diff_new_pack.6ZzA8u/_old  2015-08-17 15:35:25.0 +0200
+++ /var/tmp/diff_new_pack.6ZzA8u/_new  2015-08-17 15:35:25.0 +0200
@@ -25,13 +25,16 @@
 Url:http://rg3.github.io/youtube-dl/
 
 #Git-Clone:git://github.com/rg3/youtube-dl
+#define snapshot 1
 Source: http://youtube-dl.org/downloads/%version/%name-%version.tar.gz
 Source2:
http://youtube-dl.org/downloads/%version/%name-%version.tar.gz.sig
 Source3:%name.keyring
-BuildRequires:  pandoc
 BuildRequires:  python-devel
 BuildRequires:  python-xml
+%if 0%{?snapshot}
+BuildRequires:  pandoc
 BuildRequires:  zip
+%endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -41,7 +44,6 @@
 
 %prep
 %setup -qn %name
-make clean
 
 %build
 perl -i -pe '
@@ -49,8 +51,10 @@
 s{^BINDIR\ \?=\ \$\(PREFIX\)/bin}{BINDIR\ \?=\ %_bindir};
 s{^MANDIR\ \?=\ \$\(PREFIX\)/man}{MANDIR\ \?=\ %_mandir};
 s{^SHAREDIR\ \?=\ \$\(PREFIX\)/share}{SHAREDIR\ \?=\ %_datadir};' 
Makefile
-
+%if 0%{?snapshot}
+make clean
 make %{?_smp_mflags}
+%endif
 
 %install
 make DESTDIR=%buildroot install





commit python-PyJWT for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package python-PyJWT for openSUSE:Factory 
checked in at 2015-08-17 15:35:25

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


Package is python-PyJWT

Changes:

--- /work/SRC/openSUSE:Factory/python-PyJWT/python-PyJWT.changes
2015-04-23 08:05:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-PyJWT.new/python-PyJWT.changes   
2015-08-17 15:35:26.0 +0200
@@ -1,0 +2,10 @@
+Mon Aug 10 09:20:26 UTC 2015 - seife+...@b1-systems.com
+
+- apply PyJWT-1.1.0.diff only on RHEL/CentOS
+
+---
+Thu Jul  9 16:43:37 UTC 2015 - seife+...@b1-systems.com
+
+- fix build on RHEL7, add PyJWT-1.1.0.diff
+
+---

New:

  PyJWT-1.1.0.diff



Other differences:
--
++ python-PyJWT.spec ++
--- /var/tmp/diff_new_pack.5Ri47c/_old  2015-08-17 15:35:26.0 +0200
+++ /var/tmp/diff_new_pack.5Ri47c/_new  2015-08-17 15:35:26.0 +0200
@@ -24,6 +24,8 @@
 License:MIT
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/P/PyJWT/PyJWT-%{version}.tar.gz
+# PATCH-FIX-CENTOS PyJWT-1.1.0.diff -- without this, the centos build %%check 
will try to download stuff from pypi --seife
+Patch1: PyJWT-1.1.0.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-cryptography
 BuildRequires:  python-devel
@@ -44,6 +46,9 @@
 
 %prep
 %setup -q -n PyJWT-%{version}
+%if 0%{?rhel}
+%patch1 -p1
+%endif
 
 %build
 python setup.py build

++ PyJWT-1.1.0.diff ++
diff --git a/setup.py b/setup.py
index 2586c2a..dee928c 100755
--- a/setup.py
+++ b/setup.py
@@ -78,6 +78,5 @@ setup(
 'Topic :: Utilities',
 ],
 test_suite='tests',
-tests_require=['pytest', 'pytest-cov'],
 cmdclass={'test': PyTest},
 )



commit sudo for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package sudo for openSUSE:Factory checked in 
at 2015-08-17 15:34:51

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


Package is sudo

Changes:

--- /work/SRC/openSUSE:Factory/sudo/sudo.changes2015-07-28 
11:42:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.sudo.new/sudo.changes   2015-08-17 
15:34:52.0 +0200
@@ -1,0 +2,15 @@
+Wed Aug 12 18:29:20 UTC 2015 - jeng...@inai.de
+
+- No need to buildrequire an sssd plugin (libsss_sudo)
+
+---
+Wed Aug 12 06:29:33 UTC 2015 - dims...@opensuse.org
+
+- Pass --enable-tmpfiles.d=%{_tmpfilesdir} to configure: let's be
+  specific about this feature, and not randomly rely on the
+  presence/absence of /usr/lib/tmpfiles.d/systemd.conf.
+- Add systemd-rpm-macros BuildRequires to ensure %_tmpfilesdir is
+  defined.
+- Add relevant %tmpfiles_create call to post scriptlet.
+
+---



Other differences:
--
++ sudo.spec ++
--- /var/tmp/diff_new_pack.6dt1s5/_old  2015-08-17 15:34:53.0 +0200
+++ /var/tmp/diff_new_pack.6dt1s5/_new  2015-08-17 15:34:53.0 +0200
@@ -34,9 +34,9 @@
 BuildRequires:  audit-devel
 BuildRequires:  groff
 BuildRequires:  libselinux-devel
-BuildRequires:  libsss_sudo
 BuildRequires:  openldap2-devel
 BuildRequires:  pam-devel
+BuildRequires:  systemd-rpm-macros
 BuildRequires:  zlib-devel
 Requires(pre):  coreutils
 Requires(pre):  permissions
@@ -84,6 +84,7 @@
 --libexecdir=%{_libexecdir}/sudo \
 --docdir=%{_docdir}/%{name} \
 --with-noexec=%{_libexecdir}/sudo/sudo_noexec.so \
+--enable-tmpfiles.d=%{_tmpfilesdir} \
 --with-pam \
 --with-ldap \
 --with-selinux \
@@ -135,6 +136,7 @@
 %else
 %set_permissions /usr/bin/sudo
 %endif
+%tmpfiles_create %{_tmpfilesdir}/sudo.conf
 
 %verifyscript
 %verify_permissions -e /usr/bin/sudo
@@ -169,6 +171,8 @@
 %{_libexecdir}/%{name}/system_group.so
 %{_libexecdir}/%{name}/libsudo_util.so.*
 %attr(0700,root,root) %dir %ghost %{_localstatedir}/lib/%{name}
+%{_tmpfilesdir}/sudo.conf
+%ghost %{_localstatedir}/lib/sudo/ts
 
 %files devel
 %defattr(-,root,root)




commit python-Pillow for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package python-Pillow for openSUSE:Factory 
checked in at 2015-08-17 15:34:57

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


Package is python-Pillow

Changes:

--- /work/SRC/openSUSE:Factory/python-Pillow/python-Pillow.changes  
2015-06-23 11:59:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Pillow.new/python-Pillow.changes 
2015-08-17 15:34:58.0 +0200
@@ -1,0 +2,45 @@
+Wed Jul 29 07:19:04 UTC 2015 - jacobwin...@gmail.com
+
+- Update to 2.9.0:
+  * Added test for GimpPaletteFile #1324
+  * Fixed ValueError in Python 2.6 #1315 #1316
+  * Fixed tox test script path #1308
+  * Added width and height properties #1304
+  * Update tiff and tk tcl 8.5 versions #1303
+  * Add functions to convert: Image - QImage; Image - QPixmap #1217
+  * Remove duplicate code in gifmaker script #1294
+  * Multiline text in ImageDraw #1177
+  * Automated Windows CI/build support #1278
+  * Removed support for Tk versions earlier than 8.4 #1288
+  * Fixed polygon edge drawing #1255 (fixes #1252)
+  * Check prefix length in _accept methods #1267
+  * Register MIME type for BMP #1277
+  * Adjusted ImageQt use of unicode() for 2/3 compatibility #1218
+  * Identify XBM file created with filename including underscore #1230 (fixes 
#1229)
+  * Copy image when saving in GifImagePlugin #1231 (fixes #718)
+  * Removed support for FreeType 2.0 #1247
+  * Added background saving to GifImagePlugin #1273
+  * Provide n_frames attribute to multi-frame formats #1261
+  * Add duration and loop set to GifImagePlugin #1172, #1269
+  * Ico files are little endian #1232
+  * Upgrade olefile from 0.30 to 0.42b #1226
+  * Setting transparency value to 0 when the tRNS contains only null byte(s) 
#1239
+  * Separated out feature checking from selftest #1233
+  * Style/health fixes
+  * Update WebP from 0.4.1 to 0.4.3 #1235
+  * Release GIL during image load (decode) #1224
+  * Added icns save #1185
+  * Fix putdata memory leak #1196
+  * Keep user-specified ordering of icon sizes #1193
+  * Tiff: allow writing floating point tag values #1113
+- Update to 2.8.2:
+  * Bug fix: Fixed Tiff handling of bad EXIF data
+- Remove 0001-Ico-files-are-little-endian-ref-1204.patch: merged upstream
+- Remove fix-textsize-equal.patch: merged upstream
+
+---
+Mon Jul 27 08:55:33 UTC 2015 - seife+...@b1-systems.com
+
+- fix build and dependencies for RHEL/CentOS 7
+
+---

Old:

  0001-Ico-files-are-little-endian-ref-1204.patch
  Pillow-2.8.1.tar.gz
  fix-textsize-equal.patch

New:

  Pillow-2.9.0.tar.gz



Other differences:
--
++ python-Pillow.spec ++
--- /var/tmp/diff_new_pack.IdzjMI/_old  2015-08-17 15:34:59.0 +0200
+++ /var/tmp/diff_new_pack.IdzjMI/_new  2015-08-17 15:34:59.0 +0200
@@ -17,15 +17,13 @@
 
 
 Name:   python-Pillow
-Version:2.8.1
+Version:2.9.0
 Release:0
 Summary:Python Imaging Library (Fork)
 License:HPND
 Group:  Development/Languages/Python
 Url:http://python-imaging.github.io/
 Source: 
https://pypi.python.org/packages/source/P/Pillow/Pillow-%{version}.tar.gz
-Patch1: fix-textsize-equal.patch
-Patch2: 0001-Ico-files-are-little-endian-ref-1204.patch
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
 BuildRequires:  python-tk
@@ -37,8 +35,14 @@
 BuildRequires:  liblcms2-devel
 BuildRequires:  libwebp-devel
 %else
+%if 0%{?rhel}  6
+BuildRequires:  lcms2-devel
+BuildRequires:  libjpeg-turbo-devel
+BuildRequires:  libwebp-devel
+%else
 BuildRequires:  python-unittest2
 %endif
+%endif
 %if 0%{?suse_version}  1315
 BuildRequires:  openjpeg2-devel
 %endif
@@ -87,8 +91,6 @@
 
 %prep
 %setup -q -n Pillow-%{version}
-%patch1 -p1
-%patch2 -p1
 
 %build
 python setup.py build

++ Pillow-2.8.1.tar.gz - Pillow-2.9.0.tar.gz ++
/work/SRC/openSUSE:Factory/python-Pillow/Pillow-2.8.1.tar.gz 
/work/SRC/openSUSE:Factory/.python-Pillow.new/Pillow-2.9.0.tar.gz differ: char 
5, line 1




commit qactus for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package qactus for openSUSE:Factory checked 
in at 2015-08-17 15:35:26

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


Package is qactus

Changes:

--- /work/SRC/openSUSE:Factory/qactus/qactus.changes2015-06-23 
11:56:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.qactus.new/qactus.changes   2015-08-17 
15:35:28.0 +0200
@@ -1,0 +2,16 @@
+Sun Aug 16 19:19:01 UTC 2015 - jav...@opensuse.org
+
+-  Update to 0.7.0
+   * New feature: you can now add packages by dropping OBS package URLs
+   on the packages' tab
+   * New feature: proxy support
+   * New feature: self-signed certificate support
+   * New feature: using any OBS instance is now supported
+   * Networking improvements: async getBuildStatus() requests
+   * Code refactoring: OBS façade created, some code cleanup
+   * Error handling: it's more verbose about HTTP and SSL errors
+   * Fixed getting description from OBSRequest
+   * Fixed parsing empty tags (ie: description/)
+   * Minor improvements
+
+---

Old:

  qactus-0.6.0.tar.bz2

New:

  qactus-0.7.0.tar.bz2



Other differences:
--
++ qactus.spec ++
--- /var/tmp/diff_new_pack.oN3A6E/_old  2015-08-17 15:35:28.0 +0200
+++ /var/tmp/diff_new_pack.oN3A6E/_new  2015-08-17 15:35:28.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package qactus
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   qactus
-Version:0.6.0
+Version:0.7.0
 Release:0
 Summary:An OBS notifier application
 License:GPL-2.0 or GPL-3.0
@@ -25,12 +25,12 @@
 Url:http://www.javierllorente.com/
 Source: %{name}-%{version}.tar.bz2
 BuildRequires:  hicolor-icon-theme
+BuildRequires:  qtkeychain-qt5-devel
+BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(Qt5Core)
 BuildRequires:  pkgconfig(Qt5Gui)
-BuildRequires:  pkgconfig(Qt5Widgets)
 BuildRequires:  pkgconfig(Qt5Network)
-BuildRequires:  qtkeychain-qt5-devel
-BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(Qt5Widgets)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description

++ qactus-0.6.0.tar.bz2 - qactus-0.7.0.tar.bz2 ++
 3976 lines of diff (skipped)




commit python3-pandas for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package python3-pandas for openSUSE:Factory 
checked in at 2015-08-17 15:35:04

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


Package is python3-pandas

Changes:

--- /work/SRC/openSUSE:Factory/python3-pandas/python3-pandas.changes
2015-06-15 17:50:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-pandas.new/python3-pandas.changes   
2015-08-17 15:35:05.0 +0200
@@ -1,0 +2,11 @@
+Wed Jul 29 08:50:55 UTC 2015 - toddrme2...@gmail.com
+
+- xlwt and boto are now available for python 3.
+
+---
+Mon Jul 27 10:08:46 UTC 2015 - toddrme2...@gmail.com
+
+- Don't require HDF5 directly, the ambiguities should be and have
+  been fixed in the packages that require hdf5 directly, not here.
+
+---



Other differences:
--
++ python3-pandas.spec ++
--- /var/tmp/diff_new_pack.94RkFy/_old  2015-08-17 15:35:06.0 +0200
+++ /var/tmp/diff_new_pack.94RkFy/_new  2015-08-17 15:35:06.0 +0200
@@ -30,10 +30,7 @@
 BuildRequires:  python3-Cython
 BuildRequires:  python3-Sphinx
 BuildRequires:  python3-beautifulsoup4
-# Not yet available for python 3
-# BuildRequires:  python3-boto
-BuildRequires:  libhdf5-9
-BuildRequires:  libhdf5_hl9
+BuildRequires:  python3-boto
 BuildRequires:  python3-SQLAlchemy
 BuildRequires:  python3-dateutil
 BuildRequires:  python3-devel
@@ -48,10 +45,7 @@
 BuildRequires:  python3-setuptools
 BuildRequires:  python3-tables = 3.0.0
 BuildRequires:  python3-xlrd
-# Not yet available for python 3
-# BuildRequires:  python3-xlwt
-Requires:   libhdf5-9
-Requires:   libhdf5_hl9
+BuildRequires:  python3-xlwt
 Requires:   python3-dateutil
 Requires:   python3-numpy = 1.7.0
 Requires:   python3-pytz




commit python-boto for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package python-boto for openSUSE:Factory 
checked in at 2015-08-17 15:35:05

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


Package is python-boto

Changes:

--- /work/SRC/openSUSE:Factory/python-boto/python-boto.changes  2015-04-28 
20:48:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-boto.new/python-boto.changes 
2015-08-17 15:35:07.0 +0200
@@ -1,0 +2,12 @@
+Thu Aug 13 11:08:04 UTC 2015 - toddrme2...@gmail.com
+
+- Fix update-alternatives usage.
+
+---
+Wed Jul 29 09:08:15 UTC 2015 - toddrme2...@gmail.com
+
+- Implement update-alternatives to allow for python 3 version,
+  which is now supported upstream.
+- specfile cleanups
+
+---



Other differences:
--
++ python-boto.spec ++
--- /var/tmp/diff_new_pack.v4A1Fk/_old  2015-08-17 15:35:07.0 +0200
+++ /var/tmp/diff_new_pack.v4A1Fk/_new  2015-08-17 15:35:07.0 +0200
@@ -25,14 +25,18 @@
 Group:  Development/Languages/Python
 Source: 
https://pypi.python.org/packages/source/b/boto/boto-%{version}.tar.gz
 Source1:boto.cfg
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Requires:   python-paramiko
-Requires:   python-xml
 BuildRequires:  fdupes
-BuildRequires:  python-Sphinx
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
+BuildRequires:  python-paramiko
 BuildRequires:  python-xml
+# Documentation requirement
+BuildRequires:  python-Sphinx
+Requires:   python-paramiko
+Requires:   python-xml
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}  0%{?suse_version} = 1110
 %{!?python_sitelib: %global python_sitelib %(python -c from 
distutils.sysconfig import get_python_lib; print get_python_lib())}
 %else
@@ -123,26 +127,125 @@
 %fdupes %{buildroot}%{_prefix}
 mkdir %{buildroot}%{_sysconfdir}
 cp %{SOURCE1} %{buildroot}%{_sysconfdir}
+%fdupes docs/build/html/
 
-# install documentation
-mkdir -p %{buildroot}%{_docdir}/%{name}/html
-cp README.rst docs/BotoCheatSheet.pdf %{buildroot}%{_docdir}/%{name}
-cp -r docs/build/html/* %{buildroot}%{_docdir}/%{name}/html
-%fdupes %{buildroot}%{_docdir}/%{name}
+# Prepare for update-alternatives usage
+mkdir -p %{buildroot}%{_sysconfdir}/alternatives
+for p in asadmin bundle_image cfadmin cq cwutil dynamodb_dump dynamodb_load 
elbadmin fetch_file glacier instance_events kill_instance launch_instance 
list_instances lss3 mturk pyami_sendmail route53 s3put sdbadmin taskadmin ; do
+mv %{buildroot}%{_bindir}/$p %{buildroot}%{_bindir}/$p-%{py_ver}
+ln -s -f %{_sysconfdir}/alternatives/$p %{buildroot}%{_bindir}/$p
+# create a dummy target for /etc/alternatives/$p
+touch %{buildroot}%{_sysconfdir}/alternatives/$p
+done
+mv %{buildroot}%{_sysconfdir}/boto.cfg 
%{buildroot}%{_sysconfdir}/boto-%{py_ver}.cfg
+ln -s -f %{_sysconfdir}/alternatives/boto.cfg 
%{buildroot}%{_sysconfdir}/boto.cfg
+# create a dummy target for /etc/alternatives/boto.cfg
+touch %{buildroot}%{_sysconfdir}/alternatives/boto.cfg
+
+%post
+%_sbindir/update-alternatives \
+   --install %{_bindir}/asadmin asadmin %{_bindir}/asadmin-%{py_ver} 30 \
+   --slave %{_bindir}/bundle_image bundle_image 
%{_bindir}/bundle_image-%{py_ver} \
+   --slave %{_bindir}/cfadmin cfadmin %{_bindir}/cfadmin-%{py_ver} \
+   --slave %{_bindir}/cq cq %{_bindir}/cq-%{py_ver} \
+   --slave %{_bindir}/cwutil cwutil %{_bindir}/cwutil-%{py_ver} \
+   --slave %{_bindir}/dynamodb_dump dynamodb_dump 
%{_bindir}/dynamodb_dump-%{py_ver} \
+   --slave %{_bindir}/dynamodb_load dynamodb_load 
%{_bindir}/dynamodb_load-%{py_ver} \
+   --slave %{_bindir}/elbadmin elbadmin %{_bindir}/elbadmin-%{py_ver} \
+   --slave %{_bindir}/fetch_file fetch_file %{_bindir}/fetch_file-%{py_ver} \
+   --slave %{_bindir}/glacier glacier %{_bindir}/glacier-%{py_ver} \
+   --slave %{_bindir}/instance_events instance_events 
%{_bindir}/instance_events-%{py_ver} \
+   --slave %{_bindir}/kill_instance kill_instance 
%{_bindir}/kill_instance-%{py_ver} \
+   --slave %{_bindir}/launch_instance launch_instance 
%{_bindir}/launch_instance-%{py_ver} \
+   --slave %{_bindir}/list_instances list_instances 
%{_bindir}/list_instances-%{py_ver} \
+   --slave %{_bindir}/lss3 lss3 %{_bindir}/lss3-%{py_ver} \
+   --slave %{_bindir}/mturk mturk %{_bindir}/mturk-%{py_ver} \
+   --slave %{_bindir}/pyami_sendmail pyami_sendmail 
%{_bindir}/pyami_sendmail-%{py_ver} \
+   --slave %{_bindir}/route53 route53 %{_bindir}/route53-%{py_ver} \
+   

commit mysql-connector-cpp for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package mysql-connector-cpp for 
openSUSE:Factory checked in at 2015-08-17 15:33:27

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


Package is mysql-connector-cpp

Changes:

--- /work/SRC/openSUSE:Factory/mysql-connector-cpp/mysql-connector-cpp.changes  
2014-08-31 09:58:50.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.mysql-connector-cpp.new/mysql-connector-cpp.changes 
2015-08-17 15:33:28.0 +0200
@@ -1,0 +2,16 @@
+Wed Aug 12 14:11:08 UTC 2015 - tchva...@suse.com
+
+- Version bump to 1.1.6:
+  * See the news files on
+https://dev.mysql.com/doc/relnotes/connector-cpp/en/
+- Update soname to libmyslqcppcon7
+- Remove needlessly long description
+- Drop unneeded/merged patches:
+  mysql-connector-cpp-1.1.0-cmake-paths-fix.patch
+  mysql-connector-cpp-1.1.0-gcc44.patch
+- Refresh patch:
+  mysql-connector-cpp-1.1.0-disable_tests_and_examples.patch
+- Add patch to build with mariadb:
+  mariadb_api.patch
+
+---

Old:

  mysql-connector-c++-1.1.2.tar.bz2
  mysql-connector-cpp-1.1.0-cmake-paths-fix.patch
  mysql-connector-cpp-1.1.0-gcc44.patch

New:

  mariadb_api.patch
  mysql-connector-c++-1.1.6.tar.gz



Other differences:
--
++ mysql-connector-cpp.spec ++
--- /var/tmp/diff_new_pack.1n6XYW/_old  2015-08-17 15:33:28.0 +0200
+++ /var/tmp/diff_new_pack.1n6XYW/_new  2015-08-17 15:33:28.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mysql-connector-cpp
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,20 +16,17 @@
 #
 
 
+%define libname libmysqlcppconn7
 Name:   mysql-connector-cpp
-Version:1.1.2
+Version:1.1.6
 Release:0
 Summary:MySQL Connector/C++: Standardized database driver for C++ 
development
 License:SUSE-GPL-2.0-with-FLOSS-exception
 Group:  Development/Libraries/C and C++
 Url:http://dev.mysql.com/downloads/connector/
-#   
http://dev.mysql.com/get/Downloads/Connector-C++/mysql-connector-c++-%%{version}.tar.gz
-Source: mysql-connector-c++-%{version}.tar.bz2
-# PATCH-SUSE-INTEGRATION - 
mysql-connector-cpp-1.0.4-beta-cmake-paths-fix.patch [] mhruse...@suse.cz -- 
adjust some default paths
-Patch0: mysql-connector-cpp-1.1.0-cmake-paths-fix.patch
-# PATCH-UPSTREAM-FIX - mysql-connector-cpp-1.0.4-beta-gcc44.patch [ 
upstream#44931 ] mhruse...@suse.cz -- adding missing includes
-# http://bugs.mysql.com/44931
-Patch1: mysql-connector-cpp-1.1.0-gcc44.patch
+Source: 
http://dev.mysql.com/get/Downloads/Connector-C++/mysql-connector-c++-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM: work with mariadb versions properly too
+Patch0: mariadb_api.patch
 # PATCH-FEATURE-OPENSUSE - 
mysql-connector-cpp-1.1.0-disable_tests_and_examples.patch a...@mizerski.pl -- 
disable building tests and examples
 Patch2: mysql-connector-cpp-1.1.0-disable_tests_and_examples.patch
 BuildRequires:  boost-devel = 1.34.0
@@ -49,19 +46,10 @@
 full functionality is not available when connecting to MySQL 5.0. You cannot
 connect to MySQL 4.1 or earlier.
 
-Using MySQL Connector/C++ instead of the MySQL C API (MySQL Client Library)
-offers the following advantages for C++ users:
-
-* Convenience of pure C++ - no C function calls
-* Support of a well designed API - JDBC 4.0
-* Support of a commonly known and well documented API - JDBC 4.0
-* Support of the object oriented programming paradigma
-* Shorter development times
-
 %package -n libmysqlcppconn-devel
 Summary:Development files for MySQL Connector/C++
 Group:  Development/Libraries/C and C++
-Requires:   libmysqlcppconn6 = %{version}
+Requires:   %{libname} = %{version}
 Obsoletes:  mysql-connector-c++-devel  %{version}
 Provides:   mysql-connector-c++-devel = %{version}
 
@@ -74,20 +62,11 @@
 full functionality is not available when connecting to MySQL 5.0. You cannot
 connect to MySQL 4.1 or earlier.
 
-Using MySQL Connector/C++ instead of the MySQL C API (MySQL Client Library)
-offers the following advantages for C++ users:
-
-* Convenience of pure C++ - no C function calls
-* Support of a well designed API - JDBC 4.0
-* Support of a commonly known and well documented API - JDBC 4.0
-* Support of the object oriented programming paradigma
-* Shorter development times
-

commit cdrtools for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package cdrtools for openSUSE:Factory 
checked in at 2015-08-17 15:33:08

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


Package is cdrtools

Changes:

--- /work/SRC/openSUSE:Factory/cdrtools/cdrtools.changes2015-07-16 
17:15:14.0 +0200
+++ /work/SRC/openSUSE:Factory/.cdrtools.new/cdrtools.changes   2015-08-17 
15:33:09.0 +0200
@@ -1,0 +2,7 @@
+Wed Aug  5 07:49:48 UTC 2015 - jeng...@inai.de
+
+- Update to new upstream release 3.01~a31
+* Added compile support for Win-10 using non-automake-aware make
+  implementations. Add some workarounds for MinGW32 compilation.
+
+---
schily-libs.changes: same change

Old:

  cdrtools-3.01a30.tar.bz2

New:

  cdrtools-3.01a31.tar.bz2



Other differences:
--
++ cdrtools.spec ++
--- /var/tmp/diff_new_pack.EmcX4c/_old  2015-08-17 15:33:10.0 +0200
+++ /var/tmp/diff_new_pack.EmcX4c/_new  2015-08-17 15:33:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   cdrtools
-Version:3.01~a30
+Version:3.01~a31
 Release:0
 # Upstream confirms that 3.01aNN is intended to sort before 3.01
 %define sversion 3.01
@@ -26,7 +26,7 @@
 Group:  Productivity/Multimedia/CD/Record
 Url:http://cdrtools.sourceforge.net/private/cdrecord.html
 
-Source: http://downloads.sf.net/cdrtools/cdrtools-3.01a30.tar.bz2
+Source: http://downloads.sf.net/cdrtools/cdrtools-3.01a31.tar.bz2
 Source1:cdrecord.easy
 Source2:cdrecord.secure
 Source3:cdrecord.paranoid

++ schily-libs.spec ++
--- /var/tmp/diff_new_pack.EmcX4c/_old  2015-08-17 15:33:10.0 +0200
+++ /var/tmp/diff_new_pack.EmcX4c/_new  2015-08-17 15:33:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   schily-libs
-Version:3.01~a30
+Version:3.01~a31
 Release:0
 %define sversion 3.01
 Summary:A collection of libraries to support cdrtools
@@ -25,7 +25,7 @@
 Group:  Development/Libraries/C and C++
 Url:http://cdrtools.sourceforge.net/private/cdrecord.html
 
-Source: http://downloads.sf.net/cdrtools/cdrtools-3.01a30.tar.bz2
+Source: http://downloads.sf.net/cdrtools/cdrtools-3.01a31.tar.bz2
 Source7:pre_checkin.sh
 Patch1: gcc48wa.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ cdrtools-3.01a30.tar.bz2 - cdrtools-3.01a31.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/cdrtools-3.01/AN-3.01 new/cdrtools-3.01/AN-3.01
--- old/cdrtools-3.01/AN-3.01   2015-06-04 19:20:58.0 +0200
+++ new/cdrtools-3.01/AN-3.01   2015-08-04 12:16:27.0 +0200
@@ -896,7 +896,97 @@
 -  TEMPLATES/MKLINKS now creates a dummy link to allow it to recognise
whether the links already exist.
 
+-  include/schily/sysexits.h adopts to the recent changes on Haiku that
+   prevent usual autoconf tests as #include sysexits.h works but symbols
+   are only defined with #define _BSD_SOURCE
 
+-  include/schily/wait.h now knows about the Haiku specific macro
+   WIFCORED() and #defines WCOREDUMP() to WIFCORED().
+
+-  Support for x86_64-haiku-cc.rul and x86_64-haiku-gcc.rul was added
+   to the makefile system.
+
+-  The file RULES/r-gmake.dep was modified to make sure that the 
+   dependency files (*.d) depend from the include files as well.
+   Previous versions included xxx.d instead of $(ARCHDIR)/xxx.d
+
+-  Makefile system: two new targets have been added:
+
+   man creates localized versions of the man pages in the
+   OBJ directory
+
+   installman  installs only the manual pages
+
+-  include/schily/signal.h now includes siginfo.h to make sure it
+   compiles even on very old Solaris versions where signal.h did not
+   yet include siginfo.h.
+
+-  include/schily/wait.h add a missing closing bracket for Haiku
+
+-  include/schily/wait.h added CLD_* macros and the enum idtype_t in case
+   they are missing. This allows to implement a waitid() emulation.
+
+-  include/schily/wait.h now includes schily/signal.h in case that
+   the local /usrinclude/sys/wait.h is non-POSIX and does not
+   define siginfo_t. This is e.g. the case on FreeBSD.
+
+-  The configure tests now include test that correctly identify Mac OS X as
+   non-POSIX with respect to waitid(). This prevents potential users of
+   waitid() from the unusable implementation on Mac OS X.
+
+   The rule for accepting an existing waitid() is the 

commit sssd for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package sssd for openSUSE:Factory checked in 
at 2015-08-17 15:33:33

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


Package is sssd

Changes:

--- /work/SRC/openSUSE:Factory/sssd/sssd.changes2015-07-14 
17:20:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.sssd.new/sssd.changes   2015-08-17 
15:33:34.0 +0200
@@ -1,0 +2,12 @@
+Wed Aug 12 18:20:25 UTC 2015 - jeng...@inai.de
+
+- Kill unused libsss_sudo-devel solvable.
+
+---
+Tue Aug 11 07:41:07 UTC 2015 - h...@suse.com
+
+- Obsolete/provide libsss_sudo in sssd main package.
+  Sudo capability is an integral feature in SSSD and the library
+  is not supposed to be used separately.
+
+---



Other differences:
--
++ sssd.spec ++
--- /var/tmp/diff_new_pack.ZSsOfN/_old  2015-08-17 15:33:35.0 +0200
+++ /var/tmp/diff_new_pack.ZSsOfN/_new  2015-08-17 15:33:35.0 +0200
@@ -79,7 +79,9 @@
 %{?systemd_requires}
 Requires:   sssd-ldap = %version-%release
 Requires(postun): pam-config
+Provides:   libsss_sudo = %version-%release
 Provides:   sssd-client = %version-%release
+Obsoletes:  libsss_sudo  %version-%release
 
 %description
 Provides a set of daemons to manage access to remote directories and
@@ -283,8 +285,6 @@
 Summary:A library to allow communication between sudo and SSSD
 License:LGPL-3.0+
 Group:  System/Libraries
-Provides:   libsss_sudo-devel = %version-%release
-Obsoletes:  libsss_sudo-devel  %version-%release
 Supplements:packageand(sudo:sssd-client)
 
 %description -n libsss_sudo
@@ -442,6 +442,7 @@
 %_libdir/%name/libsss_util*
 %dir %_libdir/%name/modules/
 %_libdir/%name/modules/libsss_autofs.so
+%_libdir/libsss_sudo.so
 %dir %_libdir/ldb/
 %_libdir/ldb/memberof.so
 %dir %_libexecdir/%name/
@@ -629,10 +630,6 @@
 %_libdir/libsss_simpleifp.so
 %_libdir/pkgconfig/sss_simpleifp.pc
 
-%files -n libsss_sudo
-%defattr(-,root,root)
-%_libdir/libsss_sudo.so
-
 %files -n python-ipa_hbac
 %defattr(-,root,root)
 %dir %python_sitearch





commit bash-completion for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package bash-completion for openSUSE:Factory 
checked in at 2015-08-17 15:33:48

Comparing /work/SRC/openSUSE:Factory/bash-completion (Old)
 and  /work/SRC/openSUSE:Factory/.bash-completion.new (New)


Package is bash-completion

Changes:

--- /work/SRC/openSUSE:Factory/bash-completion/bash-completion.changes  
2015-07-05 17:57:26.0 +0200
+++ /work/SRC/openSUSE:Factory/.bash-completion.new/bash-completion.changes 
2015-08-17 15:33:50.0 +0200
@@ -1,0 +2,11 @@
+Thu Aug 13 06:53:15 UTC 2015 - wer...@suse.de
+
+- Add patch backtick-completion-boo940835.patch to allow correct
+  backtick completion (boo#940835) 
+
+---
+Wed Aug 12 13:17:40 UTC 2015 - wer...@suse.de
+
+- Correct typo in patch ls-completion-boo889319.patch 
+
+---

New:

  backtick-completion-boo940835.patch



Other differences:
--
++ bash-completion.spec ++
--- /var/tmp/diff_new_pack.wNUs0N/_old  2015-08-17 15:33:51.0 +0200
+++ /var/tmp/diff_new_pack.wNUs0N/_new  2015-08-17 15:33:51.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bash-completion
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -37,6 +37,8 @@
 Patch4: init-completion-boo922758.patch
 # PATCH-FIX-SUSE boo#889319
 Patch5: ls-completion-boo889319.patch
+# PATCH-FIX-SUSE boo#940835
+Patch6: backtick-completion-boo940835.patch
 BuildRequires:  pkg-config
 Requires:   bash
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -54,6 +56,7 @@
 %patch3 -b .p3
 %patch4 -b .p4
 %patch5 -b .p5
+%patch6 -b .p6
 
 %build
 %configure

++ backtick-completion-boo940835.patch ++
---
 bash_completion |   15 ++-
 1 file changed, 10 insertions(+), 5 deletions(-)

--- bash_completion
+++ bash_completion 2015-08-13 06:50:46.873519910 +
@@ -945,16 +945,21 @@ _tilde()
 _dollar()
 {
 local s=
-local -i glob=0
-
+local -i glob=0 cmd=0
 shopt -q extglob  let glob++
 ((glob == 0))  shopt -s extglob
 
 [[ $COMP_LINE == cd* ]]  s=/
 
 case $1 in
-\$\(*|\`*)
-COMPREPLY=($(compgen -c -P '$(' -S )$s -- ${1#??})) ;;
+\$\(*)
+COMPREPLY=($(compgen -c -P '$(' -S )$s -- ${1#??}))
+let cmd++
+;;
+\`*)
+COMPREPLY=($(compgen -c -P '\`' -S \`$s -- ${1#?}))
+let cmd++
+;;
 \$\{*)
 COMPREPLY=($(compgen -v -P '${' -S }$s -- ${1#??})) ;;
 \$*)
@@ -966,7 +971,7 @@ _dollar()
 
 if ((${#COMPREPLY[@]}  0)) ; then
 ((${#COMPREPLY[@]} == 1))  eval COMPREPLY=\(${COMPREPLY[@]}\)
-else
+elif ((cmd == 0)); then
 eval COMPREPLY=\(${1}\)
 fi
 
++ ls-completion-boo889319.patch ++
--- /var/tmp/diff_new_pack.wNUs0N/_old  2015-08-17 15:33:51.0 +0200
+++ /var/tmp/diff_new_pack.wNUs0N/_new  2015-08-17 15:33:51.0 +0200
@@ -9,7 +9,7 @@
  }
  # makeinfo and texi2dvi are defined elsewhere.
 -complete -F _longopt -o filenames a2ps awk base64 bash bc bison cat colordiff 
cp csplit \
-+complete -F _longopt filenames a2ps awk base64 bash bc bison cat colordiff cp 
csplit \
++complete -F _longopt -o filenames a2ps awk base64 bash bc bison cat colordiff 
cp csplit \
  cut date df diff dir du enscript expand fmt fold gperf \
 -grep grub head indent irb ld ldd less ln ls m4 md5sum mkdir mkfifo mknod \
 +grep grub head indent irb ld ldd less ln m4 md5sum mkdir mkfifo mknod \




commit Mesa for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2015-08-17 15:33:01

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


Package is Mesa

Changes:

--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes2015-08-10 
09:12:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes   2015-08-17 
15:33:02.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 12 09:38:10 UTC 2015 - sndir...@suse.com
+
+- update to 10.6.4
+  * In this release we have a few GL specific fixes (in both dri
+drivers and the EGL loader), an updated mesa.icd file and a
+crashfix for the standalone glcpp tool.
+
+---

Old:

  mesa-10.6.3.tar.xz

New:

  mesa-10.6.4.tar.xz



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.anMsrj/_old  2015-08-17 15:33:04.0 +0200
+++ /var/tmp/diff_new_pack.anMsrj/_new  2015-08-17 15:33:04.0 +0200
@@ -18,7 +18,7 @@
 
 %define glamor 1
 %define _name_archive mesa
-%define _version 10.6.3
+%define _version 10.6.4
 %ifarch %ix86 x86_64 %arm ppc ppc64 ppc64le s390x
 %define gallium_loader 1
 %else
@@ -37,7 +37,7 @@
 %define with_nine 1
 %endif
 Name:   Mesa
-Version:10.6.3
+Version:10.6.4
 Release:0
 Summary:System for rendering interactive 3-D graphics
 License:MIT

++ mesa-10.6.3.tar.xz - mesa-10.6.4.tar.xz ++
/work/SRC/openSUSE:Factory/Mesa/mesa-10.6.3.tar.xz 
/work/SRC/openSUSE:Factory/.Mesa.new/mesa-10.6.4.tar.xz differ: char 26, line 1




commit e2fsprogs for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package e2fsprogs for openSUSE:Factory 
checked in at 2015-08-17 15:33:18

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


Package is e2fsprogs

Changes:

--- /work/SRC/openSUSE:Factory/e2fsprogs/e2fsprogs.changes  2015-07-05 
17:57:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.e2fsprogs.new/e2fsprogs.changes 2015-08-17 
15:33:20.0 +0200
@@ -1,0 +2,10 @@
+Fri Aug  7 00:00:00 CEST 2015 - dste...@suse.com
+
+- spec: add static library dependencies
+
+---
+Mon Jul 27 00:00:00 CEST 2015 - dste...@suse.com
+
+- enable static build and package static libraries
+
+---



Other differences:
--
++ e2fsprogs.spec ++
--- /var/tmp/diff_new_pack.YJG7AM/_old  2015-08-17 15:33:21.0 +0200
+++ /var/tmp/diff_new_pack.YJG7AM/_new  2015-08-17 15:33:21.0 +0200
@@ -137,6 +137,19 @@
 %endif
 Development files for libext2fs.
 
+%if ! %{build_mini}
+%package -n libext2fs-devel-static
+Summary:Development files for libext2fs
+License:LGPL-2.0
+Group:  Development/Libraries/C and C++
+Requires:   libext2fs-devel = %{version}
+Provides:   libext2fs-devel:%{_libdir}/libe2p.a
+Provides:   libext2fs-devel:%{_libdir}/libext2fs.a
+
+%description -n libext2fs-devel-static
+Development files for libext2fs. Static libraries.
+%endif
+
 %if %{build_mini}
 %package -n libcom_err2-mini
 %else
@@ -184,6 +197,24 @@
 %endif
 Development files for the com_err error message display library.
 
+%if ! %{build_mini}
+%package -n libcom_err-devel-static
+Summary:Development files for libcom_err, static libraries
+License:MIT
+Group:  Development/Libraries/C and C++
+Requires:   libcom_err-devel = %{version}
+Provides:   libcom_err-devel:%{_libdir}/libcom_err.a
+Provides:   libcom_err-devel:%{_libdir}/libss.a
+# bug437293
+%ifarch ppc64
+Obsoletes:  libcom_err-devel-64bit
+%endif
+#
+
+%description -n libcom_err-devel-static
+Development files for the com_err error message display library. Static 
libraries.
+%endif
+
 %prep
 %setup -q -n e2fsprogs-%{version}
 # e2fsprogs patches
@@ -203,6 +234,7 @@
   --disable-libuuid \
   --disable-uuidd \
   --disable-fsck \
+  --enable-static \
   CFLAGS=$RPM_OPT_FLAGS
 %if %{build_mini}
 rm -rf doc
@@ -222,12 +254,6 @@
 rm -f $RPM_BUILD_ROOT/usr/share/man/man8/mkfs.ext4dev.8*
 rm -f $RPM_BUILD_ROOT/usr/share/man/man8/fsck.ext4dev.8*
 
-# Need libext2fs.a for silo
-find %buildroot/%_libdir -type f -name *.a \
-%ifarch %sparc
-   ! -name libext2fs.a \
-%endif
-   -print -delete
 #UsrMerge
 mkdir %{buildroot}/sbin
 ln -s %{_sbindir}/badblocks %{buildroot}/sbin/badblocks
@@ -371,9 +397,6 @@
 %endif
 %defattr(-, root, root)
 %{_libdir}/libext2fs.so
-%ifarch %sparc
-%{_libdir}/libext2fs.a
-%endif
 %{_libdir}/libe2p.so
 /usr/include/ext2fs
 /usr/include/e2p
@@ -414,4 +437,16 @@
 %{_mandir}/man1/mk_cmds.1.gz
 %{_mandir}/man3/com_err.3.gz
 
+%if ! %{build_mini}
+%files -n libcom_err-devel-static
+%defattr(-, root, root)
+%{_libdir}/libcom_err.a
+%{_libdir}/libss.a
+
+%files -n libext2fs-devel-static
+%defattr(-, root, root)
+%{_libdir}/libext2fs.a
+%{_libdir}/libe2p.a
+%endif
+
 %changelog




commit python-Twisted for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package python-Twisted for openSUSE:Factory 
checked in at 2015-08-17 15:34:20

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


Package is python-Twisted

Changes:

--- /work/SRC/openSUSE:Factory/python-Twisted/python-Twisted.changes
2015-06-08 08:28:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Twisted.new/python-Twisted.changes   
2015-08-17 15:34:22.0 +0200
@@ -1,0 +2,5 @@
+Tue Aug 11 08:52:37 UTC 2015 - seife+...@b1-systems.com
+
+- change dep from python-asn1 to python-pyasn1 (renamed long ago)
+
+---



Other differences:
--
++ python-Twisted.spec ++
--- /var/tmp/diff_new_pack.3r4nbb/_old  2015-08-17 15:34:23.0 +0200
+++ /var/tmp/diff_new_pack.3r4nbb/_new  2015-08-17 15:34:23.0 +0200
@@ -32,10 +32,10 @@
 BuildRequires:  python-pyOpenSSL
 BuildRequires:  python-pyserial
 BuildRequires:  python-zope.interface
-Requires:   python-pycrypto
-Requires:   python-asn1
 Requires:   python-pam
 Requires:   python-pyOpenSSL
+Requires:   python-pyasn1
+Requires:   python-pycrypto
 Requires:   python-pyserial
 Requires:   python-zope.interface
 Provides:   python-twisted = %{version}




commit cluster-glue for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package cluster-glue for openSUSE:Factory 
checked in at 2015-08-17 17:25:38

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


Package is cluster-glue

Changes:

--- /work/SRC/openSUSE:Factory/cluster-glue/cluster-glue.changes
2015-05-20 23:23:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.cluster-glue.new/cluster-glue.changes   
2015-08-17 17:25:39.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 14 11:34:28 UTC 2015 - kgronl...@suse.com
+
+- high: hb_report: Prefer pacemaker.log if it exists (bsc#941681)
+- Add 0002-high-hb_report-Prefer-pacemaker.log-if-it-exists-bsc.patch 
+
+---

New:

  0002-high-hb_report-Prefer-pacemaker.log-if-it-exists-bsc.patch



Other differences:
--
++ cluster-glue.spec ++
--- /var/tmp/diff_new_pack.2eMiQX/_old  2015-08-17 17:25:40.0 +0200
+++ /var/tmp/diff_new_pack.2eMiQX/_new  2015-08-17 17:25:40.0 +0200
@@ -54,6 +54,8 @@
 Patch5: 0001-high-hb_report-Collect-logs-from-journald-boo-900654.patch
 # PATCH-FIX-OPENSUSE: fix build with GCC 5
 Patch6: cluster-glue-gcc5.patch
+# PATCH-FIX-OPENSUSE: high: hb_report: Prefer pacemaker.log if it exists 
(bsc#941681)
+Patch7: 0002-high-hb_report-Prefer-pacemaker.log-if-it-exists-bsc.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  OpenIPMI-devel
 BuildRequires:  asciidoc
@@ -162,6 +164,7 @@
 %patch4 -p1
 %patch5 -p1
 %patch6 -p1
+%patch7 -p1
 ###
 
 %build

++ 0002-high-hb_report-Prefer-pacemaker.log-if-it-exists-bsc.patch ++
From 35faa72ad8a5269fe60960574bcea114b57c9a78 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= k...@koru.se
Date: Fri, 14 Aug 2015 13:33:20 +0200
Subject: [PATCH 2/2] high: hb_report: Prefer pacemaker.log if it exists
 (bsc#941681)

---
 hb_report/hb_report.in | 34 +++---
 hb_report/utillib.sh   | 24 +---
 2 files changed, 36 insertions(+), 22 deletions(-)

diff --git a/hb_report/hb_report.in b/hb_report/hb_report.in
index df94f39..6c7b074 100755
--- a/hb_report/hb_report.in
+++ b/hb_report/hb_report.in
@@ -164,7 +164,8 @@ setvarsanddefaults() {
# logs to collect in addition
# NB: they all have to be in syslog format
#
-   EXTRA_LOGS=/var/log/messages
+   EXTRA_LOGS=/var/log/messages /var/log/pacemaker.log
+   PCMK_LOG=/var/log/pacemaker.log
# used only by the master
NO_SSH=
SSH_USER=
@@ -308,19 +309,29 @@ logmark() {
 #
 findlog() {
local logf=
-   collect_journal $FROM_TIME $TO_TIME $WORKDIR/$JOURNAL_F
+   if [ -f $PCMK_LOG ]; then
+   echo $PCMK_LOG
+   return
+   fi
+
if [ $HA_LOGFACILITY ]; then
logf=`findmsg $UNIQUE_MSG | awk '{print $1}'`
fi
if [ -f $logf ]; then
echo $logf
-   elif [ -f $WORKDIR/$JOURNAL_F ]; then
+   return
+   fi
+
+
+   collect_journal $FROM_TIME $TO_TIME $WORKDIR/$JOURNAL_F
+   if [ -f $WORKDIR/$JOURNAL_F ]; then
echo $WORKDIR/$JOURNAL_F
-   else
-   echo ${HA_DEBUGFILE:-$HA_LOGFILE}
-   [ ${HA_DEBUGFILE:-$HA_LOGFILE} ] 
-   debug will try with ${HA_DEBUGFILE:-$HA_LOGFILE}
+   return
fi
+
+   echo ${HA_DEBUGFILE:-$HA_LOGFILE}
+   [ ${HA_DEBUGFILE:-$HA_LOGFILE} ] 
+   debug will try with ${HA_DEBUGFILE:-$HA_LOGFILE}
 }
 
 #
@@ -537,12 +548,12 @@ USER_NODES=$USER_NODES
 NODES=$NODES
 MASTER_NODE=$MASTER_NODE
 HA_LOG=$HA_LOG
-MASTER_IS_HOSTLOG=$MASTER_IS_HOSTLOG
 UNIQUE_MSG=$UNIQUE_MSG
 SANITIZE=$SANITIZE
 DO_SANITIZE=$DO_SANITIZE
 SKIP_LVL=$SKIP_LVL
 EXTRA_LOGS=$EXTRA_LOGS
+PCMK_LOG=$PCMK_LOG
 USER_CLUSTER_TYPE=$USER_CLUSTER_TYPE
 CONF=$CONF
 B_CONF=$B_CONF
@@ -1055,7 +1066,6 @@ pickcompress() {
 }
 # get the right part of the log
 getlog() {
-   local cnt
local outf
outf=$WORKDIR/$HALOG_F
 
@@ -1068,8 +1078,6 @@ getlog() {
fi
if [ $HA_LOG =  ]; then
HA_LOG=`findlog`
-   [ $HA_LOG ] 
-   cnt=`fgrep -c $UNIQUE_MSG  $HA_LOG`
fi
if [ $HA_LOG =  -o ! -f $HA_LOG ]; then
if [ $CTS ]; then
@@ -1079,10 +1087,6 @@ getlog() {
fi
return
fi
-   if [ $cnt ]  [ $cnt -gt 1 -a $cnt -eq $NODECNT ]; then
-   MASTER_IS_HOSTLOG=1
-   info found the central log!
-   fi
 
if [ $NO_str2time ]; then
 

commit libgxps for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package libgxps for openSUSE:Factory checked 
in at 2015-08-17 17:26:19

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


Package is libgxps

Changes:

--- /work/SRC/openSUSE:Factory/libgxps/libgxps.changes  2013-03-20 
11:43:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.libgxps.new/libgxps.changes 2015-08-17 
17:26:20.0 +0200
@@ -1,0 +2,33 @@
+Sat Aug 15 15:10:35 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.2.3.1:
+  + This is a follow up release to fix the build in some cases due
+to libpng undefined symbols.
+
+---
+Thu Aug 13 19:15:22 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.2.3:
+  + API changes: Add API to get Core Properties of a XPS file.
+  + New features:
+- Support ImageBrush Viewbox and rotation/shearing matrices
+  (bgo#751357).
+- Add support for JPEG images with GRAYSCALE color space
+  (bgo#744120).
+- Add support for interleaved zip archives.
+  + Bugs fixed:
+- Fix transformation for VisualBrush elements (bgo#742630).
+- Fix parsing of dash array with negative values (bgo#715023).
+- Make gxps_dash_array_parse fail for an odd number of dashes
+  (bgo#715023).
+- Fix parsing of dash array when it has trailing or leading
+  whitespaces (bgo#715023).
+- Fix the build with libpng16.
+- Fix parsing of real numbers containing e[+-]number.
+- Fix a crash in documents containing nested FixedDocument
+  (bgo#685741).
+- Drop obsolete xz BuildRequires: We now support xz tarballs by
+  default.
+- Drop libgxps-libpng16.patch: Fixed upstream.
+
+---

Old:

  libgxps-0.2.2.tar.xz
  libgxps-libpng16.patch

New:

  libgxps-0.2.3.1.tar.xz



Other differences:
--
++ libgxps.spec ++
--- /var/tmp/diff_new_pack.mTWvVn/_old  2015-08-17 17:26:20.0 +0200
+++ /var/tmp/diff_new_pack.mTWvVn/_new  2015-08-17 17:26:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libgxps
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,20 +17,16 @@
 
 
 Name:   libgxps
-Version:0.2.2
+Version:0.2.3.1
 Release:0
 Summary:Library for rendering XPS documents
 License:LGPL-2.1+
 Group:  System/Libraries
 Url:https://live.gnome.org/libgxps
 Source0:
http://download.gnome.org/sources/libgxps/0.2/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM libgxps-libpng16.patch pgaj...@suse.com -- Also build 
against libpng16, patch from upstream git.
-Patch0: libgxps-libpng16.patch
 BuildRequires:  gobject-introspection-devel
 BuildRequires:  libjpeg-devel
 BuildRequires:  libtiff-devel
-# Only needed because we don't (and won't) support building xz tarballs by 
default... See bnc#697467
-BuildRequires:  xz
 BuildRequires:  pkgconfig(cairo) = 1.10.0
 BuildRequires:  pkgconfig(cairo-pdf)
 BuildRequires:  pkgconfig(cairo-ps)
@@ -86,7 +82,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 %configure --disable-static

++ libgxps-0.2.2.tar.xz - libgxps-0.2.3.1.tar.xz ++
 23085 lines of diff (skipped)




commit libdrm for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package libdrm for openSUSE:Factory checked 
in at 2015-08-17 17:26:13

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


Package is libdrm

Changes:

--- /work/SRC/openSUSE:Factory/libdrm/libdrm.changes2015-08-10 
09:10:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.libdrm.new/libdrm.changes   2015-08-17 
17:26:14.0 +0200
@@ -1,0 +2,11 @@
+Fri Aug 14 18:51:06 UTC 2015 - mimi...@gmail.com
+
+- update baselibs.conf for AMDGPU 
+
+---
+Fri Aug 14 13:25:00 UTC 2015 - mimi...@gmail.com
+
+- update to version 2.4.6.3
+ * This release adds AMDGPU driver, adds new AMD OLAND PCIids
+
+---

Old:

  libdrm-2.4.62.tar.bz2

New:

  libdrm-2.4.63.tar.bz2



Other differences:
--
++ libdrm.spec ++
--- /var/tmp/diff_new_pack.6Yq0sA/_old  2015-08-17 17:26:15.0 +0200
+++ /var/tmp/diff_new_pack.6Yq0sA/_new  2015-08-17 17:26:15.0 +0200
@@ -18,7 +18,7 @@
 
 Name:   libdrm
 Url:http://dri.freedesktop.org/
-Version:2.4.62
+Version:2.4.63
 Release:0
 Provides:   libdrm23 = %{version}
 Obsoletes:  libdrm23  %{version}
@@ -132,6 +132,13 @@
 %description -n libdrm_radeon1
 (Upstream has not provided a description)
 
+%package -n libdrm_amdgpu1
+Summary:Userspace interface for Kernel DRM services for AMD Radeon 
chips
+Group:  System/Libraries
+
+%description -n libdrm_amdgpu1
+(Upstream has not provided a description)
+
 %package -n libkms-devel
 Summary:Development files for the KMS MM abstraction library
 Group:  Development/Libraries/C and C++
@@ -222,6 +229,10 @@
 
 %postun -n libdrm_radeon1 -p /sbin/ldconfig
 
+%post   -n libdrm_amdgpu1 -p /sbin/ldconfig
+
+%postun -n libdrm_amdgpu1 -p /sbin/ldconfig
+
 %post   -n libkms1 -p /sbin/ldconfig
 
 %postun -n libkms1 -p /sbin/ldconfig
@@ -282,6 +293,10 @@
 %defattr(-,root,root)
 %_libdir/libdrm_radeon.so.1*
 
+%files -n libdrm_amdgpu1
+%defattr(-,root,root)
+%_libdir/libdrm_amdgpu.so.1*
+
 %files -n libkms1
 %defattr(-,root,root)
 %_libdir/libkms.so.1*

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.6Yq0sA/_old  2015-08-17 17:26:15.0 +0200
+++ /var/tmp/diff_new_pack.6Yq0sA/_new  2015-08-17 17:26:15.0 +0200
@@ -4,6 +4,7 @@
 libdrm_nouveau2
 libdrm_omap1
 libdrm_radeon1
+libdrm_amdgpu1
 libdrm-devel
requires -libdrm-targettype
requires libdrm2-targettype = version
@@ -12,6 +13,7 @@
requires libdrm_nouveau2-targettype = version
targetarch arm requires libdrm_omap1-targettype = version
requires libdrm_radeon1-targettype = version
+   requires libdrm_amdgpu1-targettype = version
 libkms1
 libkms-devel
requires -libkms-targettype

++ libdrm-2.4.62.tar.bz2 - libdrm-2.4.63.tar.bz2 ++
 37661 lines of diff (skipped)




commit pacemaker for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package pacemaker for openSUSE:Factory 
checked in at 2015-08-17 17:25:52

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


Package is pacemaker

Changes:

--- /work/SRC/openSUSE:Factory/pacemaker/pacemaker.changes  2015-08-05 
06:48:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.pacemaker.new/pacemaker.changes 2015-08-17 
17:25:53.0 +0200
@@ -1,0 +2,18 @@
+Thu Aug 13 12:56:09 UTC 2015 - y...@suse.com
+
+- crm_resource: Indicate common reasons why a resource may not start after a 
cleanup
+- pengine: Ensure fencing of the DC precedes the STONITH_DONE operation
+- crm_resource: Compensate for -C and -p being called with the child resource 
for clones
+- ipc: Fix output formats (bsc#940992)
+- fencing: ensure required/automatic only apply to on actions
+- fencing: Remove unnecessary casts (bsc#940711)
+- crm_simulate: Prevent segfault on arches with 64bit time_t (bsc#940711)
+- ipc: Correctly compare values for the size of ipc buffer and prevent 
suggesting a negative value when it's insufficient (bsc#940992)
+- xml: Reduce severity of noisy log message
+- crm_resource: Correctly clean up failcounts for inactive anonymous clones
+- crmd: Avoid cancelling transitions when we tell nodes to shutdown
+- systemd: drop legacy SysVStartPriority from service units
+- crm: Set the attribute from remote node.
+- Upstream version cs: 4ad07f5f464c84b80c739922bd9fd708e8d36e5a
+
+---

Old:

  pacemaker-1.1.13+git20150730.3fb7f71.tar.bz2

New:

  pacemaker-1.1.13+git20150813.4ad07f5.tar.bz2



Other differences:
--
++ pacemaker.spec ++
--- /var/tmp/diff_new_pack.otiqOj/_old  2015-08-17 17:25:55.0 +0200
+++ /var/tmp/diff_new_pack.otiqOj/_new  2015-08-17 17:25:55.0 +0200
@@ -99,7 +99,7 @@
 Summary:Scalable High-Availability cluster resource manager
 License:GPL-2.0+ and LGPL-2.1+
 Group:  Productivity/Clustering/HA
-Version:1.1.13+git20150730.3fb7f71
+Version:1.1.13+git20150813.4ad07f5
 Release:0
 #Release:%{pcmk_release}%{?dist}
 Url:http://www.clusterlabs.org

++ _service ++
--- /var/tmp/diff_new_pack.otiqOj/_old  2015-08-17 17:25:55.0 +0200
+++ /var/tmp/diff_new_pack.otiqOj/_new  2015-08-17 17:25:55.0 +0200
@@ -11,7 +11,7 @@
 param name=version1.1.13/param
 --
 param name=versionformat1.1.13+git%cd.%h/param
-param name=revision3fb7f71bf9ca2a3d6e1187fa3b74c7841d6af5a7/param
+param name=revision4ad07f5f464c84b80c739922bd9fd708e8d36e5a/param
   /service
 
   service name=recompress mode=disabled

++ pacemaker-1.1.13+git20150730.3fb7f71.tar.bz2 - 
pacemaker-1.1.13+git20150813.4ad07f5.tar.bz2 ++
/work/SRC/openSUSE:Factory/pacemaker/pacemaker-1.1.13+git20150730.3fb7f71.tar.bz2
 
/work/SRC/openSUSE:Factory/.pacemaker.new/pacemaker-1.1.13+git20150813.4ad07f5.tar.bz2
 differ: char 11, line 1




commit libpng12 for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package libpng12 for openSUSE:Factory 
checked in at 2015-08-17 17:25:58

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


Package is libpng12

Changes:

--- /work/SRC/openSUSE:Factory/libpng12/libpng12.changes2015-03-03 
11:10:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.libpng12.new/libpng12.changes   2015-08-17 
17:26:00.0 +0200
@@ -1,0 +2,5 @@
+Fri Aug  7 14:31:26 UTC 2015 - pgaj...@suse.com
+
+- build in build section
+
+---



Other differences:
--
++ libpng12.spec ++
--- /var/tmp/diff_new_pack.clO4TY/_old  2015-08-17 17:26:00.0 +0200
+++ /var/tmp/diff_new_pack.clO4TY/_new  2015-08-17 17:26:00.0 +0200
@@ -102,16 +102,14 @@
 %patch1
 
 %build
-# We'll never use the old pgcc-2.95.1 with the buggy -O3, so having
-# the -O3 that is originally used should work.
-# Substitute the -O2 to -O3 because I'm not sure if simply appending
-# it will preserve(not override) the detailed opt flags used in RPM_OPT_FLAGS:
-%configure CFLAGS=`echo $RPM_OPT_FLAGS|sed 's/-O2/-O3/'` 
-DPNG_SKIP_SETJMP_CHECK \
- --prefix=/usr \
- --libdir=%{_libdir} \
-  --mandir=%{_mandir} \
+# PNG_SAFE_LIMITS_SUPPORTED: 
http://www.openwall.com/lists/oss-security/2015/01/10/1
+export CFLAGS=%optflags -O3 -DPNG_SAFE_LIMITS_SUPPORTED 
-DPNG_SKIP_SETJMP_CHECK $(getconf LFS_CFLAGS)
+export LDFLAGS=-Wl,-z,relro,-z,now
+
+%configure \
   --disable-static \
   --with-libpng-compat=no
+make %{?_smp_mflags}
 
 %check
 make check




commit curl for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package curl for openSUSE:Factory checked in 
at 2015-08-17 17:25:32

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


Package is curl

Changes:

--- /work/SRC/openSUSE:Factory/curl/curl.changes2015-08-13 
18:09:35.0 +0200
+++ /work/SRC/openSUSE:Factory/.curl.new/curl.changes   2015-08-17 
17:25:34.0 +0200
@@ -1,0 +2,13 @@
+Fri Aug 14 09:02:40 UTC 2015 - vci...@suse.com
+
+- update to 7.44.0
+http2: added CURLMOPT_PUSHFUNCTION and CURLMOPT_PUSHDATA
+examples: added http2-serverpush.c
+http2: added curl_pushheader_byname() and curl_pushheader_bynum()
+docs: added CODE_OF_CONDUCT.md
+curl: Add --ssl-no-revoke to disable certificate revocation checks
+libcurl: New value CURLSSLOPT_NO_REVOKE for CURLOPT_SSL_OPTIONS
+makefile: Added support for VC14
+- dropped unexpire-test46.patch (upstream)
+
+---

Old:

  curl-7.43.0.tar.lzma
  curl-7.43.0.tar.lzma.asc
  unexpire-test46.patch

New:

  curl-7.44.0.tar.lzma
  curl-7.44.0.tar.lzma.asc



Other differences:
--
++ curl.spec ++
--- /var/tmp/diff_new_pack.PsjuSN/_old  2015-08-17 17:25:35.0 +0200
+++ /var/tmp/diff_new_pack.PsjuSN/_new  2015-08-17 17:25:35.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with mozilla_nss
 %bcond_without testsuite
 Name:   curl
-Version:7.43.0
+Version:7.44.0
 Release:0
 Summary:A Tool for Transferring Data from URLs
 License:BSD-3-Clause and MIT
@@ -36,7 +36,6 @@
 # PATCH-FIX-OPENSUSE lnus...@suse.de -- use openssl's built in verify path as 
fallback
 Patch4: curl-7.41.0-use-openssl-s-built-in-verify-path-as-fallback.diff
 Patch5: curl-disable_failing_tests.patch
-Patch6: unexpire-test46.patch
 BuildRequires:  groff
 BuildRequires:  krb5-mini-devel
 BuildRequires:  libtool
@@ -101,7 +100,6 @@
 %patch3
 %patch4 -p1
 %patch5 -p1
-%patch6 -p1
 
 %build
 # curl complains if macro definition is contained in CFLAGS




commit poppler for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package poppler for openSUSE:Factory checked 
in at 2015-08-17 17:25:45

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


Package is poppler

Changes:

--- /work/SRC/openSUSE:Factory/poppler/poppler-qt.changes   2015-08-05 
19:13:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.poppler.new/poppler-qt.changes  2015-08-17 
17:25:46.0 +0200
@@ -1,0 +2,28 @@
+Tue Aug 11 08:31:19 UTC 2015 - zai...@opensuse.org
+
+- Update to version 0.35.0:
+  + core:
+- Fix assert in broken file (fdo#91344).
+- Adjust memory layout computation of GooString.
+- Make SplashBitmap XBGR transfer alpha channel.
+- Splash: Fix wrong writes on non rgb outputs (fdo#90570).
+- Splash: remove ifndef in Windows code.
+- GlobalParamsWin bugfixes (fdo#91053).
+  + qt4:
+- Switch default image format.
+- Add IgnorePaperColor render flag.
+  + qt5:
+- Improve efficiency of Poppler::Page::renderToImage.
+- Switch default image format.
+- Add IgnorePaperColor render flag.
+  + build system:
+- Allow configuring SPLASH_CMYK support.
++ Add configure --enable-build-type (fdo#90796).
+  + glib:
+- Explicitly link against pthread.
+- Deprecation fixes.
+  + utils: pdftocairo: Fix cast to pointer from integer of
+different size on win64.
+- Bump soname following upstream changes.
+
+---
poppler-qt5.changes: same change
poppler.changes: same change

Old:

  poppler-0.34.0.tar.xz

New:

  poppler-0.35.0.tar.xz



Other differences:
--
++ poppler-qt.spec ++
--- /var/tmp/diff_new_pack.qxJ1kA/_old  2015-08-17 17:25:47.0 +0200
+++ /var/tmp/diff_new_pack.qxJ1kA/_new  2015-08-17 17:25:47.0 +0200
@@ -21,11 +21,11 @@
 
 Name:   poppler-qt
 %define _name   poppler
-Version:0.34.0
+Version:0.35.0
 Release:0
 # Actual version of poppler-data:
 %define poppler_data_version 0.4.6
-%define poppler_soname 53
+%define poppler_soname 54
 %define poppler_cpp_soname 0
 %define poppler_glib_soname 8
 %define poppler_qt4_soname 4

poppler-qt5.spec: same change
++ poppler.spec ++
--- /var/tmp/diff_new_pack.qxJ1kA/_old  2015-08-17 17:25:47.0 +0200
+++ /var/tmp/diff_new_pack.qxJ1kA/_new  2015-08-17 17:25:47.0 +0200
@@ -21,11 +21,11 @@
 
 Name:   poppler
 %define _name   poppler
-Version:0.34.0
+Version:0.35.0
 Release:0
 # Actual version of poppler-data:
 %define poppler_data_version 0.4.6
-%define poppler_soname 53
+%define poppler_soname 54
 %define poppler_cpp_soname 0
 %define poppler_glib_soname 8
 %define poppler_qt4_soname 4


++ poppler-0.34.0.tar.xz - poppler-0.35.0.tar.xz ++
 2597 lines of diff (skipped)




commit libpng16 for openSUSE:Factory

2015-08-17 Thread h_root
Hello community,

here is the log from the commit of package libpng16 for openSUSE:Factory 
checked in at 2015-08-17 17:26:07

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


Package is libpng16

Changes:

--- /work/SRC/openSUSE:Factory/libpng16/libpng16.changes2015-04-07 
09:27:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.libpng16.new/libpng16.changes   2015-08-17 
17:26:08.0 +0200
@@ -1,0 +2,5 @@
+Fri Aug  7 14:19:31 UTC 2015 - pgaj...@suse.com
+
+- drop unknown configure switch
+
+---



Other differences:
--
++ libpng16.spec ++
--- /var/tmp/diff_new_pack.yr8XhY/_old  2015-08-17 17:26:09.0 +0200
+++ /var/tmp/diff_new_pack.yr8XhY/_new  2015-08-17 17:26:09.0 +0200
@@ -119,8 +119,7 @@
 export LDFLAGS=-Wl,-z,relro,-z,now
 
 %configure \
-  --disable-static \
-  --with-libpng-compat=no
+  --disable-static
 make %{?_smp_mflags}
 
 %check