commit sshguard for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package sshguard for openSUSE:Factory 
checked in at 2016-02-22 08:58:05

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


Package is "sshguard"

Changes:

--- /work/SRC/openSUSE:Factory/sshguard/sshguard.changes2016-01-12 
16:13:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.sshguard.new/sshguard.changes   2016-02-22 
08:58:17.0 +0100
@@ -1,0 +2,22 @@
+Fri Feb 19 13:18:55 UTC 2016 - joop.boo...@opensuse.org
+
+- Added a corrected attack treshold value (40 default) 
+
+---
+Thu Feb 18 10:07:08 UTC 2016 - eshmar...@suse.com
+
+- Build version 1.6.3 
+- Disable blacklisting by default
+- Implement logging as wrappers around syslog(2)
+- Improve log and error messages
+- Match sendmail authentication failures
+- Remove PID file option
+- Remove SIGTSTP and SIGCONT handler
+- Remove reverse mapping attack signature
+- Remove safe_fgets() and exit on interrupt
+- Terminate state entries for hosts blocked with pf
+- Update and shorten command-line usage
+- Use 'configure' to set feature-test macros
+- Updated patch file for new version of sshguard
+
+---

Old:

  sshguard-1.6.2.tar.xz

New:

  sshguard-1.6.3.tar.gz



Other differences:
--
++ sshguard.spec ++
--- /var/tmp/diff_new_pack.DyQDSQ/_old  2016-02-22 08:58:18.0 +0100
+++ /var/tmp/diff_new_pack.DyQDSQ/_new  2016-02-22 08:58:18.0 +0100
@@ -17,23 +17,19 @@
 
 
 Name:   sshguard
-Version:1.6.2
+Version:1.6.3
 Release:0
 Summary:Protect hosts from brute force attacks against ssh
 License:ISC
 Group:  Productivity/Networking/Security
 Url:http://www.sshguard.net
-Source0:
http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.xz
+Source0:
http://sourceforge.net/projects/%{name}/files/%{name}/%{version}/%{name}-%{version}.tar.gz
 Source1:sshguard.sysconfig
 Source2:sshguard.service
 Source3:sshguard.init
 Source4:sshguard.whitelist
-# PATCH-FEATURE-UPSTREAM sshguard-gcc5.patch
+# PATCH-FIX-UPSTREAM sshguard-gcc5.patch
 Patch0: sshguard-gcc5.patch
-%if 0%{?suse_version} < 1210 
-BuildRequires:  xz
-%endif
-Requires:   iptables
 Requires:   openssh
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires(pre):  %fillup_prereq
@@ -105,7 +101,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc ChangeLog README.rst COPYING examples/ scripts/
+%doc ChangeLog README.rst COPYING examples/ 
 %{_sbindir}/*
 %doc %{_mandir}/man8/%{name}*
 %{_localstatedir}/adm/fillup-templates/sysconfig.sshguard

++ sshguard-gcc5.patch ++
--- /var/tmp/diff_new_pack.DyQDSQ/_old  2016-02-22 08:58:18.0 +0100
+++ /var/tmp/diff_new_pack.DyQDSQ/_new  2016-02-22 08:58:18.0 +0100
@@ -1,11 +1,11 @@
-diff -Naurr sshguard-1.6.1.orig/src/sshguard_whitelist.c 
sshguard-1.6.1/src/sshguard_whitelist.c
 sshguard-1.6.1.orig/src/sshguard_whitelist.c   2015-07-20 
08:21:03.0 +0200
-+++ sshguard-1.6.1/src/sshguard_whitelist.c2015-09-28 15:11:57.547729763 
+0200
-@@ -19,6 +19,7 @@
+diff -ru sshguard-1.6.3.orig/src/sshguard_whitelist.c 
sshguard-1.6.3/src/sshguard_whitelist.c
+--- sshguard-1.6.3.orig/src/sshguard_whitelist.c   2016-02-18 
10:54:51.752229898 +0100
 sshguard-1.6.3/src/sshguard_whitelist.c2016-02-18 11:00:02.760786847 
+0100
+@@ -18,6 +18,7 @@
+  * SSHGuard. See http://www.sshguard.net
   */
  
- 
 +#define _GNU_SOURCE
- #include 
- #include 
- #include 
+ #include 
+ #include 
+ #include 

++ sshguard.service ++
--- /var/tmp/diff_new_pack.DyQDSQ/_old  2016-02-22 08:58:18.0 +0100
+++ /var/tmp/diff_new_pack.DyQDSQ/_new  2016-02-22 08:58:18.0 +0100
@@ -8,7 +8,7 @@
 ExecStartPre=/usr/sbin/ip6tables -N sshguard
 ExecStartPre=/usr/sbin/iptables -I INPUT 1 -p tcp --dport $PORTS -j sshguard
 ExecStartPre=/usr/sbin/ip6tables -I INPUT 1 -p tcp --dport $PORTS -j sshguard
-ExecStart=/usr/sbin/sshguard -a $ATTACK_ATTEMPTS -p $RELEASE_TIMEOUT -s 
$FORGET_TIMEOUT -w $WHITELIST -b $BLACKLIST -l $MONITORED_LOGS
+ExecStart=/usr/sbin/sshguard -a $ATTACK_TRESHOLD -p $RELEASE_TIMEOUT -s 
$FORGET_TIMEOUT -w $WHITELIST -b $BLACKLIST -l $MONITORED_LOGS
 ExecReload=/bin/kill -HUP $MAINPID
 ExecStopPost=/usr/sbin/iptables -F sshguard
 ExecStopPost=/usr/sbin/ip6tables -F sshguard

++ sshguard.sysconfig ++
--- /var/tmp/diff_new_pack.DyQDSQ/_old  2016-02-22 08:58:18.0 +0100
+++ 

commit bwidget for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package bwidget for openSUSE:Factory checked 
in at 2016-02-22 08:58:09

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


Package is "bwidget"

Changes:

--- /work/SRC/openSUSE:Factory/bwidget/bwidget.changes  2015-01-03 
22:01:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.bwidget.new/bwidget.changes 2016-02-22 
08:58:21.0 +0100
@@ -1,0 +2,8 @@
+Sun Nov  1 13:27:39 UTC 2015 - p.drou...@gmail.com
+
+- Update to version 1.9.9
+  * widget.tcl: Widget::define got new parameter -namespace, allowing
+megawidget namespace be different to class name. This allows lower
+case namespace names. Ticket [023a631b20]
+
+---

Old:

  bwidget-1.9.8.tar.gz

New:

  bwidget-1.9.9.tar.gz



Other differences:
--
++ bwidget.spec ++
--- /var/tmp/diff_new_pack.15ZGYM/_old  2016-02-22 08:58:22.0 +0100
+++ /var/tmp/diff_new_pack.15ZGYM/_new  2016-02-22 08:58:22.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package bwidget
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 Name:   bwidget
 BuildRequires:  dos2unix
 BuildRequires:  tcl
-Version:1.9.8
+Version:1.9.9
 Release:0
 Summary:A Set of Megawidgets for Tcl/Tk
 Url:http://sourceforge.net/projects/tcllib/
@@ -28,7 +28,7 @@
 BuildArch:  noarch
 Requires:   tk
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Source0:%{name}-%{version}.tar.gz
+Source0:
http://downloads.sourceforge.net/project/tcllib/BWidget/%{version}/%{name}-%{version}.tar.gz
 
 %description
 Add useful and nice-looking widgets to your interfaces with the BWidget

++ bwidget-1.9.8.tar.gz -> bwidget-1.9.9.tar.gz ++
 1911 lines of diff (skipped)




commit go for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package go for openSUSE:Factory checked in 
at 2016-02-22 08:58:06

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


Package is "go"

Changes:

--- /work/SRC/openSUSE:Factory/go/go.changes2016-02-18 12:36:54.0 
+0100
+++ /work/SRC/openSUSE:Factory/.go.new/go.changes   2016-02-22 
08:58:18.0 +0100
@@ -1,0 +2,17 @@
+Fri Feb 19 09:27:32 UTC 2016 - jmassaguer...@suse.com
+
+- Update to version 1.6
+
+  * On Linux on little-endian 64-bit PowerPC (linux/ppc64le), Go 1.6 now 
supports cgo with external linking and is roughly feature complete.
+  * Vendoring support
+  * HTTP2 transparent support
+  * fix gc and gccgo incompatibility regarding embedded unexported struct 
types containing exported fields
+  * Linux on 64-bit MIPS and Android on 32-bit x86
+  * enforced rules for sharing Go pointers with C
+  * new mechanism for template reuse
+  * performance improvements
+  ... and more!
+
+   see more in https://tip.golang.org/doc/go1.6 
+
+---

Old:

  go1.5.3.src.tar.gz

New:

  go1.6.src.tar.gz



Other differences:
--
++ go.spec ++
--- /var/tmp/diff_new_pack.K4wojR/_old  2016-02-22 08:58:19.0 +0100
+++ /var/tmp/diff_new_pack.K4wojR/_new  2016-02-22 08:58:19.0 +0100
@@ -26,9 +26,9 @@
 %endif
 %endif
 
-%define go_api 1.5
+%define go_api 1.6
 Name:   go
-Version:1.5.3
+Version:1.6
 Release:0
 Summary:A compiled, garbage-collected, concurrent programming language
 License:BSD-3-Clause

++ allow-binary-only-packages.patch ++
--- /var/tmp/diff_new_pack.K4wojR/_old  2016-02-22 08:58:20.0 +0100
+++ /var/tmp/diff_new_pack.K4wojR/_new  2016-02-22 08:58:20.0 +0100
@@ -1,13 +1,13 @@
-Index: go/src/cmd/go/pkg.go
-===
 go.orig/src/cmd/go/pkg.go
-+++ go/src/cmd/go/pkg.go
-@@ -341,7 +341,7 @@ func loadImport(path, srcDir string, par
-   //
-   // TODO: After Go 1, decide when to pass build.AllowBinary here.
-   // See issue 3268 for mistakes to avoid.
--  bp, err := buildContext.Import(path, srcDir, build.ImportComment)
-+  bp, err := buildContext.Import(path, srcDir, build.AllowBinary | 
build.ImportComment)
- 
-   // If we got an error from go/build about package not found,
-   // it contains the directories from $GOROOT and $GOPATH that
+diff --git a/src/cmd/go/pkg.go b/src/cmd/go/pkg.go
+index 0c0cf07..4c0e450 100644
+--- a/src/cmd/go/pkg.go
 b/src/cmd/go/pkg.go
+@@ -365,7 +365,7 @@ func loadImport(path, srcDir string, parent *Package, stk 
*importStack, importPo
+   // Not vendoring, or we already found the vendored path.
+   buildMode |= build.IgnoreVendor
+   }
+-  bp, err := buildContext.Import(path, srcDir, buildMode)
++  bp, err := buildContext.Import(path, srcDir, 
build.AllowBinary|buildMode)
+   bp.ImportPath = importPath
+   if gobin != "" {
+   bp.BinDir = gobin

++ armv6l.patch ++
--- /var/tmp/diff_new_pack.K4wojR/_old  2016-02-22 08:58:20.0 +0100
+++ /var/tmp/diff_new_pack.K4wojR/_new  2016-02-22 08:58:20.0 +0100
@@ -1,5 +1,5 @@
 a/src/runtime/os2_linux.go
-+++ b/src/runtime/os2_linux.go
+--- a/src/runtime/os2_linux_generic.go
 b/src/runtime/os2_linux_generic.go
 @@ -6,7 +6,7 @@
  
  const (

++ fix_certificates_lookup.patch ++
--- /var/tmp/diff_new_pack.K4wojR/_old  2016-02-22 08:58:20.0 +0100
+++ /var/tmp/diff_new_pack.K4wojR/_new  2016-02-22 08:58:20.0 +0100
@@ -1,22 +1,8 @@
-Index: go/src/crypto/x509/root_linux.go
-===
 go.orig/src/crypto/x509/root_linux.go
-+++ go/src/crypto/x509/root_linux.go
-@@ -6,8 +6,5 @@ package x509
- 
- // Possible certificate files; stop after finding one.
- var certFiles = []string{
--  "/etc/ssl/certs/ca-certificates.crt", // Debian/Ubuntu/Gentoo etc.
--  "/etc/pki/tls/certs/ca-bundle.crt",   // Fedora/RHEL
--  "/etc/ssl/ca-bundle.pem", // OpenSUSE
--  "/etc/pki/tls/cacert.pem",// OpenELEC
-+  "/etc/ssl/ca-bundle.pem", // openSUSE and SLE12+
- }
-Index: go/src/crypto/x509/root_unix.go
-===
 go.orig/src/crypto/x509/root_unix.go
-+++ go/src/crypto/x509/root_unix.go
-@@ -6,12 +6,15 @@
+diff --git a/src/crypto/x509/root_unix.go b/src/crypto/x509/root_unix.go
+index 9f06f9d..b3b2bb8 100644
+--- a/src/crypto/x509/root_unix.go
 

commit pgadmin3 for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package pgadmin3 for openSUSE:Factory 
checked in at 2016-02-22 08:58:11

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


Package is "pgadmin3"

Changes:

--- /work/SRC/openSUSE:Factory/pgadmin3/pgadmin3.changes2015-10-20 
00:05:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.pgadmin3.new/pgadmin3.changes   2016-02-22 
08:58:22.0 +0100
@@ -1,0 +2,40 @@
+Tue Jan 26 22:31:30 UTC 2016 - ter...@gmail.com
+
+- update to 1.22.0
+  * Resolved an issue related to check options selection in the view
+properties dialog with the check option.
+  * Merged the libssh2 to the latest version.
+  * Properly detect serial columns as such when identifiers have been
+truncated.
+  * Fixes an issue related to the column inheritance information properly,
+when one (or, more) common columns are inherited from multiple tables.
+  * Ensure the correct syntax used for moving the objects from one
+tablespace to another.
+  * Ensure the correct line endings are used when copying from the SQL Pane
+  * Toolbar icons, and menu items for Commit and Rollback actions.
+  * Display the connection details for the current browser object in the
+status bar
+  * Fixed an issue related to different menus enabling in the Query Tool on
+Ubunutu unity. 
+  * Reset the position (x, y) for dialog(s), and frame(s) to 0 (if found
+negative), while saving its position and size.
+  * Fixes an issue identifying the return type to TABLE in some cases,
+using pg_get_function_result(..) for the same instead of format_type(..)
+  * Honour PGPASSFILE environment variable for saving, retrieving the
+password instead of always works with pgpass.conf (on windows)/.pgpass
+(on non-windows)
+  * Fix a segfault occurs while detecting transaction section requirement,
+when autocommit has been disabled.
+  * Format execution time in a more readable manner
+  * Improve sorting in Data editor
+  * Allow to format the selecte SQL using external tools in Query Editor
+  * Allow to set auto-commit mode to on/off in the query editor
+  * Do not try unlock the mutex, which was not owned by the thread, while
+creating the popup menu
+  * Set the focus on browser tree windows on startup
+  * Make the arrow key navigation consistent across all platform on the
+object browser tree
+  * Show indexes for the materialized views in Query pane
+  * Add support for searching materialized views in the
+
+---

Old:

  pgadmin3-1.20.0.tar.gz
  pgadmin3-1.20.0.tar.gz.sig

New:

  pgadmin3-1.22.0.tar.gz
  pgadmin3-1.22.0.tar.gz.sig



Other differences:
--
++ pgadmin3.spec ++
--- /var/tmp/diff_new_pack.KfxqGE/_old  2016-02-22 08:58:24.0 +0100
+++ /var/tmp/diff_new_pack.KfxqGE/_new  2016-02-22 08:58:24.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pgadmin3
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 Summary:Management and Administration Tools for the PostgreSQL Database
 License:PostgreSQL
 Group:  Productivity/Databases/Tools
-Version:1.20.0
+Version:1.22.0
 Release:0
 Url:http://www.pgadmin.org/index.php
 Source0:
http://ftp.postgresql.org/pub/pgadmin3/release/v%{version}/src/pgadmin3-%{version}.tar.gz

++ pgadmin3-1.20.0.tar.gz -> pgadmin3-1.22.0.tar.gz ++
/work/SRC/openSUSE:Factory/pgadmin3/pgadmin3-1.20.0.tar.gz 
/work/SRC/openSUSE:Factory/.pgadmin3.new/pgadmin3-1.22.0.tar.gz differ: char 5, 
line 1





commit blueberry for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package blueberry for openSUSE:Factory 
checked in at 2016-02-22 08:58:08

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


Package is "blueberry"

Changes:

--- /work/SRC/openSUSE:Factory/blueberry/blueberry.changes  2015-11-10 
10:03:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.blueberry.new/blueberry.changes 2016-02-22 
08:58:20.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 19 12:35:17 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 1.1.1:
+  * Add disabled icon for bluetooth-tray.
+
+---

Old:

  blueberry-1.1.0.tar.gz

New:

  blueberry-1.1.1.tar.gz



Other differences:
--
++ blueberry.spec ++
--- /var/tmp/diff_new_pack.1Y775P/_old  2016-02-22 08:58:21.0 +0100
+++ /var/tmp/diff_new_pack.1Y775P/_new  2016-02-22 08:58:21.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package blueberry
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   blueberry
-Version:1.1.0
+Version:1.1.1
 Release:0
 Summary:A configuration tool for Bluetooth
 License:GPL-3.0+

++ blueberry-1.1.0.tar.gz -> blueberry-1.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blueberry-1.1.0/debian/changelog 
new/blueberry-1.1.1/debian/changelog
--- old/blueberry-1.1.0/debian/changelog2015-11-06 15:32:39.0 
+0100
+++ new/blueberry-1.1.1/debian/changelog2016-02-16 17:35:08.0 
+0100
@@ -1,3 +1,10 @@
+blueberry (1.1.1) sarah; urgency=medium
+
+  [ Andrew Thornton ]
+  * Add disabled icon for bluetooth-tray
+
+ -- Clement Lefebvre   Tue, 16 Feb 2016 16:34:34 +
+
 blueberry (1.1.0) betsy; urgency=medium
 
   [ Balló György ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blueberry-1.1.0/usr/lib/blueberry/blueberry-tray.py 
new/blueberry-1.1.1/usr/lib/blueberry/blueberry-tray.py
--- old/blueberry-1.1.0/usr/lib/blueberry/blueberry-tray.py 2015-11-06 
15:32:39.0 +0100
+++ new/blueberry-1.1.1/usr/lib/blueberry/blueberry-tray.py 2016-02-16 
17:35:08.0 +0100
@@ -48,9 +48,10 @@
 return
 
 if self.rfkill.hard_block or self.rfkill.soft_block:
-self.icon.set_visible(False)
+self.icon.set_from_icon_name("blueberry-tray-disabled")
+self.icon.set_tooltip_text(_("Bluetooth"))
 else:
-self.icon.set_visible(True)
+self.icon.set_from_icon_name("blueberry-tray")
 self.update_connected_state()
 
 def update_connected_state(self):
@@ -98,9 +99,10 @@
 def on_popup_menu(self, icon, button, time, data = None):
 menu = Gtk.Menu()
 
-item = Gtk.MenuItem(label=_("Send files to a device"))
-item.connect("activate", self.send_files_cb)
-menu.append(item)
+if not(self.rfkill.hard_block or self.rfkill.soft_block):
+item = Gtk.MenuItem(label=_("Send files to a device"))
+item.connect("activate", self.send_files_cb)
+menu.append(item)
 
 item = Gtk.MenuItem(label=_("Open Bluetooth device manager"))
 item.connect("activate", self.open_manager_cb)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/blueberry-1.1.0/usr/share/icons/hicolor/scalable/status/blueberry-tray-disabled.svg
 
new/blueberry-1.1.1/usr/share/icons/hicolor/scalable/status/blueberry-tray-disabled.svg
--- 
old/blueberry-1.1.0/usr/share/icons/hicolor/scalable/status/blueberry-tray-disabled.svg
 1970-01-01 01:00:00.0 +0100
+++ 
new/blueberry-1.1.1/usr/share/icons/hicolor/scalable/status/blueberry-tray-disabled.svg
 2016-02-16 17:35:08.0 +0100
@@ -0,0 +1,866 @@
+
+
+
+http://purl.org/dc/elements/1.1/;
+   xmlns:cc="http://creativecommons.org/ns#;
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#;
+   xmlns:svg="http://www.w3.org/2000/svg;
+   xmlns="http://www.w3.org/2000/svg;
+   xmlns:xlink="http://www.w3.org/1999/xlink;
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd;
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape;
+   width="48px"
+   height="48px"
+   id="svg7387"
+   sodipodi:version="0.32"
+   inkscape:version="0.91 r13725"
+   

commit eom for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package eom for openSUSE:Factory checked in 
at 2016-02-22 08:58:03

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


Package is "eom"

Changes:

--- /work/SRC/openSUSE:Factory/eom/eom.changes  2015-12-21 12:05:07.0 
+0100
+++ /work/SRC/openSUSE:Factory/.eom.new/eom.changes 2016-02-22 
08:58:09.0 +0100
@@ -1,0 +2,11 @@
+Thu Feb 18 17:54:13 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 1.12.2:
+  * Print preview: avoid integer overflow when allocating a large
+block of memory.
+  * Fix build with introspection enabled.
+  * Fix GTK+3 build when --without-cms is set.
+  * Some more fixes.
+- Remove eom-fix-introspection.patch: merged upstream.
+
+---

Old:

  eom-1.12.1.tar.xz
  eom-fix-introspection.patch

New:

  eom-1.12.2.tar.xz



Other differences:
--
++ eom.spec ++
--- /var/tmp/diff_new_pack.oANJlg/_old  2016-02-22 08:58:10.0 +0100
+++ /var/tmp/diff_new_pack.oANJlg/_new  2016-02-22 08:58:10.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package eom
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,15 +19,13 @@
 %define typelib typelib-1_0-Eom-1_0
 %define _version 1.12
 Name:   eom
-Version:1.12.1
+Version:1.12.2
 Release:0
 Summary:MATE Desktop graphics viewer
 License:GPL-2.0+ and LGPL-2.1+
 Group:  System/GUI/Other
 Url:http://mate-desktop.org/
 Source: 
http://pub.mate-desktop.org/releases/%{_version}/%{name}-%{version}.tar.xz
-# PATCH-FIX-UPSTREAM eom-fix-introspection.patch -- Fix compilation with 
GObject Introspection enabled.
-Patch0: %{name}-fix-introspection.patch
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libjpeg-devel
 BuildRequires:  libxml2-python
@@ -67,6 +65,7 @@
 Summary:MATE Desktop graphics viewer development files
 Group:  Development/Tools/Other
 Requires:   %{name} = %{version}
+# mate-image-viewer-devel was last used in openSUSE 13.1.
 Provides:   mate-image-viewer-devel = %{version}
 Obsoletes:  mate-image-viewer-devel < %{version}
 
@@ -88,7 +87,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
 
 %build
 NOCONFIGURE=1 mate-autogen

++ eom-1.12.1.tar.xz -> eom-1.12.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eom-1.12.1/NEWS new/eom-1.12.2/NEWS
--- old/eom-1.12.1/NEWS 2015-12-07 09:01:33.0 +0100
+++ new/eom-1.12.2/NEWS 2016-02-15 14:19:28.0 +0100
@@ -1,3 +1,12 @@
+eom 1.12.2
+==
+
+ * Print preview: avoid integer overflow when allocating a large
+   block of memory
+ * Fix build with introspection enabled
+ * Fix GTK+3 build when --without-cms is set
+ * Some more fixes
+
 eom 1.12.1
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eom-1.12.1/aclocal.m4 new/eom-1.12.2/aclocal.m4
--- old/eom-1.12.1/aclocal.m4   2015-12-07 09:03:54.0 +0100
+++ new/eom-1.12.2/aclocal.m4   2016-02-15 14:20:15.0 +0100
@@ -693,7 +693,7 @@
 
DISABLE_DEPRECATED=""
if test $USE_MAINTAINER_MODE = yes; then
-   DOMAINS="G ATK PANGO GDK GDK_PIXBUF GTK MATECONF MATECOMPONENT 
MATECOMPONENT_UI MATE LIBGLADE VTE MATE_VFS WNCK LIBSOUP"
+   DOMAINS="G ATK PANGO GDK GDK_PIXBUF GTK MATE LIBGLADE VTE WNCK 
LIBSOUP"
for DOMAIN in $DOMAINS; do
   DISABLE_DEPRECATED="$DISABLE_DEPRECATED 
-D${DOMAIN}_DISABLE_DEPRECATED -D${DOMAIN}_DISABLE_SINGLE_INCLUDES"
done
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/eom-1.12.1/configure new/eom-1.12.2/configure
--- old/eom-1.12.1/configure2015-12-07 09:03:55.0 +0100
+++ new/eom-1.12.2/configure2016-02-15 14:20:15.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for eom 1.12.1.
+# Generated by GNU Autoconf 2.69 for eom 1.12.2.
 #
 # Report bugs to .
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='eom'
 PACKAGE_TARNAME='eom'
-PACKAGE_VERSION='1.12.1'
-PACKAGE_STRING='eom 1.12.1'
+PACKAGE_VERSION='1.12.2'
+PACKAGE_STRING='eom 1.12.2'
 PACKAGE_BUGREPORT='http://www.mate-desktop.org'
 PACKAGE_URL=''
 
@@ -1525,7 +1525,7 @@
   # Omit 

commit libdbi-drivers for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package libdbi-drivers for openSUSE:Factory 
checked in at 2016-02-22 08:58:14

Comparing /work/SRC/openSUSE:Factory/libdbi-drivers (Old)
 and  /work/SRC/openSUSE:Factory/.libdbi-drivers.new (New)


Package is "libdbi-drivers"

Changes:

--- /work/SRC/openSUSE:Factory/libdbi-drivers/libdbi-drivers.changes
2014-11-12 00:22:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.libdbi-drivers.new/libdbi-drivers.changes   
2016-02-22 08:58:25.0 +0100
@@ -1,0 +2,7 @@
+Thu Feb  4 10:19:16 UTC 2016 - christof.ha...@rzg.mpg.de
+
+- allow building on SLES11-SP3 by removing freetds dependency
+  and unknown configure option "serial-tests" for SLES11;
+  add configure.ac.patch
+
+---

New:

  configure.ac.patch



Other differences:
--
++ libdbi-drivers.spec ++
--- /var/tmp/diff_new_pack.xaYUX1/_old  2016-02-22 08:58:26.0 +0100
+++ /var/tmp/diff_new_pack.xaYUX1/_new  2016-02-22 08:58:26.0 +0100
@@ -15,6 +15,11 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+%if 0%{?suse_version} == 1110
+%define build_freetds 0
+%else 
+%define build_freetds 1
+%endif
 
 Name:   libdbi-drivers
 Version:0.9.0.g51
@@ -28,11 +33,14 @@
 #Git-Clone:git://git.code.sf.net/p/libdbi-drivers/libdbi-drivers
 #Source:http://downloads.sf.net/libdbi-drivers/%name-%version.tar.gz
 Source:%name-%version.tar.xz
+Patch1: configure.ac.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  gettext
+%if %build_freetds
 BuildRequires:  freetds-devel
+%endif
 BuildRequires:  libdbi-devel >= 0.9.0.g30
 BuildRequires:  libtool
 BuildRequires:  mysql-devel
@@ -56,6 +64,7 @@
 similar to the DBI/DBD layer in Perl. Drivers are distributed
 separately from the library itself.
 
+%if %build_freetds
 %package dbd-freetds
 Summary:FreeTDS driver for libdbi
 Group:  System/Libraries
@@ -65,6 +74,7 @@
 through the libdbi database independent abstraction layer. Switching
 a program's driver does not require recompilation or rewriting source
 code.
+%endif
 
 %package dbd-mysql
 Summary:MySQL driver for libdbi
@@ -106,6 +116,9 @@
 
 %prep
 %setup -qn %name
+%if 0%{?suse_version} == 1110
+%patch1 -p1 
+%endif
 chmod a-x COPYING
 
 # Fake the __DATE__ so we do not needelessly rebuild
@@ -118,7 +131,9 @@
 fi
 export CFLAGS="%optflags -O0 -ggdb3"
 %configure \
+%if %build_freetds
--with-freetds  \
+%endif
--with-mysql\
--with-pgsql\
--with-sqlite3 --with-sqlite\
@@ -135,11 +150,13 @@
 %check
 make check || :
 
+%if %build_freetds
 %files dbd-freetds
 %defattr(-,root,root)
 %doc COPYING
 %dir %_libdir/dbd
 %_libdir/dbd/libdbdfreetds.so
+%endif
 
 %files dbd-mysql
 %defattr(-,root,root)

++ configure.ac.patch ++
--- libdbi-drivers/configure.ac.orig2016-02-04 10:12:56.049468401 +0100
+++ libdbi-drivers/configure.ac 2016-02-04 10:13:10.33283 +0100
@@ -3,7 +3,7 @@
 AC_CONFIG_SRCDIR([drivers/sqlite/dbd_sqlite.c])
 AM_MAINTAINER_MODE
 
-AM_INIT_AUTOMAKE([foreign dist-zip subdir-objects serial-tests])
+AM_INIT_AUTOMAKE([foreign dist-zip subdir-objects])
 AM_CONFIG_HEADER(config.h)
 AC_LIBTOOL_WIN32_DLL
 AC_CONFIG_MACRO_DIR([m4])



commit caja for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package caja for openSUSE:Factory checked in 
at 2016-02-22 08:58:01

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


Package is "caja"

Changes:

--- /work/SRC/openSUSE:Factory/caja/caja.changes2016-01-28 
17:24:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.caja.new/caja.changes   2016-02-22 
08:58:07.0 +0100
@@ -1,0 +2,10 @@
+Thu Feb 18 17:54:13 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 1.12.4:
+  * Fix random crash on startup when python-caja extension is
+enabled.
+  * Fix crash when restoring file with special characters from
+trash.
+  * Fix few memleaks.
+
+---

Old:

  caja-1.12.3.tar.xz

New:

  caja-1.12.4.tar.xz



Other differences:
--
++ caja.spec ++
--- /var/tmp/diff_new_pack.zPGdj1/_old  2016-02-22 08:58:08.0 +0100
+++ /var/tmp/diff_new_pack.zPGdj1/_new  2016-02-22 08:58:08.0 +0100
@@ -20,7 +20,7 @@
 %define typelib typelib-1_0-Caja-2_0
 %define _version 1.12
 Name:   caja
-Version:1.12.3
+Version:1.12.4
 Release:0
 Summary:File manager for the MATE desktop
 License:GPL-2.0 and LGPL-2.0
@@ -44,6 +44,7 @@
 BuildRequires:  pkgconfig(sm)
 BuildRequires:  pkgconfig(unique-1.0)
 Recommends: %{name}-lang
+# mate-file-manager was last used in openSUSE 13.1.
 Provides:   mate-file-manager = %{version}
 Obsoletes:  mate-file-manager < %{version}
 Obsoletes:  mate-file-manager-lang < %{version}
@@ -57,9 +58,10 @@
 %package devel
 Summary:Caja development files
 License:GPL-2.0 and LGPL-2.0
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/C and C++
 Requires:   %{lname} = %{version}
 Requires:   %{name} = %{version}
+# mate-file-manager-devel was last used in openSUSE 13.1.
 Provides:   mate-file-manager-devel = %{version}
 Obsoletes:  mate-file-manager-devel < %{version}
 

++ caja-1.12.3.tar.xz -> caja-1.12.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/caja-1.12.3/NEWS new/caja-1.12.4/NEWS
--- old/caja-1.12.3/NEWS2016-01-25 12:29:44.0 +0100
+++ new/caja-1.12.4/NEWS2016-02-15 15:03:23.0 +0100
@@ -1,3 +1,8 @@
+Major changes in 1.12.4 are:
+* Fix random crash on startup when python-caja extension is enabled
+* Fix crash when restoring file with special characters from trash
+* Fix a few memleaks
+
 Major changes in 1.12.3 are:
 * Fix wrong text color in icon view with some light themes
 * Fix crash due to unneeded assert
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/caja-1.12.3/configure new/caja-1.12.4/configure
--- old/caja-1.12.3/configure   2016-01-25 12:30:41.0 +0100
+++ new/caja-1.12.4/configure   2016-02-15 15:07:15.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for caja 1.12.3.
+# Generated by GNU Autoconf 2.69 for caja 1.12.4.
 #
 # Report bugs to .
 #
@@ -590,8 +590,8 @@
 # Identity of this package.
 PACKAGE_NAME='caja'
 PACKAGE_TARNAME='caja'
-PACKAGE_VERSION='1.12.3'
-PACKAGE_STRING='caja 1.12.3'
+PACKAGE_VERSION='1.12.4'
+PACKAGE_STRING='caja 1.12.4'
 PACKAGE_BUGREPORT='http://www.mate-desktop.org'
 PACKAGE_URL=''
 
@@ -1475,7 +1475,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures caja 1.12.3 to adapt to many kinds of systems.
+\`configure' configures caja 1.12.4 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1545,7 +1545,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of caja 1.12.3:";;
+ short | recursive ) echo "Configuration of caja 1.12.4:";;
esac
   cat <<\_ACEOF
 
@@ -1696,7 +1696,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-caja configure 1.12.3
+caja configure 1.12.4
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2065,7 +2065,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by caja $as_me 1.12.3, which was
+It was created by caja $as_me 1.12.4, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2975,7 +2975,7 @@
 
 # Define the identity of 

commit crudini for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package crudini for openSUSE:Factory checked 
in at 2016-02-22 08:57:56

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


Package is "crudini"

Changes:

--- /work/SRC/openSUSE:Factory/crudini/crudini.changes  2014-10-11 
19:28:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.crudini.new/crudini.changes 2016-02-22 
08:58:02.0 +0100
@@ -1,0 +2,35 @@
+Thu Feb 18 16:44:06 UTC 2016 - apla...@suse.com
+
+- update to 0.7:
+  Bug fixes
+  * Separate locking files are no longer used which avoids deadlock in
+cases where the system is stopped in the small window where these
+files exist.
+  * Files are now synced after writing for better Durability.
+  * crudini no longer removes a blank line from the start of a file
+which has no sections, or options outside a section. [bug
+introduced in version 0.5]
+  Bug fixes
+  * Lock files are cleaned up robustly. Previously there was a race
+condition resulting in blocked subsequent edits, due to a
+lingering lock file.  
+  * --del will ignore requests to delete a parameter in a non-existing
+  section (unless --existing is used). Previously it failed citing
+  the missing section.
+  New features
+  * The --existing option takes parameters to give more control over
+what needs to pre-exist. So you can specify for example that a
+file needs to exist, but any items within it are created as
+needed.
+  * A new --verbose option was added to indicate on stderr wether the
+request resulted in a config change or not. This can be used to
+determine whether to restart programs etc.
+  Changes in behavior
+  * Files are created by default if missing, unless --existing is
+specified.
+  Improvements
+  * Protections against creating unparseable ini files were added.
+  * stdin can be parsed just as with normal files.
+  * File writes are avoided if there are no changes to the config.
+
+---

Old:

  crudini-0.4.tar.gz

New:

  crudini-0.7.tar.gz



Other differences:
--
++ crudini.spec ++
--- /var/tmp/diff_new_pack.tHM501/_old  2016-02-22 08:58:02.0 +0100
+++ /var/tmp/diff_new_pack.tHM501/_new  2016-02-22 08:58:02.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package crudini
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   crudini
-Version:0.4
+Version:0.7
 Release:0
 Summary:CRUD for .ini files
 License:GPL-2.0

++ crudini-0.4.tar.gz -> crudini-0.7.tar.gz ++
 1856 lines of diff (skipped)




commit pcsc-acsccid for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package pcsc-acsccid for openSUSE:Factory 
checked in at 2016-02-22 08:57:49

Comparing /work/SRC/openSUSE:Factory/pcsc-acsccid (Old)
 and  /work/SRC/openSUSE:Factory/.pcsc-acsccid.new (New)


Package is "pcsc-acsccid"

Changes:

--- /work/SRC/openSUSE:Factory/pcsc-acsccid/pcsc-acsccid.changes
2015-11-08 11:26:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.pcsc-acsccid.new/pcsc-acsccid.changes   
2016-02-22 08:57:56.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 19 03:36:40 UTC 2016 - godfrey.ch...@acs.com.hk
+
+- Updated to version 1.1.2.
+
+---

Old:

  acsccid-1.1.1.tar.bz2

New:

  acsccid-1.1.2.tar.bz2



Other differences:
--
++ pcsc-acsccid.spec ++
--- /var/tmp/diff_new_pack.rgYAPc/_old  2016-02-22 08:57:56.0 +0100
+++ /var/tmp/diff_new_pack.rgYAPc/_new  2016-02-22 08:57:56.0 +0100
@@ -1,8 +1,8 @@
 #
 # spec file for package pcsc-acsccid
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
-# Copyright (c) 2015 Advanced Card Systems Ltd.
+# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 Advanced Card Systems Ltd.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -34,7 +34,7 @@
 %if 0%{?suse_version} >= 1140
 BuildRequires:  udev
 %endif
-Version:1.1.1
+Version:1.1.2
 Release:0
 Url:http://acsccid.sourceforge.net/
 Summary:PCSC Driver for ACS CCID Based Smart Card Readers

++ acsccid-1.1.1.tar.bz2 -> acsccid-1.1.2.tar.bz2 ++
 21097 lines of diff (skipped)




commit tesseract-ocr for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package tesseract-ocr for openSUSE:Factory 
checked in at 2016-02-22 08:58:00

Comparing /work/SRC/openSUSE:Factory/tesseract-ocr (Old)
 and  /work/SRC/openSUSE:Factory/.tesseract-ocr.new (New)


Package is "tesseract-ocr"

Changes:

--- /work/SRC/openSUSE:Factory/tesseract-ocr/tesseract-ocr.changes  
2015-10-06 13:26:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.tesseract-ocr.new/tesseract-ocr.changes 
2016-02-22 08:58:05.0 +0100
@@ -1,0 +2,6 @@
+Fri Feb 19 11:44:19 UTC 2016 - idon...@suse.com
+
+- Update to 3.04.01
+  * No changelog upstream
+
+---

Old:

  3.04.00.tar.gz

New:

  3.04.01.tar.gz



Other differences:
--
++ tesseract-ocr.spec ++
--- /var/tmp/diff_new_pack.cCYemk/_old  2016-02-22 08:58:06.0 +0100
+++ /var/tmp/diff_new_pack.cCYemk/_new  2016-02-22 08:58:06.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tesseract-ocr
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,19 +19,19 @@
 %define so_ver 3
 
 Name:   tesseract-ocr
-Version:3.04.00
+Version:3.04.01
 Release:0
 Summary:Open Source OCR Engine
 License:Apache-2.0 and GPL-2.0+
 Group:  Productivity/Graphics/Other
-Url:http://code.google.com/p/tesseract-ocr/
+Url:https://github.com/tesseract-ocr/tesseract
 Source0:
https://github.com/tesseract-ocr/tesseract/archive/%{version}.tar.gz
 BuildRequires:  cairo-devel
 BuildRequires:  doxygen
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  libicu-devel
-BuildRequires:  liblept-devel
+BuildRequires:  liblept-devel >= 1.71
 BuildRequires:  pango-devel
 BuildRequires:  pkg-config
 Recommends: tesseract-ocr-traineddata-english
@@ -96,7 +96,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS COPYING ChangeLog README ReleaseNotes
+%doc AUTHORS COPYING ChangeLog README.md ReleaseNotes
 %{_bindir}/*
 %dir %{_datadir}/tessdata
 %{_datadir}/tessdata/configs/

++ 3.04.00.tar.gz -> 3.04.01.tar.gz ++
 26220 lines of diff (skipped)




commit cherrytree for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package cherrytree for openSUSE:Factory 
checked in at 2016-02-22 08:57:46

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


Package is "cherrytree"

Changes:

--- /work/SRC/openSUSE:Factory/cherrytree/cherrytree.changes2016-02-16 
09:18:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.cherrytree.new/cherrytree.changes   
2016-02-22 08:57:53.0 +0100
@@ -1,0 +2,12 @@
+Wed Feb 17 13:31:44 UTC 2016 - dims...@opensuse.org
+
+- Update to version 0.36.5:
+  + Fixed color of highlighted line in rich text with light
+background.
+  + Fixed generation of pdf with colors coming from dark background
+not suitable for white background.
+  + Fixed missing checks in read only nodes.
+  + Fixed problem with html pasted from clipboard.
+  + Updated translations.
+
+---

Old:

  cherrytree-0.36.4.tar.xz

New:

  cherrytree-0.36.5.tar.xz



Other differences:
--
++ cherrytree.spec ++
--- /var/tmp/diff_new_pack.HOxHyM/_old  2016-02-22 08:57:54.0 +0100
+++ /var/tmp/diff_new_pack.HOxHyM/_new  2016-02-22 08:57:54.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   cherrytree
-Version:0.36.4
+Version:0.36.5
 Release:0
 Summary:A hierarchical note taking application
 License:GPL-3.0+

++ cherrytree-0.36.4.tar.xz -> cherrytree-0.36.5.tar.xz ++
/work/SRC/openSUSE:Factory/cherrytree/cherrytree-0.36.4.tar.xz 
/work/SRC/openSUSE:Factory/.cherrytree.new/cherrytree-0.36.5.tar.xz differ: 
char 25, line 1




commit pbzip2 for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package pbzip2 for openSUSE:Factory checked 
in at 2016-02-22 08:58:17

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


Package is "pbzip2"

Changes:

--- /work/SRC/openSUSE:Factory/pbzip2/pbzip2.changes2015-03-12 
16:39:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.pbzip2.new/pbzip2.changes   2016-02-22 
08:58:27.0 +0100
@@ -1,0 +2,7 @@
+Sat Feb 20 14:23:18 UTC 2016 - mplus...@suse.com
+
+- Update to 1.1.13
+  * Bugfix release
+- Drop no longer needed pbzip2-makefile.patch
+
+---

Old:

  pbzip2-1.1.12.tar.gz
  pbzip2-makefile.patch

New:

  pbzip2-1.1.13.tar.gz



Other differences:
--
++ pbzip2.spec ++
--- /var/tmp/diff_new_pack.gPwyGe/_old  2016-02-22 08:58:28.0 +0100
+++ /var/tmp/diff_new_pack.gPwyGe/_new  2016-02-22 08:58:28.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pbzip2
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   pbzip2
-Version:1.1.12
+Version:1.1.13
 Release:0
 Summary:Parallelized Implementation of bzip2
 License:BSD-4-Clause
@@ -25,8 +25,6 @@
 Url:http://compression.ca/pbzip2/
 Source0:
https://launchpad.net/pbzip2/1.1/%{version}/+download/pbzip2-%{version}.tar.gz
 Source1:macros.pbzip2.in
-# pbleser: add support for DESTDIR, MANDIR, BINDIR and OPTFLAGS in Makefile
-Patch1: pbzip2-makefile.patch
 # pbleser: fix not using the result value of fwrite()
 Patch3: pbzip2-fix_unused_result.patch
 BuildRequires:  gcc-c++
@@ -39,13 +37,12 @@
 machines.
 
 %prep
-%setup -q -n "%{name}-%{version}"
-%patch1
+%setup -q
 %patch3
 
 %build
 make %{?_smp_mflags} \
-OPTFLAGS="%{optflags} -Wall" \
+CXXFLAGS="%{optflags} -Wall" \
 PREFIX="%{_prefix}" \
 BINDIR="%{_bindir}" \
 MANDIR="%{_mandir}" \
@@ -72,9 +69,9 @@
 %{_bindir}/pbzip2
 %{_bindir}/pbunzip2
 %{_bindir}/pbzcat
-%doc %{_mandir}/man1/pbzip2.1%{ext_man}
-%doc %{_mandir}/man1/pbunzip2.1%{ext_man}
-%doc %{_mandir}/man1/pbzcat.1%{ext_man}
+%{_mandir}/man1/pbzip2.1%{ext_man}
+%{_mandir}/man1/pbunzip2.1%{ext_man}
+%{_mandir}/man1/pbzcat.1%{ext_man}
 %config %{_sysconfdir}/rpm/macros.%{name}
 
 %changelog

++ pbzip2-1.1.12.tar.gz -> pbzip2-1.1.13.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbzip2-1.1.12/COPYING new/pbzip2-1.1.13/COPYING
--- old/pbzip2-1.1.12/COPYING   2014-12-21 11:26:26.0 +0100
+++ new/pbzip2-1.1.13/COPYING   2015-12-18 00:32:49.0 +0100
@@ -37,4 +37,4 @@
 
 Jeff Gilchrist, Ottawa, Canada.
 pbz...@compression.ca
-pbzip2 version 1.1.12 of Dec 21, 2014
+pbzip2 version 1.1.13 of Dec 18, 2015
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbzip2-1.1.12/ChangeLog new/pbzip2-1.1.13/ChangeLog
--- old/pbzip2-1.1.12/ChangeLog 2014-12-21 11:26:26.0 +0100
+++ new/pbzip2-1.1.13/ChangeLog 2015-12-18 00:32:49.0 +0100
@@ -1,3 +1,8 @@
+Changes in 1.1.13 (Dec 18, 2015)
+- #1404812 add support for DESTDIR in Makefile (thanks to Ryan Schmidt)
+- #1429181 fix bad CYGWIN define (thanks to Marco Atzeri)
+- #1337949 rm unused vars; add hasInFile flag (thanks to Mingxing Zhang)
+- #1524909 - output sometimes truncated on redirected -cd
 Changes in 1.1.12 (Dec 21, 2014)
 - #1402154 - make relative symlinks on install (thanks to Evangelos Foutras)
 - Install manpages to share folder, thanks to Ryan Schmidt (#1402044)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pbzip2-1.1.12/Makefile new/pbzip2-1.1.13/Makefile
--- old/pbzip2-1.1.12/Makefile  2014-12-21 11:26:26.0 +0100
+++ new/pbzip2-1.1.13/Makefile  2015-12-18 00:32:49.0 +0100
@@ -60,6 +60,7 @@
 
 # Where you want pbzip2 installed when you do 'make install'
 PREFIX = /usr
+DESTDIR =
 
 
 all: pbzip2
@@ -74,16 +75,16 @@
 
 # Install the binary pbzip2 program and man page
 install: pbzip2
-   if ( test ! -d $(PREFIX)/bin ) ; then mkdir -p $(PREFIX)/bin ; fi
-   if ( test ! -d $(PREFIX)/share ) ; then mkdir -p $(PREFIX)/share ; fi
-   if ( test ! -d $(PREFIX)/share/man ) ; then mkdir -p 
$(PREFIX)/share/man ; fi
-   if ( test ! -d $(PREFIX)/share/man/man1 ) ; then mkdir -p 
$(PREFIX)/share/man/man1 ; fi
-   cp -f pbzip2 $(PREFIX)/bin/pbzip2
-   chmod 

commit wayland-protocols for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package wayland-protocols for 
openSUSE:Factory checked in at 2016-02-22 08:58:12

Comparing /work/SRC/openSUSE:Factory/wayland-protocols (Old)
 and  /work/SRC/openSUSE:Factory/.wayland-protocols.new (New)


Package is "wayland-protocols"

Changes:

--- /work/SRC/openSUSE:Factory/wayland-protocols/wayland-protocols.changes  
2016-02-09 16:50:04.0 +0100
+++ /work/SRC/openSUSE:Factory/.wayland-protocols.new/wayland-protocols.changes 
2016-02-22 08:58:24.0 +0100
@@ -1,0 +2,14 @@
+Tue Feb 16 18:52:39 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.1:
+  * This release includes two new unstable protocol extensions:
++ Relative pointer events.
++ Pointer constraints (locking and confinement).
+  * Changes to existing protocols include:
++ xdg-shell: Added EFL state range reservation.
+  * Other improvement include basic testing, which tests that all
+the protocols provided will pass wayland-scanner without any
+errors, and compatibility with older pkg-config versions.
+- Add pkgconfig(wayland-scanner) BuildRequires: New dependency.
+
+---

Old:

  wayland-protocols-1.0.tar.xz
  wayland-protocols-1.0.tar.xz.sig

New:

  wayland-protocols-1.1.tar.xz
  wayland-protocols-1.1.tar.xz.sig



Other differences:
--
++ wayland-protocols.spec ++
--- /var/tmp/diff_new_pack.lHgGDp/_old  2016-02-22 08:58:25.0 +0100
+++ /var/tmp/diff_new_pack.lHgGDp/_new  2016-02-22 08:58:25.0 +0100
@@ -18,7 +18,7 @@
 
 
 Name:   wayland-protocols
-Version:1.0
+Version:1.1
 Release:0
 Summary:Wayland protocols that adds functionality not available in the 
core protocol
 License:MIT
@@ -28,6 +28,7 @@
 Source2:
http://wayland.freedesktop.org/releases/%{name}-%{version}.tar.xz.sig
 Source3:%name.keyring
 BuildRequires:  pkg-config
+BuildRequires:  pkgconfig(wayland-scanner)
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ wayland-protocols-1.0.tar.xz -> wayland-protocols-1.1.tar.xz ++
 4988 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/wayland-protocols-1.0/Makefile.am new/wayland-protocols-1.1/Makefile.am
--- old/wayland-protocols-1.0/Makefile.am   2015-11-24 09:10:34.0 
+0100
+++ new/wayland-protocols-1.1/Makefile.am   2016-02-16 10:18:22.0 
+0100
@@ -5,6 +5,11 @@
unstable/text-input/text-input-unstable-v1.xml  
\
unstable/input-method/input-method-unstable-v1.xml  
\
unstable/xdg-shell/xdg-shell-unstable-v5.xml
\
+   unstable/relative-pointer/relative-pointer-unstable-v1.xml  
\
+   unstable/pointer-constraints/pointer-constraints-unstable-v1.xml
\
+   $(NULL)
+
+stable_protocols = 
\
$(NULL)
 
 nobase_dist_pkgdata_DATA = 
\
@@ -16,3 +21,10 @@
$(NULL)
 
 noarch_pkgconfig_DATA = wayland-protocols.pc
+
+dist_check_SCRIPTS = tests/scan.sh
+
+TESTS = $(unstable_protocols) $(stable_protocols)
+TEST_EXTENSIONS = .xml
+AM_TESTS_ENVIRONMENT = SCANNER='$(wayland_scanner)'; export SCANNER;
+XML_LOG_COMPILER = $(srcdir)/tests/scan.sh
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/wayland-protocols-1.0/configure.ac new/wayland-protocols-1.1/configure.ac
--- old/wayland-protocols-1.0/configure.ac  2015-11-25 03:05:38.0 
+0100
+++ new/wayland-protocols-1.1/configure.ac  2016-02-16 10:18:45.0 
+0100
@@ -1,7 +1,7 @@
 AC_PREREQ([2.64])
 
 m4_define([wayland_protocols_major_version], [1])
-m4_define([wayland_protocols_minor_version], [0])
+m4_define([wayland_protocols_minor_version], [1])
 m4_define([wayland_protocols_version],
   [wayland_protocols_major_version.wayland_protocols_minor_version])
 
@@ -11,8 +11,24 @@
 [wayland-protocols],
 [http://wayland.freedesktop.org/])
 
+AC_CONFIG_MACRO_DIR([m4])
+
 

commit kiwi-config-openSUSE for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kiwi-config-openSUSE for 
openSUSE:Factory checked in at 2016-02-22 08:57:47

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


Package is "kiwi-config-openSUSE"

Changes:

--- 
/work/SRC/openSUSE:Factory/kiwi-config-openSUSE/kiwi-config-openSUSE.changes
2015-12-23 08:50:39.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.kiwi-config-openSUSE.new/kiwi-config-openSUSE.changes
   2016-02-22 08:57:54.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb  4 05:15:31 UTC 2016 - cyber...@opensuse.org
+
+- Use ext4 for hybridpersistent_filesystem, boo #950999
+- disable journaling in live mode, fixes boo #950999
+
+---



Other differences:
--
++ kiwi-config-openSUSE.spec ++
--- /var/tmp/diff_new_pack.CYAELz/_old  2016-02-22 08:57:55.0 +0100
+++ /var/tmp/diff_new_pack.CYAELz/_new  2016-02-22 08:57:55.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package kiwi-config-openSUSE
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed


++ config.sh ++
--- /var/tmp/diff_new_pack.CYAELz/_old  2016-02-22 08:57:55.0 +0100
+++ /var/tmp/diff_new_pack.CYAELz/_new  2016-02-22 08:57:55.0 +0100
@@ -109,3 +109,7 @@
 
 # bug 891183 yast2 live-installer --gtk segfaults
 baseUpdateSysConfig /etc/sysconfig/yast2 WANTED_GUI qt
+
+#Disable journal write to disk in live mode, bug 950999
+echo "Storage=volatile" >> /etc/systemd/journald.conf
+

++ config.xml.in ++
--- /var/tmp/diff_new_pack.CYAELz/_old  2016-02-22 08:57:55.0 +0100
+++ /var/tmp/diff_new_pack.CYAELz/_new  2016-02-22 08:57:55.0 +0100
@@ -6,7 +6,7 @@
 openSUSE @VERSION@ Live system
   
   
-
+
 2.8.0
 openSUSE
 openSUSE

++ correct_live_for_reboot ++
--- /var/tmp/diff_new_pack.CYAELz/_old  2016-02-22 08:57:55.0 +0100
+++ /var/tmp/diff_new_pack.CYAELz/_new  2016-02-22 08:57:55.0 +0100
@@ -25,3 +25,5 @@
 rm -rf /home/linux/.local/share/akonadi
 mv /home/linux /home/linux~
 
+#undo journald.conf changes, bug 950999
+sed -i -e s@Storage=volatile@@ /etc/systemd/journald.conf




commit wcd for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package wcd for openSUSE:Factory checked in 
at 2016-02-22 08:58:15

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


Package is "wcd"

Changes:

--- /work/SRC/openSUSE:Factory/wcd/wcd.changes  2015-12-06 07:41:21.0 
+0100
+++ /work/SRC/openSUSE:Factory/.wcd.new/wcd.changes 2016-02-22 
08:58:26.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 19 18:41:18 UTC 2016 - water...@xs4all.nl
+
+- Update to 5.3.2
+
+---

Old:

  wcd-5.3.1.tar.gz

New:

  wcd-5.3.2.tar.gz



Other differences:
--
++ wcd.spec ++
--- /var/tmp/diff_new_pack.NGYqSw/_old  2016-02-22 08:58:27.0 +0100
+++ /var/tmp/diff_new_pack.NGYqSw/_new  2016-02-22 08:58:27.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package wcd
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define wcd_docdir %{_defaultdocdir}/%{name}
 Name:   wcd
-Version:5.3.1
+Version:5.3.2
 Release:0
 Summary:Chdir for DOS and Unix
 License:GPL-2.0

++ wcd-5.3.1.tar.gz -> wcd-5.3.2.tar.gz ++
 26493 lines of diff (skipped)




commit pluma for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package pluma for openSUSE:Factory checked 
in at 2016-02-22 08:58:04

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


Package is "pluma"

Changes:

--- /work/SRC/openSUSE:Factory/pluma/pluma.changes  2015-12-01 
09:20:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.pluma.new/pluma.changes 2016-02-22 
08:58:12.0 +0100
@@ -1,0 +2,9 @@
+Thu Feb 18 17:54:13 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 1.12.2:
+  * Python console plugin: Fix missing icon in plugin list.
+  * Fix possible use-after-free during incremental search.
+  * GTK+3: Fix incremental search entry colour when text isn't
+found.
+
+---

Old:

  pluma-1.12.1.tar.xz

New:

  pluma-1.12.2.tar.xz



Other differences:
--
++ pluma.spec ++
--- /var/tmp/diff_new_pack.V3sjLm/_old  2016-02-22 08:58:13.0 +0100
+++ /var/tmp/diff_new_pack.V3sjLm/_new  2016-02-22 08:58:13.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package pluma
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define _version 1.12
 Name:   pluma
-Version:1.12.1
+Version:1.12.2
 Release:0
 Summary:Text editor for the MATE desktop
 License:GPL-2.0+
@@ -32,7 +32,7 @@
 BuildRequires:  yelp-tools
 BuildRequires:  pkgconfig(enchant)
 BuildRequires:  pkgconfig(gtk+-2.0)
-BuildRequires:  pkgconfig(gtksourceview-3.0)
+BuildRequires:  pkgconfig(gtksourceview-2.0)
 BuildRequires:  pkgconfig(iso-codes)
 BuildRequires:  pkgconfig(mate-desktop-2.0) >= %{_version}
 BuildRequires:  pkgconfig(pygobject-2.0)
@@ -60,9 +60,9 @@
 
 %package devel
 Summary:Small and lightweight UTF-8 text editor
-Group:  Development/Libraries/Other
+Group:  Development/Libraries/C and C++
 Requires:   %{name} = %{version}
-Requires:   pkgconfig(gtksourceview-3.0)
+Requires:   pkgconfig(gtksourceview-2.0)
 # mate-text-editor-devel was last used in openSUSE 13.1.
 Provides:   mate-text-editor-devel = %{version}
 Obsoletes:  mate-text-editor-devel < %{version}

++ pluma-1.12.1.tar.xz -> pluma-1.12.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pluma-1.12.1/ChangeLog new/pluma-1.12.2/ChangeLog
--- old/pluma-1.12.1/ChangeLog  2015-11-30 09:28:05.0 +0100
+++ new/pluma-1.12.2/ChangeLog  2016-02-15 14:15:39.0 +0100
@@ -1,6 +1,64 @@
+commit 515bd4604c38d3f8941b2e91d988daa3b744374d
+Author: monsta 
+Date:   2016-02-15
+
+Release 1.12.2
+
+M  NEWS
+M  configure.ac
+
+commit 2c27ba6b33398d17c58329c8a75a60eebbbed439
+Author: monsta 
+Date:  2016-02-10
+
+plugins: use correct icon name for python console plugin
+
+M  plugins/pythonconsole/pythonconsole.pluma-plugin.desktop.in
+
+commit 3e7e440bd1e4b525411660e55a318210c60ee660
+Author: Monsta 
+Date:  2016-01-02
+
+fix typo
+
+closes https://github.com/mate-desktop/pluma/issues/167
+
+M  pluma/pluma-commands-search.c
+M  pluma/pluma-document.c
+
+commit 2f89a4feeae5fdf3915be3357fedfeb7e9c05408
+Author: Monsta 
+Date:  2015-12-25
+
+view: fix incremental search entry color when text isn't found (GTK+3)
+
+color and bg color depend on theme, so it won't always be white-on-red
+as in GTK+2 build
+
+M  pluma/pluma-view.c
+
+commit 3709dc03c4f9a8c98099666419bda06a1bc419b2
+Author: Monsta 
+Date:  2015-12-25
+
+view: use "entry state" term, not "entry background"
+
+M  pluma/pluma-view.c
+
+commit d5e14f93693ba01a41f3ea8bc1f70bafcd89d62a
+Author: monsta 
+Date:  2015-12-25
+
+fix possible use-after-free during incremental search
+
+adapted from
+
https://git.gnome.org/browse/gedit/commit/?id=f8508ca201e7d16fa5e18a6130f456fdd3fc0c99
+
+M  pluma/pluma-view.c
+
 commit 234d31adff2a88de5adc1e68a3bfb9d0904bf70c
 Author: monsta 
-Date:   2015-11-30
+Date:  2015-11-30
 
 Bump version to 1.12.1
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pluma-1.12.1/NEWS new/pluma-1.12.2/NEWS
--- old/pluma-1.12.1/NEWS   2015-11-30 09:25:05.0 +0100
+++ new/pluma-1.12.2/NEWS   2016-02-15 14:12:46.0 +0100
@@ -1,3 +1,10 @@
+pluma 1.12.2
+
+
+  * Python console plugin: 

commit cmpi-pywbem-base for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package cmpi-pywbem-base for 
openSUSE:Factory checked in at 2016-02-22 08:57:33

Comparing /work/SRC/openSUSE:Factory/cmpi-pywbem-base (Old)
 and  /work/SRC/openSUSE:Factory/.cmpi-pywbem-base.new (New)


Package is "cmpi-pywbem-base"

Changes:

--- /work/SRC/openSUSE:Factory/cmpi-pywbem-base/cmpi-pywbem-base.changes
2012-02-21 12:16:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.cmpi-pywbem-base.new/cmpi-pywbem-base.changes   
2016-02-22 08:57:42.0 +0100
@@ -1,0 +2,13 @@
+Mon Feb 15 14:37:58 UTC 2016 - eshmar...@suse.com
+
+- delete mkdir %{buildroot} from spec file
+- add fdupes to spec file 
+- delete commented lines of code
+- add '#!BuildIgnore: pywebm' instead of '+BuildRequires: -pywbem'
+
+---
+Wed Jun 24 07:49:02 UTC 2015 - kkae...@suse.com
+
+- fix SLE10 build
+
+---



Other differences:
--
++ cmpi-pywbem-base.spec ++
--- /var/tmp/diff_new_pack.2zwUyi/_old  2016-02-22 08:57:43.0 +0100
+++ /var/tmp/diff_new_pack.2zwUyi/_new  2016-02-22 08:57:43.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package cmpi-pywbem-base
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,102 +17,73 @@
 
 
 Name:   cmpi-pywbem-base
-BuildRequires:  cmpi-bindings-pywbem
-BuildRequires:  cmpi-provider-register
-BuildRequires:  python-devel
-BuildRequires:  sblim-sfcb
-PreReq: /usr/sbin/cmpi-provider-register
 Version:0.2.0
 Release:0
 Summary:Base System Providers
 License:BSD-3-Clause
 Group:  System/Management
 Url:http://omc-project.org
-BuildArch:  noarch
 Source0:%{name}-%{version}.tar.gz
-Requires:   python-pywbem, cmpi-bindings-pywbem, cim-server
+BuildRequires:  cmpi-bindings-pywbem
+BuildRequires:  cmpi-provider-register
+BuildRequires:  python-devel
+BuildRequires:  python-xml
+BuildRequires:  sblim-sfcb
+Requires:   cim-server
+Requires:   cmpi-bindings-pywbem
+Requires:   python-pywbem
+Requires(pre):  cmpi-provider-register
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%if 0%{?suse_version} > 1010
+BuildRequires:  fdupes
+BuildArch:  noarch
+%endif
+%if 0%{?fedora}
+#!BuildIgnore: pywebm
+%endif
+%if 0%{?suse_version} < 1130
+BuildRequires:  python-m2crypto
+%else
+BuildRequires:  python-M2Crypto
+%endif
 
 %description
 Base System CIM Providers
 
 %prep
-%setup  
+%setup -q
 
 %build
 python setup.py build 
 
 %install
 # http://lists.opensuse.org/opensuse-packaging/2007-02/msg5.html
-%{__rm} -rf $RPM_BUILD_ROOT
-%{__mkdir} $RPM_BUILD_ROOT
-python setup.py install --prefix=%{_prefix} --root $RPM_BUILD_ROOT \
+python setup.py install --prefix=%{_prefix} --root %{buildroot} \
 --install-lib=/usr/lib/pycim -O1
-%{__mkdir} -p $RPM_BUILD_ROOT/usr/share/mof/%{name}
-install *.{mof,reg} $RPM_BUILD_ROOT/usr/share/mof/%{name}/
+mkdir -p %{buildroot}%{_datadir}/mof/%{name}
+install *.{mof,reg} %{buildroot}%{_datadir}/mof/%{name}/
+%if 0%{?suse_version} > 1010
+%fdupes %{buildroot}/%{_prefix}
+%endif
 # END OF INSTALL
 
 %files
 %defattr(-,root,root,-)
 %dir /usr/lib/pycim
 /usr/lib/pycim/*
-/usr/share/mof/%{name}
+%{_datadir}/mof/%{name}
 
 %pre
 if [ $1 -gt 1 ]; then
-  /usr/sbin/cmpi-provider-register -r -x -d /usr/share/mof/%{name}
+  %{_sbindir}/cmpi-provider-register -r -x -d %{_datadir}/mof/%{name}
 fi
-#if [ $1 -gt 1 ]; then
-#  if [ -x /usr/bin/peg-loadmof.sh ]; then
-#peg-loadmof.sh -r -n root/cimv2 /usr/share/mof/%{name}/OMC_Base.mof
-#peg-loadmof.sh -r -n root/PG_InterOp /usr/share/mof/%{name}/*-peg.reg
-#  fi
-#  if [ -x /usr/bin/sfcbrepos -a -d /var/lib/sfcb/stage ]; then
-#%{__rm} /var/lib/sfcb/stage/regs/OMC_Base.sfcb.reg
-#pushd /usr/share/mof/%{name}/
-#for i in *.mof; do
-#  %{__rm} -f /var/lib/sfcb/stage/mofs/root/cimv2/$i
-#done
-#popd
-#/usr/bin/sfcbrepos -f
-#  fi
-#fi
 
 %post
-/usr/sbin/cmpi-provider-register -d /usr/share/mof/%{name}
-#if [ -x /usr/bin/peg-loadmof.sh ]; then
-#  peg-loadmof.sh -n root/PG_InterOp /usr/share/mof/%{name}/*-peg.reg
-#  peg-loadmof.sh -n root/cimv2 /usr/share/mof/%{name}/OMC_Base.mof
-#fi
-#if [ -x /usr/bin/sfcbrepos -a -d /var/lib/sfcb/stage ]; then
-#  mkdir -p /var/lib/sfcb/stage/mofs/root/cimv2/
-#  ln -sf /usr/share/mof/%{name}/*.mof /var/lib/sfcb/stage/mofs/root/cimv2/
-#  %{__rm} -f 

commit john for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package john for openSUSE:Factory checked in 
at 2016-02-22 08:57:45

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


Package is "john"

Changes:

--- /work/SRC/openSUSE:Factory/john/john.changes2015-06-30 
10:19:54.0 +0200
+++ /work/SRC/openSUSE:Factory/.john.new/john.changes   2016-02-22 
08:57:51.0 +0100
@@ -1,0 +2,10 @@
+Wed Feb 17 11:17:04 UTC 2016 - norm...@linux.vnet.ibm.com
+
+- as follow on of previous "jumbo patch" need two powerpc changes:
+  new john-1.7.9-powerpc_BE_need_rhash_u32_swap_copy.patch
+  place ppc64le.patch after application of "jumbo patch" in spec
+  allow to solve partially boo #940498  for ppc64le
+  but still have 4 FAILED tests for ppc64 tracked upstream by
+  http://www.openwall.com/lists/john-dev/2016/02/16/1
+
+---

New:

  john-1.7.9-powerpc_BE_need_rhash_u32_swap_copy.patch



Other differences:
--
++ john.spec ++
--- /var/tmp/diff_new_pack.aal0qz/_old  2016-02-22 08:57:53.0 +0100
+++ /var/tmp/diff_new_pack.aal0qz/_new  2016-02-22 08:57:53.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package john
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -27,13 +27,14 @@
 Source1:http://www.openwall.com/john/j/%{name}-%{version}.tar.xz.sign
 Source2:%{name}.8.gz
 Source3:%{name}-rpmlintrc
-Source4:%{name}.keyring
 Source6:mailer.8
 Source7:relbench.8
 %define jumboversion john-1.7.9-jumbo-7
 Source8:%{jumboversion}.tar.bz2
 Source9:%{jumboversion}.tar.bz2.sign
-Patch0: ppc64le.patch
+Source10:   %name.keyring
+Patch0: john-1.7.9-powerpc_BE_need_rhash_u32_swap_copy.patch
+Patch1: ppc64le.patch
 BuildRequires:  openssl-devel
 %if 0%{?suse_version} == 1110 
 BuildRequires:  xz
@@ -56,6 +57,7 @@
 cd %{jumboversion} && cp -a ./* ..
 cd ..
 rm -r %{jumboversion}
+%patch1 -p1
 # adapt the configs
 perl -pi -e "s#Wordlist = (.*)#Wordlist = %{johndir}/password.lst#g" 
$RPM_BUILD_DIR/%{name}-%{version}/run/john.conf
 perl -pi -e 's#^(\#define JOHN_SYSTEMWIDE_EXEC)\s.+$#$1\t\"%{johndir}\"#g' 
$RPM_BUILD_DIR/%{name}-%{version}/src/params.h


++ john-1.7.9-powerpc_BE_need_rhash_u32_swap_copy.patch ++
From: Michel Normand 
Subject: john-1.7.9-powerpc BE need rhash u32 swap copy
Date: Mon, 15 Feb 2016 17:56:13 +0100

rhash_u32_swap_copy needs to be defined for CPU_BIG_ENDIAN
patch required when  1.7.9 jumbo patch is applied
as suggested in uptream ML
http://www.openwall.com/lists/john-dev/2013/02/06/2

Signed-off-by: Michel Normand 
---
 john-1.7.9-jumbo-7/src/gost_plug.c |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: john-1.8.0/john-1.7.9-jumbo-7/src/gost_plug.c
===
--- john-1.8.0.orig/john-1.7.9-jumbo-7/src/gost_plug.c
+++ john-1.8.0/john-1.7.9-jumbo-7/src/gost_plug.c
@@ -531,7 +531,7 @@ int main()
 }
 #endif
 
-#ifndef __GLIBC__
+#ifdef CPU_BIG_ENDIAN
 void rhash_u32_swap_copy(void* to, int index, const void* from, size_t length) 
{
size_t i;
unsigned int *pO, *pI;






commit geany-plugins for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package geany-plugins for openSUSE:Factory 
checked in at 2016-02-22 08:57:21

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


Package is "geany-plugins"

Changes:

--- /work/SRC/openSUSE:Factory/geany-plugins/geany-plugins.changes  
2014-12-16 14:48:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.geany-plugins.new/geany-plugins.changes 
2016-02-22 08:57:29.0 +0100
@@ -1,0 +2,109 @@
+Tue Feb 16 22:03:53 UTC 2016 - zai...@opensuse.org
+
+- Disable pkgconfig(webkit-1.0), as we do not want to use this as
+  it is unsupported by upstream.
+
+---
+Tue Jan 12 00:34:48 UTC 2016 - badshah...@gmail.com
+
+- Geany was switched to build against gtk3, so also switch
+  this -plugins package to gtk3 too:
+  + Disable the following plugins because they do not build 
+against gtk3: Debugger, DevHelp, GeanyDoc, GeanyGenDoc, 
+GeanyLaTeX, GeanyMacro, GeanyNumberedBookmarks, GeanyPrj,
+Geanypy, Markdown, MultiTerm, Scope, WebHelper.
+  + Update BuildRequires:
+- Update geany version to 1.26.
+- Replace pkgconfig(gtk+-2.0) by pkgconfig(gtk+-3.0).
+- Replace pkgconfig(gtkspell-2.0) by pkgconfig(gtkspell3-3.0).
+- Remove gconf2-devel, no longer required after the switch to
+  gtk3.
+
+---
+Thu Dec 31 02:50:10 UTC 2015 - badshah...@gmail.com
+
+- Update to version 1.26:
+  + General: Add a note about deprecating Waf build system --
+will be removed with 1.27.
+  + Addons:
+- Add new feature to copy path of current file into clipboard
+  (#291).
+- Update bookmark list also on any line changes in the
+  document (SF#129, SF#39, #284).
+- Add GTK3 support (#271).
+  + GeanyPy: Fix Python library loading on Debian based systems.
+  + GeanyVC:
+- Add GTK3 support (#300).
+- Little improvements on commit dialog (#300).
+  + GitChangeBar: Add support for libgit2 0.23 (#283).
+  + Multiterm: Make a lot of strings translatable (#254).
+  + Pohelper: Fix untranslated and fuzzy count in the stats
+dialog (#292).
+  + ProjectOrganizer: Fix some features when the sidebar was
+never visible.
+  + Scope: Use Geany spawn: maximum GDB line length fixed to
+1MB, no CPU time wasted when IDLE under Windows, 3
+preferences deleted.
+  + Spellcheck: Add an option to show spelling suggestion on top
+of the context menu instead of in a submenu (still default)
+(#287, #290).
+  + Updated translations.
+- Update requied libgeany version in BuildRequires.
+- Remove conditional from pkgconfig(libgit2) BuildRequires: Now
+  builds with the version in factory.
+
+---
+Sun Jul 26 22:14:15 UTC 2015 - t...@gmx.com
+
+- Update to version 1.25:
+  + removed geany-plugins-GCond-usage.patch, fixed upstream
+  + removed geany-plugins-gdb-7_7.patch, fixed upstream
+  + disabled geany-plugins-lua-5_2.patch: it breaks GeanyLua build
+  + General:
+- GProject is renamed to ProjectOrganizer
+- New plugin Automark
+- New plugin GeanyCtags
+- New plugin GitChangeBar
+- New plugin Overview
+  + Addons:
+- Improve URI selection
+  + Autoclose:
+- Add Whitesmith style bracket formatting support
+  + CodeNav:
+- Implement Go to File feature
+  + Commander:
+- Improve sorting algorithm
+  + Debugger:
+- Fix crash with GDB 7.7
+  + GeanyLaTeX:
+- Fix automatic capitalization of multi-byte characters
+  + GeanyVC:
+- Add support for WinMerge external diff viewer
+  + ProjectOrganizer:
+- Add an "external directory" feature
+- Add find tag by name
+- Add ignored file patterns
+- Performance improvements in tag generation using updated Geany 
+  API
+  + MultiTerm:
+- Fix build with recent Vala versions
+  + PairTagHighlighter:
+- Fix clearing previous indicators (PR #200)
+  + PoHelper:
+- Add a statistics dialog
+- Fix handling of plural forms
+  + Scope:
+- Fix building on GNU/Hurd (PR #146)
+  + Spellcheck:
+- Don't check code of scripting languages embedded in HTML
+- Add option to perform a spell check on document open (closes 
+  SF #137)
+  + Tableconvert:
+- Improve handling of non-LF line ends
+- Add support for DokuWiki syntax
+  + WebHelper:
+- Add support for basic bookmarks
+  + Internationalization:
+- Update translations: de, fr, pt, ru
+
+---

Old:

  geany-plugins-1.24.tar.bz2
  geany-plugins-GCond-usage.patch
  geany-plugins-gdb-7_7.patch

New:

  geany-plugins-1.26.tar.bz2


commit girl for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package girl for openSUSE:Factory checked in 
at 2016-02-22 08:57:43

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


Package is "girl"

Changes:

--- /work/SRC/openSUSE:Factory/girl/girl.changes2016-01-15 
10:40:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.girl.new/girl.changes   2016-02-22 
08:57:49.0 +0100
@@ -1,0 +2,9 @@
+Thu Feb 18 11:20:12 UTC 2016 - dims...@opensuse.org
+
+- Update to version 8.0.1:
+  + Add Bergen Student Radio.
+- Changes from version 8.0.0:
+  + Add WNYC (New York City, NY).
+  + New default station: New York Public Radio (WNYC).
+
+---

Old:

  girl-7.0.0.tar.xz

New:

  girl-8.0.1.tar.xz



Other differences:
--
++ girl.spec ++
--- /var/tmp/diff_new_pack.icjoKS/_old  2016-02-22 08:57:50.0 +0100
+++ /var/tmp/diff_new_pack.icjoKS/_new  2016-02-22 08:57:50.0 +0100
@@ -17,13 +17,13 @@
 
 
 Name:   girl
-Version:7.0.0
+Version:8.0.1
 Release:0
 Summary:Find live radio programs on radio broadcasters on the Internet
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Sound/Utilities
 Url:http://www.ping.uio.no/~oka/src/girl/
-Source: 
https://download.gnome.org/sources/girl/7.0/%{name}-%{version}.tar.xz
+Source: 
http://download.gnome.org/sources/girl/8.0/%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM girl-no-return-in-nonvoid.patch dims...@opensuse.org -- 
Change definition of girl_archive_new from gint to void (there is currently no 
code in this function). Not submitted upstream: the function is obviously only 
a place-holder.
 Patch0: girl-no-return-in-nonvoid.patch
 BuildRequires:  desktop-file-utils

++ girl-7.0.0.tar.xz -> girl-8.0.1.tar.xz ++
 3659 lines of diff (skipped)




commit lollypop for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package lollypop for openSUSE:Factory 
checked in at 2016-02-22 08:57:31

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


Package is "lollypop"

Changes:

--- /work/SRC/openSUSE:Factory/lollypop/lollypop.changes2016-02-05 
00:32:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.lollypop.new/lollypop.changes   2016-02-22 
08:57:41.0 +0100
@@ -1,0 +2,12 @@
+Wed Feb 17 00:52:29 UTC 2016 - badshah...@gmail.com
+
+- Update to version 0.9.86:
+  + Fix an issue with crossfading.
+  + Finally support artwork in notifications.
+  + Add a new "responsive design" mode (Ctrl + m for Mini player).
+  + Somes fixes in MTP sync.
+- Changes from versions 0.9.83 through 0.9.85:
+  + See upstream documentation of changes at
+https://github.com/gnumdk/lollypop/releases.
+
+---

Old:

  lollypop-0.9.82.tar.xz

New:

  lollypop-0.9.86.tar.xz



Other differences:
--
++ lollypop.spec ++
--- /var/tmp/diff_new_pack.YeQP8y/_old  2016-02-22 08:57:42.0 +0100
+++ /var/tmp/diff_new_pack.YeQP8y/_new  2016-02-22 08:57:42.0 +0100
@@ -22,7 +22,7 @@
 Name:   lollypop
 Summary:GNOME music playing application
 License:GPL-3.0+
-Version:0.9.82
+Version:0.9.86
 Release:0
 Url:https://github.com/gnumdk/lollypop
 Source0:
https://github.com/gnumdk/lollypop/releases/download/%{version}/%{name}-%{version}.tar.xz

++ lollypop-0.9.82.tar.xz -> lollypop-0.9.86.tar.xz ++
 18364 lines of diff (skipped)




commit ghc for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package ghc for openSUSE:Factory checked in 
at 2016-02-22 08:57:28

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


Package is "ghc"

Changes:

--- /work/SRC/openSUSE:Factory/ghc/ghc.changes  2016-02-17 12:11:31.0 
+0100
+++ /work/SRC/openSUSE:Factory/.ghc.new/ghc.changes 2016-02-22 
08:57:38.0 +0100
@@ -1,0 +2,6 @@
+Wed Feb 17 09:09:17 UTC 2016 - peter.tromm...@ohm-hochschule.de
+
+- limit parallel jobs to two on aarch64
+* aarch64 runs out of memory with too many parallel compiles 
+
+---



Other differences:
--
++ ghc.spec ++
--- /var/tmp/diff_new_pack.eoEszO/_old  2016-02-22 08:57:39.0 +0100
+++ /var/tmp/diff_new_pack.eoEszO/_new  2016-02-22 08:57:39.0 +0100
@@ -210,7 +210,7 @@
 HSCOLOUR_SRCS= NO
 EOF
 ./configure --prefix=%{_builddir}/ghc-boot --with-system-libffi
-%ifnarch s390 s390x
+%ifnarch aarch64 s390 s390x
 make %{?_smp_mflags}
 %else
 make -j 2
@@ -265,7 +265,7 @@
   %{?ghc_boot:--with-ghc=%{_builddir}/ghc-boot/bin/ghc} \
   --with-system-libffi
 
-%ifnarch s390 s390x
+%ifnarch aarch64 s390 s390x
 make %{?_smp_mflags}
 %else
 make -j 2




commit geany for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package geany for openSUSE:Factory checked 
in at 2016-02-22 08:57:20

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


Package is "geany"

Changes:

--- /work/SRC/openSUSE:Factory/geany/geany.changes  2014-05-05 
21:18:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.geany.new/geany.changes 2016-02-22 
08:57:25.0 +0100
@@ -1,0 +2,198 @@
+Mon Jan 11 15:51:22 UTC 2016 - badshah...@gmail.com
+
+- Build with gtk3 (change %prefer_gtk2 to 0).
+- Suppress rpmlint devel-file-in-non-devel-package warnings for
+  files in /usr/share/geany/templates/ by adding them to the
+  rpmlintrc; these files are meant as templates for the use to
+  copy and use and are not really devel files.
+
+---
+Thu Dec 31 02:48:28 UTC 2015 - badshah...@gmail.com
+
+- Update to version 1.26:
+  + General:
+- New plugin API (PR#469).
+- Add support for "proxy" plugins (PR#629).
+  + Bug fixes:
+- Fix "Open in New Window" command (Issue#590).
+- Fix spurious "source file has been modified" (Issue#605,
+  PR#621).
+- Don't open more than one document for non-existing paths
+  from the CLI
+  (https://bugs.launchpad.net/linuxmint/+bug/1482558, PR#646).
+- Fix configuration directory encoding on non-UTF-8
+  non-Windows systems (PR#658).
+  + Interface:
+- Use monospace font for the message window by default
+  (Issue#435, PR#580).
+- Fix mnemonic conflict in "Use multi-line matching"
+  (Issue#589, PR#647).
+  + Editor:
+- Update Scintilla to version 3.6.1.
+- Fix completion popup height when view is zoomed
+  (Issue#702).
+- Fix Go To End Of Display Line when wrapping is on and EOL
+  are visible (Issue#712).
+- Keeping undo history when reloading files is now enabled
+  by default (Issue#562, PR#672).
+- "Strip trailing spaces", "Replace tabs" and
+  "Replace spaces" now follow the current selection (PR#394).
+- Respect Smart Home Key setting in Go To Start of Display
+  Line.
+- Check whether the document is newer on disk when the
+  window gets focused (PR#533).
+  + Filetypes:
+- Add Cargo build commands for Rust (PR#557).
+- Add recent Perl keywords (PR#599).
+- Add missing Python 3 keywords and builtins (PR#755).
+- Improvements to the Rust filetype (PR#613).
+- Add multiline comment to Haskell (PR#638).
+- Recognize `.adoc` is as Asciidoc (PR#708, PR#711).
+- Recognize `.mml` and `.mathml` as XML (PR#731).
+  + API updates:
+- New plugin API, `geany_load_module()`,
+  `geany_plugin_register()`, `GEANY_PLUGIN_REGISTER()`,
+  `geany_plugin_register_full()`,
+  `GEANY_PLUGIN_REGISTER_FULL()` (PR#469).
+- Add support for "proxy" plugins,
+  `geany_plugin_register_proxy()` (PR#629).
+- Allow `user_data` parameter and `destroy_notify` callback
+  to keybindings with new `keybindings_set_item_full()` and
+  `plugin_set_key_group_full()` (PR#376).
+  + Updated translations.
+
+---
+Sun Jul 26 21:48:45 UTC 2015 - t...@gmx.com
+
+- Update to version 1.25
+  + General:
+- GTK3 support, while not enabled by default, is now considered
+  stable.
+- Improve MacOS X support.
+- Improve subprocess spawning (especially on Windows).
+- Huge tag management performance improvement (auto-completion,
+  calltips, etc.).
+- Remove broken "Show macro list" keybinding and feature.
+- Add %l substitution to build commands.
+- Depend on GTK 2.24 and GLib 2.28.
+- Add per-project line wrapping, line breaking and comment
+  continuation settings.
+- The plugin API is now split out of the main executable into
+  libgeany, a shared library plugins have to link against.
+  + Bug fixes:
+- Fix applying filetype-specific indentation settings for newly
+  opened files.
+- Fix relative project base path when creating a new project.
+- Fix next/previous keybindings when no files are open.
+- Fix markup injection in some tooltips.
+- Use absolute project path for projects opened from the
+  command line.
+- Fix goto tag in some cases when the same symbol name appears
+  in different languages.
+- Fix UI updating after loading a project.
+- Fix the currently selected document after Save All.
+- Fix leftovers in the Project dialog in some cases.
+- Fix function return type in symbol list tooltips in some
+  cases.
+- Fix VTE path following on startup.
+  + Interface:
+- Show document-related dialogs embedded in the main window
+  ("info bars").
+- Plugin manager dialog cleanup and 

commit weechat for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package weechat for openSUSE:Factory checked 
in at 2016-02-22 08:57:39

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


Package is "weechat"

Changes:

--- /work/SRC/openSUSE:Factory/weechat/weechat.changes  2016-01-12 
16:13:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.weechat.new/weechat.changes 2016-02-22 
08:57:46.0 +0100
@@ -1,0 +2,5 @@
+Thu Feb 18 11:58:33 UTC 2016 - mimi...@gmail.com
+
+- fix sle12 conditional 
+
+---



Other differences:
--
++ weechat.spec ++
--- /var/tmp/diff_new_pack.1WmpkO/_old  2016-02-22 08:57:47.0 +0100
+++ /var/tmp/diff_new_pack.1WmpkO/_new  2016-02-22 08:57:47.0 +0100
@@ -16,6 +16,7 @@
 #
 
 
+
 Name:   weechat
 Version:1.4
 Release:0
@@ -60,7 +61,7 @@
 Suggests:   %{name}-doc
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 # Not on SLE12
-%if 0%{?suse_version} != 1315
+%if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
 BuildRequires:  source-highlight
 %endif
 
@@ -73,7 +74,7 @@
 %lang_package
 
 # Not on SLE12
-%if 0%{?suse_version} != 1315
+%%if 0%{?suse_version} != 1315 || 0%{?is_opensuse} 
 %package doc
 Summary:Documentation for %{name}
 Group:  Documentation/HTML
@@ -176,7 +177,7 @@
 %suse_update_desktop_file -r "%{name}" Network IRCClient
 
 # Not on SLE12
-%if 0%{?suse_version} != 1315
+%if 0%{?suse_version} != 1315 || 0%{?is_opensuse} 
 mv "%{buildroot}%{_datadir}/doc/weechat" html
 %endif
 
@@ -191,7 +192,7 @@
 %icon_theme_cache_postun
 
 # Not on SLE12
-%if 0%{?suse_version} != 1315
+%if 0%{?suse_version} != 1315 || 0%{?is_opensuse} 
 %files doc
 %defattr(-,root,root)
 %doc html/






commit kdevelop4-plugins for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4-plugins for 
openSUSE:Factory checked in at 2016-02-22 08:57:16

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


Package is "kdevelop4-plugins"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4-plugins/kdevelop4-plugins.changes  
2015-12-09 22:20:28.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4-plugins.new/kdevelop4-plugins.changes 
2016-02-22 08:57:22.0 +0100
@@ -1,0 +2,14 @@
+Thu Feb 11 21:17:28 UTC 2016 - wba...@tmo.at
+
+- Added missing-translations.tar.xz as source which contains
+  missing translation files (taken from 1.7.2)
+
+---
+Tue Jan 26 14:43:39 UTC 2016 - wba...@tmo.at
+
+- Update to 1.7.3
+  * No upstream changelog available
+  * Bugfix release
+- Bump libkdevplatform-devel BuildRequires to 1.7.3
+
+---

Old:

  kdevelop-php-1.7.2.tar.xz
  kdevelop-php-docs-1.7.2.tar.xz

New:

  kdevelop-php-1.7.3.tar.bz2
  kdevelop-php-docs-1.7.3.tar.bz2
  missing-translations.tar.xz



Other differences:
--
++ kdevelop4-plugins.spec ++
--- /var/tmp/diff_new_pack.5ROoUn/_old  2016-02-22 08:57:23.0 +0100
+++ /var/tmp/diff_new_pack.5ROoUn/_new  2016-02-22 08:57:23.0 +0100
@@ -17,15 +17,16 @@
 
 
 Name:   kdevelop4-plugins
-Version:1.7.2
+Version:1.7.3
 Release:0
-%define kdevelop_version 4.7.2
+%define kdevelop_version 4.7.3
 Summary:Additional plugins for KDevelop4 Integrated Development 
Environment
 License:GPL-2.0+
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
-Source0:
http://download.kde.org/stable/kdevelop/%{kdevelop_version}/src/kdevelop-php-%{version}.tar.xz
-Source1:
http://download.kde.org/stable/kdevelop/%{kdevelop_version}/src/kdevelop-php-docs-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/kdevelop/%{kdevelop_version}/src/kdevelop-php-%{version}.tar.bz2
+Source1:
http://download.kde.org/stable/kdevelop/%{kdevelop_version}/src/kdevelop-php-docs-%{version}.tar.bz2
+Source2:missing-translations.tar.xz
 Patch0: add-php-docs.diff
 # SLE12 doesn't have kdebase4-workspace[-devel]
 %if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
@@ -36,7 +37,7 @@
 BuildRequires:  kdevelop4-devel
 BuildRequires:  kdevelop4-pg-qt
 BuildRequires:  libkde4-devel
-BuildRequires:  libkdevplatform-devel >= 1.7.2
+BuildRequires:  libkdevplatform-devel >= 1.7.3
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %kde4_runtime_requires
 
@@ -48,6 +49,15 @@
 %prep
 %setup -q -n kdevelop-php-%{version} -a 1
 %patch0 -p1
+%if 0%{?suse_version} <= 1320 && !0%{?is_opensuse}
+# fix build with older cmake versions (i.e. on 13.2 and below) by
+# readding "cmake_policy(SET CMP0002 OLD)" to po/CMakeLists.txt
+# (was in there before but has been removed in 1.7.3)
+sed -i -e "1s/^/cmake_policy(SET CMP0002 OLD)\n/" po/CMakeLists.txt
+%endif
+
+# add the translation files that are missing in 1.7.3
+tar xJf %{S:2}
 
 %build
   %cmake_kde4 -d build

++ add-php-docs.diff ++
--- /var/tmp/diff_new_pack.5ROoUn/_old  2016-02-22 08:57:23.0 +0100
+++ /var/tmp/diff_new_pack.5ROoUn/_new  2016-02-22 08:57:23.0 +0100
@@ -6,7 +6,7 @@
  add_subdirectory(duchain)
  add_subdirectory(completion)
  add_subdirectory(testprovider)
-+add_subdirectory(kdevelop-php-docs-1.7.2)
++add_subdirectory(kdevelop-php-docs-1.7.3)
  
  set(kdevphplanguagesupport_PART_SRCS
  phplanguagesupport.cpp

++ kdevelop-php-1.7.2.tar.xz -> kdevelop-php-1.7.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdevelop-php-1.7.2/CHANGELOG.1.7.2 
new/kdevelop-php-1.7.3/CHANGELOG.1.7.2
--- old/kdevelop-php-1.7.2/CHANGELOG.1.7.2  2015-10-11 13:03:14.0 
+0200
+++ new/kdevelop-php-1.7.3/CHANGELOG.1.7.2  1970-01-01 01:00:00.0 
+0100
@@ -1,4 +0,0 @@
-ChangeLog for kdev-php v1.7.2
-=
-
-* Milian Wolff: Set version to 1.7.2
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kdevelop-php-1.7.2/CHANGELOG.1.7.3 
new/kdevelop-php-1.7.3/CHANGELOG.1.7.3
--- old/kdevelop-php-1.7.2/CHANGELOG.1.7.3  1970-01-01 01:00:00.0 
+0100
+++ new/kdevelop-php-1.7.3/CHANGELOG.1.7.3  2016-01-22 19:05:51.0 
+0100
@@ -0,0 +1,5 @@
+ChangeLog for kdev-php v1.7.3
+=
+
+* Milian Wolff: Set version to 1.7.3
+* Milian Wolff: Make sure we don't access a nullptr.
diff -urN 

commit nvme-cli for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package nvme-cli for openSUSE:Factory 
checked in at 2016-02-22 08:57:54

Comparing /work/SRC/openSUSE:Factory/nvme-cli (Old)
 and  /work/SRC/openSUSE:Factory/.nvme-cli.new (New)


Package is "nvme-cli"

Changes:

--- /work/SRC/openSUSE:Factory/nvme-cli/nvme-cli.changes2016-02-16 
09:18:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.nvme-cli.new/nvme-cli.changes   2016-02-22 
08:58:01.0 +0100
@@ -1,0 +2,5 @@
+Mon Feb 15 14:52:51 UTC 2016 - jthumsh...@suse.com
+
+- Fix display of version number (boo#966740)
+
+---

Old:

  nvme-cli-v0.3.tar.gz

New:

  v0.3.tar.gz



Other differences:
--
++ nvme-cli.spec ++
--- /var/tmp/diff_new_pack.qS1u0J/_old  2016-02-22 08:58:02.0 +0100
+++ /var/tmp/diff_new_pack.qS1u0J/_new  2016-02-22 08:58:02.0 +0100
@@ -1,5 +1,5 @@
 #
-# spec file for package nvme
+# spec file for package nvme-cli
 #
 # Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
@@ -23,8 +23,8 @@
 License:GPL-2.0
 Group:  Hardware/Other
 Url:https://github.com/linux-nvme/nvme-cli
-Source: %{name}-v%{version}.tar.gz
-BuildRequires:  libudev-devel
+Source: 
https://github.com/linux-nvme/%{name}/archive/v%{version}.tar.gz
+BuildRequires:  pkgconfig(libudev)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -32,21 +32,22 @@
 cli rpm installs core management tools with minimal dependencies.
 
 %prep
-%setup -q -n %{name}-%{version}
+%setup -q
 
 %build
-make CFLAGS="$RPM_OPT_FLAGS" PREFIX=%{_prefix} %{?_smp_mflags}
+echo %{version} > version
+make CFLAGS="%{optflags}" PREFIX=%{_prefix} %{?_smp_mflags}
 
 %install
 make PREFIX=%{_prefix} DESTDIR=%{buildroot} install-bin install-man 
%{?_smp_mflags}
-install -m 644 -D completions/bash-nvme-completion.sh 
$RPM_BUILD_ROOT/etc/bash_completion.d/nvme
+install -m 644 -D completions/bash-nvme-completion.sh 
%{buildroot}%{_sysconfdir}/bash_completion.d/nvme
 
 %files
 %defattr(-,root,root)
 %doc README.md LICENSE
 %{_sbindir}/nvme
 %{_mandir}/man1/nvme*.1*
-%dir /etc/bash_completion.d/
-/etc/bash_completion.d/nvme
+%dir %{_sysconfdir}/bash_completion.d/
+%{_sysconfdir}/bash_completion.d/nvme
 
 %changelog




commit kdevelop4 for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kdevelop4 for openSUSE:Factory 
checked in at 2016-02-22 08:57:15

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


Package is "kdevelop4"

Changes:

--- /work/SRC/openSUSE:Factory/kdevelop4/kdevelop4.changes  2015-12-09 
22:20:24.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevelop4.new/kdevelop4.changes 2016-02-22 
08:57:19.0 +0100
@@ -1,0 +2,14 @@
+Thu Feb 11 19:12:48 UTC 2016 - wba...@tmo.at
+
+- Added missing-translations.tar.xz as source which contains
+  missing translation files (taken from 4.7.2)
+
+---
+Tue Jan 26 14:39:21 UTC 2016 - wba...@tmo.at
+
+- Update to 4.7.3
+  * No upstream changelog provided
+  * Bugfix release 
+- Bump libkdevplatform-devel BuildRequires to 1.7.3
+
+---

Old:

  kdevelop-4.7.2.tar.xz

New:

  kdevelop-4.7.3.tar.bz2
  missing-translations.tar.xz



Other differences:
--
++ kdevelop4.spec ++
--- /var/tmp/diff_new_pack.exwqs8/_old  2016-02-22 08:57:20.0 +0100
+++ /var/tmp/diff_new_pack.exwqs8/_new  2016-02-22 08:57:20.0 +0100
@@ -17,13 +17,14 @@
 
 
 Name:   kdevelop4
-Version:4.7.2
+Version:4.7.3
 Release:0
 Summary:Integrated Development Environment for the X Window System, 
Qt, KDE, and GNOME
 License:GPL-3.0+
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
-Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/kdevelop/%{version}/src/kdevelop-%{version}.tar.bz2
+Source1:missing-translations.tar.xz
 BuildRequires:  fdupes
 # SLE12 doesn't have kdebase4-workspace[-devel]
 %if 0%{?suse_version} != 1315 || 0%{?is_opensuse}
@@ -31,7 +32,7 @@
 %else
 BuildRequires:  libkde4-devel
 %endif
-BuildRequires:  libkdevplatform-devel >= 1.7.2
+BuildRequires:  libkdevplatform-devel >= 1.7.3
 BuildRequires:  libqjson-devel
 # Catch 13.2, but not Leap nor SLE12
 %if 0%{?suse_version} <= 1320 && ! 0%{?is_opensuse} && 0%{?suse_version} != 
1315
@@ -96,6 +97,15 @@
 %lang_package
 %prep
 %setup -q -n kdevelop-%{version}
+%if 0%{?suse_version} <= 1320 && !0%{?is_opensuse}
+# fix build with older cmake versions (i.e. on 13.2 and below) by
+# readding "cmake_policy(SET CMP0002 OLD)" to po/CMakeLists.txt
+# (was in there before but has been removed in 4.7.3)
+sed -i -e "1s/^/cmake_policy(SET CMP0002 OLD)\n/" po/CMakeLists.txt
+%endif
+
+# some translation files are missing in 4.7.3
+tar xJf %{S:1}
 
 %build
   %cmake_kde4 -d build

++ kdevelop-4.7.2.tar.xz -> kdevelop-4.7.3.tar.bz2 ++
 9857 lines of diff (skipped)




commit crmsh for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2016-02-22 08:57:57

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


Package is "crmsh"

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2016-02-08 
09:47:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2016-02-22 
08:58:03.0 +0100
@@ -1,0 +2,8 @@
+Fri Feb 19 08:59:06 UTC 2016 - kgronl...@suse.com
+
+- Update to version 2.2.0+git.1455627181.78fd949:
+  + medium: ui_configure: Only wait for DC if resources were stopped (#117)
+  + medium: hb_report: Don't collect logs on non-nodes (bsc#959031)
+  + low: Fix title style vs. sentence style in cluster scripts (bsc#892108)
+
+---

Old:

  crmsh-2.2.0+git.1454489864.2aa76e4.tar.bz2

New:

  crmsh-2.2.0+git.1455627181.78fd949.tar.bz2



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.mvBgND/_old  2016-02-22 08:58:04.0 +0100
+++ /var/tmp/diff_new_pack.mvBgND/_new  2016-02-22 08:58:04.0 +0100
@@ -36,7 +36,7 @@
 Summary:High Availability cluster command-line interface
 License:GPL-2.0+
 Group:  %{pkg_group}
-Version:2.2.0+git.1454489864.2aa76e4
+Version:2.2.0+git.1455627181.78fd949
 Release:0
 Url:http://crmsh.github.io
 Source0:%{name}-%{version}.tar.bz2

++ _servicedata ++
--- /var/tmp/diff_new_pack.mvBgND/_old  2016-02-22 08:58:04.0 +0100
+++ /var/tmp/diff_new_pack.mvBgND/_new  2016-02-22 08:58:04.0 +0100
@@ -1,4 +1,4 @@
 
 
 git://github.com/ClusterLabs/crmsh.git
-  2aa76e41e1f21d6ffbfeb317b214183e4f1ea85b
\ No newline at end of file
+  78fd94936f0edc2c9c040b72757aaed024621bc9
\ No newline at end of file

++ crmsh-2.2.0+git.1454489864.2aa76e4.tar.bz2 -> 
crmsh-2.2.0+git.1455627181.78fd949.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/crmsh-2.2.0+git.1454489864.2aa76e4/Makefile.am 
new/crmsh-2.2.0+git.1455627181.78fd949/Makefile.am
--- old/crmsh-2.2.0+git.1454489864.2aa76e4/Makefile.am  2016-02-04 
08:00:04.0 +0100
+++ new/crmsh-2.2.0+git.1455627181.78fd949/Makefile.am  2016-02-19 
09:59:06.0 +0100
@@ -78,7 +78,6 @@
--record $(DESTDIR)$(pkgpythondir)/install_files.txt \
--verbose
$(INSTALL) -d -m 770 $(DESTDIR)/$(CRM_CACHE_DIR)
-   -rm -rf $(generated_docs) $(generated_mans)
 
 uninstall-local:
cat $(DESTDIR)$(pkgpythondir)/install_files.txt | xargs rm -rf
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/crmsh-2.2.0+git.1454489864.2aa76e4/hb_report/hb_report.in 
new/crmsh-2.2.0+git.1455627181.78fd949/hb_report/hb_report.in
--- old/crmsh-2.2.0+git.1454489864.2aa76e4/hb_report/hb_report.in   
2016-02-04 08:00:04.0 +0100
+++ new/crmsh-2.2.0+git.1455627181.78fd949/hb_report/hb_report.in   
2016-02-19 09:59:06.0 +0100
@@ -533,7 +533,6 @@
 TO_TIME=$TO_TIME
 USER_NODES="$USER_NODES"
 NODES="$NODES"
-MASTER_NODE="$MASTER_NODE"
 HA_LOG=$HA_LOG
 UNIQUE_MSG=$UNIQUE_MSG
 SANITIZE="$SANITIZE"
@@ -555,9 +554,6 @@
 is_node() {
test "$THIS_IS_NODE"
 }
-is_master() {
-   ! is_collector && test "$WE" = "$MASTER_NODE"
-}
 start_slave_collector() {
local node=$1
 
@@ -1358,7 +1354,6 @@
 
 THIS_IS_NODE=""
 if ! is_collector; then
-   MASTER_NODE=$WE
NODES=`getnodes`
debug "nodes: `echo $NODES`"
 fi
@@ -1415,10 +1410,11 @@
 # part 4: find the logs and cut out the segment for the period
 #
 
-# if the master is also a node, getlog is going to be invoked
-# from the collector
-(is_master && is_node) ||
-   getlog
+is_node && getlog
+
+#
+# Start slave collectors
+#
 
 if ! is_collector; then
for node in $NODES; do
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/crmsh-2.2.0+git.1454489864.2aa76e4/modules/cibconfig.py 
new/crmsh-2.2.0+git.1455627181.78fd949/modules/cibconfig.py
--- old/crmsh-2.2.0+git.1454489864.2aa76e4/modules/cibconfig.py 2016-02-04 
08:00:04.0 +0100
+++ new/crmsh-2.2.0+git.1455627181.78fd949/modules/cibconfig.py 2016-02-19 
09:59:06.0 +0100
@@ -23,7 +23,7 @@
 from . import orderedset
 from . import cibstatus
 from . import crm_gv
-from .ra import get_ra, get_properties_list, get_pe_meta
+from .ra import get_ra, get_properties_list, get_pe_meta, get_properties_meta
 from .msg import common_warn, common_err, common_debug, common_info, err_buf
 from .msg import common_error, 

commit python3-psutil for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python3-psutil for openSUSE:Factory 
checked in at 2016-02-22 08:57:50

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


Package is "python3-psutil"

Changes:

--- /work/SRC/openSUSE:Factory/python3-psutil/python3-psutil.changes
2016-02-01 19:57:09.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-psutil.new/python3-psutil.changes   
2016-02-22 08:57:57.0 +0100
@@ -1,0 +2,42 @@
+Wed Feb 17 16:58:17 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * removed examples from %doc, not in tar-ball anymore
+
+- update to version 4.0.0:
+  * #523: [Linux, FreeBSD] disk_io_counters() return a new "busy_time"
+ field.
+  * #660: [Windows] make.bat is smarter in finding alternative VS
+ install locations. (patch by mpderbec)
+  * #732: Process.environ(). (patch by Frank Benkstein)
+  * #753: [Linux, OSX, Windows] Process USS and PSS (Linux) "real"
+ memory stats. (patch by Eric Rahm)
+  * #755: Process.memory_percent() "memtype" parameter.
+  * #758: tests now live in psutil namespace.
+  * #760: expose OS constants (psutil.LINUX, psutil.OSX, etc.)
+  * #756: [Linux] disk_io_counters() return 2 new fields:
+ read_merged_count and write_merged_count.
+  * #762: new scripts/procsmem.py script.
+  * #704: [Solaris] psutil does not compile on Solaris sparc.
+  * #734: on Python 3 invalid UTF-8 data is not correctly handled for
+ process name(), cwd(), exe(), cmdline() and open_files() methods
+ resulting in UnicodeDecodeError exceptions. 'surrogateescape'
+ error handler is now used as a workaround for replacing the
+ corrupted data.
+  * #737: [Windows] when the bitness of psutil and the target process
+ was different cmdline() and cwd() could return a wrong result or
+ incorrectly report an AccessDenied error.
+  * #741: [OpenBSD] psutil does not compile on mips64.
+  * #751: [Linux] fixed call to Py_DECREF on possible Null object.
+  * #754: [Linux] cmdline() can be wrong in case of zombie process.
+  * #759: [Linux] Process.memory_maps() may return paths ending with "
+ (deleted)"
+  * #761: [Windows] psutil.boot_time() wraps to 0 after 49 days.
+  * #764: [NetBSD] fix compilation on NetBSD-6.x.
+  * #766: [Linux] net_connections() can't handle malformed
+ /proc/net/unix file.
+  * #767: [Linux] disk_io_counters() may raise ValueError on 2.6
+ kernels and it's broken on 2.4 kernels.
+  * #770: [NetBSD] disk_io_counters() metrics didn't update.
+
+---

Old:

  psutil-3.4.2.tar.gz

New:

  psutil-4.0.0.tar.gz



Other differences:
--
++ python3-psutil.spec ++
--- /var/tmp/diff_new_pack.ePhK4B/_old  2016-02-22 08:57:58.0 +0100
+++ /var/tmp/diff_new_pack.ePhK4B/_new  2016-02-22 08:57:58.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-psutil
-Version:3.4.2
+Version:4.0.0
 Release:0
 Summary:A process utilities module for Python
 License:BSD-3-Clause
@@ -54,7 +54,7 @@
 
 %files
 %defattr(-,root,root,-)
-%doc CREDITS examples HISTORY.rst LICENSE README.rst TODO
+%doc CREDITS HISTORY.rst LICENSE README.rst TODO
 %{python3_sitearch}/psutil/
 %{python3_sitearch}/psutil/_psutil_*.so
 %{python3_sitearch}/psutil-%{version}-py*.egg-info

++ psutil-3.4.2.tar.gz -> psutil-4.0.0.tar.gz ++
 20051 lines of diff (skipped)




commit glpk for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package glpk for openSUSE:Factory checked in 
at 2016-02-22 08:57:53

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


Package is "glpk"

Changes:

--- /work/SRC/openSUSE:Factory/glpk/glpk.changes2015-11-08 
14:36:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.glpk.new/glpk.changes   2016-02-22 
08:57:59.0 +0100
@@ -1,0 +2,17 @@
+Fri Feb 19 07:15:46 UTC 2016 - mplus...@suse.com
+
+- Update to 4.58
+  * The solution file format used by API routines glp_read_sol, 
+glp_write_sol, glp_read_ipt, glp_write_ipt, glp_read_mip, and 
+glp_write_mip was changed. For more details please see the GLPK
+reference manual included in the distribution.
+  * The tan function (trigonometric tangent) was added to GNU 
+MathProg modeling language.
+  * A new version of the document "Modeling Language GNU MathProg" 
+in Spanish was included (in LaTeX and pdf formats).
+  * A check to determine if libtool needs '-no-undefined' flag to
+build shared libraries on some platforms was added.
+  * A script to regenerate the configure script and the Makefiles
+was added.
+
+---

Old:

  glpk-4.57.tar.gz
  glpk-4.57.tar.gz.sig

New:

  glpk-4.58.tar.gz
  glpk-4.58.tar.gz.sig



Other differences:
--
++ glpk.spec ++
--- /var/tmp/diff_new_pack.bgriXT/_old  2016-02-22 08:58:00.0 +0100
+++ /var/tmp/diff_new_pack.bgriXT/_new  2016-02-22 08:58:00.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package glpk
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,9 +16,9 @@
 #
 
 
-%define lname   libglpk36
+%define lname   libglpk39
 Name:   glpk
-Version:4.57
+Version:4.58
 Release:0
 Summary:GNU Linear Programming Kit
 License:GPL-3.0

++ glpk-4.57.tar.gz -> glpk-4.58.tar.gz ++
 37240 lines of diff (skipped)





commit python3-zope.event for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python3-zope.event for 
openSUSE:Factory checked in at 2016-02-22 08:57:51

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


Package is "python3-zope.event"

Changes:

--- /work/SRC/openSUSE:Factory/python3-zope.event/python3-zope.event.changes
2015-10-22 12:59:17.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-zope.event.new/python3-zope.event.changes   
2016-02-22 08:57:58.0 +0100
@@ -1,0 +2,7 @@
+Wed Feb 17 16:54:17 UTC 2016 - a...@gmx.de
+
+- update to version 4.2.0:
+  * Add support for Python 3.5.
+  * Drop support for Python 2.6 and 3.2.
+
+---

Old:

  zope.event-4.1.0.tar.gz

New:

  zope.event-4.2.0.tar.gz



Other differences:
--
++ python3-zope.event.spec ++
--- /var/tmp/diff_new_pack.t2XYUe/_old  2016-02-22 08:57:59.0 +0100
+++ /var/tmp/diff_new_pack.t2XYUe/_new  2016-02-22 08:57:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-zope.event
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python3-zope.event
-Version:4.1.0
+Version:4.2.0
 Release:0
 Summary:Very basic event publishing system
 License:ZPL-2.1

++ zope.event-4.1.0.tar.gz -> zope.event-4.2.0.tar.gz ++
 1965 lines of diff (skipped)




commit python-jupyter_ipywidgets for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-jupyter_ipywidgets for 
openSUSE:Factory checked in at 2016-02-22 08:57:34

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


Package is "python-jupyter_ipywidgets"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipywidgets/python-jupyter_ipywidgets.changes
  2015-10-14 16:45:15.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipywidgets.new/python-jupyter_ipywidgets.changes
 2016-02-22 08:57:43.0 +0100
@@ -1,0 +2,49 @@
+Thu Feb 18 10:57:47 UTC 2016 - toddrme2...@gmail.com
+
+- update to version 4.1.1:
+  * More detailed dev-install instructions
+  * add 'npm is required' message when files are missing
+  * fix version_info
+  * Don't prefix with v
+  * Update the RELEASE instructions
+- update to version 4.1.0:
+  * Add release instructions
+  * Reuse backend's widgets
+  * Move ready trigger
+  * Add `ready` event which fires when the widget receives its first state
+  * 0 is falsy
+  * Pass the correct Comm target name in create_widget
+  * Do not send comm_info for workaround widget
+  * Search for css selectors using the parent element
+  * Fixes
+  * Add the ability to change the readout logic easily.
+  * Fix version in py file
+  * Run interact manual on Text widget submit
+  * Fix clean-css too
+  * Include float/int text and progress widgets too
+  * Only update slider description on description change
+  * Fixes, - Behavior so the readout render - Listen to the correct
+jqueryui event
+  * Add `continuous` flag to the sliders, which allows you to set
+whether or not the sliders update as they are being dragged.
+  * Allow for numeric labels and retain type information on selection
+  * Stricter LESS and Bower versions, and make sure bower is ran silently
+  * Fix collapse/expand bug on accordion title change.
+  * Import get_ipython() since it is no longer available globally.
+  * Don't filter on the javascript side
+  * Use the _get_comm_info method to reconstruct all widget models
+living in the backend.
+  * Close the widget area when there are no more widget views.
+  * Allow change of description
+  * Adding color picker widget
+  * Move create_model back into WidgetManager
+  * Reference persistence callbacks in WidgetManager, not ManagerBase
+  * fix typo in comm creation conditional
+  * Handle case where options are missing in new_widget call.
+  * Fix that/this context error
+  * Change postinstall to prepublish
+  * Bug fix
+  * Finish decoupling of the manager
+  * Begin notebook decoupling effort.
+
+---

Old:

  ipywidgets-4.0.3.tar.gz

New:

  ipywidgets-4.1.1.tar.gz



Other differences:
--
++ python-jupyter_ipywidgets.spec ++
--- /var/tmp/diff_new_pack.KTtf5F/_old  2016-02-22 08:57:44.0 +0100
+++ /var/tmp/diff_new_pack.KTtf5F/_new  2016-02-22 08:57:44.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-jupyter_ipywidgets
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-jupyter_ipywidgets
-Version:4.0.3
+Version:4.1.1
 Release:0
 Summary:IPython HTML widgets for Jupyter
 License:BSD-3-Clause

++ ipywidgets-4.0.3.tar.gz -> ipywidgets-4.1.1.tar.gz ++
 1861 lines of diff (skipped)




commit libu2f-host for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package libu2f-host for openSUSE:Factory 
checked in at 2016-02-22 08:57:59

Comparing /work/SRC/openSUSE:Factory/libu2f-host (Old)
 and  /work/SRC/openSUSE:Factory/.libu2f-host.new (New)


Package is "libu2f-host"

Changes:

--- /work/SRC/openSUSE:Factory/libu2f-host/libu2f-host.changes  2015-10-14 
16:44:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.libu2f-host.new/libu2f-host.changes 
2016-02-22 08:58:04.0 +0100
@@ -1,0 +2,14 @@
+Thu Feb 18 11:57:06 UTC 2016 - t.gru...@katodev.de
+
+- Version 1.1.0 (released 2016-02-15)
+  - Add udev rules for more devices.
+  - Don’t return success when no data is received.
+  - Fix typos.
+  - Make send_apdu send data like chrome does.
+  - Don’t release json object that we don’t own no more.
+  - Don’t do memcmp on uninitialized memory.
+  - Add u2fh_authenticate2() and u2fh_register2().
+  - Remove base64 padding (required by spec).
+  - Use unsigned ints to prevent buffer overflows.
+
+---

Old:

  libu2f-host-1.0.0.tar.xz
  libu2f-host-1.0.0.tar.xz.sig

New:

  libu2f-host-1.1.0.tar.xz
  libu2f-host-1.1.0.tar.xz.sig



Other differences:
--
++ libu2f-host.spec ++
--- /var/tmp/diff_new_pack.o2W12o/_old  2016-02-22 08:58:05.0 +0100
+++ /var/tmp/diff_new_pack.o2W12o/_new  2016-02-22 08:58:05.0 +0100
@@ -18,7 +18,7 @@
 
 %define soname  0
 Name:   libu2f-host
-Version:1.0.0
+Version:1.1.0
 Release:0
 Summary:Yubico Universal 2nd Factor (U2F) Host C Library
 License:GPL-3.0+
@@ -79,14 +79,12 @@
 %setup -q
 
 %build
-%configure --disable-static --with-openssl
+%configure --disable-static --with-openssl --with-udevrulesdir=%{_udevrulesdir}
 make   %{?_smp_mflags}
 
 %install
 make install DESTDIR=%{buildroot} INSTALL="install -p"
 find %{buildroot} -type f -name "*.la" -delete -print
-mkdir -pv %{buildroot}%{_udevrulesdir}
-install -D -m 644  ${RPM_BUILD_DIR}/%{name}-%{version}/70-u2f.rules 
%{buildroot}%{_udevrulesdir}
 
 %post
 %{?udev_rules_update:%udev_rules_update}
@@ -112,7 +110,7 @@
 %files -n %{name}%{soname}
 %defattr(-,root,root)
 %{_libdir}/%{name}.so.%{soname}
-%{_libdir}/%{name}.so.%{soname}.0.5
+%{_libdir}/%{name}.so.%{soname}.1.0
 
 %files -n %{name}-devel
 %defattr(-,root,root)

++ libu2f-host-1.0.0.tar.xz -> libu2f-host-1.1.0.tar.xz ++
 5533 lines of diff (skipped)




commit libmlt for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package libmlt for openSUSE:Factory checked 
in at 2016-02-22 08:57:35

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


Package is "libmlt"

Changes:

--- /work/SRC/openSUSE:Factory/libmlt/libmlt.changes2015-11-16 
18:52:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.libmlt.new/libmlt.changes   2016-02-22 
08:57:44.0 +0100
@@ -1,0 +2,6 @@
+Thu Feb 18 09:58:13 UTC 2016 - o...@aepfle.de
+
+- Remove usage of depcrecated functions
+  libmlt-ffmpeg3.patch
+
+---

New:

  libmlt-ffmpeg3.patch



Other differences:
--
++ libmlt.spec ++
--- /var/tmp/diff_new_pack.xfNc61/_old  2016-02-22 08:57:45.0 +0100
+++ /var/tmp/diff_new_pack.xfNc61/_new  2016-02-22 08:57:45.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package libmlt
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -49,6 +49,7 @@
 # PATCH-FIX-UPSTREAM use-recommended-freetype-include.patch -- Freetype 
upstream recommends using their macros together with
 # ft2build include. Positive sideeffect is that this patch makes it build with 
both freetype2 2.5.1, and older versions
 Patch2: use-recommended-freetype-include.patch
+Patch3: libmlt-ffmpeg3.patch
 BuildRequires:  gcc-c++
 BuildRequires:  ladspa-devel
 BuildRequires:  pkg-config
@@ -88,6 +89,7 @@
 BuildRequires:  pkgconfig(libavdevice)
 BuildRequires:  pkgconfig(libavformat)
 BuildRequires:  pkgconfig(libavutil)
+BuildRequires:  pkgconfig(libpostproc)
 BuildRequires:  pkgconfig(libswscale)
 %if %{with vdpau}
 BuildRequires:  pkgconfig(vdpau)
@@ -229,6 +231,7 @@
 %setup -q -n %{_name}-%{version}
 %patch1
 %patch2 -p1
+%patch3 -p1
 
 # To complement libmlt-0.8.0-vdpau.patch.
 # When vdpau support is not compiled it will break the code. Doesn't matter 
because the code will not be used anyway.

++ libmlt-ffmpeg3.patch ++
---
 src/modules/avformat/consumer_avformat.c |   25 +++---
 src/modules/avformat/filter_avcolour_space.c |   19 ++--
 src/modules/avformat/filter_avdeinterlace.c  |   22 ++---
 src/modules/avformat/filter_swscale.c|   17 ++--
 src/modules/avformat/producer_avformat.c |  103 +--
 src/modules/avformat/vdpau.c |6 -
 6 files changed, 98 insertions(+), 94 deletions(-)

Index: mlt-0.9.8/src/modules/avformat/consumer_avformat.c
===
--- mlt-0.9.8.orig/src/modules/avformat/consumer_avformat.c
+++ mlt-0.9.8/src/modules/avformat/consumer_avformat.c
@@ -41,6 +41,7 @@
 #include 
 #include 
 #include 
+#include 
 
 #if LIBAVCODEC_VERSION_MAJOR < 55
 #define AV_CODEC_ID_PCM_S16LE CODEC_ID_PCM_S16LE
@@ -439,18 +440,18 @@ static void apply_properties( void *obj,
}
 }
 
-static enum PixelFormat pick_pix_fmt( mlt_image_format img_fmt )
+static enum AVPixelFormat pick_pix_fmt( mlt_image_format img_fmt )
 {
switch ( img_fmt )
{
case mlt_image_rgb24:
-   return PIX_FMT_RGB24;
+   return AV_PIX_FMT_RGB24;
case mlt_image_rgb24a:
-   return PIX_FMT_RGBA;
+   return AV_PIX_FMT_RGBA;
case mlt_image_yuv420p:
-   return PIX_FMT_YUV420P;
+   return AV_PIX_FMT_YUV420P;
default:
-   return PIX_FMT_YUYV422;
+   return AV_PIX_FMT_YUYV422;
}
 }
 
@@ -798,7 +799,7 @@ static AVStream *add_video_stream( mlt_c
st->time_base = c->time_base;
 
// Default to the codec's first pix_fmt if possible.
-   c->pix_fmt = pix_fmt? av_get_pix_fmt( pix_fmt ) : codec? 
codec->pix_fmts[0] : PIX_FMT_YUV420P;
+   c->pix_fmt = pix_fmt? av_get_pix_fmt( pix_fmt ) : codec? 
codec->pix_fmts[0] : AV_PIX_FMT_YUV420P;

switch ( colorspace )
{
@@ -1032,7 +1033,7 @@ static int open_video( mlt_properties pr
 
if( codec && codec->pix_fmts )
{
-   const enum PixelFormat *p = codec->pix_fmts;
+   const enum AVPixelFormat *p = codec->pix_fmts;
for( ; *p!=-1; p++ )
{
if( *p == video_enc->pix_fmt )
@@ -1792,10 +1793,10 @@ static void *consumer_thread( void *arg
// Do the colour space 
conversion
   

commit dtb-source for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package dtb-source for openSUSE:Factory 
checked in at 2016-02-22 08:57:09

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


Package is "dtb-source"

Changes:

dtb-armv6l.changes: same change
dtb-armv7l.changes: same change
--- /work/SRC/openSUSE:Factory/dtb-source/dtb-source.changes2016-02-09 
16:50:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.dtb-source.new/dtb-source.changes   
2016-02-22 08:57:10.0 +0100
@@ -1,0 +2,5 @@
+Tue Feb  9 22:45:39 UTC 2016 - dmuel...@suse.com
+
+- disable bcm2836, not yet entered Factory
+
+---



Other differences:
--
dtb-armv6l.spec: same change
++ dtb-armv7l.spec ++
--- /var/tmp/diff_new_pack.tMQ3fG/_old  2016-02-22 08:57:11.0 +0100
+++ /var/tmp/diff_new_pack.tMQ3fG/_new  2016-02-22 08:57:11.0 +0100
@@ -120,15 +120,6 @@
 %description -n dtb-armada-xp
 Device Tree Files for Armada XP based systems.
 
-%package -n dtb-bcm2836
-Summary:Raspberry Pi 2 Model B
-Group:  System/Boot
-Provides:   multiversion(dtb)
-Requires(post): coreutils
-
-%description -n dtb-bcm2836
-Device Tree Files for Raspberry Pi 2 Model B.
-
 %package -n dtb-dove
 Summary:Marvell dove based systems
 Group:  System/Boot
@@ -438,7 +429,7 @@
 export DTC_FLAGS="-R 4 -p 0x1000"
 
 cd %{_prefix}/src/linux/arch/arm/boot/dts
-for dts in am335x-*.dts am3517*.dts am57xx-*.dts armada-370-*.dts 
armada-375-*.dts armada-385-*.dts armada-388-*.dts armada-398-*.dts 
armada-xp-*.dts bcm2836*.dts dove-*.dts exynos4*.dts exynos5*.dts imx5*.dts 
imx6*.dts imx7*.dts k2e-*.dts k2hk-*.dts k2l-*.dts meson6-*.dts meson8-*.dts 
meson8b-*.dts omap3*.dts omap4*.dts omap5*.dts qcom-*.dts rk3*.dts ste-*.dts 
sun4i-*.dts sun5i-*.dts sun6i-*.dts sun7i-*.dts sun8i-*.dts sun9i-*.dts 
tegra20-*.dts tegra30-*.dts tegra114-*.dts tegra124-*.dts vexpress-*.dts 
vf500-*.dts vf610-*.dts xenvm-*.dts zynq-*.dts ; do
+for dts in am335x-*.dts am3517*.dts am57xx-*.dts armada-370-*.dts 
armada-375-*.dts armada-385-*.dts armada-388-*.dts armada-398-*.dts 
armada-xp-*.dts dove-*.dts exynos4*.dts exynos5*.dts imx5*.dts imx6*.dts 
imx7*.dts k2e-*.dts k2hk-*.dts k2l-*.dts meson6-*.dts meson8-*.dts 
meson8b-*.dts omap3*.dts omap4*.dts omap5*.dts qcom-*.dts rk3*.dts ste-*.dts 
sun4i-*.dts sun5i-*.dts sun6i-*.dts sun7i-*.dts sun8i-*.dts sun9i-*.dts 
tegra20-*.dts tegra30-*.dts tegra114-*.dts tegra124-*.dts vexpress-*.dts 
vf500-*.dts vf610-*.dts xenvm-*.dts zynq-*.dts ; do
target=${dts%*.dts}
mkdir -p $PPDIR/$(dirname $target)
cpp -x assembler-with-cpp -undef -D__DTS__ -nostdinc -I. -I./include/ 
-P $target.dts -o $PPDIR/$target.dts
@@ -452,7 +443,7 @@
 %if "dtb-armv7l" != "dtb-source"
 
 cd pp
-for dts in am335x-*.dts am3517*.dts am57xx-*.dts armada-370-*.dts 
armada-375-*.dts armada-385-*.dts armada-388-*.dts armada-398-*.dts 
armada-xp-*.dts bcm2836*.dts dove-*.dts exynos4*.dts exynos5*.dts imx5*.dts 
imx6*.dts imx7*.dts k2e-*.dts k2hk-*.dts k2l-*.dts meson6-*.dts meson8-*.dts 
meson8b-*.dts omap3*.dts omap4*.dts omap5*.dts qcom-*.dts rk3*.dts ste-*.dts 
sun4i-*.dts sun5i-*.dts sun6i-*.dts sun7i-*.dts sun8i-*.dts sun9i-*.dts 
tegra20-*.dts tegra30-*.dts tegra114-*.dts tegra124-*.dts vexpress-*.dts 
vf500-*.dts vf610-*.dts xenvm-*.dts zynq-*.dts ; do
+for dts in am335x-*.dts am3517*.dts am57xx-*.dts armada-370-*.dts 
armada-375-*.dts armada-385-*.dts armada-388-*.dts armada-398-*.dts 
armada-xp-*.dts dove-*.dts exynos4*.dts exynos5*.dts imx5*.dts imx6*.dts 
imx7*.dts k2e-*.dts k2hk-*.dts k2l-*.dts meson6-*.dts meson8-*.dts 
meson8b-*.dts omap3*.dts omap4*.dts omap5*.dts qcom-*.dts rk3*.dts ste-*.dts 
sun4i-*.dts sun5i-*.dts sun6i-*.dts sun7i-*.dts sun8i-*.dts sun9i-*.dts 
tegra20-*.dts tegra30-*.dts tegra114-*.dts tegra124-*.dts vexpress-*.dts 
vf500-*.dts vf610-*.dts xenvm-*.dts zynq-*.dts ; do
target=${dts%*.dts}
install -m 700 -d %{buildroot}%{dtbdir}/$(dirname $target)
install -m 644 $target.dtb %{buildroot}%{dtbdir}/$(dirname $target)
@@ -522,13 +513,6 @@
 # Unless /boot/dtb exists as real directory, create a symlink.
 [ -d dtb ] || ln -sf dtb-%{kernel_version}-%{kernel_release} dtb
 
-%post -n dtb-bcm2836
-cd /boot
-# If /boot/dtb is a symlink, remove it, so that we can replace it.
-[ -d dtb ] && [ -L dtb ] && rm -f dtb
-# Unless /boot/dtb exists as real directory, create a symlink.
-[ -d dtb ] || ln -sf dtb-%{kernel_version}-%{kernel_release} dtb
-
 %post -n dtb-dove
 cd /boot
 # If /boot/dtb is a symlink, remove it, so that we can replace it.
@@ -823,13 +807,6 @@
 %dir %{dtbdir}
 

commit python-jupyter_ipython for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-jupyter_ipython for 
openSUSE:Factory checked in at 2016-02-22 08:57:40

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


Package is "python-jupyter_ipython"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-jupyter_ipython/python-jupyter_ipython-doc.changes
2015-11-18 22:33:45.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-jupyter_ipython.new/python-jupyter_ipython-doc.changes
   2016-02-22 08:57:48.0 +0100
@@ -1,0 +2,39 @@
+Wed Feb 17 14:43:15 UTC 2016 - toddrme2...@gmail.com
+
+- specfile:
+  * update copyright year
+  * Simplify tests for determining whether to build pdf documentation
+- update to version 4.1.1:
+  * Backport #9209: Don't import IPython to check version number in
+setup
+- Update to 4.1.0
+  * Release February, 2016. IPython 4.1 contain mostly bug fixes.
+It though contain a few improvement.
+  * IPython debugger (IPdb) now supports the number of context
+lines for the where (and w) commands. The context keyword is
+also available in various APIs. See PR :ghpull:`9097`
+  * YouTube video will now show thumbnail when exported to a media
+that do not support video. (:ghpull:`9086`)
+  * Add warning when running ipython  when subcommand
+is deprecated. jupyter should now be used.
+  * Code in %pinfo (also known as ??) are now highlighter
+(:ghpull:`8947`)
+  * %aimport now support module completion. (:ghpull:`8884`)
+  * ipdb output is now colored ! (:ghpull:`8842`)
+  * Add ability to transpose columns for completion:
+(:ghpull:`8748`)
+  * Many many docs improvements and bug fixes
+- update to version 4.0.3:
+  * Python 3.5 bug in that could crash during shutdown, triggered by
+deprecations in traitlets 4.1.
+  * Typo in deprecation message for nbconvert
+- update to version 4.0.2:
+  * Fix backward-compatiblity shim for "IPython.Config", which
+should have been deprecated instead of removed. This will be
+removed in 5.0.
+- update to version 4.0.1:
+  * Installation on some systems
+  * Compatibility with CPython 3.4.4
+  * Compatibility with Qt5
+
+---
python-jupyter_ipython.changes: same change

Old:

  ipython-4.0.0.tar.gz

New:

  ipython-4.1.1.tar.gz



Other differences:
--
++ python-jupyter_ipython-doc.spec ++
--- /var/tmp/diff_new_pack.bFOiSM/_old  2016-02-22 08:57:49.0 +0100
+++ /var/tmp/diff_new_pack.bFOiSM/_new  2016-02-22 08:57:49.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-jupyter_ipython-doc
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,9 +15,22 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+%if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} > 
1110 )
+# PDF documentation currently broken
+# %define build_pdf 1
+%define build_pdf 0
+%else
+%define build_pdf 0
+%endif
+
+%if 0%{?suse_version} && 0%{?suse_version} > 1320
+%define run_tests 1
+%else
+%define run_tests 0
+%endif
 
 Name:   python-jupyter_ipython-doc
-Version:4.0.0
+Version:4.1.1
 Release:0
 Summary:Documentation for python-jupyter_ipython
 License:BSD-3-Clause
@@ -27,7 +40,7 @@
 BuildRequires:  fdupes
 BuildRequires:  python-jupyter_ipython
 BuildRequires:  python-jupyter_ipykernel
-%if 0%{?suse_version} && 0%{?suse_version} > 1320
+%if %{run_tests}
 # Test Requirements
 BuildRequires:  python-jupyter_ipython-iptest
 %endif
@@ -39,28 +52,28 @@
 BuildRequires:  python-nose
 BuildRequires:  python-numpydoc
 BuildRequires:  python-requests
-%if 0%{?suse_version} && ( 0%{?suse_version} != 1315 && 0%{?suse_version} > 
1110 )
+%if %{build_pdf}
 BuildRequires:  python-Sphinx-latex
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
 %description
-Documentation and help files for python-jupyter_ipython
+Documentation and help files for python-jupyter_ipython.
 
 %package html
 Summary:HTML documentation for python-jupyter_ipython
 Recommends: python-jupyter_ipython = %{version}
 
 %description html
-Documentation and help files for python-jupyter_ipython in HTML format
+Documentation and help files for python-jupyter_ipython in HTML format.
 
 %package pdf
-Summary:HTML documentation for python-jupyter_ipython
+Summary:PDF documentation for 

commit laptop-mode-tools for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package laptop-mode-tools for 
openSUSE:Factory checked in at 2016-02-22 08:57:11

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


Package is "laptop-mode-tools"

Changes:

--- /work/SRC/openSUSE:Factory/laptop-mode-tools/laptop-mode-tools.changes  
2016-01-05 21:55:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.laptop-mode-tools.new/laptop-mode-tools.changes 
2016-02-22 08:57:11.0 +0100
@@ -1,0 +2,31 @@
+Wed Feb 10 14:19:01 UTC 2016 - rob...@linux-source.org
+
+- Add laptop-mode.timer and lmt-poll.service to spec file
+- Fix spec file when checking suse_version macro
+- Update to version 1.68.1:
+  + Update details about runtime-pm in manpage
+  + Revert "Drop out reload"
+  + Log error more descriptively
+  + Write to common stderr. Do not hardcode a specific one
+  + Call lmt-udev in lmt-poll. Don't call the laptop_mode binary directly.
+  + Helps in a lot of housekeeping
+  + Direct stderr/stdout to journal
+  + Fix stdout descriptor
+  + Install the new .timer and poll service
+  + Use _sbindir for RPM 
+- Changes from version 1.68:
+  + Fix all instances for BATTERY_LEVEL_POLLING
+  + Group kill the polling daemon so that its child process get the same signal
+  + Release the descriptor explicitly
+  + Add identifier about who's our parent
+  + Narrow down our power_supply subsystem event check condition
+  + Fine tune the .service file
+  + On my ultrabook, AC as reported as ACAD
+  + Enhance lmt-udev to better work with systemd
+  + Add a timer based polling for LMT. It is the equivalent of 
battery-polling-daemon, using systemd
+  + Disable battery level polling by default, because most systems will have 
systemd running
+  + Add documentation reference in systemd files
+  + Update release-checklist
+- Rebase laptop-mode-1.53-fix-pm-utils-sleep-script.diff 
+
+---

Old:

  laptop-mode-tools_1.67.tar.gz

New:

  laptop-mode-tools_1.68.1.tar.gz



Other differences:
--
++ laptop-mode-tools.spec ++
--- /var/tmp/diff_new_pack.qAVE9M/_old  2016-02-22 08:57:12.0 +0100
+++ /var/tmp/diff_new_pack.qAVE9M/_new  2016-02-22 08:57:12.0 +0100
@@ -20,7 +20,7 @@
 %{!?_udevdir:%global _udevdir  %{_libexecdir}/udev}
 
 Name:   laptop-mode-tools
-Version:1.67
+Version:1.68.1
 Release:0
 Summary:The Laptop Mode Tools
 License:GPL-2.0+
@@ -75,7 +75,7 @@
 rm -r %{buildroot}%{_sysconfdir}/init.d
 # Hack to remove sysvinit script link in usr/sbin
 ln -s service %{buildroot}/%{_sbindir}/rclaptop-mode
-%if 0%{?suse_version} > 1315
+%if 0%{?suse_version} >= 1315
 # remove pm-utils hook: as soon as DESTDIR is defined, the hook is always 
installed
 rm -rf %{buildroot}%{_libexecdir}/pm-utils
 %endif
@@ -123,5 +123,9 @@
 %doc README.SUSE
 %{_tmpfilesdir}/laptop-mode.conf
 %{_unitdir}/laptop-mode.service
+%if 0%{?suse_version} >= 1315
+%{_unitdir}/laptop-mode.timer
+%{_unitdir}/lmt-poll.service
+%endif
 
 %changelog

++ laptop-mode-1.53-fix-pm-utils-sleep-script.diff ++
--- /var/tmp/diff_new_pack.qAVE9M/_old  2016-02-22 08:57:12.0 +0100
+++ /var/tmp/diff_new_pack.qAVE9M/_new  2016-02-22 08:57:12.0 +0100
@@ -1,14 +1,14 @@
-Index: b/etc/pm/sleep.d/01laptop-mode
-
 laptop-mode-tools_1.53/usr/lib/pm-utils/sleep.d/01laptop-mode
-+++ laptop-mode-tools_1.53/usr/lib/pm-utils/sleep.d/01laptop-mode
-@@ -13,7 +13,8 @@
-   # Make laptop mode tools forcibly re-apply the hardware 
settings
-   # that laptop mode tools applies.   
-   if [ -e /usr/sbin/laptop_mode ] ; then
--  /usr/sbin/laptop_mode auto force
-+  # the "cat" is because laptop_mode seems to 
truncate the output file :(
-+  /usr/sbin/laptop_mode auto force | cat
-   fi
-   ;;
-   *) exit $NA
+Index: laptop-mode-tools_1.68.1/usr/lib/pm-utils/sleep.d/01laptop-mode
+===
+--- laptop-mode-tools_1.68.1.orig/usr/lib/pm-utils/sleep.d/01laptop-mode
 laptop-mode-tools_1.68.1/usr/lib/pm-utils/sleep.d/01laptop-mode
+@@ -13,7 +13,8 @@ else
+   # Make laptop mode tools forcibly re-apply the hardware 
settings
+   # that laptop mode tools applies.   
+   if [ -e /usr/sbin/laptop_mode ] ; then
+-  

commit monitoring-plugins-repomd for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package monitoring-plugins-repomd for 
openSUSE:Factory checked in at 2016-02-22 08:57:38

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


Package is "monitoring-plugins-repomd"

Changes:

--- 
/work/SRC/openSUSE:Factory/monitoring-plugins-repomd/monitoring-plugins-repomd.changes
  2016-02-11 12:37:14.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.monitoring-plugins-repomd.new/monitoring-plugins-repomd.changes
 2016-02-22 08:57:45.0 +0100
@@ -1,0 +2,6 @@
+Thu Jan  7 19:29:47 CET 2016 - r...@suse.de
+
+- only check for revision/date if there is a suseinfo entry
+  in the repomd.xml file 
+
+---



Other differences:
--
++ check_repomd ++
--- /var/tmp/diff_new_pack.d58lxq/_old  2016-02-22 08:57:46.0 +0100
+++ /var/tmp/diff_new_pack.d58lxq/_new  2016-02-22 08:57:46.0 +0100
@@ -110,6 +110,7 @@
 fi
 
 REVISION=$($GREP revision "$RESULTFILE" | $CUT -d "<" -f2 | $CUT -d ">" -f2)
+HAS_INFO=$($GREP "type.*suseinfo" "$RESULTFILE")
 NOW=$(date +'%s')
 let DIFFERENCE=(${NOW}-${REVISION})
 let SECONDS=${DAYS}*24*60*60
@@ -123,7 +124,7 @@
echo
 fi
 
-if [[ $DIFFERENCE -gt $SECONDS ]]; then
+if [[ -n "$HAS_INFO" && $DIFFERENCE -gt $SECONDS ]]; then
cleanup_and_exit "$STATE_CRITICAL" "CRITICAL: repomd.xml from $URL is 
older than $DAYS days"
 else
cleanup_and_exit "$STATE_OK" "OK: repomd.xml from $URL is younger than 
$DAYS days"




commit cpupower for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package cpupower for openSUSE:Factory 
checked in at 2016-02-22 08:57:30

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


Package is "cpupower"

Changes:

--- /work/SRC/openSUSE:Factory/cpupower/cpupower.changes2016-02-18 
12:35:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.cpupower.new/cpupower.changes   2016-02-22 
08:57:40.0 +0100
@@ -1,0 +2,8 @@
+Tue Jan 26 17:29:27 UTC 2016 - tr...@suse.de
+
+- Move from kernel version to turbostat internal version for turbostat
+- Add latest turbostat sources (latest git commit: 30f05309bde492)
+- Adds Skylake, Broadwell and Knights Landing support for turbostat
+  (fate#319798, fate#319183, fate#319516)
+
+---

Old:

  turbostat-3.19.tar.bz2

New:

  turbostat-4.8.tar.bz2



Other differences:
--
++ cpupower.spec ++
--- /var/tmp/diff_new_pack.CQ9bli/_old  2016-02-22 08:57:41.0 +0100
+++ /var/tmp/diff_new_pack.CQ9bli/_new  2016-02-22 08:57:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package cpupower
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
 # Author: Thomas Renninger 
 #
 # All modifications and additions to the file contributed by third parties
@@ -22,7 +22,7 @@
 %define version %(rpm -q --qf '%{VERSION}' kernel-source)
 Version:3.19
 Release:0
-%define tsversion  3.19
+%define tsversion  4.8
 Summary:Tools to determine and set CPU Power related Settings
 License:GPL-2.0
 Group:  System/Base

++ make_header_file_passable_from_outside.patch ++
--- /var/tmp/diff_new_pack.CQ9bli/_old  2016-02-22 08:57:41.0 +0100
+++ /var/tmp/diff_new_pack.CQ9bli/_new  2016-02-22 08:57:41.0 +0100
@@ -1,12 +1,12 @@
-Index: turbostat-3.14/Makefile
+Index: turbostat-4.8/Makefile
 ===
 turbostat-3.14.orig/Makefile
-+++ turbostat-3.14/Makefile
-@@ -5,7 +5,6 @@ DESTDIR:=
+--- turbostat-4.8.orig/Makefile2016-01-26 18:26:10.350954918 +0100
 turbostat-4.8/Makefile 2016-01-26 18:26:40.512676659 +0100
+@@ -9,7 +9,6 @@ endif
  
  turbostat : turbostat.c
  CFLAGS += -Wall
--CFLAGS += 
-DMSRHEADER='"../../../../arch/x86/include/uapi/asm/msr-index.h"'
+-CFLAGS += -DMSRHEADER='"../../../../arch/x86/include/asm/msr-index.h"'
  
  %: %.c
@mkdir -p $(BUILD_OUTPUT)

++ turbostat-3.19.tar.bz2 -> turbostat-4.8.tar.bz2 ++
 3135 lines of diff (skipped)

++ turbostat_fix_man_perm.patch ++
--- /var/tmp/diff_new_pack.CQ9bli/_old  2016-02-22 08:57:41.0 +0100
+++ /var/tmp/diff_new_pack.CQ9bli/_new  2016-02-22 08:57:41.0 +0100
@@ -1,8 +1,8 @@
-Index: turbostat-3.13/Makefile
+Index: turbostat-4.8/Makefile
 ===
 turbostat-3.13.orig/Makefile
-+++ turbostat-3.13/Makefile
-@@ -19,4 +19,4 @@ install : turbostat
+--- turbostat-4.8.orig/Makefile2016-01-21 12:41:36.05345 +0100
 turbostat-4.8/Makefile 2016-01-26 18:25:57.334212372 +0100
+@@ -23,4 +23,4 @@ install : turbostat
install -d  $(DESTDIR)$(PREFIX)/bin
install $(BUILD_OUTPUT)/turbostat $(DESTDIR)$(PREFIX)/bin/turbostat
install -d  $(DESTDIR)$(PREFIX)/share/man/man8




commit xf86-input-wacom for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package xf86-input-wacom for 
openSUSE:Factory checked in at 2016-02-22 08:56:57

Comparing /work/SRC/openSUSE:Factory/xf86-input-wacom (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-input-wacom.new (New)


Package is "xf86-input-wacom"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-input-wacom/xf86-input-wacom.changes
2015-10-24 18:56:09.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-input-wacom.new/xf86-input-wacom.changes   
2016-02-22 08:56:58.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb 16 13:40:21 UTC 2016 - eshmar...@suse.com
+
+- Update to version 0.32.0:
+* Update release.sh script from Xorg.
+* Don't rely on IsPad() when trying to undo kernel event filtering.
+* Streamline Sourceforge login for release.sh.
+
+---

Old:

  xf86-input-wacom-0.31.0.tar.bz2

New:

  xf86-input-wacom-0.32.0.tar.bz2



Other differences:
--
++ xf86-input-wacom.spec ++
--- /var/tmp/diff_new_pack.7DCr9J/_old  2016-02-22 08:56:59.0 +0100
+++ /var/tmp/diff_new_pack.7DCr9J/_new  2016-02-22 08:56:59.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-input-wacom
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,15 +16,14 @@
 #
 
 
-%if 0%( test -d /usr/lib/udev/rules.d && echo "1" ) > 0
-%define _udevrulesdir /usr/lib/udev/rules.d
+%define install_serial 1
+%if 0%( test -d %{_libexecdir}/udev/rules.d && echo "1" ) > 0
+%define _udevrulesdir %{_libexecdir}/udev/rules.d
 %else
 %define _udevrulesdir /lib/udev/rules.d
 %endif
-%define install_serial 1
-
 Name:   xf86-input-wacom
-Version:0.31.0
+Version:0.32.0
 Release:0
 Summary:Wacom input driver for the Xorg X server
 License:GPL-2.0+
@@ -35,14 +34,9 @@
 Patch8: n_02-Log-PROXIMITY-LOW-LEVEL-events.patch
 Patch9: n_03-Log-PRESSURE-low-level-events.patch
 Patch10:n_04-Log-BUTTON-HIGH-LEVEL-events.patch
-BuildRequires:  pkg-config
-%if %{suse_version} > 1230
-BuildRequires:  systemd-rpm-macros
-%else
-BuildRequires:  systemd
-%endif
 # For directory ownership
 BuildRequires:  libtool
+BuildRequires:  pkg-config
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(inputproto)
 BuildRequires:  pkgconfig(kbproto)
@@ -68,7 +62,12 @@
 Obsoletes:  x11-input-wacom-tools < %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExcludeArch:s390 s390x
-%x11_abi_xinput_req
+%{x11_abi_xinput_req}
+%if 0%{?suse_version} > 1230
+BuildRequires:  systemd-rpm-macros
+%else
+BuildRequires:  systemd
+%endif
 
 %description
 wacom is an X input driver and utilities for Wacom devices.
@@ -92,12 +91,12 @@
 
 %build
 autoreconf -fi
-%configure --with-xorg-conf-dir=/etc/X11/xorg.conf.d --enable-logging 
--with-systemd-unit-dir=%{_unitdir} --with-udev-rules-dir=%{_udevrulesdir}
+%configure --with-xorg-conf-dir=%{_sysconfdir}/X11/xorg.conf.d 
--enable-logging --with-systemd-unit-dir=%{_unitdir} 
--with-udev-rules-dir=%{_udevrulesdir}
 make %{?_smp_mflags}
 
 %install
 %make_install
-find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
+find %{buildroot} -type f -name "*.la" -delete -print
 mv %{buildroot}%{_udevrulesdir}/wacom.rules  
%{buildroot}%{_udevrulesdir}/65-wacom.rules
 # if we don't package these remove them so no debuginfo files will be generated
 %{!?install_serial: rm %{buildroot}%{_bindir}/isdv4-serial-inputattach 
%{buildroot}%{_bindir}/isdv4-serial-debugger}
@@ -105,12 +104,12 @@
 %post
 test -n "$FIRST_ARG" || FIRST_ARG=$1
 if [ $FIRST_ARG -eq 1 ]; then
-%if %suse_version > 1230
+%if 0%{?suse_version} > 1230
 %udev_rules_update
 %else
 udevadm control --reload >/dev/null 2>&1 || : \
 %endif
-/usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
+%{_bindir}/systemctl daemon-reload >/dev/null 2>&1 || :
 fi
 # re-plug the input devices
 udevadm trigger --subsystem-match=input --action=change
@@ -119,12 +118,12 @@
 %postun
 test -n "$FIRST_ARG" || FIRST_ARG=$1
 if [ $FIRST_ARG -le 1 ]; then
-%if %suse_version > 1230
+%if 0%{?suse_version} > 1230
 %udev_rules_update
 %else
 udevadm control --reload >/dev/null 2>&1 || : \
 %endif
-/usr/bin/systemctl daemon-reload >/dev/null 2>&1 || :
+%{_bindir}/systemctl daemon-reload >/dev/null 2>&1 || :
 fi
 # re-plug the input devices
 udevadm trigger --subsystem-match=input --action=change
@@ -139,8 +138,8 @@
 %dir %{_libdir}/xorg/modules/input
 

commit tomcat for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package tomcat for openSUSE:Factory checked 
in at 2016-02-22 08:57:27

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


Package is "tomcat"

Changes:

--- /work/SRC/openSUSE:Factory/tomcat/tomcat.changes2015-11-11 
10:36:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.tomcat.new/tomcat.changes   2016-02-22 
08:57:34.0 +0100
@@ -1,0 +2,9 @@
+Wed Feb 17 18:12:57 UTC 2016 - tchva...@suse.com
+
+- Version update to 8.0.32:
+  * Another bugfix release for 8.0 series, full details:
+
http://tomcat.apache.org/tomcat-8.0-doc/changelog.html#Tomcat_8.0.32_(markt)
+- Rebase patch:
+  * tomcat-8.0.9-property-build.windows.patch
+
+---

Old:

  apache-tomcat-8.0.28-src.tar.gz
  apache-tomcat-8.0.28-src.tar.gz.asc

New:

  apache-tomcat-8.0.32-src.tar.gz
  apache-tomcat-8.0.32-src.tar.gz.asc



Other differences:
--
++ tomcat.spec ++
--- /var/tmp/diff_new_pack.GrHsZe/_old  2016-02-22 08:57:35.0 +0100
+++ /var/tmp/diff_new_pack.GrHsZe/_new  2016-02-22 08:57:35.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package tomcat
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2000-2009, JPackage Project
 #
 # All modifications and additions to the file contributed by third parties
@@ -23,7 +23,7 @@
 %define elspec 3.0
 %define major_version 8
 %define minor_version 0
-%define micro_version 28
+%define micro_version 32
 %define packdname apache-tomcat-%{version}-src
 # FHS 2.3 compliant tree structure - http://www.pathname.com/fhs/2.3/
 %define appdir /srv/%{name}/webapps
@@ -155,8 +155,8 @@
 %package el-3_0-api
 Summary:Expression Language v3.0 API
 Group:  Development/Libraries/Java
-Requires(post): %{_sbindir}/update-alternatives
-Requires(preun): %{_sbindir}/update-alternatives
+Requires(post): update-alternatives
+Requires(preun): update-alternatives
 Provides:   %{name}-el-%{elspec}-api = %{version}-%{release}
 Provides:   el_3_0_api = %{version}-%{release}
 Provides:   el_api = %{elspec}
@@ -176,8 +176,8 @@
 Summary:Apache Tomcat JSP API implementation classes
 Group:  Productivity/Networking/Web/Servers
 Requires:   %{name}-servlet-%{servletspec}-api = %{version}-%{release}
-Requires(post): %{_sbindir}/update-alternatives
-Requires(postun): %{_sbindir}/update-alternatives
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 Provides:   %{name}-jsp-%{jspspec}-api
 Provides:   jsp = %{jspspec}
 Provides:   jsp23
@@ -217,8 +217,8 @@
 %package servlet-3_1-api
 Summary:Apache Tomcat Servlet API implementation classes
 Group:  Productivity/Networking/Web/Servers
-Requires(post): %{_sbindir}/update-alternatives
-Requires(postun): %{_sbindir}/update-alternatives
+Requires(post): update-alternatives
+Requires(postun): update-alternatives
 Provides:   %{name}-servlet-%{servletspec}-api = %{version}-%{release}
 Provides:   servlet = %{servletspec}
 Provides:   servlet31
@@ -627,32 +627,32 @@
 %endif
 
 %post el-3_0-api
-%{_sbindir}/update-alternatives --install %{_javadir}/el_api.jar el_api 
%{_javadir}/%{name}-el-%{elspec}-api.jar 20300
-%{_sbindir}/update-alternatives --install %{_javadir}/el_1_0_api.jar 
el_1_0_api %{_javadir}/%{name}-el-%{elspec}-api.jar 20300
+update-alternatives --install %{_javadir}/el_api.jar el_api 
%{_javadir}/%{name}-el-%{elspec}-api.jar 20300
+update-alternatives --install %{_javadir}/el_1_0_api.jar el_1_0_api 
%{_javadir}/%{name}-el-%{elspec}-api.jar 20300
 
 %preun el-3_0-api
 if [ $1 -eq 0 ] ; then
-%{_sbindir}/update-alternatives --remove el_api 
%{_javadir}/%{name}-el-%{elspec}-api.jar
-%{_sbindir}/update-alternatives --remove el_1_0_api 
%{_javadir}/%{name}-el-%{elspec}-api.jar
+update-alternatives --remove el_api 
%{_javadir}/%{name}-el-%{elspec}-api.jar
+update-alternatives --remove el_1_0_api 
%{_javadir}/%{name}-el-%{elspec}-api.jar
 fi
 
 %post jsp-2_3-api
-%{_sbindir}/update-alternatives --install %{_javadir}/jsp.jar jsp \
+update-alternatives --install %{_javadir}/jsp.jar jsp \
 %{_javadir}/%{name}-jsp-%{jspspec}-api.jar 20200
 
 %postun jsp-2_3-api
 if [ $1 -eq 0 ] ; then
-%{_sbindir}/update-alternatives --remove jsp \
+update-alternatives --remove jsp \
 %{_javadir}/%{name}-jsp-%{jspspec}-api.jar
 fi
 
 %post servlet-3_1-api
-%{_sbindir}/update-alternatives --install %{_javadir}/servlet.jar servlet \
+update-alternatives --install %{_javadir}/servlet.jar servlet \
 

commit python-xlsxwriter for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-xlsxwriter for 
openSUSE:Factory checked in at 2016-02-22 08:57:12

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


Package is "python-xlsxwriter"

Changes:

--- /work/SRC/openSUSE:Factory/python-xlsxwriter/python-xlsxwriter.changes  
2015-12-09 22:32:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-xlsxwriter.new/python-xlsxwriter.changes 
2016-02-22 08:57:14.0 +0100
@@ -1,0 +2,17 @@
+Thu Feb 11 16:26:54 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to 0.8.4 (changes since 0.7.7):
+  * Add checks for valid and non-duplicate worksheet table names.
+  * Add chart pattern fills, see :ref:`chart_formatting_pattern`
+and :ref:`ex_chart_pattern`.
+  * Add additional documentation on :ref:`working_with_formulas`.
+  * Add option to set chart tick interval.
+  * Add transparency option to solid fill colours in chart areas
+(:ref:`chart_formatting_fill`).
+  * Add options to configure chart axis tick placement.
+See :func:`set_x_axis()`.
+  * Fix for :func:`write_url` exception when the URL contains two
+``#`` location/anchors. Note, URLs like this aren't strictly
+valid and cannot be entered manually in Excel.
+
+---

Old:

  xlsxwriter-0.7.7.tar.gz

New:

  xlsxwriter-0.8.4.tar.gz



Other differences:
--
++ python-xlsxwriter.spec ++
--- /var/tmp/diff_new_pack.75WbNd/_old  2016-02-22 08:57:16.0 +0100
+++ /var/tmp/diff_new_pack.75WbNd/_new  2016-02-22 08:57:16.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-xlsxwriter
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define _name   xlsxwriter
 Name:   python-xlsxwriter
-Version:0.7.7
+Version:0.8.4
 Release:0
 Summary:Python module for writing OOXML spreadsheet files
 License:BSD-2-Clause

++ xlsxwriter-0.7.7.tar.gz -> xlsxwriter-0.8.4.tar.gz ++
/work/SRC/openSUSE:Factory/python-xlsxwriter/xlsxwriter-0.7.7.tar.gz 
/work/SRC/openSUSE:Factory/.python-xlsxwriter.new/xlsxwriter-0.8.4.tar.gz 
differ: char 14, line 1




commit kdevplatform for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kdevplatform for openSUSE:Factory 
checked in at 2016-02-22 08:57:14

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


Package is "kdevplatform"

Changes:

--- /work/SRC/openSUSE:Factory/kdevplatform/kdevplatform.changes
2015-12-09 22:20:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdevplatform.new/kdevplatform.changes   
2016-02-22 08:57:16.0 +0100
@@ -1,0 +2,7 @@
+Tue Jan 26 14:32:28 UTC 2016 - wba...@tmo.at
+
+- Update to 1.7.3
+  * No upstream changelog provided
+  * Bugfix release 
+
+---

Old:

  kdevplatform-1.7.2.tar.xz

New:

  kdevplatform-1.7.3.tar.bz2



Other differences:
--
++ kdevplatform.spec ++
--- /var/tmp/diff_new_pack.LTJhX7/_old  2016-02-22 08:57:17.0 +0100
+++ /var/tmp/diff_new_pack.LTJhX7/_new  2016-02-22 08:57:17.0 +0100
@@ -17,15 +17,15 @@
 
 
 Name:   kdevplatform
-Version:1.7.2
+Version:1.7.3
 Release:0
-%define kdevelop_version 4.7.2
+%define kdevelop_version 4.7.3
 %define libkdev_major 8
 Summary:Base Package for Integrated Development Environments
 License:GPL-2.0+
 Group:  Development/Tools/IDE
 Url:http://www.kdevelop.org
-Source0:
http://download.kde.org/stable/kdevelop/%{kdevelop_version}/src/%{name}-%{version}.tar.xz
+Source0:
http://download.kde.org/stable/kdevelop/%{kdevelop_version}/src/%{name}-%{version}.tar.bz2
 BuildRequires:  boost-devel
 BuildRequires:  db-devel
 BuildRequires:  fdupes
@@ -51,6 +51,12 @@
 %setup -q
 echo "find_package(Msgfmt REQUIRED)" >> CMakeLists.txt
 echo "find_package(Gettext REQUIRED)" >> CMakeLists.txt
+%if 0%{?suse_version} <= 1320 && !0%{?is_opensuse}
+# fix build with older cmake versions (i.e. on 13.2 and below) by
+# readding "cmake_policy(SET CMP0002 OLD)" to po/CMakeLists.txt
+# (was in there before but has been removed in 1.7.3)
+sed -i -e "1s/^/cmake_policy(SET CMP0002 OLD)\n/" po/CMakeLists.txt
+%endif
 
 %build
   %cmake_kde4 -d build

++ kdevplatform-1.7.2.tar.xz -> kdevplatform-1.7.3.tar.bz2 ++
 7749 lines of diff (skipped)




commit cfengine for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package cfengine for openSUSE:Factory 
checked in at 2016-02-22 08:57:07

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


Package is "cfengine"

Changes:

--- /work/SRC/openSUSE:Factory/cfengine/cfengine.changes2015-12-09 
22:14:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.cfengine.new/cfengine.changes   2016-02-22 
08:57:08.0 +0100
@@ -1,0 +2,32 @@
+Mon Feb  1 12:53:33 UTC 2016 - kkae...@suse.com
+
+- Update to 3.8.1
+  Changes:
+  - Upgrade CFEngine dependencies to the following versions:
+- OpenSSL   1.0.2e
+- PCRE  8.38
+- libxml2   2.9.3
+- OpenLDAP  2.4.43
+- libcurl   7.46.0
+  - Upgrade LMDB to version 0.9.17. (Redmine #7879)
+
+  Bug fixes:
+  - @if minimum_version now correctly ignores lines starting with '@'
+(Redmine #7862)
+  - Add guard for binary upgrade during bootstrap (Redmine #7861)
+  - Namespaced classes can now be specified on the command line.
+  - Fix bad option nlwp to vzps on Proxmox / OpenVZ. (Redmine #6961)
+  - Fix two cases where action_policy warn still produces errors
+(Redmine #7274)
+  - Parse def.json vars, classes and inputs from the C code. This
+fixes a bug where certain entries in this file would be parsed
+too late to have any effect on the evaluation. (Redmine #7453, #7615)
+  - Fix HP-UX specific bug that caused a lot of log output to disappear.
+  - Check for empty server response in RemoteDirList after decryption
+(Redmine #7908)
+  - getvalues() will now return a list also for data containers,
+and will descend recursively into the containers. (Redmine #7116)
+  - Define (bootstrap|failsafe)_mode during update.cf when triggerd
+from failsafe.cf (Redmine #7861)
+
+---

Old:

  cfengine-3.8.0.tar.gz

New:

  cfengine-3.8.1.tar.gz



Other differences:
--
++ cfengine.spec ++
--- /var/tmp/diff_new_pack.KblJxT/_old  2016-02-22 08:57:09.0 +0100
+++ /var/tmp/diff_new_pack.KblJxT/_new  2016-02-22 08:57:09.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package cfengine
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,7 @@
 #
 
 
-%define srcversion 3.8.0
+%define srcversion 3.8.1
 %define srcname %{name}-%{srcversion}
 %define libname   libpromises
 %define libsoname %{libname}3
@@ -72,10 +72,10 @@
 BuildRequires:  libacl-devel
 BuildRequires:  libtool
 BuildRequires:  libxml2-devel
-BuildRequires:  lmdb-devel
-BuildRequires:  openssl-devel
+BuildRequires:  lmdb-devel >= 0.9.17
+BuildRequires:  openssl-devel >= 1.0.2e
 BuildRequires:  pam-devel
-BuildRequires:  pcre-devel
+BuildRequires:  pcre-devel >= 8.38
 %if 0%{?suse_version} == 0
 # for testing on RHEL/Fedora
 BuildRequires:  fakeroot

++ cfengine-3.8.0.tar.gz -> cfengine-3.8.1.tar.gz ++
 3302 lines of diff (skipped)




commit rubygem-r10k for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package rubygem-r10k for openSUSE:Factory 
checked in at 2016-02-22 08:57:06

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


Package is "rubygem-r10k"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-r10k/rubygem-r10k.changes
2015-02-16 21:47:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-r10k.new/rubygem-r10k.changes   
2016-02-22 08:57:07.0 +0100
@@ -1,0 +2,47 @@
+Fri Nov 27 15:17:23 UTC 2015 - tampak...@opensuse.org
+
+- Version bump 2.1.1, see:
+  https://github.com/puppetlabs/r10k/compare/1.5.1...2.1.1#files_bucket
+
+---
+Wed May 27 08:12:49 UTC 2015 - dg...@suse.com
+
+- gemspec and faraday9 patches deleted:
+* faraday9.patch
+* gemspec.patch
+
+---
+Mon May 11 14:18:02 UTC 2015 - tampak...@opensuse.org
+
+- Version bump 1.5.1:
+  * 1.4.2:
+* (RK-4) Raise meaningful errors on missing sources
+* (GH-310, RK-36) r10k deploy display -p --detail fails on Ruby 1.8.7
+https://github.com/puppetlabs/r10k/blob/master/CHANGELOG.mkd#142
+  * 1.5.0:
+* (GH-57) Git based modules fail to detect presence of git binary
+* (GH-195) (RK-35) Allow sources to specify a custom prefix string
+* (RK-17) Add rugged/libgit2 based Git implementation
+* (RK-24) Add '/etc/puppetlabs/r10k/r10k.yaml' to config search path
+* (RK-25) Warn if both '/etc/r10k.yaml' and 
'/etc/puppetlabs/r10k/r10k.yaml' exist
+* (RK-31) Remove undocumented search for 'r10k.yaml'
+* (RK-32, RK-33, RK-38) Provide configuration options for Git providers
+* (RK-37) Support higher verbosity levels for r10k version
+* (RK-39, RK-66) Improved logging/messaging
+* (RK-74) Improved log formatting
+* (RK-75) Optional log coloring
+* (GH-265) (RK-11) Unix commands with > 64KiB of output no longer deadlock
+* (GH-142) Use Forge v3 API
+* (RK-16) Decouple Git platform dependent and independent code
+* (RK-55, GH-355) Prevent warnings on Ruby 2.2
+* (RK-65) Switch to using the semantic_puppet gem
+* (RK-48) Ignore deleted versions when fetching latest module version
+https://github.com/puppetlabs/r10k/blob/master/CHANGELOG.mkd#150
+  * 1.5.1:
+* (RK-62) Warn when Rugged is compiled without SSH or HTTPS transports
+* (RK-79) Bump minimum required version of faraday_middlware-multi_json
+* (RK-86) Git modules don't properly track branches
+https://github.com/puppetlabs/r10k/blob/master/CHANGELOG.mkd#151
+- Get rid of the gemspec and faraday9 patches, they were merged upstream
+
+---

Old:

  faraday9.patch
  gemspec.patch
  r10k-1.4.1.gem

New:

  r10k-2.1.1.gem



Other differences:
--
++ rubygem-r10k.spec ++
--- /var/tmp/diff_new_pack.zzZJkG/_old  2016-02-22 08:57:08.0 +0100
+++ /var/tmp/diff_new_pack.zzZJkG/_new  2016-02-22 08:57:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-r10k
 #
-# 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
@@ -24,22 +24,18 @@
 #
 
 Name:   rubygem-r10k
-Version:1.4.1
+Version:2.1.1
 Release:0
 %define mod_name r10k
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
+BuildRequires:  %{ruby >= 1.9.3}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  update-alternatives
-Url:http://github.com/adrienthebo/r10k
+Url:https://github.com/puppetlabs/r10k
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
-# MANUAL
-Patch0:  faraday9.patch
-Patch1:  gemspec.patch
-# /MANUAL
 Summary:Puppet environment and module deployment
 License:Apache-2.0
 Group:  Development/Languages/Ruby
@@ -53,10 +49,6 @@
 dynamic environments.
 
 %prep
-%gem_unpack
-%patch0 -p1
-%patch1 -p0
-%gem_build
 
 %build
 

++ gem2rpm.yml ++
--- /var/tmp/diff_new_pack.zzZJkG/_old  2016-02-22 08:57:08.0 +0100
+++ /var/tmp/diff_new_pack.zzZJkG/_new  2016-02-22 08:57:08.0 +0100
@@ -1,7 +1,3 @@
-:license: Apache-2.0
-:patches:
-  'faraday9.patch': -p1
-  'gemspec.patch': -p0
 :main:
   :preamble: |-
 Requires:   rubygem-puppet-master

++ r10k-1.4.1.gem -> r10k-2.1.1.gem 

commit mmc-utils for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package mmc-utils for openSUSE:Factory 
checked in at 2016-02-22 08:57:26

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


Package is "mmc-utils"

Changes:

--- /work/SRC/openSUSE:Factory/mmc-utils/mmc-utils.changes  2015-12-24 
12:15:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.mmc-utils.new/mmc-utils.changes 2016-02-22 
08:57:33.0 +0100
@@ -1,0 +2,5 @@
+Wed Feb 17 17:47:54 UTC 2016 - norm...@linux.vnet.ibm.com
+
+- new do_not_use_asm_generic.patch to avoid PowerPC build error
+
+---

New:

  do_not_use_asm_generic.patch



Other differences:
--
++ mmc-utils.spec ++
--- /var/tmp/diff_new_pack.nDnaay/_old  2016-02-22 08:57:34.0 +0100
+++ /var/tmp/diff_new_pack.nDnaay/_new  2016-02-22 08:57:34.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package mmc-utils
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,7 @@
 Url:http://git.kernel.org/cgit/linux/kernel/git/cjb/mmc-utils.git/
 Source0:%{name}-%{version}.tar.xz
 Source1:https://www.gnu.org/licenses/gpl-2.0.txt
+Patch0: do_not_use_asm_generic.patch
 BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -34,6 +35,7 @@
 %prep
 %setup -q
 cp %{SOURCE1} LICENSE.GPL-2.0
+%patch0 -p1
 
 %build
 export CFLAGS="%{optflags}"

++ do_not_use_asm_generic.patch ++
From: Michel Normand 
Subject: do not use asm generic
Date: Wed, 17 Feb 2016 18:44:43 +0100

do not use  to avoid build error on PowerPC arch

Signed-off-by: Michel Normand 
---
 mmc.h |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Index: mmc-utils-20151118/mmc.h
===
--- mmc-utils-20151118.orig/mmc.h
+++ mmc-utils-20151118/mmc.h
@@ -14,7 +14,7 @@
  * Boston, MA 021110-1307, USA.
  */
 
-#include 
+#include 
 #include 
 #include 
 



commit evolution for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package evolution for openSUSE:Factory 
checked in at 2016-02-22 08:57:02

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


Package is "evolution"

Changes:

--- /work/SRC/openSUSE:Factory/evolution/evolution.changes  2016-01-23 
01:03:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.evolution.new/evolution.changes 2016-02-22 
08:57:03.0 +0100
@@ -1,0 +2,36 @@
+Thu Feb 18 11:24:09 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.18.5.1:
+  + Bug Fixes: Correct typo in the fix for bgo#761883.
+
+---
+Mon Feb 15 19:36:24 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.18.5:
+  + Do not let itip-formatter plugin disable.
+  + Use icaltzutil_set_exact_vtimezones_support(), if available.
+  + Show composer when processing mailto: only after From account
+is set.
+  + [EMinicard]: Release grab when started drag of the contact.
+  + EHTMLEditorUtils: prev_parent variable can be used
+uninitialized.
+  + EHTMLEditorView:
+- It's not possible to change formatting from Blockquote to
+  list.
+- Some of the Evolution's composer attributes are sent in HTML
+  messages.
+- Avoid possible critical warnings when sending HTML messages.
+- Avoid critical warnings when deleting a text smiley.
+- Fragment can be used uninitialized when saving history while
+  deleting.
+- Undoing the citation split does not re-wrap and re-quote the
+  block.
+- Pressing the Return key in the beginning of list item will
+  delete the item.
+- Don't send the empty signature placeholder in the HTML
+  messages.
+  + Bugs fixed: bgo#758977, bgo#760971, bgo#761166, bgo#759201,
+bgo#760638, bgo#759873, bgo#761394, bgo#761496, bgo#761883.
+  + Updated translations.
+
+---

Old:

  evolution-3.18.4.tar.xz

New:

  evolution-3.18.5.1.tar.xz



Other differences:
--
++ evolution.spec ++
--- /var/tmp/diff_new_pack.tHL6ox/_old  2016-02-22 08:57:05.0 +0100
+++ /var/tmp/diff_new_pack.tHL6ox/_new  2016-02-22 08:57:05.0 +0100
@@ -24,7 +24,7 @@
 Name:   evolution
 # This should be updated upon major version changes; it should match 
BASE_VERSION as defined in configure.in.
 %define evolution_base_version 3.18
-Version:3.18.4
+Version:3.18.5.1
 Release:0
 # _version needs to be %{version} stripped to major.minor.micro only...
 %define _version %(echo %{version} | grep -E -o '[0-9]+\.[0-9]+\.[0-9]+')

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




commit python-Sphinx for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-Sphinx for openSUSE:Factory 
checked in at 2016-02-22 08:56:48

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


Package is "python-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python-Sphinx/python-Sphinx.changes  
2016-01-30 11:31:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Sphinx.new/python-Sphinx.changes 
2016-02-22 08:56:49.0 +0100
@@ -1,0 +2,9 @@
+Wed Feb 17 09:10:17 UTC 2016 - toddrme2...@gmail.com
+
+- Add fix_some_testcase_error_with_pygments-2.1.1.patch
+  Fixes tests with python-Pygments 2.1.1.
+  Should be in next release.
+  See 
https://github.com/sphinx-doc/sphinx/commit/50f4862b069d58ade556aad90bd179206f10fdc1
+- Add additional latex requirements.
+
+---

New:

  fix_some_testcase_error_with_pygments-2.1.1.patch



Other differences:
--
++ python-Sphinx.spec ++
--- /var/tmp/diff_new_pack.rtBCyS/_old  2016-02-22 08:56:50.0 +0100
+++ /var/tmp/diff_new_pack.rtBCyS/_new  2016-02-22 08:56:50.0 +0100
@@ -24,6 +24,9 @@
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM fix_some_testcase_error_with_pygments-2.1.1.patch - fix 
tests with python-Pygments 2.1.1
+# See 
https://github.com/sphinx-doc/sphinx/commit/50f4862b069d58ade556aad90bd179206f10fdc1
+Patch0: fix_some_testcase_error_with_pygments-2.1.1.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
@@ -99,26 +102,24 @@
 Requires:   texlive-latex
 Requires:   texlive-metafont
 Requires:   texlive-pdftex
-Requires:   tex(article.cls)
-Requires:   tex(pdftex.def)
-Requires:   tex(utf8.def)
-Requires:   tex(utf8x.def)
 Requires:   tex(8r.enc)
-Requires:   tex(english.ldf)
-Requires:   tex(pdftex.map)
 Requires:   tex(alltt.sty)
 Requires:   tex(amsfonts.sty)
 Requires:   tex(amsmath.sty)
 Requires:   tex(amssymb.sty)
 Requires:   tex(amsthm.sty)
 Requires:   tex(array.sty)
+Requires:   tex(article.cls)
 Requires:   tex(atbegshi.sty)
 Requires:   tex(babel.sty)
 Requires:   tex(bm.sty)
+Requires:   tex(capt-of.sty)
 Requires:   tex(cmap.sty)
 Requires:   tex(color.sty)
 Requires:   tex(colortbl.sty)
 Requires:   tex(dvipdfmx.def)
+Requires:   tex(english.ldf)
+Requires:   tex(eqparbox.sty)
 Requires:   tex(fancybox.sty)
 Requires:   tex(fancyhdr.sty)
 Requires:   tex(fancyvrb.sty)
@@ -136,21 +137,27 @@
 Requires:   tex(longtable.sty)
 Requires:   tex(makeidx.sty)
 Requires:   tex(multirow.sty)
+Requires:   tex(needspace.sty)
+Requires:   tex(newfloat.sty)
 Requires:   tex(palatino.sty)
 Requires:   tex(parskip.sty)
+Requires:   tex(pcrr.tfm)
+Requires:   tex(pdftex.def)
+Requires:   tex(pdftex.map)
+Requires:   tex(phvr.tfm)
+Requires:   tex(pplr.tfm)
 Requires:   tex(preview.sty)
+Requires:   tex(ptmr.tfm)
+Requires:   tex(pzcmi.tfm)
 Requires:   tex(tabulary.sty)
 Requires:   tex(textcomp.sty)
 Requires:   tex(threeparttable.sty)
 Requires:   tex(times.sty)
 Requires:   tex(titlesec.sty)
 Requires:   tex(upquote.sty)
+Requires:   tex(utf8.def)
+Requires:   tex(utf8x.def)
 Requires:   tex(wrapfig.sty)
-Requires:   tex(pcrr.tfm)
-Requires:   tex(phvr.tfm)
-Requires:   tex(pplr.tfm)
-Requires:   tex(ptmr.tfm)
-Requires:   tex(pzcmi.tfm)
 
 %descriptionlatex
 Sphinx is a tool that makes it easy to create intelligent and beautiful
@@ -168,6 +175,8 @@
 
 %prep
 %setup -q -n Sphinx-%{version}
+%patch0 -p1
+
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
 # Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to
 # allow for update-alternatives later on:

++ fix_some_testcase_error_with_pygments-2.1.1.patch ++
>From 50f4862b069d58ade556aad90bd179206f10fdc1 Mon Sep 17 00:00:00 2001
From: Takeshi KOMIYA 
Date: Mon, 15 Feb 2016 11:46:30 +0900
Subject: [PATCH] Fix some testcase get error with pygments-2.1.1

---
 tests/test_build_html.py | 15 +--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/tests/test_build_html.py b/tests/test_build_html.py
index b97d9d5..c11ad68 100644
--- a/tests/test_build_html.py
+++ b/tests/test_build_html.py
@@ -344,12 +344,23 @@ def check_xpath(etree, fname, path, check, 

commit xf86-video-intel for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package xf86-video-intel for 
openSUSE:Factory checked in at 2016-02-22 08:56:28

Comparing /work/SRC/openSUSE:Factory/xf86-video-intel (Old)
 and  /work/SRC/openSUSE:Factory/.xf86-video-intel.new (New)


Package is "xf86-video-intel"

Changes:

--- /work/SRC/openSUSE:Factory/xf86-video-intel/xf86-video-intel.changes
2015-09-24 06:12:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.xf86-video-intel.new/xf86-video-intel.changes   
2016-02-22 08:56:30.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb  9 14:46:37 UTC 2016 - e...@suse.com
+
+- U_gen8-Fix-the-YUV-RGB-shader.patch
+  Fix video playback using XV (boo#950666).
+
+---

New:

  U_gen8-Fix-the-YUV-RGB-shader.patch



Other differences:
--
++ xf86-video-intel.spec ++
--- /var/tmp/diff_new_pack.31Lf3q/_old  2016-02-22 08:56:31.0 +0100
+++ /var/tmp/diff_new_pack.31Lf3q/_new  2016-02-22 08:56:31.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package xf86-video-intel
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -36,6 +36,7 @@
 Patch1: u_sna-fix-missing-includes-for-fstat.patch
 Patch2: u_uxa-fix-missing-includes-for-fstat.patch
 Patch10:
U_uxa_fix_the_call_to_PixmapSyncDirtyHelper_broken_by_xservers_90db5ed.patch
+Patch11:U_gen8-Fix-the-YUV-RGB-shader.patch
 %if %glamor
 Requires:   glamor
 %endif
@@ -110,6 +111,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch10 -p1
+%patch11 -p1
 
 %build
 ###--enable-dri3 \

++ U_gen8-Fix-the-YUV-RGB-shader.patch ++
From: Ville Syrjälä 
Date: Thu Apr 16 20:40:39 2015 +0300
Subject: [PATCH]gen8: Fix the YUV->RGB shader
Patch-mainline: Upstream
Git-commit: c43617b739e358064396912c7a7a8028ca91d201
Git-repo: git://anongit.freedesktop.org/git/xorg/driver/xf86-video-intel
References: boo#950666
Signed-off-by: Egbert Eich 

Use the correct register (Yn_01) with first half of the
Y samples instead of using the register (Yn_23) with the
second half twice when computing the green channel.

Also use the Yn_01 register name instead of Yn for the red
channel as well, just for a bit of extra consistency.

Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=89807
Signed-off-by: Ville Syrjälä 
Tested-by: Chris Wilson 
---
 src/render_program/exa_wm_yuv_rgb.g8a | 4 ++--
 src/render_program/exa_wm_yuv_rgb.g8b | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/render_program/exa_wm_yuv_rgb.g8a 
b/src/render_program/exa_wm_yuv_rgb.g8a
index 7def093..34973ba 100644
--- a/src/render_program/exa_wm_yuv_rgb.g8a
+++ b/src/render_program/exa_wm_yuv_rgb.g8a
@@ -76,7 +76,7 @@ add (16)Cbn<1>F   Cb<8,8,1>F  -0.501961F  { 
compr align1 };
 /* 
  * R = Y + Cr * 1.596
  */
-mov (8)acc0<1>FYn<8,8,1>F  { compr align1 };
+mov (8)acc0<1>FYn_01<8,8,1>F   { compr align1 };
 mac.sat(8) src_sample_r_01<1>F Crn_01<8,8,1>F  1.596F  { compr align1 };
  
 mov (8)acc0<1>FYn_23<8,8,1>F   { compr align1 };
@@ -84,7 +84,7 @@ mac.sat(8) src_sample_r_23<1>FCrn_23<8,8,1>F  1.596F  
{ compr align1 };
 /*
  * G = Crn * -0.813 + Cbn * -0.392 + Y
  */
-mov (8)acc0<1>FYn_23<8,8,1>F   { compr align1 };
+mov (8)acc0<1>FYn_01<8,8,1>F   { compr align1 };
 mac (8)acc0<1>FCrn_01<8,8,1>F  -0.813F { compr 
align1 };
 mac.sat(8) src_sample_g_01<1>F Cbn_01<8,8,1>F  -0.392F { compr 
align1 };
 
diff --git a/src/render_program/exa_wm_yuv_rgb.g8b 
b/src/render_program/exa_wm_yuv_rgb.g8b
index 4494953..2cd6fc4 100644
--- a/src/render_program/exa_wm_yuv_rgb.g8b
+++ b/src/render_program/exa_wm_yuv_rgb.g8b
@@ -6,7 +6,7 @@
{ 0x80600048, 0x21c03ae8, 0x3e8d02c0, 0x3fcc49ba },
{ 0x0061, 0x24003ae0, 0x008d0320, 0x },
{ 0x80600048, 0x21e03ae8, 0x3e8d02e0, 0x3fcc49ba },
-   { 0x0061, 0x24003ae0, 0x008d0320, 0x },
+   { 0x0061, 0x24003ae0, 0x008d0300, 0x },
{ 0x00600048, 0x24003ae0, 0x3e8d02c0, 0xbf5020c5 },
{ 0x80600048, 0x22003ae8, 0x3e8d0340, 0xbec8b439 },
{ 0x0061, 0x24003ae0, 0x008d0320, 0x },



commit libsolv for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package libsolv for openSUSE:Factory checked 
in at 2016-02-22 08:56:11

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


Package is "libsolv"

Changes:

--- /work/SRC/openSUSE:Factory/libsolv/libsolv.changes  2016-02-07 
09:21:32.0 +0100
+++ /work/SRC/openSUSE:Factory/.libsolv.new/libsolv.changes 2016-02-22 
08:56:12.0 +0100
@@ -1,0 +2,7 @@
+Mon Feb 15 16:46:31 CET 2016 - m...@suse.de
+
+- parse media number from baseurl
+- support susedata..xml language files
+- bump version to 0.6.19
+
+---

Old:

  libsolv-0.6.18.tar.bz2

New:

  libsolv-0.6.19.tar.bz2



Other differences:
--
++ libsolv.spec ++
--- /var/tmp/diff_new_pack.o7sXrZ/_old  2016-02-22 08:56:13.0 +0100
+++ /var/tmp/diff_new_pack.o7sXrZ/_new  2016-02-22 08:56:13.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   libsolv
-Version:0.6.18
+Version:0.6.19
 Release:0
 Url:https://github.com/openSUSE/libsolv
 Source: libsolv-%{version}.tar.bz2

++ libsolv-0.6.18.tar.bz2 -> libsolv-0.6.19.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsolv-0.6.18/VERSION.cmake 
new/libsolv-0.6.19/VERSION.cmake
--- old/libsolv-0.6.18/VERSION.cmake2016-01-29 14:20:43.0 +0100
+++ new/libsolv-0.6.19/VERSION.cmake2016-02-15 16:50:44.0 +0100
@@ -49,5 +49,5 @@
 
 SET(LIBSOLV_MAJOR "0")
 SET(LIBSOLV_MINOR "6")
-SET(LIBSOLV_PATCH "18")
+SET(LIBSOLV_PATCH "19")
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsolv-0.6.18/ext/repo_rpmmd.c 
new/libsolv-0.6.19/ext/repo_rpmmd.c
--- old/libsolv-0.6.18/ext/repo_rpmmd.c 2015-07-06 11:05:04.0 +0200
+++ new/libsolv-0.6.19/ext/repo_rpmmd.c 2016-02-11 17:01:33.0 +0100
@@ -776,10 +776,20 @@
   str = find_attr("href", atts);
   if (str)
{
- repodata_set_location(pd->data, handle, 0, 0, str);
- str = find_attr("xml:base", atts);
- if (str)
-   repodata_set_poolstr(pd->data, handle, SOLVABLE_MEDIABASE, str);
+ int medianr = 0;
+ const char *base = find_attr("xml:base", atts);
+ if (base  && !strncmp(base, "media:", 6))
+   {
+ /* check for the media number in the fragment */
+ int l = strlen(base);
+ while (l && base[l - 1] >= '0' && base[l - 1] <= '9')
+   l--;
+ if (l && base[l - 1] == '#' && base[l])
+   medianr = atoi(base + l);
+   }
+ repodata_set_location(pd->data, handle, medianr, 0, str);
+ if (base)
+   repodata_set_poolstr(pd->data, handle, SOLVABLE_MEDIABASE, base);
}
   break;
 case STATE_CHECKSUM:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsolv-0.6.18/package/libsolv.changes 
new/libsolv-0.6.19/package/libsolv.changes
--- old/libsolv-0.6.18/package/libsolv.changes  2016-01-29 14:20:43.0 
+0100
+++ new/libsolv-0.6.19/package/libsolv.changes  2016-02-15 16:50:44.0 
+0100
@@ -1,4 +1,11 @@
 ---
+Mon Feb 15 16:46:31 CET 2016 - m...@suse.de
+
+- parse media number from baseurl
+- support susedata..xml language files
+- bump version to 0.6.19
+
+---
 Fri Jan 29 14:17:26 CET 2016 - m...@suse.de
 
 - fix rule generation for linked packages [bnc#961738]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libsolv-0.6.18/tools/repo2solv.sh 
new/libsolv-0.6.19/tools/repo2solv.sh
--- old/libsolv-0.6.18/tools/repo2solv.sh   2015-07-06 11:05:04.0 
+0200
+++ new/libsolv-0.6.19/tools/repo2solv.sh   2016-02-11 17:01:33.0 
+0100
@@ -28,7 +28,7 @@
   local p=$2
   local f
   if test -n "$t" -a -s repomd.xml ; then
-f=`repomdxml2solv -q $t:location < repomd.xml 2>/dev/null`
+f=`repomdxml2solv -q "$t:location" < repomd.xml 2>/dev/null`
 f=${f##*/}
 if test -f "$f" ; then
   echo "$f"
@@ -44,6 +44,10 @@
   fi
 }
 
+repomd_types() {
+  test -s repomd.xml && repomdxml2solv -q type < repomd.xml
+}
+
 repomd_decompress() {
   case $1 in
*.gz) gzip -dc "$1" ;;
@@ -147,6 +151,17 @@
  if test -f "$susedataxml" ; then
repomd_decompress "$susedataxml"
  fi
+ # all the languages as well
+ for t in `repomd_types` ; do
+   case "$t" in
+   susedata.*)
+   

commit notification-daemon for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package notification-daemon for 
openSUSE:Factory checked in at 2016-02-22 08:56:34

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


Package is "notification-daemon"

Changes:

--- /work/SRC/openSUSE:Factory/notification-daemon/notification-daemon.changes  
2015-10-25 19:11:26.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.notification-daemon.new/notification-daemon.changes 
2016-02-22 08:56:35.0 +0100
@@ -1,0 +2,6 @@
+Tue Feb 16 18:56:21 UTC 2016 - dims...@opensuse.org
+
+- Update to version 3.18.2:
+  + Updated translations.
+
+---

Old:

  notification-daemon-3.18.1.tar.xz

New:

  notification-daemon-3.18.2.tar.xz



Other differences:
--
++ notification-daemon.spec ++
--- /var/tmp/diff_new_pack.Iq1S7v/_old  2016-02-22 08:56:35.0 +0100
+++ /var/tmp/diff_new_pack.Iq1S7v/_new  2016-02-22 08:56:35.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package notification-daemon
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   notification-daemon
-Version:3.18.1
+Version:3.18.2
 Release:0
 Summary:Notification Daemon
 License:GPL-2.0+

++ notification-daemon-3.18.1.tar.xz -> notification-daemon-3.18.2.tar.xz 
++
 2001 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/notification-daemon-3.18.1/NEWS new/notification-daemon-3.18.2/NEWS
--- old/notification-daemon-3.18.1/NEWS 2015-10-12 20:56:38.0 +0200
+++ new/notification-daemon-3.18.2/NEWS 2016-02-16 16:59:46.0 +0100
@@ -1,3 +1,10 @@
+Version 3.18.2
+==
+- Updated translations:
+  Anders Jonsson (sv), Andika Triwidada (id), Claude Paroz (fr),
+  Marek Černocký (cs), Mario Blättermann (de), Pedro Albuquerque (pt),
+  Rafael Fontenelle (pt_BR).
+
 Version 3.18.1
 ==
 - Fix empty body text with invalid pango markup.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/notification-daemon-3.18.1/configure.ac 
new/notification-daemon-3.18.2/configure.ac
--- old/notification-daemon-3.18.1/configure.ac 2015-10-12 20:54:48.0 
+0200
+++ new/notification-daemon-3.18.2/configure.ac 2016-02-16 16:57:00.0 
+0100
@@ -4,7 +4,7 @@
 
 m4_define([nd_major_version], [3])
 m4_define([nd_minor_version], [18])
-m4_define([nd_micro_version], [1])
+m4_define([nd_micro_version], [2])
 m4_define([nd_version], [nd_major_version.nd_minor_version.nd_micro_version])
 
 dnl **
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/notification-daemon-3.18.1/m4/ax_append_flag.m4 
new/notification-daemon-3.18.2/m4/ax_append_flag.m4
--- old/notification-daemon-3.18.1/m4/ax_append_flag.m4 2015-10-12 
18:08:23.0 +0200
+++ new/notification-daemon-3.18.2/m4/ax_append_flag.m4 2016-02-05 
18:37:44.0 +0100
@@ -49,7 +49,7 @@
 #   modified version of the Autoconf Macro, you may extend this special
 #   exception to the GPL to apply to your modified version as well.
 
-#serial 5
+#serial 6
 
 AC_DEFUN([AX_APPEND_FLAG],
 [dnl
@@ -59,7 +59,7 @@
   AS_CASE([" AS_VAR_GET(FLAGS) "],
 [*" $1 "*], [AC_RUN_LOG([: FLAGS already contains $1])],
 [
- AS_VAR_APPEND(FLAGS," $1")
+ AS_VAR_APPEND(FLAGS,[" $1"])
  AC_RUN_LOG([: FLAGS="$FLAGS"])
 ])
   ],
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude 

commit python3-simplejson for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python3-simplejson for 
openSUSE:Factory checked in at 2016-02-22 08:56:38

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


Package is "python3-simplejson"

Changes:

--- /work/SRC/openSUSE:Factory/python3-simplejson/python3-simplejson.changes
2015-11-04 15:30:29.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-simplejson.new/python3-simplejson.changes   
2016-02-22 08:56:40.0 +0100
@@ -1,0 +2,12 @@
+Wed Feb 17 03:55:36 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 3.8.2:
+  * Fix implicit cast compiler warning in _speedups.c
+  * simplejson is now available as wheels for OS X and Windows thanks
+to Travis-CI and AppVeyor respectively! Many thanks to @aebrahim
+for getting this party started.
+
+---

Old:

  simplejson-3.8.1.tar.gz

New:

  simplejson-3.8.2.tar.gz



Other differences:
--
++ python3-simplejson.spec ++
--- /var/tmp/diff_new_pack.zhy7sk/_old  2016-02-22 08:56:41.0 +0100
+++ /var/tmp/diff_new_pack.zhy7sk/_new  2016-02-22 08:56:41.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-simplejson
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python3-simplejson
-Version:3.8.1
+Version:3.8.2
 Release:0
 Url:http://github.com/simplejson/simplejson
 Summary:Simple, fast, extensible JSON encoder/decoder for Python

++ simplejson-3.8.1.tar.gz -> simplejson-3.8.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.8.1/CHANGES.txt 
new/simplejson-3.8.2/CHANGES.txt
--- old/simplejson-3.8.1/CHANGES.txt2015-10-27 16:30:57.0 +0100
+++ new/simplejson-3.8.2/CHANGES.txt2016-02-15 19:02:14.0 +0100
@@ -1,3 +1,12 @@
+Version 3.8.2 released 2016-02-14
+
+* Fix implicit cast compiler warning in _speedups.c
+* simplejson is now available as wheels for OS X and Windows thanks to 
Travis-CI
+  and AppVeyor respectively! Many thanks to @aebrahim for getting this party
+  started.
+  https://github.com/simplejson/simplejson/pull/130
+  https://github.com/simplejson/simplejson/issues/122
+
 Version 3.8.1 released 2015-10-27
 
 * Fix issue with iterable_as_array and indent option
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.8.1/PKG-INFO 
new/simplejson-3.8.2/PKG-INFO
--- old/simplejson-3.8.1/PKG-INFO   2015-10-27 16:32:20.0 +0100
+++ new/simplejson-3.8.2/PKG-INFO   2016-02-15 21:18:55.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: simplejson
-Version: 3.8.1
+Version: 3.8.2
 Summary: Simple, fast, extensible JSON encoder/decoder for Python
 Home-page: http://github.com/simplejson/simplejson
 Author: Bob Ippolito
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.8.1/conf.py new/simplejson-3.8.2/conf.py
--- old/simplejson-3.8.1/conf.py2015-09-04 19:35:07.0 +0200
+++ new/simplejson-3.8.2/conf.py2016-02-15 19:02:14.0 +0100
@@ -44,7 +44,7 @@
 # The short X.Y version.
 version = '3.8'
 # The full version, including alpha/beta/rc tags.
-release = '3.8.1'
+release = '3.8.2'
 
 # There are two options for replacing |today|: either, you set today to some
 # non-false value, then it is used:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/simplejson-3.8.1/scripts/artifacts.py 
new/simplejson-3.8.2/scripts/artifacts.py
--- old/simplejson-3.8.1/scripts/artifacts.py   1970-01-01 01:00:00.0 
+0100
+++ new/simplejson-3.8.2/scripts/artifacts.py   2016-02-15 21:17:38.0 
+0100
@@ -0,0 +1,48 @@
+try:
+from urllib.request import urlopen
+except ImportError:
+from urllib import urlopen
+
+import io
+import json
+import subprocess
+
+
+def get_json(url):
+return json.loads(urlopen(url).read().decode('utf-8'))
+
+
+def download_file(src_url, dest_path):
+print(dest_path)
+subprocess.call(
+['curl', '-L', '-#', '-o', dest_path, src_url])
+
+
+def download_appveyor_artifacts():
+api_url = 'https://ci.appveyor.com/api'
+builds = get_json(
+'{}/projects/etrepum/simplejson'.format(api_url))
+
+for job in 

commit python3-Sphinx for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python3-Sphinx for openSUSE:Factory 
checked in at 2016-02-22 08:56:44

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


Package is "python3-Sphinx"

Changes:

--- /work/SRC/openSUSE:Factory/python3-Sphinx/python3-Sphinx.changes
2016-01-28 22:50:25.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-Sphinx.new/python3-Sphinx.changes   
2016-02-22 08:56:45.0 +0100
@@ -1,0 +2,8 @@
+Wed Feb 17 09:10:17 UTC 2016 - toddrme2...@gmail.com
+
+- Add fix_some_testcase_error_with_pygments-2.1.1.patch
+  Fixes tests with python3-Pygments 2.1.1.
+  Should be in next release.
+  See 
https://github.com/sphinx-doc/sphinx/commit/50f4862b069d58ade556aad90bd179206f10fdc1
+
+---

New:

  fix_some_testcase_error_with_pygments-2.1.1.patch



Other differences:
--
++ python3-Sphinx.spec ++
--- /var/tmp/diff_new_pack.LdU7i1/_old  2016-02-22 08:56:46.0 +0100
+++ /var/tmp/diff_new_pack.LdU7i1/_new  2016-02-22 08:56:46.0 +0100
@@ -24,6 +24,9 @@
 License:BSD-2-Clause
 Group:  Development/Languages/Python
 Source: 
http://pypi.python.org/packages/source/S/Sphinx/Sphinx-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM fix_some_testcase_error_with_pygments-2.1.1.patch - fix 
tests with python3-Pygments 2.1.1
+# See 
https://github.com/sphinx-doc/sphinx/commit/50f4862b069d58ade556aad90bd179206f10fdc1
+Patch0: fix_some_testcase_error_with_pygments-2.1.1.patch
 BuildRequires:  python3-devel
 BuildRequires:  python3-setuptools
 # Documentation requirements:
@@ -163,6 +166,8 @@
 
 %prep
 %setup -q -n Sphinx-%{version}
+%patch0 -p1
+
 sed -i '/#\!/d' sphinx/pycode/pgen2/token.py # Fix non-excutable-script warning
 # Add Interpreter version suffix to entrypoints (and thus /usr/bin binaries) to
 # allow for update-alternatives later on:

++ fix_some_testcase_error_with_pygments-2.1.1.patch ++
>From 50f4862b069d58ade556aad90bd179206f10fdc1 Mon Sep 17 00:00:00 2001
From: Takeshi KOMIYA 
Date: Mon, 15 Feb 2016 11:46:30 +0900
Subject: [PATCH] Fix some testcase get error with pygments-2.1.1

---
 tests/test_build_html.py | 15 +--
 1 file changed, 13 insertions(+), 2 deletions(-)

diff --git a/tests/test_build_html.py b/tests/test_build_html.py
index b97d9d5..c11ad68 100644
--- a/tests/test_build_html.py
+++ b/tests/test_build_html.py
@@ -344,12 +344,23 @@ def check_xpath(etree, fname, path, check, be_found=True):
 # only check for node presence
 pass
 else:
+def get_text(node):
+if node.text is not None:
+return node.text
+else:
+# Since pygments-2.1.1, empty  tag is inserted at top of
+# highlighting block
+if len(node) == 1 and node[0].tag == 'span' and node[0].text 
is None:
+return node[0].tail
+else:
+return ''
+
 rex = re.compile(check)
 if be_found:
-if any(node.text and rex.search(node.text) for node in nodes):
+if any(rex.search(get_text(node)) for node in nodes):
 return
 else:
-if all(node.text and not rex.search(node.text) for node in nodes):
+if all(not rex.search(get_text(node)) for node in nodes):
 return
 
 assert False, ('%r not found in any node matching '



commit libdrm for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package libdrm for openSUSE:Factory checked 
in at 2016-02-22 08:56:53

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.changes2016-02-11 
12:32:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.libdrm.new/libdrm.changes   2016-02-22 
08:56:54.0 +0100
@@ -1,0 +2,8 @@
+Tue Feb 16 10:25:48 UTC 2016 - mimi...@gmail.com
+
+- update to 2.4.67
+* fixes for amdgpu
+* adds KabyLake PCIids
+* Fix memory leak with drmModeGetConnectorCurrent()
+
+---

Old:

  libdrm-2.4.66.tar.bz2

New:

  libdrm-2.4.67.tar.bz2



Other differences:
--
++ libdrm.spec ++
--- /var/tmp/diff_new_pack.Efu7Ib/_old  2016-02-22 08:56:55.0 +0100
+++ /var/tmp/diff_new_pack.Efu7Ib/_new  2016-02-22 08:56:55.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   libdrm
 Url:http://dri.freedesktop.org/
-Version:2.4.66
+Version:2.4.67
 Release:0
 Provides:   libdrm23 = %{version}
 Obsoletes:  libdrm23 < %{version}

++ libdrm-2.4.66.tar.bz2 -> libdrm-2.4.67.tar.bz2 ++
 23897 lines of diff (skipped)




commit evolution-ews for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package evolution-ews for openSUSE:Factory 
checked in at 2016-02-22 08:56:20

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


Package is "evolution-ews"

Changes:

--- /work/SRC/openSUSE:Factory/evolution-ews/evolution-ews.changes  
2016-01-23 01:03:33.0 +0100
+++ /work/SRC/openSUSE:Factory/.evolution-ews.new/evolution-ews.changes 
2016-02-22 08:56:20.0 +0100
@@ -1,0 +2,6 @@
+Mon Feb 15 19:43:10 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.18.5:
+  + Miscellaneous: Contact photos from offline GAL not shown.
+
+---

Old:

  evolution-ews-3.18.4.tar.xz

New:

  evolution-ews-3.18.5.tar.xz



Other differences:
--
++ evolution-ews.spec ++
--- /var/tmp/diff_new_pack.hFkgpw/_old  2016-02-22 08:56:21.0 +0100
+++ /var/tmp/diff_new_pack.hFkgpw/_new  2016-02-22 08:56:21.0 +0100
@@ -19,7 +19,7 @@
 Name:   evolution-ews
 # This should be updated upon major version changes; it should match 
BASE_VERSION as defined in configure.in.
 %define evolution_base_version 3.18
-Version:3.18.4
+Version:3.18.5
 Release:0
 Summary:Exchange Connector for Evolution, compatible with Exchange 
2007 and later
 License:LGPL-2.1

++ evolution-ews-3.18.4.tar.xz -> evolution-ews-3.18.5.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-ews-3.18.4/NEWS 
new/evolution-ews-3.18.5/NEWS
--- old/evolution-ews-3.18.4/NEWS   2016-01-18 13:58:34.0 +0100
+++ new/evolution-ews-3.18.5/NEWS   2016-02-15 15:00:31.0 +0100
@@ -1,3 +1,9 @@
+Evolution-EWS 3.18.5 2016-02-15
+---
+
+Miscellaneous:
+   Contact photos from offline GAL not shown (Milan Crha)
+
 Evolution-EWS 3.18.4 2016-01-18
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/evolution-ews-3.18.4/configure 
new/evolution-ews-3.18.5/configure
--- old/evolution-ews-3.18.4/configure  2016-01-18 13:59:12.0 +0100
+++ new/evolution-ews-3.18.5/configure  2016-02-15 15:00:55.0 +0100
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for evolution-ews 3.18.4.
+# Generated by GNU Autoconf 2.69 for evolution-ews 3.18.5.
 #
 # Report bugs to .
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='evolution-ews'
 PACKAGE_TARNAME='evolution-ews'
-PACKAGE_VERSION='3.18.4'
-PACKAGE_STRING='evolution-ews 3.18.4'
+PACKAGE_VERSION='3.18.5'
+PACKAGE_STRING='evolution-ews 3.18.5'
 PACKAGE_BUGREPORT='http://bugzilla.gnome.org/browse.cgi?product=evolution-ews'
 PACKAGE_URL=''
 
@@ -1518,7 +1518,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat <<_ACEOF
-\`configure' configures evolution-ews 3.18.4 to adapt to many kinds of systems.
+\`configure' configures evolution-ews 3.18.5 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1588,7 +1588,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of evolution-ews 3.18.4:";;
+ short | recursive ) echo "Configuration of evolution-ews 3.18.5:";;
esac
   cat <<\_ACEOF
 
@@ -1794,7 +1794,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-evolution-ews configure 3.18.4
+evolution-ews configure 3.18.5
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -2163,7 +2163,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by evolution-ews $as_me 3.18.4, which was
+It was created by evolution-ews $as_me 3.18.5, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -3026,7 +3026,7 @@
 
 # Define the identity of the package.
  PACKAGE='evolution-ews'
- VERSION='3.18.4'
+ VERSION='3.18.5'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3265,11 +3265,11 @@
 # precisely one minor behind [ews_version], then allow building against *that*
 # version of EDS and Evo.
 read x NEWSVER y < NEWS
-PREVVER=3.18.$(expr 4 - 1)
+PREVVER=3.18.$(expr 5 - 1)
 if test "$PREVVER" = "$NEWSVER"; then
EVOREQVER=$PREVVER
 else
-   EVOREQVER=3.18.4
+   EVOREQVER=3.18.5
 fi
 
 
@@ -17911,7 +17911,7 @@
 # report actual 

commit plasma5-pk-updates for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package plasma5-pk-updates for 
openSUSE:Factory checked in at 2016-02-22 08:56:06

Comparing /work/SRC/openSUSE:Factory/plasma5-pk-updates (Old)
 and  /work/SRC/openSUSE:Factory/.plasma5-pk-updates.new (New)


Package is "plasma5-pk-updates"

Changes:

--- /work/SRC/openSUSE:Factory/plasma5-pk-updates/plasma5-pk-updates.changes
2016-02-09 16:48:50.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.plasma5-pk-updates.new/plasma5-pk-updates.changes   
2016-02-22 08:56:07.0 +0100
@@ -1,0 +2,19 @@
+Mon Feb 15 21:36:47 UTC 2016 - wba...@tmo.at
+
+- Add use-native-plasma-components.patch: fixes problems with dark
+  Plasma themes (boo#953669, kde#359308)
+
+---
+Fri Feb 12 10:16:43 UTC 2016 - tittiatc...@gmail.com
+
+- Add translations  (plasma-pk-updates-lang.tar.xz)
+
+---
+Thu Feb 11 14:42:21 UTC 2016 - tittiatc...@gmail.com
+
+- Add patch change-refresh-logic.patch. This prevents the plasmoid
+  from starting the PackageKit Daemon on a hourly basis. This also 
+  prevents unnecessary notifications.
+  (boo#955352)
+
+---

New:

  change-refresh-logic.patch
  plasma-pk-updates-lang.tar.xz
  use-native-plasma-components.patch



Other differences:
--
++ plasma5-pk-updates.spec ++
--- /var/tmp/diff_new_pack.yk4F2o/_old  2016-02-22 08:56:08.0 +0100
+++ /var/tmp/diff_new_pack.yk4F2o/_new  2016-02-22 08:56:08.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package plasma5-pk-updates
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,6 +25,11 @@
 Url:http://www.kde.org
 Source: v%{version}.tar.gz
 Patch0: gcc48.diff
+Source1:plasma-pk-updates-lang.tar.xz
+# PATCH-FIX-OPENSUSE change-refresh-logic.patch -- Change the logic that the 
PackageKit daemon is only getting a request according to the set frequency
+Patch1: change-refresh-logic.patch
+# PATCH-FIX-UPSTREAM use-native-plasma-components.patch boo#953669, kde#359308 
-- fixes problems with dark Plasma themes
+Patch2: use-native-plasma-components.patch
 BuildRequires:  PackageKit-Qt5-devel
 BuildRequires:  cmake >= 3.0
 BuildRequires:  extra-cmake-modules >= 1.3.0
@@ -39,19 +44,25 @@
 BuildRequires:  pkgconfig(Qt5Gui)
 BuildRequires:  pkgconfig(Qt5Quick)
 BuildRequires:  pkgconfig(Qt5Widgets)
+Recommends: %{name}-lang = %{version}
 %if 0%{?suse_version} > 1314 && "%{suse_version}" != "1320"
 # Use a fake version number as that the apper version is higher than 0.2 
 Provides:   apper = 1.0
 Obsoletes:  apper < 1.0
+Obsoletes:  apper-lang < 1.0
 %endif
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 Plasma applet for software updates using PackageKit.
 
+%lang_package
 %prep
-%setup -q -n plasma-pk-updates-%{version}
+%setup -q -n plasma-pk-updates-%{version} -a 1
 %patch0 -p1
+%patch1 -p1
+%patch2 -p1
+echo "ki18n_install(po)" >> CMakeLists.txt
 
 %build
   %cmake_kf5 -d build
@@ -59,6 +70,11 @@
 
 %install
   %kf5_makeinstall -C build
+  %find_lang pkupdates plasma-pk-updates.lang
+  %find_lang plasma_applet_org.kde.plasma.pkupdates plasma-pk-updates.lang
+
+%files lang -f plasma-pk-updates.lang
+%defattr(-,root,root)
 
 %files
 %defattr(-,root,root)

++ change-refresh-logic.patch ++
>From 06e21dffef7286d79718bdf49590aa8d90c24991 Mon Sep 17 00:00:00 2001
From: Raymond Wooninck 
Date: Thu, 11 Feb 2016 10:15:41 +0100
Subject: change the refresh logic and avoid unnecessary calls to the
 PackageKit Daemon


diff -urB plasma-pk-updates-0.2/src/declarative/pkupdates.cpp 
new/src/declarative/pkupdates.cpp
--- plasma-pk-updates-0.2/src/declarative/pkupdates.cpp 2015-04-06 
20:52:42.0 +0200
+++ new/src/declarative/pkupdates.cpp   2016-02-11 15:49:38.001607501 +0100
@@ -189,19 +189,20 @@
 return i18n("Last updated: never");
 }
 
-void PkUpdates::checkUpdates(bool force)
+void PkUpdates::checkUpdates()
 {
-qDebug() << "Checking updates, forced:" << force;
+qDebug() << "Checking updates, forced";
 
-if (force) { // save the timestamp
-KConfigGroup grp(KSharedConfig::openConfig("plasma-pk-updates"), 
"General");
-grp.writeEntry("Timestamp", 
QDateTime::currentDateTime().toMSecsSinceEpoch());
-grp.sync();
-}
+// save the timestamp
+KConfigGroup 

commit gnome-shell for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2016-02-22 08:56:24

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


Package is "gnome-shell"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2016-01-05 
09:41:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new/gnome-shell.changes 
2016-02-22 08:56:25.0 +0100
@@ -1,0 +2,11 @@
+Mon Feb  1 13:28:18 UTC 2016 - zai...@opensuse.org
+
+- Add gnome-shell-Fix-double-unref.patch: NetworkAgent: Fix
+  double-unref in get_secrets_keyring_cb() (bgo#759708).
+- Add gnome-shell-correctly-ident-VPN-secret-req.patch:
+  NetworkAgent: correctly identify the VPN secret requests.
+  (bgo#760999).
+- Add gnome-shell-authprompt-bypass-disabled.patch: Do not allow
+  bypassing disabled Sign In button (bgo#746180).
+
+---

New:

  gnome-shell-Fix-double-unref.patch
  gnome-shell-authprompt-bypass-disabled.patch
  gnome-shell-correctly-ident-VPN-secret-req.patch



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.JcS5U2/_old  2016-02-22 08:56:26.0 +0100
+++ /var/tmp/diff_new_pack.JcS5U2/_new  2016-02-22 08:56:26.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package gnome-shell
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,6 +30,12 @@
 Patch2: gnome-shell-logindialog-fixes.patch
 # PATCH-FIX-UPSTREAM gnome-shell-alt-tab-hdpi-fixes.patch zai...@opensuse.org 
-- Fix tiny previews in alt-tab when using hidpi screens.
 Patch3: gnome-shell-alt-tab-hdpi-fixes.patch
+# PATCH-FIX-UPSTREAM gnome-shell-authprompt-bypass-disabled.patch bgo#746180 
zai...@opensuse.org -- Do not allow bypassing disabled Sign In button
+Patch4: gnome-shell-authprompt-bypass-disabled.patch
+# PATCH-FIX-UPSTREAM gnome-shell-correctly-ident-VPN-secret-req.patch 
bgo#760999 zai...@opensuse.org -- NetworkAgent: correctly identify the VPN 
secret requests.
+Patch5: gnome-shell-correctly-ident-VPN-secret-req.patch
+# PATCH-FIX-UPSTREAM gnome-shell-Fix-double-unref.patch bgo#760924 
zai...@opensuse.org -- NetworkAgent: Fix double-unref in 
get_secrets_keyring_cb()
+Patch6: gnome-shell-Fix-double-unref.patch
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gcc-c++
 BuildRequires:  intltool
@@ -158,6 +164,9 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
+%patch5 -p1
+%patch6 -p1
 translation-update-upstream
 
 %build

++ gnome-shell-Fix-double-unref.patch ++
>From 021cecbce289f1d9c68a156d5b8dd204a73bc715 Mon Sep 17 00:00:00 2001
From: Christophe Fergeau 
Date: Sun, 20 Dec 2015 20:51:52 +0100
Subject: NetworkAgent: Fix double-unref in get_secrets_keyring_cb()

In get_secrets_keyring_cb, we own a ref on the 'attributes' hash table
from secret_item_get_attributes), and a ref on the 'secret' object (from
secret_item_get_secret(), but in the SHELL_KEYRING_SK_TAG case, we unref
these once before breaking out of the loop, and the second time after
breaking out of the loop.

https://bugzilla.gnome.org/show_bug.cgi?id=759708
---
 src/shell-network-agent.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/shell-network-agent.c b/src/shell-network-agent.c
index 5d99167..da0f7e5 100644
--- a/src/shell-network-agent.c
+++ b/src/shell-network-agent.c
@@ -314,8 +314,6 @@ get_secrets_keyring_cb (GObject*source,
 
   secrets_found = TRUE;
 
-  g_hash_table_unref (attributes);
-  secret_value_unref (secret);
   break;
 }
 }
-- 
cgit v0.12

++ gnome-shell-authprompt-bypass-disabled.patch ++
>From f5d9d188a72e91ab40023dbbca6820a52a8262f6 Mon Sep 17 00:00:00 2001
From: Michael Catanzaro 
Date: Thu, 7 Jan 2016 16:03:41 -0600
Subject: authPrompt: Do not allow bypassing disabled Sign In button

The Next and Sign In buttons are disabled when the username/password
field is empty. However, the user can still bypass this button by
pressing the enter key, leading to some odd glitches with the log in
for 'Not Listed?' users.

This is easy to fix by simply not progressing to the next screen when
the button is disabled.

https://bugzilla.gnome.org/show_bug.cgi?id=746180
---
 js/gdm/authPrompt.js | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/js/gdm/authPrompt.js 

commit evolution-data-server for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package evolution-data-server for 
openSUSE:Factory checked in at 2016-02-22 08:56:16

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


Package is "evolution-data-server"

Changes:

--- 
/work/SRC/openSUSE:Factory/evolution-data-server/evolution-data-server.changes  
2016-01-23 01:03:29.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.evolution-data-server.new/evolution-data-server.changes
 2016-02-22 08:56:17.0 +0100
@@ -1,0 +2,16 @@
+Mon Feb 15 19:30:24 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.18.5:
+  + Use icaltzutil_set_exact_vtimezones_support(), if available.
+  + [IMAPx]:
+- Connection could be used multiple times at once in certain
+  cases.
+- Stop IDLE gracefully.
+- Change how IDLE is handled.
+- Remove runtime check from
+  imapx_conn_manager_dec_mailbox_hash().
+- Crash in imapx_free_capability().
+- Prefer graceful IDLE stop than forced reconnect.
+  + Bugs fixed: bgo#748996, bgo#759153, bgo#761527, bgo#760951.
+
+---

Old:

  evolution-data-server-3.18.4.tar.xz

New:

  evolution-data-server-3.18.5.tar.xz



Other differences:
--
++ evolution-data-server.spec ++
--- /var/tmp/diff_new_pack.wHsEtJ/_old  2016-02-22 08:56:18.0 +0100
+++ /var/tmp/diff_new_pack.wHsEtJ/_new  2016-02-22 08:56:18.0 +0100
@@ -33,7 +33,7 @@
 
 Name:   evolution-data-server
 %define _evo_version 3.18
-Version:3.18.4
+Version:3.18.5
 Release:0
 Summary:Evolution Data Server
 License:LGPL-2.1+

++ evolution-data-server-3.18.4.tar.xz -> 
evolution-data-server-3.18.5.tar.xz ++
 1650 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/evolution-data-server-3.18.4/NEWS new/evolution-data-server-3.18.5/NEWS
--- old/evolution-data-server-3.18.4/NEWS   2016-01-18 12:55:05.0 
+0100
+++ new/evolution-data-server-3.18.5/NEWS   2016-02-15 14:07:26.0 
+0100
@@ -1,3 +1,21 @@
+Evolution-Data-Server 3.18.5 2016-02-15
+---
+
+Bug Fixes:
+   Bug 748996 - GNetworkAddress is not thread safe (Milan Crha)
+   Bug 759153 - Prefer gpg2 over gpg (again, to match default for 
seahorse) (Milan Crha)
+   Bug 761527 - Local calendar interval tree not always updated (Milan 
Crha)
+   Bug 760951 - Cannot copy contact from Google to WebDAV addressbook 
(Milan Crha)
+
+Miscellaneous:
+   Use icaltzutil_set_exact_vtimezones_support(), if available (Milan Crha)
+   [IMAPx] Connection could be used multiple times at once in certain 
cases (Milan Crha)
+   [IMAPx] Stop IDLE gracefully (Milan Crha)
+   [IMAPx] Change how IDLE is handled (Milan Crha)
+   [IMAPx] Remove runtime check from imapx_conn_manager_dec_mailbox_hash() 
(Milan Crha)
+   [IMAPx] Crash in imapx_free_capability() (Milan Crha)
+   [IMAPx] Prefer graceful IDLE stop than forced reconnect (Milan Crha)
+
 Evolution-Data-Server 3.18.4 2016-01-18
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/evolution-data-server-3.18.4/addressbook/backends/webdav/e-book-backend-webdav.c
 
new/evolution-data-server-3.18.5/addressbook/backends/webdav/e-book-backend-webdav.c
--- 
old/evolution-data-server-3.18.4/addressbook/backends/webdav/e-book-backend-webdav.c
2015-09-21 11:19:51.0 +0200
+++ 
new/evolution-data-server-3.18.5/addressbook/backends/webdav/e-book-backend-webdav.c
2016-02-11 18:42:20.0 +0100
@@ -1458,6 +1458,27 @@
 }
 
 static gboolean
+webdav_can_use_uid (const gchar *uid)
+{
+   const gchar *ptr;
+
+   if (!uid || !*uid)
+   return FALSE;
+
+   for (ptr = uid; *ptr; ptr++) {
+   if ((*ptr >= 'a' && *ptr <= 'z') ||
+   (*ptr >= 'A' && *ptr <= 'Z') ||
+   (*ptr >= '0' && *ptr <= '9') ||
+   strchr (".-@", *ptr) != NULL)
+   continue;
+
+   return FALSE;
+  

commit libqmi for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package libqmi for openSUSE:Factory checked 
in at 2016-02-22 08:56:02

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


Package is "libqmi"

Changes:

--- /work/SRC/openSUSE:Factory/libqmi/libqmi.changes2015-03-03 
11:11:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.libqmi.new/libqmi.changes   2016-02-22 
08:56:03.0 +0100
@@ -1,0 +2,12 @@
+Mon Feb 15 18:57:05 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.12.8:
+  + codegen: fix bug which was limiting the transaction ID of
+request messages generated to just 8bits.
+  + device: try to debug-print raw invalid QMI messages too.
+  + Additional bugfixes:
+- build: avoid C++ reserved keywords.
+- nas: correct ID for Get RF Band Information result TLV.
+- qmicli: fix PLMN printing.
+
+---

Old:

  libqmi-1.12.6.tar.xz

New:

  libqmi-1.12.8.tar.xz



Other differences:
--
++ libqmi.spec ++
--- /var/tmp/diff_new_pack.EElJD2/_old  2016-02-22 08:56:03.0 +0100
+++ /var/tmp/diff_new_pack.EElJD2/_new  2016-02-22 08:56:03.0 +0100
@@ -19,7 +19,7 @@
 
 Name:   libqmi
 %define _soname libqmi-glib1
-Version:1.12.6
+Version:1.12.8
 Release:0
 # NOTE: The file headers state LESSER GPL, which is a mistake. The upstream 
intended license is LIBRARY GPL 2.0+
 Summary:Library to control QMI devices

++ libqmi-1.12.6.tar.xz -> libqmi-1.12.8.tar.xz ++
 70141 lines of diff (skipped)




commit valgrind for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package valgrind for openSUSE:Factory 
checked in at 2016-02-22 08:55:58

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


Package is "valgrind"

Changes:

--- /work/SRC/openSUSE:Factory/valgrind/valgrind.changes2015-08-21 
07:37:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.valgrind.new/valgrind.changes   2016-02-22 
08:56:00.0 +0100
@@ -1,0 +2,12 @@
+Mon Feb 15 16:04:59 UTC 2016 - dmuel...@suse.com
+
+- update to 3.11.0:
+  * 3.11.0 is a feature release with many improvements and the usual
+  collection of bug fixes.
+- replace gcc-version.patch with gcc5.patch: This is the upstream
+  version
+- drop valgrind-linux-4.0.patch: merged upstream
+- add svn-r15766.patch: Fix valgrind with recent kernels
+- jit-register-unregister.diff commented out, needs porting
+
+---

Old:

  gcc-version.patch
  valgrind-3.10.1.tar.bz2
  valgrind-linux-4.0.patch

New:

  gcc5.patch
  svn-r15766.patch
  valgrind-3.11.0.tar.bz2



Other differences:
--
++ valgrind.spec ++
--- /var/tmp/diff_new_pack.SGLTxT/_old  2016-02-22 08:56:01.0 +0100
+++ /var/tmp/diff_new_pack.SGLTxT/_new  2016-02-22 08:56:01.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package valgrind
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -25,7 +25,7 @@
 %define building_docs 0
 %endif
 Name:   valgrind
-Version:3.10.1
+Version:3.11.0
 Release:0
 Summary:Memory Management Debugger
 License:GPL-2.0+
@@ -37,8 +37,8 @@
 Patch1: jit-register-unregister.diff
 Patch2: armv6-support.diff
 Patch3: glibc-version.patch
-Patch4: gcc-version.patch
-Patch5: valgrind-linux-4.0.patch
+Patch4: gcc5.patch
+Patch5: svn-r15766.patch
 BuildRequires:  automake
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  docbook_4
@@ -110,22 +110,26 @@
 
 %prep
 %setup -q
-%patch1
+# needs porting to 3.11
+##%patch1
 %patch2
 %patch3 -p1
 %patch4
 %patch5
 
 %build
+export FLAGS="%{optflags}"
 %ifarch %arm
 # Valgrind doesn't support compiling for Thumb yet. Remove when it gets
 # native thumb support.
-RPM_OPT_FLAGS=${RPM_OPT_FLAGS/-mthumb/-mthumb-interwork -marm}
+FLAGS=${FLAGS/-mthumb/-mthumb-interwork -marm}
 %endif
 # not a good idea to build valgrind with fortify, as it does not link glibc
-RPM_OPT_FLAGS="${RPM_OPT_FLAGS/-D_FORTIFY_SOURCE=2/}"
-export CFLAGS="%{optflags}"
-export CXXFLAGS="%{optflags}"
+FLAGS="${FLAGS/-D_FORTIFY_SOURCE=2/}"
+FLAGS="${FLAGS/-fstack-protector/}"
+export CFLAGS="$FLAGS"
+export CXXFLAGS="$FLAGS"
+export FFLAGS="$FLAGS"
 %if 0%{?suse_version} > 1100
 autoreconf -fi
 %endif

++ armv6-support.diff ++
--- /var/tmp/diff_new_pack.SGLTxT/_old  2016-02-22 08:56:01.0 +0100
+++ /var/tmp/diff_new_pack.SGLTxT/_new  2016-02-22 08:56:01.0 +0100
@@ -1,6 +1,8 @@
 configure.ac
+Index: configure.ac
+===
+--- configure.ac.orig
 +++ configure.ac
-@@ -190,7 +190,7 @@
+@@ -234,7 +234,7 @@ case "${host_cpu}" in
  ARCH_MAX="s390x"
  ;;
  

++ gcc-version.patch -> gcc5.patch ++
--- /work/SRC/openSUSE:Factory/valgrind/gcc-version.patch   2015-04-06 
00:25:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.valgrind.new/gcc5.patch 2016-02-22 
08:55:59.0 +0100
@@ -1,13 +1,58 @@
+
+r15773 | bart | 2016-01-25 05:27:25 +0100 (Mo, 25. Jan 2016) | 7 Zeilen
+
+configure.ac: Port to gcc 5
+
+Apparently gcc 5 behaves as follows:
+$ gcc -dumpversion
+5
+
+
+
 Index: configure.ac
 ===
 configure.ac.orig
-+++ configure.ac
-@@ -138,7 +138,7 @@ case "${is_clang}-${gcc_version}" in
-  notclang-4.*)
-   AC_MSG_RESULT([ok (${gcc_version})])
+--- configure.ac   (Revision 15772)
 configure.ac   (Revision 15773)
+@@ -160,7 +160,7 @@ case "${is_clang}-${gcc_version}" in
+  icc-1[[3-9]].*)
+   AC_MSG_RESULT([ok (ICC version ${gcc_version})])
;;
-- notclang-5.*)
-+ notclang-5*)
+- notclang-[[3-9]].*|notclang-[[1-9][0-9]]*)
++ notclang-[[3-9]]|notclang-[[3-9]].*|notclang-[[1-9][0-9]]*)
AC_MSG_RESULT([ok 

commit python-SPARQLWrapper for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-SPARQLWrapper for 
openSUSE:Factory checked in at 2016-02-22 08:55:48

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


Package is "python-SPARQLWrapper"

Changes:

--- 
/work/SRC/openSUSE:Factory/python-SPARQLWrapper/python-SPARQLWrapper.changes
2013-12-16 18:07:24.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-SPARQLWrapper.new/python-SPARQLWrapper.changes
   2016-02-22 08:55:51.0 +0100
@@ -1,0 +2,44 @@
+Fri Feb 12 09:53:34 UTC 2016 - o...@aepfle.de
+
+- Remove BuildRequires python-rdflib to avoid cirular dependency
+
+---
+Wed May 13 11:18:22 UTC 2015 - benoit.mo...@gmx.fr
+
+- update to version 1.6.4:
+  * Fixed unicode problems on setup (issue #42)
+- additional changes from version 1.6.3:
+  * Fixed unicode problems with urllib in Python 3 (issue #35)
+  * Restored SPARQLWrapper2 class (issue #36)
+  * Enhanced warning for missing rdflib-jsonld (issue #38)
+  * Fixed build system (issue #39)
+- additional changes from version 1.6.2:
+  * Fixed query type detection with comments (issue #32)
+- additional changes from version 1.6.1:
+  * Added missing query types (issue #17)
+  * Added a new method to the API to select the request method to
+be fully SPARQL 1.1 Protocol compliant (issue #28)
+  * Improved the test suite coverage, including support to run the
+tests under Python 3.x (issues #20, #24 and #31)
+- additional changes from version 1.6.0:
+  * Returning raw response in case of unknown content type returned
+  * Fixed some issues with the last version of the SPARQL 1.1
+Update Protocol
+  * setQuery() doesn't imply resetQuery() anymore
+  * Deprecated addCustomParameter(), addParameter() and
+clearParameter() come to provide all required functionality
+  * SPARQLWrapper, QueryResult, Value, Bindings (and classes
+inherited from them) are new-style classes now
+  * POST queries are accompanied by full set of parameters now
+  * Added rudimentary support for JSON-LD
+  * Added proper unit tests without dependencies of external
+endpoints
+  * Fixed Python 3 compatibility issues in SmartWrapper module
+- require python-rdflib instead of recommending it
+- require python-simplejson for SLE11
+- add runtime dependencies as build dependencies
+- remove the fix of end-of-line encoding: changed upstream
+- run the tests during build with wrapper_test.py
+- change the documentation files to follow upstream
+
+---

Old:

  SPARQLWrapper-1.5.2.tar.gz

New:

  SPARQLWrapper-1.6.4.tar.gz



Other differences:
--
++ python-SPARQLWrapper.spec ++
--- /var/tmp/diff_new_pack.WHJaBu/_old  2016-02-22 08:55:51.0 +0100
+++ /var/tmp/diff_new_pack.WHJaBu/_new  2016-02-22 08:55:51.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-SPARQLWrapper
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-SPARQLWrapper
-Version:1.5.2
+Version:1.6.4
 Release:0
 Summary:SPARQL Endpoint interface to Python
 License:W3C
@@ -26,9 +26,11 @@
 Source: 
https://pypi.python.org/packages/source/S/SPARQLWrapper/SPARQLWrapper-%{version}.tar.gz
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-Recommends: python-rdflib
+Requires:   python-rdflib
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
+BuildRequires:  python-simplejson
+Requires:   python-simplejson
 %{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 %else
 BuildArch:  noarch
@@ -41,8 +43,6 @@
 
 %prep
 %setup -q -n SPARQLWrapper-%{version}
-# fix end-of-line encoding
-sed -i 's/\r$//' README.txt
 
 %build
 python setup.py build
@@ -50,9 +50,12 @@
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
+%check
+python test/wrapper_test.py
+
 %files
 %defattr(-,root,root,-)
-%doc README.txt LICENSE.txt AUTHORS.txt ChangeLog.txt
+%doc README.md AUTHORS.md
 %{python_sitelib}/SPARQLWrapper/
 %{python_sitelib}/SPARQLWrapper-%{version}-py*.egg-info
 

++ SPARQLWrapper-1.5.2.tar.gz -> SPARQLWrapper-1.6.4.tar.gz ++
 2464 lines of diff (skipped)




commit python-Pygments for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python-Pygments for openSUSE:Factory 
checked in at 2016-02-22 08:55:54

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


Package is "python-Pygments"

Changes:

--- /work/SRC/openSUSE:Factory/python-Pygments/python-Pygments.changes  
2016-01-30 11:31:01.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Pygments.new/python-Pygments.changes 
2016-02-22 08:55:55.0 +0100
@@ -1,0 +2,18 @@
+Sun Feb 14 23:52:35 UTC 2016 - mich...@stroeder.com
+
+- Update to version 2.1.1
+  - Fixed Jython compatibility (#1205)
+  - Fixed HTML formatter output with leading empty lines (#)
+  - Added a mapping table for LaTeX encodings and added utf8 (#1152)
+  - Fixed image formatter font searching on Macs (#1188)
+  - Fixed deepcopy-ing of Token instances (#1168)
+  - Fixed Julia string interpolation (#1170)
+  - Fixed statefulness of HttpLexer between get_tokens calls
+  - Many smaller fixes to various lexers
+
+---
+Tue Feb  9 11:51:50 UTC 2016 - o...@aepfle.de
+
+- Disable testsuite in SLE_11 because it requires python 2.7
+
+---

Old:

  Pygments-2.1.tar.gz

New:

  Pygments-2.1.1.tar.gz



Other differences:
--
++ python-Pygments.spec ++
--- /var/tmp/diff_new_pack.OuvOLO/_old  2016-02-22 08:55:56.0 +0100
+++ /var/tmp/diff_new_pack.OuvOLO/_new  2016-02-22 08:55:56.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Pygments
 #
-# Copyright (c) 2015 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-Pygments
-Version:2.1
+Version:2.1.1
 Release:0
 Url:http://pygments.org
 Summary:Pygments is a syntax highlighting package written in Python
@@ -65,6 +65,10 @@
 install -Dm0644 doc/pygmentize.1 %{buildroot}%{_mandir}/man1/pygmentize.1
 
 %check
+if test '%{py_ver}' = "2.6"
+then
+  exit 0
+fi
 nosetests
 
 %files

++ Pygments-2.1.tar.gz -> Pygments-2.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pygments-2.1/CHANGES new/Pygments-2.1.1/CHANGES
--- old/Pygments-2.1/CHANGES2016-01-17 16:49:47.0 +0100
+++ new/Pygments-2.1.1/CHANGES  2016-02-14 15:03:35.0 +0100
@@ -7,6 +7,20 @@
 .
 
 
+Version 2.1.1
+-
+(relased Feb 14, 2016)
+
+- Fixed Jython compatibility (#1205)
+- Fixed HTML formatter output with leading empty lines (#)
+- Added a mapping table for LaTeX encodings and added utf8 (#1152)
+- Fixed image formatter font searching on Macs (#1188)
+- Fixed deepcopy-ing of Token instances (#1168)
+- Fixed Julia string interpolation (#1170)
+- Fixed statefulness of HttpLexer between get_tokens calls
+- Many smaller fixes to various lexers
+
+
 Version 2.1
 ---
 (released Jan 17, 2016)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pygments-2.1/PKG-INFO new/Pygments-2.1.1/PKG-INFO
--- old/Pygments-2.1/PKG-INFO   2016-01-17 16:50:37.0 +0100
+++ new/Pygments-2.1.1/PKG-INFO 2016-02-14 15:05:33.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: Pygments
-Version: 2.1
+Version: 2.1.1
 Summary: Pygments is a syntax highlighting package written in Python.
 Home-page: http://pygments.org/
 Author: Georg Brandl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pygments-2.1/Pygments.egg-info/PKG-INFO 
new/Pygments-2.1.1/Pygments.egg-info/PKG-INFO
--- old/Pygments-2.1/Pygments.egg-info/PKG-INFO 2016-01-17 16:50:37.0 
+0100
+++ new/Pygments-2.1.1/Pygments.egg-info/PKG-INFO   2016-02-14 
15:05:33.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: Pygments
-Version: 2.1
+Version: 2.1.1
 Summary: Pygments is a syntax highlighting package written in Python.
 Home-page: http://pygments.org/
 Author: Georg Brandl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pygments-2.1/Pygments.egg-info/SOURCES.txt 
new/Pygments-2.1.1/Pygments.egg-info/SOURCES.txt
--- old/Pygments-2.1/Pygments.egg-info/SOURCES.txt  2016-01-17 
16:50:37.0 +0100
+++ new/Pygments-2.1.1/Pygments.egg-info/SOURCES.txt2016-02-14 
15:05:33.0 +0100
@@ -313,32 +313,62 @@
 

commit python3-Pygments for openSUSE:Factory

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package python3-Pygments for 
openSUSE:Factory checked in at 2016-02-22 08:55:44

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


Package is "python3-Pygments"

Changes:

--- /work/SRC/openSUSE:Factory/python3-Pygments/python3-Pygments.changes
2016-01-28 22:50:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-Pygments.new/python3-Pygments.changes   
2016-02-22 08:55:45.0 +0100
@@ -1,0 +2,13 @@
+Mon Feb 15 18:18:13 UTC 2016 - a...@gmx.de
+
+- update to version 2.1.1:
+  * Fixed Jython compatibility (#1205)
+  * Fixed HTML formatter output with leading empty lines (#)
+  * Added a mapping table for LaTeX encodings and added utf8 (#1152)
+  * Fixed image formatter font searching on Macs (#1188)
+  * Fixed deepcopy-ing of Token instances (#1168)
+  * Fixed Julia string interpolation (#1170)
+  * Fixed statefulness of HttpLexer between get_tokens calls
+  * Many smaller fixes to various lexers
+
+---

Old:

  Pygments-2.1.tar.gz

New:

  Pygments-2.1.1.tar.gz



Other differences:
--
++ python3-Pygments.spec ++
--- /var/tmp/diff_new_pack.cgIa9Z/_old  2016-02-22 08:55:46.0 +0100
+++ /var/tmp/diff_new_pack.cgIa9Z/_new  2016-02-22 08:55:46.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   python3-Pygments
-Version:2.1
+Version:2.1.1
 Release:0
 Url:http://pygments.org
 Summary:Pygments is a syntax highlighting package written in Python

++ Pygments-2.1.tar.gz -> Pygments-2.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pygments-2.1/CHANGES new/Pygments-2.1.1/CHANGES
--- old/Pygments-2.1/CHANGES2016-01-17 16:49:47.0 +0100
+++ new/Pygments-2.1.1/CHANGES  2016-02-14 15:03:35.0 +0100
@@ -7,6 +7,20 @@
 .
 
 
+Version 2.1.1
+-
+(relased Feb 14, 2016)
+
+- Fixed Jython compatibility (#1205)
+- Fixed HTML formatter output with leading empty lines (#)
+- Added a mapping table for LaTeX encodings and added utf8 (#1152)
+- Fixed image formatter font searching on Macs (#1188)
+- Fixed deepcopy-ing of Token instances (#1168)
+- Fixed Julia string interpolation (#1170)
+- Fixed statefulness of HttpLexer between get_tokens calls
+- Many smaller fixes to various lexers
+
+
 Version 2.1
 ---
 (released Jan 17, 2016)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pygments-2.1/PKG-INFO new/Pygments-2.1.1/PKG-INFO
--- old/Pygments-2.1/PKG-INFO   2016-01-17 16:50:37.0 +0100
+++ new/Pygments-2.1.1/PKG-INFO 2016-02-14 15:05:33.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: Pygments
-Version: 2.1
+Version: 2.1.1
 Summary: Pygments is a syntax highlighting package written in Python.
 Home-page: http://pygments.org/
 Author: Georg Brandl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pygments-2.1/Pygments.egg-info/PKG-INFO 
new/Pygments-2.1.1/Pygments.egg-info/PKG-INFO
--- old/Pygments-2.1/Pygments.egg-info/PKG-INFO 2016-01-17 16:50:37.0 
+0100
+++ new/Pygments-2.1.1/Pygments.egg-info/PKG-INFO   2016-02-14 
15:05:33.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: Pygments
-Version: 2.1
+Version: 2.1.1
 Summary: Pygments is a syntax highlighting package written in Python.
 Home-page: http://pygments.org/
 Author: Georg Brandl
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Pygments-2.1/Pygments.egg-info/SOURCES.txt 
new/Pygments-2.1.1/Pygments.egg-info/SOURCES.txt
--- old/Pygments-2.1/Pygments.egg-info/SOURCES.txt  2016-01-17 
16:50:37.0 +0100
+++ new/Pygments-2.1.1/Pygments.egg-info/SOURCES.txt2016-02-14 
15:05:33.0 +0100
@@ -313,32 +313,62 @@
 tests/test_util.py
 tests/test_util.pyc
 tests/__pycache__/string_asserts.cpython-33.pyc
+tests/__pycache__/string_asserts.cpython-35.pyc
 tests/__pycache__/support.cpython-33.pyc
+tests/__pycache__/support.cpython-35.pyc
 tests/__pycache__/test_basic_api.cpython-33.pyc
+tests/__pycache__/test_basic_api.cpython-35.pyc
 tests/__pycache__/test_cfm.cpython-33.pyc
+tests/__pycache__/test_cfm.cpython-35.pyc
 tests/__pycache__/test_clexer.cpython-33.pyc
+tests/__pycache__/test_clexer.cpython-35.pyc
 tests/__pycache__/test_cmdline.cpython-33.pyc
+tests/__pycache__/test_cmdline.cpython-35.pyc
 tests/__pycache__/test_examplefiles.cpython-33.pyc

commit xtables-addons for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package xtables-addons for 
openSUSE:13.2:Update checked in at 2016-02-22 08:19:38

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


Package is "xtables-addons"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.DVjvCM/_old  2016-02-22 08:19:41.0 +0100
+++ /var/tmp/diff_new_pack.DVjvCM/_new  2016-02-22 08:19:41.0 +0100
@@ -1 +1 @@
-
+




commit xen for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package xen for openSUSE:13.2:Update checked 
in at 2016-02-22 08:19:35

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


Package is "xen"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.66jpCG/_old  2016-02-22 08:19:41.0 +0100
+++ /var/tmp/diff_new_pack.66jpCG/_new  2016-02-22 08:19:41.0 +0100
@@ -1 +1 @@
-
+




commit virtualbox for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package virtualbox for openSUSE:13.2:Update 
checked in at 2016-02-22 08:19:32

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


Package is "virtualbox"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.vlhMme/_old  2016-02-22 08:19:34.0 +0100
+++ /var/tmp/diff_new_pack.vlhMme/_new  2016-02-22 08:19:34.0 +0100
@@ -1 +1 @@
-
+




commit vhba-kmp for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package vhba-kmp for openSUSE:13.2:Update 
checked in at 2016-02-22 08:19:30

Comparing /work/SRC/openSUSE:13.2:Update/vhba-kmp (Old)
 and  /work/SRC/openSUSE:13.2:Update/.vhba-kmp.new (New)


Package is "vhba-kmp"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.dGWeLI/_old  2016-02-22 08:19:31.0 +0100
+++ /var/tmp/diff_new_pack.dGWeLI/_new  2016-02-22 08:19:31.0 +0100
@@ -1 +1 @@
-
+




commit kernel-lpae for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-lpae for openSUSE:13.2:Update 
checked in at 2016-02-22 08:18:55

Comparing /work/SRC/openSUSE:13.2:Update/kernel-lpae (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-lpae.new (New)


Package is "kernel-lpae"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Gd7ept/_old  2016-02-22 08:18:56.0 +0100
+++ /var/tmp/diff_new_pack.Gd7ept/_new  2016-02-22 08:18:56.0 +0100
@@ -1 +1 @@
-
+




commit kernel-ec2 for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-ec2 for openSUSE:13.2:Update 
checked in at 2016-02-22 08:18:52

Comparing /work/SRC/openSUSE:13.2:Update/kernel-ec2 (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-ec2.new (New)


Package is "kernel-ec2"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.jI2urU/_old  2016-02-22 08:18:52.0 +0100
+++ /var/tmp/diff_new_pack.jI2urU/_new  2016-02-22 08:18:52.0 +0100
@@ -1 +1 @@
-
+




commit kernel-obs-qa for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-obs-qa for 
openSUSE:13.2:Update checked in at 2016-02-22 08:19:08

Comparing /work/SRC/openSUSE:13.2:Update/kernel-obs-qa (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-obs-qa.new (New)


Package is "kernel-obs-qa"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.fFelVC/_old  2016-02-22 08:19:09.0 +0100
+++ /var/tmp/diff_new_pack.fFelVC/_new  2016-02-22 08:19:09.0 +0100
@@ -1 +1 @@
-
+




commit pcfclock for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package pcfclock for openSUSE:13.2:Update 
checked in at 2016-02-22 08:19:23

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


Package is "pcfclock"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.KbnhQf/_old  2016-02-22 08:19:24.0 +0100
+++ /var/tmp/diff_new_pack.KbnhQf/_new  2016-02-22 08:19:24.0 +0100
@@ -1 +1 @@
-
+




commit kernel-syms for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-syms for openSUSE:13.2:Update 
checked in at 2016-02-22 08:19:16

Comparing /work/SRC/openSUSE:13.2:Update/kernel-syms (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-syms.new (New)


Package is "kernel-syms"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.mHRW4z/_old  2016-02-22 08:19:16.0 +0100
+++ /var/tmp/diff_new_pack.mHRW4z/_new  2016-02-22 08:19:16.0 +0100
@@ -1 +1 @@
-
+




commit kernel-obs-build for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-obs-build for 
openSUSE:13.2:Update checked in at 2016-02-22 08:18:59

Comparing /work/SRC/openSUSE:13.2:Update/kernel-obs-build (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-obs-build.new (New)


Package is "kernel-obs-build"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Xg184h/_old  2016-02-22 08:19:00.0 +0100
+++ /var/tmp/diff_new_pack.Xg184h/_new  2016-02-22 08:19:00.0 +0100
@@ -1 +1 @@
-
+




commit kernel-pae for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-pae for openSUSE:13.2:Update 
checked in at 2016-02-22 08:19:10

Comparing /work/SRC/openSUSE:13.2:Update/kernel-pae (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-pae.new (New)


Package is "kernel-pae"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.8XH1hD/_old  2016-02-22 08:19:12.0 +0100
+++ /var/tmp/diff_new_pack.8XH1hD/_new  2016-02-22 08:19:12.0 +0100
@@ -1 +1 @@
-
+




commit kernel-obs-qa.4659 for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-obs-qa.4659 for 
openSUSE:13.2:Update checked in at 2016-02-22 08:19:04

Comparing /work/SRC/openSUSE:13.2:Update/kernel-obs-qa.4659 (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-obs-qa.4659.new (New)


Package is "kernel-obs-qa.4659"

Changes:

New Changes file:

NO CHANGES FILE!!!

New:

  _link



Other differences:
--
++ _link ++



commit ipset for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package ipset for openSUSE:13.2:Update 
checked in at 2016-02-22 08:18:40

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


Package is "ipset"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.vRvBpp/_old  2016-02-22 08:18:41.0 +0100
+++ /var/tmp/diff_new_pack.vRvBpp/_new  2016-02-22 08:18:41.0 +0100
@@ -1 +1 @@
-
+




commit kernel-desktop for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-desktop for 
openSUSE:13.2:Update checked in at 2016-02-22 08:18:47

Comparing /work/SRC/openSUSE:13.2:Update/kernel-desktop (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-desktop.new (New)


Package is "kernel-desktop"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.hUiDfS/_old  2016-02-22 08:18:48.0 +0100
+++ /var/tmp/diff_new_pack.hUiDfS/_new  2016-02-22 08:18:48.0 +0100
@@ -1 +1 @@
-
+




commit kernel-default for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-default for 
openSUSE:13.2:Update checked in at 2016-02-22 08:18:45

Comparing /work/SRC/openSUSE:13.2:Update/kernel-default (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-default.new (New)


Package is "kernel-default"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.Rr8F5U/_old  2016-02-22 08:18:46.0 +0100
+++ /var/tmp/diff_new_pack.Rr8F5U/_new  2016-02-22 08:18:46.0 +0100
@@ -1 +1 @@
-
+




commit kernel-docs for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-docs for openSUSE:13.2:Update 
checked in at 2016-02-22 08:18:49

Comparing /work/SRC/openSUSE:13.2:Update/kernel-docs (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-docs.new (New)


Package is "kernel-docs"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.nmIf2r/_old  2016-02-22 08:18:51.0 +0100
+++ /var/tmp/diff_new_pack.nmIf2r/_new  2016-02-22 08:18:51.0 +0100
@@ -1 +1 @@
-
+




commit kernel-xen for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-xen for openSUSE:13.2:Update 
checked in at 2016-02-22 08:19:21

Comparing /work/SRC/openSUSE:13.2:Update/kernel-xen (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-xen.new (New)


Package is "kernel-xen"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.nXVbmM/_old  2016-02-22 08:19:22.0 +0100
+++ /var/tmp/diff_new_pack.nXVbmM/_new  2016-02-22 08:19:22.0 +0100
@@ -1 +1 @@
-
+




commit kernel-vanilla for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-vanilla for 
openSUSE:13.2:Update checked in at 2016-02-22 08:19:19

Comparing /work/SRC/openSUSE:13.2:Update/kernel-vanilla (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-vanilla.new (New)


Package is "kernel-vanilla"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.CfIHKo/_old  2016-02-22 08:19:19.0 +0100
+++ /var/tmp/diff_new_pack.CfIHKo/_new  2016-02-22 08:19:19.0 +0100
@@ -1 +1 @@
-
+




commit kernel-obs-qa-xen for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-obs-qa-xen for 
openSUSE:13.2:Update checked in at 2016-02-22 08:19:02

Comparing /work/SRC/openSUSE:13.2:Update/kernel-obs-qa-xen (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-obs-qa-xen.new (New)


Package is "kernel-obs-qa-xen"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.EW2sWz/_old  2016-02-22 08:19:03.0 +0100
+++ /var/tmp/diff_new_pack.EW2sWz/_new  2016-02-22 08:19:03.0 +0100
@@ -1 +1 @@
-
+




commit kernel-source for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-source for 
openSUSE:13.2:Update checked in at 2016-02-22 08:19:13

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


Package is "kernel-source"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.FyjzJ0/_old  2016-02-22 08:19:16.0 +0100
+++ /var/tmp/diff_new_pack.FyjzJ0/_new  2016-02-22 08:19:16.0 +0100
@@ -1 +1 @@
-
+




commit hdjmod for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package hdjmod for openSUSE:13.2:Update 
checked in at 2016-02-22 08:18:37

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


Package is "hdjmod"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.FAJ7xU/_old  2016-02-22 08:18:39.0 +0100
+++ /var/tmp/diff_new_pack.FAJ7xU/_new  2016-02-22 08:18:39.0 +0100
@@ -1 +1 @@
-
+




commit crash for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package crash for openSUSE:13.2:Update 
checked in at 2016-02-22 08:18:35

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


Package is "crash"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.FqkdJL/_old  2016-02-22 08:18:36.0 +0100
+++ /var/tmp/diff_new_pack.FqkdJL/_new  2016-02-22 08:18:36.0 +0100
@@ -1 +1 @@
-
+




commit bbswitch for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package bbswitch for openSUSE:13.2:Update 
checked in at 2016-02-22 08:18:29

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


Package is "bbswitch"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.qF5JYB/_old  2016-02-22 08:18:30.0 +0100
+++ /var/tmp/diff_new_pack.qF5JYB/_new  2016-02-22 08:18:30.0 +0100
@@ -1 +1 @@
-
+




commit cloop for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package cloop for openSUSE:13.2:Update 
checked in at 2016-02-22 08:18:32

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


Package is "cloop"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.TvX09q/_old  2016-02-22 08:18:33.0 +0100
+++ /var/tmp/diff_new_pack.TvX09q/_new  2016-02-22 08:18:33.0 +0100
@@ -1 +1 @@
-
+




commit kernel-debug for openSUSE:13.2:Update

2016-02-21 Thread h_root
Hello community,

here is the log from the commit of package kernel-debug for 
openSUSE:13.2:Update checked in at 2016-02-22 08:18:42

Comparing /work/SRC/openSUSE:13.2:Update/kernel-debug (Old)
 and  /work/SRC/openSUSE:13.2:Update/.kernel-debug.new (New)


Package is "kernel-debug"

Changes:

New Changes file:

NO CHANGES FILE!!!



Other differences:
--
++ _link ++
--- /var/tmp/diff_new_pack.MtD8dj/_old  2016-02-22 08:18:43.0 +0100
+++ /var/tmp/diff_new_pack.MtD8dj/_new  2016-02-22 08:18:43.0 +0100
@@ -1 +1 @@
-
+