commit crmsh for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2017-04-25 08:59:05

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


Package is "crmsh"

Tue Apr 25 08:59:05 2017 rev:119 rq:490289 version:3.0.0

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2017-04-24 
09:49:15.651908733 +0200
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2017-04-25 
08:59:05.963359332 +0200
@@ -1,0 +2,7 @@
+Mon Apr 24 12:17:13 UTC 2017 - kgronl...@suse.com
+
+- low: bootstrap: Update fix for formatting SBD device (bsc#1028704)
+- medium: bootstrap: Set expected votes based on actual node count 
(bsc#1033288)
+- Add 0007-medium-bootstrap-Set-expected_votes-based-on-actual-.patch 
+
+---

New:

  0007-medium-bootstrap-Set-expected_votes-based-on-actual-.patch



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.0aHcUq/_old  2017-04-25 08:59:06.759246796 +0200
+++ /var/tmp/diff_new_pack.0aHcUq/_new  2017-04-25 08:59:06.763246230 +0200
@@ -54,6 +54,9 @@
 Patch5: 0005-medium-scripts-health-Make-health-script-available-a.patch
 # PATCH-FIX-UPSTREAM: low: remove bindnetaddr for unicast(bsc#1030437)
 Patch6: 0006-remove-bindnetaddr-for-unicast-bsc-1030437.patch
+# PATCH-FIX-UPSTREAM: medium: bootstrap: Set expected votes based on actual 
node count (bsc#1033288)
+Patch7: 0007-medium-bootstrap-Set-expected_votes-based-on-actual-.patch
+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 # Requiring pacemaker makes crmsh harder to build on other distributions,
@@ -161,6 +164,7 @@
 %patch4 -p1
 %patch5 -p1
 %patch6 -p1
+%patch7 -p1
 
 # Force the local time
 #

++ 0002-low-bootstrap-Fix-warning-for-formatting-SBD-device-.patch ++
--- /var/tmp/diff_new_pack.0aHcUq/_old  2017-04-25 08:59:06.795241706 +0200
+++ /var/tmp/diff_new_pack.0aHcUq/_new  2017-04-25 08:59:06.795241706 +0200
@@ -1,26 +1,28 @@
-From 6bbb4fba305d8eeb921b63f579d9703c633ed7ca Mon Sep 17 00:00:00 2001
+From 4c892429494031ed45f8cc36df714f58cc2cdd43 Mon Sep 17 00:00:00 2001
 From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= 
 Date: Thu, 9 Mar 2017 20:27:19 +0100
-Subject: [PATCH 2/4] low: bootstrap: Fix warning for formatting SBD device
+Subject: [PATCH] low: bootstrap: Fix warning for formatting SBD device
  (bsc#1028704)
 
 ---
- crmsh/bootstrap.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
+ crmsh/bootstrap.py | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
 
 diff --git a/crmsh/bootstrap.py b/crmsh/bootstrap.py
-index 2b2e167a..26d5f124 100644
+index 2b2e167a..2fec7dbf 100644
 --- a/crmsh/bootstrap.py
 +++ b/crmsh/bootstrap.py
-@@ -940,7 +940,7 @@ Configure SBD:
+@@ -940,8 +940,8 @@ Configure SBD:
  if not is_block_device(dev):
  print >>sys.stderr, "That doesn't look like a block 
device"
  else:
 -status("All data on $dev will be destroyed")
+-if confirm('Are you sure you wish to use this device'):
 +warn("All data on {} will be destroyed!".format(dev))
- if confirm('Are you sure you wish to use this device'):
++if confirm('Are you sure you wish to use this device?'):
  dev_looks_sane = True
  else:
+ dev = ""
 -- 
-2.11.1
+2.12.0
 

++ 0007-medium-bootstrap-Set-expected_votes-based-on-actual-.patch ++
>From 03e673e76415590ef34cbf2d08dcfd3b530bb74a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= 
Date: Mon, 10 Apr 2017 17:47:55 +0200
Subject: [PATCH] medium: bootstrap: Set expected_votes based on actual node
 count (bsc#1033288)

Initialize the cluster before setting expected_votes.

Query the cluster to find out how many nodes there are (so as
not to adjust multiple times if a previous attempt to join the
cluster failed).
---
 crmsh/bootstrap.py | 40 +++-
 1 file changed, 31 insertions(+), 9 deletions(-)

diff --git a/crmsh/bootstrap.py b/crmsh/bootstrap.py
index 2b2e167a..bab3bd80 100644
--- a/crmsh/bootstrap.py
+++ b/crmsh/bootstrap.py
@@ -1240,17 +1240,39 @@ def join_cluster(seed_host):
 if is_unicast:
 corosync.add_node(utils.this_node())
 
-# Increase expected_votes
-new_quorum = 0
-for v in corosync.get_values("quorum.expected_votes"):
-new_quorum = int(v) + 1
-corosync.set_value("quorum.expected_votes", str(new_quorum))
-corosync.set_value("quorum.two_node", 1 if new_quorum == 2 else 0)
-csync2_update(corosync.conf())
-
-# ...now that that

commit gpxsee for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package gpxsee for openSUSE:Factory checked 
in at 2017-04-25 08:58:45

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


Package is "gpxsee"

Tue Apr 25 08:58:45 2017 rev:7 rq:490063 version:4.5

Changes:

--- /work/SRC/openSUSE:Factory/gpxsee/gpxsee.changes2017-04-20 
20:57:33.279926554 +0200
+++ /work/SRC/openSUSE:Factory/.gpxsee.new/gpxsee.changes   2017-04-25 
08:58:46.454117900 +0200
@@ -1,0 +2,8 @@
+Sun Apr 23 21:11:50 CEST 2017 - tu...@cbox.cz
+
+- Update to version 4.5
+  * Added support for "runtime" loading of offline maps.
+  * Fixed atlas zoom fitting.
+  * Fixed various minor offline map loading issues.
+
+---

Old:

  GPXSee-4.4.tar.gz

New:

  GPXSee-4.5.tar.gz



Other differences:
--
++ gpxsee.spec ++
--- /var/tmp/diff_new_pack.eD7M8a/_old  2017-04-25 08:58:47.497970301 +0200
+++ /var/tmp/diff_new_pack.eD7M8a/_new  2017-04-25 08:58:47.501969735 +0200
@@ -19,7 +19,7 @@
 # See also http://en.opensuse.org/openSUSE:Specfile_guidelines
 
 Name:   gpxsee
-Version:4.4
+Version:4.5
 Release:1
 Summary:GPS log files visualizing and analyzing tool
 License:GPL-3.0

++ GPXSee-4.4.tar.gz -> GPXSee-4.5.tar.gz ++
 3049 lines of diff (skipped)

++ debian.changelog ++
--- /var/tmp/diff_new_pack.eD7M8a/_old  2017-04-25 08:58:47.737936370 +0200
+++ /var/tmp/diff_new_pack.eD7M8a/_new  2017-04-25 08:58:47.741935805 +0200
@@ -1,3 +1,11 @@
+gpxsee (4.5) stable; urgency=low
+
+  * Added support for "runtime" loading of offline maps.
+  * Fixed atlas zoom fitting.
+  * Fixed various minor offline map loading issues.
+
+ -- Martin Tuma   Sun, 23 Apr 2017 21:17:11 +0200
+
 gpxsee (4.4) stable; urgency=low
 
   * Added support for ozf2 image files.

++ gpxsee.dsc ++
--- /var/tmp/diff_new_pack.eD7M8a/_old  2017-04-25 08:58:47.853919970 +0200
+++ /var/tmp/diff_new_pack.eD7M8a/_new  2017-04-25 08:58:47.853919970 +0200
@@ -1,9 +1,9 @@
 Format: 1.0
 Source: gpxsee
-Version: 4.4
+Version: 4.5
 Binary: gpxsee
 Maintainer: Martin Tuma 
 Architecture: any
 Build-Depends: debhelper (>= 9), qtbase5-dev, qtbase5-dev-tools, qt5-qmake, 
qttools5-dev-tools, libqt5opengl5-dev
 Files:
-  0 GPXSee-4.4.tar.gz
+  0 GPXSee-4.5.tar.gz




commit ghc-http-link-header for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package ghc-http-link-header for 
openSUSE:Factory checked in at 2017-04-25 08:58:54

Comparing /work/SRC/openSUSE:Factory/ghc-http-link-header (Old)
 and  /work/SRC/openSUSE:Factory/.ghc-http-link-header.new (New)


Package is "ghc-http-link-header"

Tue Apr 25 08:58:54 2017 rev:2 rq:490239 version:1.0.3

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-http-link-header/ghc-http-link-header.changes
2017-04-17 10:24:58.745533845 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-http-link-header.new/ghc-http-link-header.changes
   2017-04-25 08:58:54.696952378 +0200
@@ -1,0 +2,10 @@
+Tue Nov 22 16:06:42 UTC 2016 - psim...@suse.com
+
+- Update to version 1.0.3 with cabal2obs.
+
+---
+Thu Sep 15 06:58:34 UTC 2016 - psim...@suse.com
+
+- Update to version 1.0.2 revision 0 with cabal2obs.
+
+---

Old:

  http-link-header-1.0.1.tar.gz

New:

  http-link-header-1.0.3.tar.gz



Other differences:
--
++ ghc-http-link-header.spec ++
--- /var/tmp/diff_new_pack.KFUrZp/_old  2017-04-25 08:58:56.848648133 +0200
+++ /var/tmp/diff_new_pack.KFUrZp/_new  2017-04-25 08:58:56.852647567 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-http-link-header
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,19 +19,19 @@
 %global pkg_name http-link-header
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:1.0.1
+Version:1.0.3
 Release:0
 Summary:A parser and writer for the HTTP Link header as specified in 
RFC 5988 "Web Linking"
 License:SUSE-Public-Domain
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-attoparsec-devel
 BuildRequires:  ghc-bytestring-conversion-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-errors-devel
+BuildRequires:  ghc-http-api-data-devel
 BuildRequires:  ghc-network-uri-devel
 BuildRequires:  ghc-rpm-macros
 BuildRequires:  ghc-text-devel
@@ -41,7 +41,6 @@
 BuildRequires:  ghc-hspec-attoparsec-devel
 BuildRequires:  ghc-hspec-devel
 %endif
-# End cabal-rpm deps
 
 %description
 Https://github.com/myfreeweb/http-link-header.
@@ -63,20 +62,14 @@
 echo > Setup.hs 'import Distribution.Simple'
 echo >>Setup.hs 'main = defaultMain'
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache

++ http-link-header-1.0.1.tar.gz -> http-link-header-1.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-link-header-1.0.1/Setup.hs 
new/http-link-header-1.0.3/Setup.hs
--- old/http-link-header-1.0.1/Setup.hs 1970-01-01 01:00:00.0 +0100
+++ new/http-link-header-1.0.3/Setup.hs 2016-09-05 13:06:32.0 +0200
@@ -0,0 +1,2 @@
+import Distribution.Simple
+main = defaultMain
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-link-header-1.0.1/benchmark/ParserBench.hs 
new/http-link-header-1.0.3/benchmark/ParserBench.hs
--- old/http-link-header-1.0.1/benchmark/ParserBench.hs 1970-01-01 
01:00:00.0 +0100
+++ new/http-link-header-1.0.3/benchmark/ParserBench.hs 2015-12-27 
20:29:33.0 +0100
@@ -0,0 +1,12 @@
+{-# LANGUAGE OverloadedStrings #-}
+
+module ParserBench (benchmarks) where
+
+import   Criterion
+import   Network.HTTP.Link.Parser
+
+benchmarks :: [Benchmark]
+benchmarks = [
+bench "minimal" $ whnf parseLinkHeader "; rel=\"next\""
+  , bench "large" $ whnf parseLinkHeader "\n\t <  http://example.com>; 
rel=next; title=\"Hello world\",  ; rev=license; 
someWeirdParam=\"YOLO LOL\", ; 
rel=\"something something something http://some.thing/lol/rel\"; "
+  ]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-link-header-1.0.1/benchmark/WriterBench.hs 
new/http-link-header-1.0.3/benchmark/WriterBench.hs
--- old/http-link-header-1.0.1/benchmark/WriterBench.hs 1970-01-01 
01:00:00.0 +0100
+++ new/http-link-header-1.0.3/benchmark/Wr

commit libserf for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package libserf for openSUSE:Factory checked 
in at 2017-04-25 08:58:40

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


Package is "libserf"

Tue Apr 25 08:58:40 2017 rev:24 rq:489857 version:1.3.9

Changes:

--- /work/SRC/openSUSE:Factory/libserf/libserf.changes  2016-09-07 
11:47:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.libserf.new/libserf.changes 2017-04-25 
08:58:41.418829881 +0200
@@ -1,0 +2,5 @@
+Fri Apr 21 15:07:16 UTC 2017 - astie...@suse.com
+
+- do not check with time-dependent failures bsc#1035395 bsc#1031549
+
+---



Other differences:
--
++ libserf.spec ++
--- /var/tmp/diff_new_pack.rXYgna/_old  2017-04-25 08:58:42.718646089 +0200
+++ /var/tmp/diff_new_pack.rXYgna/_new  2017-04-25 08:58:42.722645524 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libserf
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -105,14 +105,6 @@
 scons install --install-sandbox=%{buildroot}
 rm -f "%{buildroot}%{_libdir}"/lib*.a
 
-%check
-%if 0%{?suse_version} > 1210
-scons \
-   CFLAGS="%{optflags}" \
-   check \
-   %{?_smp_mflags}
-%endif
-
 %post   -n libserf-%{major}-%{major} -p /sbin/ldconfig
 %postun -n libserf-%{major}-%{major} -p /sbin/ldconfig
 





commit ghc-formatting for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package ghc-formatting for openSUSE:Factory 
checked in at 2017-04-25 08:58:47

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


Package is "ghc-formatting"

Tue Apr 25 08:58:47 2017 rev:2 rq:490238 version:6.2.4

Changes:

--- /work/SRC/openSUSE:Factory/ghc-formatting/ghc-formatting.changes
2017-04-17 10:24:51.574549397 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-formatting.new/ghc-formatting.changes   
2017-04-25 08:58:48.297857199 +0200
@@ -1,0 +2,10 @@
+Tue Nov 29 11:30:27 UTC 2016 - psim...@suse.com
+
+- Update to version 6.2.4 with cabal2obs.
+
+---
+Sun Nov  6 21:26:14 UTC 2016 - psim...@suse.com
+
+- Update to version 6.2.3 with cabal2obs.
+
+---

Old:

  formatting-6.2.2.tar.gz

New:

  formatting-6.2.4.tar.gz



Other differences:
--
++ ghc-formatting.spec ++
--- /var/tmp/diff_new_pack.WEQkpG/_old  2017-04-25 08:58:48.905771241 +0200
+++ /var/tmp/diff_new_pack.WEQkpG/_new  2017-04-25 08:58:48.905771241 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-formatting
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,15 +18,14 @@
 
 %global pkg_name formatting
 Name:   ghc-%{pkg_name}
-Version:6.2.2
+Version:6.2.4
 Release:0
 Summary:Combinator-based type-safe formatting (like printf() or FORMAT)
 License:BSD-3-Clause
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-clock-devel
 BuildRequires:  ghc-old-locale-devel
 BuildRequires:  ghc-rpm-macros
@@ -35,7 +34,6 @@
 BuildRequires:  ghc-text-format-devel
 BuildRequires:  ghc-time-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Combinator-based type-safe formatting (like printf() or FORMAT), modelled from
@@ -55,15 +53,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 

++ formatting-6.2.2.tar.gz -> formatting-6.2.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/formatting-6.2.2/formatting.cabal 
new/formatting-6.2.4/formatting.cabal
--- old/formatting-6.2.2/formatting.cabal   2015-07-13 17:39:25.0 
+0200
+++ new/formatting-6.2.4/formatting.cabal   2016-11-24 16:17:11.0 
+0100
@@ -1,5 +1,5 @@
 name:formatting
-version: 6.2.2
+version: 6.2.4
 synopsis:Combinator-based type-safe formatting (like printf() or 
FORMAT)
 description: Combinator-based type-safe formatting (like printf() or 
FORMAT), modelled from the HoleyMonoids package.
 license: BSD3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/formatting-6.2.2/src/Formatting/Formatters.hs 
new/formatting-6.2.4/src/Formatting/Formatters.hs
--- old/formatting-6.2.2/src/Formatting/Formatters.hs   2015-07-13 
17:39:25.0 +0200
+++ new/formatting-6.2.4/src/Formatting/Formatters.hs   2016-11-03 
16:37:33.0 +0100
@@ -1,5 +1,4 @@
 {-# LANGUAGE RankNTypes #-}
-{-# LANGUAGE GADTs #-}
 {-# LANGUAGE OverloadedStrings #-}
 {-# OPTIONS -Wall #-}
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/formatting-6.2.2/src/Formatting/Internal.hs 
new/formatting-6.2.4/src/Formatting/Internal.hs
--- old/formatting-6.2.2/src/Formatting/Internal.hs 2015-07-13 
17:39:25.0 +0200
+++ new/formatting-6.2.4/src/Formatting/Internal.hs 2016-11-24 
16:14:07.0 +0100
@@ -19,12 +19,34 @@
 import   Prelude hiding ((.),id)
 import   System.IO
 
--- | A formatter. The @r@ type means the returned value at the
--- end. The more formatters you compose, the more this wil build up
--- arguments from @r@ to @Int -> r@ to @Char -> (Int -> r)@, etc.
+-- | A formatter. When you construct formatters the first type
+-- parameter, @r@, will remain polymorphic.  The second type
+-- parameter, @a@, will change to reflect the types of the data that
+-- w

commit systemd-presets-branding-CAASP for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package systemd-presets-branding-CAASP for 
openSUSE:Factory checked in at 2017-04-25 08:58:37

Comparing /work/SRC/openSUSE:Factory/systemd-presets-branding-CAASP (Old)
 and  /work/SRC/openSUSE:Factory/.systemd-presets-branding-CAASP.new (New)


Package is "systemd-presets-branding-CAASP"

Tue Apr 25 08:58:37 2017 rev:2 rq:489803 version:1.0.0

Changes:

--- 
/work/SRC/openSUSE:Factory/systemd-presets-branding-CAASP/systemd-presets-branding-CAASP.changes
2017-04-18 13:49:57.414218883 +0200
+++ 
/work/SRC/openSUSE:Factory/.systemd-presets-branding-CAASP.new/systemd-presets-branding-CAASP.changes
   2017-04-25 08:58:38.771204250 +0200
@@ -1,0 +2,15 @@
+Tue Apr 18 16:03:49 CEST 2017 - ku...@suse.de
+
+- Enable adjust-cloud-cfg by default
+
+---
+Wed Apr 12 16:28:31 CEST 2017 - ku...@suse.de
+
+- Enable setup-salt-minion service by default
+
+---
+Wed Apr 12 13:49:39 CEST 2017 - ku...@suse.de
+
+- Enable audit daemon by default
+
+---



Other differences:
--
++ systemd-presets-branding-CAASP.spec ++
--- /var/tmp/diff_new_pack.i6GSze/_old  2017-04-25 08:58:39.535096237 +0200
+++ /var/tmp/diff_new_pack.i6GSze/_new  2017-04-25 08:58:39.535096237 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package systemd-presets-branding-CAASP
 #
-# Copyright (c) 2016, 2017 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %if 0%{?is_susecaasp} || 0%{?sle_version} > 0
 %define theme SLE
 %else
@@ -31,9 +32,9 @@
 
 Name:   systemd-presets-branding-CAASP
 Version:1.0.0
-Release:1
+Release:0
 Summary:Systemd default presets for SUSE CaaS Platform
-License:GPL-2.0+
+License:MIT
 Group:  System/Base
 Source0:70-default-CAASP.preset
 Source1:99-default-disable.preset

++ 70-default-CAASP.preset ++
--- /var/tmp/diff_new_pack.i6GSze/_old  2017-04-25 08:58:39.571091148 +0200
+++ /var/tmp/diff_new_pack.i6GSze/_new  2017-04-25 08:58:39.571091148 +0200
@@ -1,12 +1,15 @@
+enable audit.service
 enable logrotate.timer
 enable transactional-update.timer
 enable rebootmgr.service
 enable issue-add-ssh-keys.service
 enable issue-generator.service
 enable sshd.service
+enable adjust-cloud-cfg.service
 enable cloud-config.service
 enable cloud-final.service
 enable cloud-init-local.service
 enable cloud-init.service
 enable health-checker.service
+enable setup-salt-minion.service
 disable purge-kernels.service




commit rkhunter for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package rkhunter for openSUSE:Factory 
checked in at 2017-04-25 08:59:00

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


Package is "rkhunter"

Tue Apr 25 08:59:00 2017 rev:20 rq:490277 version:1.4.2

Changes:

--- /work/SRC/openSUSE:Factory/rkhunter/rkhunter.changes2016-11-12 
13:01:42.0 +0100
+++ /work/SRC/openSUSE:Factory/.rkhunter.new/rkhunter.changes   2017-04-25 
08:59:01.663967257 +0200
@@ -1,0 +2,6 @@
+Fri Apr  7 09:24:10 UTC 2017 - saigk...@opensuse.org
+
+- whitelist /dev/shm/CAPI20* and /dev/shm/sem.CAPI20* (boo#1030378)
+- whitelist /usr/bin/.fipscheck.hmac (boo#1030378)
+
+---



Other differences:
--
++ rkhunter.spec ++
--- /var/tmp/diff_new_pack.4zwdyw/_old  2017-04-25 08:59:02.575838321 +0200
+++ /var/tmp/diff_new_pack.4zwdyw/_new  2017-04-25 08:59:02.579837755 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rkhunter
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2009-2010 by Sascha Manns 
 #
 # All modifications and additions to the file contributed by third parties
@@ -139,6 +139,13 @@
 ALLOWHIDDENFILE=/dev/.blkid.tab.old
 ALLOWHIDDENFILE=/etc/.updated
 
+# fix for boo#1030378
+ALLOWDEVFILE=/dev/shm/CAPI20*
+ALLOWDEVFILE=/dev/shm/sem.CAPI20*
+# from https://lists.opensuse.org/opensuse-factory/2014-10/msg00044.html
+# its a checksum for a binary file
+ALLOWHIDDENFILE=/usr/bin/.fipscheck.hmac 
+
 # fix for bnc#826276
 ALLOWHIDDENDIR=/dev/.sysconfig
 EOF






commit libqt5-creator for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package libqt5-creator for openSUSE:Factory 
checked in at 2017-04-25 08:58:43

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


Package is "libqt5-creator"

Tue Apr 25 08:58:43 2017 rev:43 rq:489971 version:4.2.1

Changes:

--- /work/SRC/openSUSE:Factory/libqt5-creator/libqt5-creator.changes
2017-03-15 02:00:21.307823201 +0100
+++ /work/SRC/openSUSE:Factory/.libqt5-creator.new/libqt5-creator.changes   
2017-04-25 08:58:44.634375209 +0200
@@ -1,0 +2,6 @@
+Thu Apr 20 12:03:28 UTC 2017 - fv...@suse.com
+
+- Remove qbs-path.diff as it needs various other adjustments to
+  actually work (boo#962766)
+
+---

Old:

  qbs-path.diff



Other differences:
--
++ libqt5-creator.spec ++
--- /var/tmp/diff_new_pack.DFkmq5/_old  2017-04-25 08:58:45.774214037 +0200
+++ /var/tmp/diff_new_pack.DFkmq5/_new  2017-04-25 08:58:45.778213472 +0200
@@ -40,8 +40,6 @@
 Source: 
http://download.qt.io/official_releases/qtcreator/%{major_ver}/%{version}/%{rname}-opensource-src-%{version}.tar.gz
 Source1:%{name}-rpmlintrc
 Source2:qtcreator.desktop
-# PATCH-FIX-UPSTREAM qbs-path.diff -- install qbs plugin to sane location
-Patch0: qbs-path.diff
 # PATCH-FIX-UPSTREAM lldb.diff -- exclude lldb-mi* from autodetection
 Patch1: lldb.diff
 BuildRequires:  gdb
@@ -91,7 +89,6 @@
 
 %prep
 %setup -q -n %{rname}-opensource-src-%{version}
-%patch0 -p1
 %patch1 -p1
 
 %build




commit xsp for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package xsp for openSUSE:Factory checked in 
at 2017-04-25 08:59:03

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


Package is "xsp"

Tue Apr 25 08:59:03 2017 rev:44 rq:490281 version:3.0.11

Changes:

--- /work/SRC/openSUSE:Factory/xsp/xsp.changes  2017-04-24 09:50:27.825700878 
+0200
+++ /work/SRC/openSUSE:Factory/.xsp.new/xsp.changes 2017-04-25 
08:59:04.731533510 +0200
@@ -1,0 +2,7 @@
+Mon Apr 24 11:58:12 UTC 2017 - bwiedem...@suse.com
+
+- fix to correct version
+  because only factory has strip-nondeterminism atm
+  (and 42.3 which we ignore here)
+
+---



Other differences:
--
++ xsp.spec ++
--- /var/tmp/diff_new_pack.rIBzMK/_old  2017-04-25 08:59:05.667401180 +0200
+++ /var/tmp/diff_new_pack.rIBzMK/_new  2017-04-25 08:59:05.671400615 +0200
@@ -41,7 +41,7 @@
 BuildRequires:  monodoc-core
 BuildRequires:  pkgconfig
 BuildRequires:  sqlite
-%if 0%{?suse_version} >= 1300
+%if 0%{?suse_version} >= 1330
 BuildRequires:  strip-nondeterminism
 %endif
 Requires(post): %insserv_prereq %fillup_prereq




commit lifecycle-data for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package lifecycle-data for openSUSE:Factory 
checked in at 2017-04-25 08:58:27

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


Package is "lifecycle-data"

Tue Apr 25 08:58:27 2017 rev:1 rq:487619 version:1

Changes:

New Changes file:

--- /dev/null   2017-03-01 00:40:19.279048016 +0100
+++ /work/SRC/openSUSE:Factory/.lifecycle-data.new/lifecycle-data.changes   
2017-04-25 08:58:30.188417843 +0200
@@ -0,0 +1,4 @@
+---
+Wed Apr 12 15:30:49 UTC 2017 - lnus...@suse.de
+
+- initial package

New:

  lifecycle-data.changes
  lifecycle-data.spec
  openSUSE.lifecycle



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

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


Name:   lifecycle-data
Version:1
Release:0
Summary:End of life dates for specific packages
License:MIT
Group:  System/Management
Url:http://www.suse.com/lifecycle
Source: openSUSE.lifecycle
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch
Supplements:packageand(openSUSE-release:zypper-lifecycle-plugin)

%description
Package lifecycle data.  This is the source of zypper lifecycle information.

%package openSUSE
Summary:End of life dates for specific packages
Group:  System/Management

%description openSUSE
Package lifecycle data.  This is the source of zypper lifecycle information.

%prep

%build

%install
install -d %{buildroot}%{_datadir}/lifecycle/data
install -d %{buildroot}%{_docdir}/%{name}
install -m 644 %{SOURCE0} 
%{buildroot}%{_datadir}/lifecycle/data/openSUSE.lifecycle

%files openSUSE
%defattr(-,root,root)
%dir %{_datadir}/lifecycle
%dir %{_datadir}/lifecycle/data
%{_datadir}/lifecycle/data/openSUSE.lifecycle

%changelog
++ openSUSE.lifecycle ++
ruby2.3,*,2017-03-31
ruby2.3-devel,*,2017-03-31
ruby2.3-devel-extra,*,2017-03-31
ruby2.3-doc,*,2017-03-31
ruby2.3-doc-ri,*,2017-03-31
ruby2.3-stdlib,*,2017-03-31
ruby2.3-tk,*,2017-03-31
ruby2.4,*,2017-03-31
ruby2.4-devel,*,2017-03-31
ruby2.4-devel-extra,*,2017-03-31
ruby2.4-doc,*,2017-03-31
ruby2.4-doc-ri,*,2017-03-31
ruby2.4-stdlib,*,2017-03-31



commit caasp-tools for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package caasp-tools for openSUSE:Factory 
checked in at 2017-04-25 08:58:32

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


Package is "caasp-tools"

Tue Apr 25 08:58:32 2017 rev:2 rq:489801 version:0.17

Changes:

--- /work/SRC/openSUSE:Factory/caasp-tools/caasp-tools.changes  2017-04-18 
13:48:35.741778535 +0200
+++ /work/SRC/openSUSE:Factory/.caasp-tools.new/caasp-tools.changes 
2017-04-25 08:58:33.959884563 +0200
@@ -1,0 +2,60 @@
+Fri Apr 21 13:29:41 CEST 2017 - ku...@suse.de
+
+- Fix order: first write config, afterwards start services
+
+---
+Fri Apr 21 11:16:06 CEST 2017 - ku...@suse.de
+
+- remove not working line from autoyast.xml
+- Add COPYING file
+
+---
+Thu Apr 20 17:09:50 CEST 2017 - ku...@suse.de
+
+- Add suse_caasp cloud-init module
+- Fix syntax of 01-network.cfg in case we don't disable cloud-init 
+  network
+
+---
+Wed Apr 19 12:56:51 UTC 2017 - ku...@suse.com
+
+- Add extra /var/lib/docker partition to autoyast profile
+
+---
+Wed Apr 19 09:54:06 CEST 2017 - ku...@suse.de
+
+- Add systemd pre/post install macros
+
+---
+Tue Apr 18 17:07:30 CEST 2017 - ku...@suse.de
+
+- Add apparmor directories for overlayfs
+
+---
+Tue Apr 18 16:05:19 CEST 2017 - ku...@suse.de
+
+- Fix typo
+
+---
+Tue Apr 18 15:02:57 CEST 2017 - ku...@suse.de
+
+- If we do the first boot and there is already a configuration file
+  for the network configuration, don't let cloud-init overwrite
+  that [bsc#1032497]
+
+---
+Wed Apr 12 15:48:50 CEST 2017 - ku...@suse.de
+
+- Add systemd service to create minion id [bsc#1031623]
+
+---
+Wed Apr 12 13:58:01 CEST 2017 - ku...@suse.de
+
+- Use overlayfs for /var/lib/apparmor
+
+---
+Sun Apr  2 09:35:51 UTC 2017 - ku...@suse.de
+
+- Add ntpd configuration
+
+---

Old:

  MicroOS-tools-0.13.tar.bz2

New:

  COPYING
  MicroOS-tools-0.17.tar.bz2



Other differences:
--
++ caasp-tools.spec ++
--- /var/tmp/diff_new_pack.TMqq4F/_old  2017-04-25 08:58:36.767487573 +0200
+++ /var/tmp/diff_new_pack.TMqq4F/_new  2017-04-25 08:58:36.767487573 +0200
@@ -17,13 +17,14 @@
 
 
 Name:   caasp-tools
-Version:0.13
+Version:0.17
 Release:0
 Summary:Files and Scripts for SUSE CaaS Platform
 License:GPL-2.0+
 Group:  Development/Tools/Other
 Source0:MicroOS-tools-%{version}.tar.bz2
 Source1:create_autoyast_profile.pl
+Source2:COPYING
 BuildRequires:  distribution-release
 BuildRequires:  dracut
 BuildRequires:  snapper
@@ -34,6 +35,7 @@
 # Requires:   distribution-release systemd udev
 Requires:   util-linux
 Requires(post): awk
+%{?systemd_requires}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 
@@ -55,20 +57,37 @@
 mkdir -p %{buildroot}%{_localstatedir}/lib/overlay/work-etc
 mkdir -p %{buildroot}%{_localstatedir}/lib/overlay/netconfig
 mkdir -p %{buildroot}%{_localstatedir}/lib/overlay/work-netconfig
+mkdir -p %{buildroot}%{_localstatedir}/lib/overlay/apparmor
+mkdir -p %{buildroot}%{_localstatedir}/lib/overlay/work-apparmor
 mkdir -p %{buildroot}%{_mandir}/man8
 pod2man %{SOURCE1} > %{buildroot}%{_mandir}/man8/create_autoyast_profile.8
+mkdir -p %{buildroot}%{_docdir}/%{name}
+install -D -m644 %{SOURCE2} %{buildroot}%{_docdir}/%{name}/COPYING
+
+%pre
+%service_add_pre adjust-cloud-cfg.service setup-salt-minion.service
 
 %post
 if [ -f /etc/fstab -a ! -f /etc/fstab.sys ]; then
   /usr/sbin/setup-fstab.sys-for-overlayfs ||:
 fi
+%service_add_post adjust-cloud-cfg.service setup-salt-minion.service
 exit 0
 
+%preun
+%service_del_preun adjust-cloud-cfg.service setup-salt-minion.service
+
+%postun
+%service_del_postun adjust-cloud-cfg.service setup-salt-minion.service
+
 %files
 %defattr(-,root,root)
+%doc %{_docdir}/%{name}
 %config %{_sysconfdir}/systemd/system/systemd-firstboot.service
 %{_unitdir}
 %{_libexecdir}/MicroOS-firstboot
+%{_libexecdir}/python*
+%{_sbindir}/adjust-cloud-cfg
 %{_sbindir}/create_aut

commit open-iscsi for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package open-iscsi for openSUSE:Factory 
checked in at 2017-04-25 08:58:10

Comparing /work/SRC/openSUSE:Factory/open-iscsi (Old)
 and  /work/SRC/openSUSE:Factory/.open-iscsi.new (New)


Package is "open-iscsi"

Tue Apr 25 08:58:10 2017 rev:60 rq:490791 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/open-iscsi/open-iscsi.changes2017-04-12 
17:12:13.141212175 +0200
+++ /work/SRC/openSUSE:Factory/.open-iscsi.new/open-iscsi.changes   
2017-04-25 08:58:12.798876701 +0200
@@ -1,0 +2,6 @@
+Mon Apr 24 15:37:32 UTC 2017 - ldun...@suse.com
+
+- Fixed coredump when printing session information (bsc#1035236),
+  backporting commit c8e6198dca71 from upstream open-iscsi
+
+---
@@ -7 +13 @@
-  upstream.
+  upstream. (bsc#1032402/FATE#321911)



Other differences:
--
++ open-iscsi-SUSE-latest.diff.bz2 ++
--- /var/tmp/diff_new_pack.Ha8Xgw/_old  2017-04-25 08:58:13.534772646 +0200
+++ /var/tmp/diff_new_pack.Ha8Xgw/_new  2017-04-25 08:58:13.542771515 +0200
@@ -2889,10 +2889,10 @@
  rm -rf $DESTDIR
  if [ "$TMPDIR" ] ; then
 diff --git a/rpm/open-iscsi.changes b/rpm/open-iscsi.changes
-index 65f4171e0bae..2f0beb3662db 100644
+index 65f4171e0bae..cdb713f7f2e5 100644
 --- a/rpm/open-iscsi.changes
 +++ b/rpm/open-iscsi.changes
-@@ -1,173 +1,258 @@
+@@ -1,173 +1,264 @@
  ---
 -Thu Nov 17 01:48:22 UTC 2016 - ldun...@suse.com
 -
@@ -3040,12 +3040,18 @@
 -
 
 -Tue Nov 25 11:43:03 PST 2014 - ldun...@suse.com
++Mon Apr 24 15:37:32 UTC 2017 - ldun...@suse.com
++
++- Fixed coredump when printing session information (bsc#1035236),
++  backporting commit c8e6198dca71 from upstream open-iscsi
++
++---
 +Mon Apr 10 16:42:37 UTC 2017 - ldun...@suse.com
 +
 +- This is now the latest upstream open-iscsi, i.e. 2.0.874
 +  plus latest as of this date, together with SUSE-specific
 +  changes that are not yet upstream or not appropriate for
-+  upstream.
++  upstream. (bsc#1032402/FATE#321911)
 +
 +  Important changes in this update include:
 +  * qedi transport support
@@ -3306,7 +3312,7 @@
  
  ---
  Tue Jul  8 16:27:39 CEST 2014 - h...@suse.de
-@@ -203,13 +288,13 @@ Wed May 28 15:26:29 CEST 2014 - h...@suse.de
+@@ -203,13 +294,13 @@ Wed May 28 15:26:29 CEST 2014 - h...@suse.de
  Fri May 2 15:07:14 2014 +0200 - h...@suse.de
  
  - iscsi_offload: do not print error messages for be2iscsi
@@ -3323,7 +3329,7 @@
  
  - Added two not-yet-upstream patches for iscsiuio/systemd activation
from Chris Leech (bnc#869567):
-@@ -218,67 +303,73 @@ Mon Apr 28 11:00:03 PDT 2014 - ldun...@suse.com
+@@ -218,67 +309,73 @@ Mon Apr 28 11:00:03 PDT 2014 - ldun...@suse.com
Updated spec file to handle install/package of new files.
  
  ---
@@ -4226,7 +4232,7 @@
 * handle race where iscsid proc is starting up while we are
 * trying to connect.
 diff --git a/usr/session_info.c b/usr/session_info.c
-index 89422d8e3933..9dc6e25b05fb 100644
+index 89422d8e3933..f4dffa76fa78 100644
 --- a/usr/session_info.c
 +++ b/usr/session_info.c
 @@ -93,7 +93,7 @@ static int session_info_print_flat(void *data, struct 
session_info *info)
@@ -4275,13 +4281,12 @@
num_found = 1;
break;
}
-@@ -422,7 +423,8 @@ int session_info_print(int info_level, struct session_info 
*info, int do_show)
+@@ -422,7 +423,7 @@ int session_info_print(int info_level, struct session_info 
*info, int do_show)
if (err || !num_found)
break;
  
 -  session_info_print_tree(&list, "", flags, do_show);
-+  session_info_print_tree(&list, "", flags, do_show,
-+  info->iscsid_req_tmo);
++  session_info_print_tree(&list, "", flags, do_show, -1);
session_info_free_list(&list);
break;
default:




commit vim for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package vim for openSUSE:Factory checked in 
at 2017-04-25 08:57:46

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


Package is "vim"

Tue Apr 25 08:57:46 2017 rev:190 rq:489069 version:8.0.566

Changes:

--- /work/SRC/openSUSE:Factory/vim/vim.changes  2017-02-19 00:45:39.637347239 
+0100
+++ /work/SRC/openSUSE:Factory/.vim.new/vim.changes 2017-04-25 
08:57:53.825559509 +0200
@@ -1,0 +2,338 @@
+Tue Apr 18 10:15:22 UTC 2017 - idon...@suse.com
+
+- Updated to revision 566, fixes the following problems
+  * :windo allows for ! but it's not supported.
+  * Undefined behavior when using backslash after empty line.
+  * Not enough test coverage for syntax commands.
+  * Crash when getting the window position in tmux.
+  * Cannot detect Bazel BUILD files on some systems.
+  * Using freed memory in :caddbuf after clearing quickfix list.
+  * Setting nocompatible for the tiny version moves the cursor.
+- Refresh and re-add vim-8.0-ttytype-test.patch
+ 
+---
+Mon Apr 10 12:17:59 UTC 2017 - idon...@suse.com
+
+- Updated to revision 559, fixes the following problems
+  * Test_edit causes older xfce4-terminal to close. (Dominique Pelle)
+  * Cppcheck warnings.
+  * Edit test may fail on some systems.
+  * Swap file exists briefly when opening the command window.
+  * Extra line break in verbosefile when using ":echomsg". (Ingo Karkat)
+  * Saving the redo buffer only works one time, resulting in the "." command
+not working well for a function call inside another function call.
+  * No test for the 8g8 command.
+  * Some etags format tags file use 0x01, breaking the parsing.
+  * The typeahead buffer is reallocated too often.
+  * Toupper and tolower don't work properly for Turkish when 'casemap'
+is empty. (Bjorn Linse)
+  * Toupper/tolower test with Turkish locale fails on Mac.
+  * Toupper and tolower don't work properly for Turkish when 'casemap'
+contains "keepascii". (Bjorn Linse)
+  * Toupper/tolower test fails on OSX without Darwin.
+  * Getting the window position fails if both the GUI and term code is
+built in.
+  * GTK: using static gravities is not useful.
+  * The :ownsyntax command is not tested.
+  * Setting ttytype to xxx does not always fail as expected.
+- Remove vim-8.0-ttytype-test.patch, fixed upstream. 
+
+---
+Mon Apr 10 11:41:51 UTC 2017 - tchva...@suse.com
+
+- Update the update-alternatives code
+
+---
+Wed Apr  5 09:19:45 UTC 2017 - idon...@suse.com
+
+- Updated to revision 542, fixes the following problems
+  * ml_get errors in silent Ex mode. (Dominique Pelle)
+  * A large count on a normal command causes trouble. (Dominique Pelle)
+  * There is no way to remove quickfix lists (for testing).
+  * Storing a zero byte from a multi-byte character causes fold text to show
+up wrong.
+  * Character classes are not well tested. They can differ between platforms.
+  * Using a function pointer instead of the actual function, which we know.
+  * GtkForm handling is outdated.
+  * MS-Windows: when 'clipboard' is "unnamed" yyp does not work in a :global
+command.
+  * dv} deletes part of a multi-byte character. (Urtica Dioica)
+  * Folds are messed up when 'encodin' is "utf-8".
+  * Coverity complains about possible negative value.
+  * RISC OS support was removed long ago, but one file is still included.
+  * When 'wildmenu' is set and 'wildmode' has "longest" then the first file
+name is highlighted, even though the text shows the longest match.
+  * Line in test commented out.
+  * Buffer overflow when 'columns' is very big. (Nikolai Pavlov)
+  * Test with long directory name fails on non-unix systems.
+  * Test with long directory name fails on Mac.
+  * Abbreviation doesn't work after backspacing newline. (Hkonrk)
+  * Defaults.vim does not work well with tiny features. (crd477)
+  * Memory leak when exiting from within a user function.
+  * Quickfix window not updated when freeing quickfix stack.
+  * Illegal memory access with :z and large count.
+  * No test for falling back to default term value.
+  * Startup test fails on Mac.
+  * Building unit tests fails.
+  * Compiler warning on MS-Windows.
+  * getpos() can return a negative line number. (haya14busa)
+ 
+---
+Fri Mar 31 09:19:29 UTC 2017 - idon...@suse.com
+
+- Update spec.skeleton with spec-cleaner 
+
+---
+Mon Mar 27 10:14:04 UTC 2017 - idon...@suse.com
+
+- Updated to revision 514, fixes the following problems
+  * Insufficient testin

commit Mesa for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package Mesa for openSUSE:Factory checked in 
at 2017-04-25 08:58:02

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


Package is "Mesa"

Tue Apr 25 08:58:02 2017 rev:288 rq:489771 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/Mesa/Mesa.changes2017-04-17 
10:20:27.319973601 +0200
+++ /work/SRC/openSUSE:Factory/.Mesa.new/Mesa.changes   2017-04-25 
08:58:04.828003773 +0200
@@ -1,0 +2,30 @@
+Fri Apr 21 09:09:25 UTC 2017 - sndir...@suse.com
+
+- let Mesa require Mesa-libEGL1 for a libglvnd build; 
+  xf86-video-amdgpu driver needs it for 2D support via glamor
+  (boo#1034832)
+
+---
+Thu Apr 20 13:16:22 UTC 2017 - idon...@suse.com
+
+- Add u_add_llvm_codegen_dependencies.patch to link to
+  libLLVMCodegen to fix cyclic linking problems. bsc#981975
+
+---
+Tue Apr 18 21:33:50 UTC 2017 - afaer...@suse.de
+
+- Enable OpenCL for aarch64, ppc64 and ppc64le now, too.
+  %arm is still left out, waiting for llvm4 to build.
+
+---
+Mon Apr 17 17:17:22 UTC 2017 - mimi...@gmail.com
+
+- update to 17.0.4
+ * fdo#100391 - SachaWillems deferredmultisampling asserts
+ * fdo#100452 - push_constants host memory leak when resetting command buffer
+ * fdo#100582 - piglit.spec.arb_stencil_texturing.glblitframebuffer corrupts
+state.gl_texture* assertions
+ * radeonsi: add new polaris10 pci ids
+ * fixes for anv, radv, i965 and nouveau drivers
+
+---

Old:

  mesa-17.0.3.tar.xz
  mesa-17.0.3.tar.xz.sig

New:

  mesa-17.0.4.tar.xz
  mesa-17.0.4.tar.xz.sig
  u_add_llvm_codegen_dependencies.patch



Other differences:
--
++ Mesa.spec ++
--- /var/tmp/diff_new_pack.55244a/_old  2017-04-25 08:58:08.515482368 +0200
+++ /var/tmp/diff_new_pack.55244a/_new  2017-04-25 08:58:08.519481802 +0200
@@ -22,7 +22,7 @@
 %endif
 %define glamor 1
 %define _name_archive mesa
-%define _version 17.0.3
+%define _version 17.0.4
 %define with_opencl 0
 %define with_vulkan 0
 %ifarch %ix86 x86_64 %arm aarch64 ppc ppc64 ppc64le s390x
@@ -44,7 +44,8 @@
 %endif
 %if 0%{gallium_loader} && 0%{?suse_version} >= 1330
 # llvm >= 3.9 not provided for <= 1330 
-%ifarch %ix86 x86_64 s390x
+%ifnarch %arm
+# TODO Drop ifnarch %%arm once llvm4 has built in Factory
 %define with_opencl 1
 %endif
 %ifarch %ix86 x86_64
@@ -53,7 +54,7 @@
 %endif
 
 Name:   Mesa
-Version:17.0.3
+Version:17.0.4
 Release:0
 Summary:System for rendering interactive 3-D graphics
 License:MIT
@@ -71,6 +72,7 @@
 Source7:Mesa.keyring
 # to be upstreamed
 Patch11:u_Fix-crash-in-swrast-when-setting-a-texture-for-a-pix.patch
+Patch12:u_add_llvm_codegen_dependencies.patch
 # Patch from Fedora, fix 16bpp in llvmpipe
 Patch13:u_mesa-8.0.1-fix-16bpp.patch
 # Patch from Fedora, use shmget when available, under llvmpipe
@@ -169,6 +171,7 @@
 %endif
 
 %if 0%{?libglvnd}
+Requires:   Mesa-libEGL1  = %{version}
 Requires:   Mesa-libGL1  = %{version}
 Requires:   libglvnd0 >= 0.1.0
 %endif
@@ -647,6 +650,7 @@
 #%patch11 -p1
 #%patch15 -p1
 #%patch13 -p1
+%patch12 -p1
 %patch18 -p1
 %patch21 -p1
 

++ Mesa.keyring ++
--- /var/tmp/diff_new_pack.55244a/_old  2017-04-25 08:58:08.619467664 +0200
+++ /var/tmp/diff_new_pack.55244a/_new  2017-04-25 08:58:08.623467099 +0200
@@ -1,90 +1,51 @@
 -BEGIN PGP PUBLIC KEY BLOCK-
 
-mQINBFc/b7YBEACkr2uZ+LcW7s8C/TxeyPpk6HFCoNkRvPbEzuDYuNZIIvN4tfxq
-i+lyng5P4w6beEi0Us2au43KYXnibIkde/rrhVCnrUQQqG32oHLbTky+gRvJJ+kq
-yheoh1UVjs8v5eGSNYshbIjwivMXLWxlay8G4AGmauFwMJx876ANcBCydeYvuEel
-BY8GFdkbjIdd4hqXNEy4SNlf5wzCIZDK8B4v/sAXa/HUO0HCE4Ebq7lPSxtUdKzX
-2bf19HgA6Y6btkMEA7NoKPoCiKPueznGvi2YY3w7Os/IYwnCfG3Q3TCEZhtT/MFY
-/aVD/VyjyrwJRreOfqkUZbeVE7MGlXojRw/Pf/Mb+vqHkpk/x5fwPlHNhf2EtuaD
-wdekUI/TYchlS42GdcdxP3n3jXxbWYhJZlCtK7tKK53iiyIkv2OnRfKt/OMczg6X
-/qSiV72OwJgy+opn+lyp0HcyzphUHbm5fyd6mu5z5GUUyPJYPb9Bq2iaIXr157ci
-0SqzV8Z+ToAPoWlDScPDZBIgON2tyCXV1dV/XP+8NNHXbVBFXcKw3czhaK3dYYnQ
-Tgt83/kQpulPO4xflQDVK3S74wVhoIoPYz83UcOYAJ2XLIKVzq2aViNPrJ+BgHfz
-hGzeokza8H6L5LcW0qXFC4j16C95cWbM7RO/fsWsRe4y0S68O0UKFPIXcwARAQAB
-tB9BbmRyZXMgR29tZXogPHRhbnR5MEBnbWFpbC5jb20+iEYEEBECAAYFAlc/d2QA
-CgkQPMEtrD/qEDQ9YgCfZ9Er9OBZQkS49v0dBTOaTt1oa3AAnR7fjZ8PM3aXm6Ue
-7Cx2W7j/UgjqiQIcBBABAgAGBQJXSES1AAoJEL4yGa8+1BNBUaYP/RVBWiGvMTHG
-Sk6eU5EuE12JDyB9TKGW/ng1S84SgGVY5t1BuQKCgCY80trVPMD21hbdHEQCV+rM
-ilm9EAvo3E9KR/BqzTgmxVRy8oL98UcOo3tZe+2GrJx3BNeTXoEzChRvXd0M2Fjm
-Uxx3crPuISXfb/4xMIztWw82IP9

commit perl-libwww-perl for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package perl-libwww-perl for 
openSUSE:Factory checked in at 2017-04-25 08:57:38

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


Package is "perl-libwww-perl"

Tue Apr 25 08:57:38 2017 rev:49 rq:489030 version:6.26

Changes:

--- /work/SRC/openSUSE:Factory/perl-libwww-perl/perl-libwww-perl.changes
2017-04-11 12:41:41.232062421 +0200
+++ /work/SRC/openSUSE:Factory/.perl-libwww-perl.new/perl-libwww-perl.changes   
2017-04-25 08:57:40.819398570 +0200
@@ -1,0 +2,11 @@
+Fri Apr 14 06:58:43 UTC 2017 - co...@suse.com
+
+- updated to 6.26
+   see /usr/share/doc/packages/perl-libwww-perl/Changes
+
+  6.26  2017-04-12
+  - Perltidy all apps in the bin/ directory
+  - Make all apps in bin/ use strict and warnings (RT #92633)
+  - Fix bug tracker URL in metadata
+
+---

Old:

  libwww-perl-6.25.tar.gz

New:

  libwww-perl-6.26.tar.gz



Other differences:
--
++ perl-libwww-perl.spec ++
--- /var/tmp/diff_new_pack.0TAKxd/_old  2017-04-25 08:57:41.955237963 +0200
+++ /var/tmp/diff_new_pack.0TAKxd/_new  2017-04-25 08:57:41.963236832 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-libwww-perl
-Version:6.25
+Version:6.26
 Release:0
 %define cpan_name libwww-perl
 Summary:The World-Wide Web library for Perl

++ libwww-perl-6.25.tar.gz -> libwww-perl-6.26.tar.gz ++
 1710 lines of diff (skipped)




commit autoyast2 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package autoyast2 for openSUSE:Factory 
checked in at 2017-04-25 08:57:23

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


Package is "autoyast2"

Tue Apr 25 08:57:23 2017 rev:222 rq:489016 version:3.2.14

Changes:

--- /work/SRC/openSUSE:Factory/autoyast2/autoyast2.changes  2017-04-12 
17:10:50.612894879 +0200
+++ /work/SRC/openSUSE:Factory/.autoyast2.new/autoyast2.changes 2017-04-25 
08:57:24.997635761 +0200
@@ -1,0 +2,7 @@
+Thu Apr 13 14:02:34 CEST 2017 - sch...@suse.de
+
+- Moved configuration management before software selection in
+  order to select packages which are needed for CM. (FATE#319830)
+- 3.2.14
+
+---

Old:

  autoyast2-3.2.13.tar.bz2

New:

  autoyast2-3.2.14.tar.bz2



Other differences:
--
++ autoyast2.spec ++
--- /var/tmp/diff_new_pack.khvujN/_old  2017-04-25 08:57:25.837517002 +0200
+++ /var/tmp/diff_new_pack.khvujN/_new  2017-04-25 08:57:25.841516436 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   autoyast2
-Version:3.2.13
+Version:3.2.14
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ autoyast2-3.2.13.tar.bz2 -> autoyast2-3.2.14.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.2.13/package/autoyast2.changes 
new/autoyast2-3.2.14/package/autoyast2.changes
--- old/autoyast2-3.2.13/package/autoyast2.changes  2017-04-12 
14:45:30.538433241 +0200
+++ new/autoyast2-3.2.14/package/autoyast2.changes  2017-04-18 
09:44:10.236091561 +0200
@@ -1,4 +1,11 @@
 ---
+Thu Apr 13 14:02:34 CEST 2017 - sch...@suse.de
+
+- Moved configuration management before software selection in
+  order to select packages which are needed for CM. (FATE#319830)
+- 3.2.14
+
+---
 Thu Apr  6 11:27:01 UTC 2017 - igonzalezs...@suse.com
 
 - Fix subvolumes schema definition (bsc#1013047)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.2.13/package/autoyast2.spec 
new/autoyast2-3.2.14/package/autoyast2.spec
--- old/autoyast2-3.2.13/package/autoyast2.spec 2017-04-12 14:45:30.538433241 
+0200
+++ new/autoyast2-3.2.14/package/autoyast2.spec 2017-04-18 09:44:10.236091561 
+0200
@@ -17,7 +17,7 @@
 
 
 Name:   autoyast2
-Version:3.2.13
+Version:3.2.14
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/autoyast2-3.2.13/src/clients/inst_autosetup.rb 
new/autoyast2-3.2.14/src/clients/inst_autosetup.rb
--- old/autoyast2-3.2.13/src/clients/inst_autosetup.rb  2017-04-12 
14:45:30.546433241 +0200
+++ new/autoyast2-3.2.14/src/clients/inst_autosetup.rb  2017-04-18 
09:44:10.240091561 +0200
@@ -322,6 +322,19 @@
   return :abort if Popup.ConfirmAbort(:painless) if UI.PollInput == :abort
   Progress.NextStage
 
+  # The configuration_management has to be called before software 
selection.
+  # So the software selection can take care about packages
+  # needed by the configuration_management.
+  if Profile.current["configuration_management"]
+return :abort unless WFM.CallFunction(
+  "configuration_management_auto",
+  ["Import", Profile.current["configuration_management"]]
+)
+# Do not start it in second installation stage again.
+# Provisioning will already be called in the first stage.
+Profile.remove_sections("configuration_management")
+  end
+
   if Profile.current["suse_register"]
 return :abort unless WFM.CallFunction(
   "scc_auto",
@@ -383,16 +396,6 @@
 )
   end
 
-  if Profile.current["configuration_management"]
-return :abort unless WFM.CallFunction(
-  "configuration_management_auto",
-  ["Import", Profile.current["configuration_management"]]
-)
-# Do not start it in second installation stage again.
-# Provisioning will already be called in the first stage.
-Profile.remove_sections("configuration_management")
-  end
-
   Progress.NextStage
 
   if Profile.current.has_key? ('runlevel')




commit libarchive for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package libarchive for openSUSE:Factory 
checked in at 2017-04-25 08:57:55

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


Package is "libarchive"

Tue Apr 25 08:57:55 2017 rev:28 rq:489082 version:3.3.1

Changes:

--- /work/SRC/openSUSE:Factory/libarchive/libarchive.changes2016-12-04 
15:06:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.libarchive.new/libarchive.changes   
2017-04-25 08:57:57.245075992 +0200
@@ -1,0 +2,8 @@
+Mon Apr  3 14:44:27 UTC 2017 - adr...@suse.de
+
+- update to version 3.3.1
+  * Security & Feature release
+Details are not documented from upstream yet
+fix-extract-over-links.patch and libarchive-openssl.patch obsoleted
+
+---

Old:

  fix-extract-over-links.patch
  libarchive-3.2.2.tar.gz
  libarchive-openssl.patch

New:

  libarchive-3.3.1.tar.gz



Other differences:
--
++ libarchive.spec ++
--- /var/tmp/diff_new_pack.EAVbKm/_old  2017-04-25 08:57:59.152806240 +0200
+++ /var/tmp/diff_new_pack.EAVbKm/_new  2017-04-25 08:57:59.156805675 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libarchive
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -33,7 +33,7 @@
 %define libname libarchive%{somajor}
 
 Name:   libarchive
-Version:3.2.2
+Version:3.3.1
 Release:0
 Summary:Creates and reads several different streaming archive formats
 License:BSD-2-Clause
@@ -41,8 +41,6 @@
 Url:http://www.libarchive.org/
 Source0:
http://www.libarchive.org/downloads/libarchive-%{version}.tar.gz
 Source1:baselibs.conf
-# PATCH-FIX-OPENSUSE the problem is solved upstream different, but git master 
is too different atm.
-Patch0: fix-extract-over-links.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libacl-devel
 BuildRequires:  libbz2-devel
@@ -57,7 +55,6 @@
 BuildRequires:  pkg-config
 BuildRequires:  xz-devel
 BuildRequires:  zlib-devel
-Patch1: libarchive-openssl.patch
 
 %description
 Libarchive is a programming library that can create and read several
@@ -164,10 +161,6 @@
 
 %prep
 %setup -q
-%patch0 -p1
-%if %{with openssl}
-%patch1 -p0
-%endif
 
 %build
 %if !0%{?skip_autoreconf}
@@ -187,7 +180,8 @@
 make %{?_smp_mflags}
 
 %check
-make check
+# test suite is a bit racy unfortunatly, so give it three attempts
+make check || make check || make check
 
 %install
 %makeinstall

++ libarchive-3.2.2.tar.gz -> libarchive-3.3.1.tar.gz ++
 75380 lines of diff (skipped)




commit yast2-bootloader for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package yast2-bootloader for 
openSUSE:Factory checked in at 2017-04-25 08:57:17

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


Package is "yast2-bootloader"

Tue Apr 25 08:57:17 2017 rev:245 rq:489013 version:3.2.19

Changes:

--- /work/SRC/openSUSE:Factory/yast2-bootloader/yast2-bootloader.changes
2017-03-29 13:23:03.241328627 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-bootloader.new/yast2-bootloader.changes   
2017-04-25 08:57:18.894498743 +0200
@@ -1,0 +2,6 @@
+Thu Apr 13 13:34:12 UTC 2017 - jreidin...@suse.com
+
+- Add possibility to use trusted boot for EFI (FATE#315831)
+- 3.2.19
+
+---

Old:

  yast2-bootloader-3.2.18.tar.bz2

New:

  yast2-bootloader-3.2.19.tar.bz2



Other differences:
--
++ yast2-bootloader.spec ++
--- /var/tmp/diff_new_pack.dk104S/_old  2017-04-25 08:57:19.602398646 +0200
+++ /var/tmp/diff_new_pack.dk104S/_new  2017-04-25 08:57:19.606398081 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.2.18
+Version:3.2.19
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-bootloader-3.2.18.tar.bz2 -> yast2-bootloader-3.2.19.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-3.2.18/.travis.yml 
new/yast2-bootloader-3.2.19/.travis.yml
--- old/yast2-bootloader-3.2.18/.travis.yml 2017-03-24 16:41:55.803983895 
+0100
+++ new/yast2-bootloader-3.2.19/.travis.yml 2017-04-18 09:23:45.216091561 
+0200
@@ -9,3 +9,4 @@
   # the "yast-travis-ruby" script is included in the base yastdevel/ruby image
   # see https://github.com/yast/docker-yast-ruby/blob/master/yast-travis-ruby
   - docker run -it -e TRAVIS=1 -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" 
yast-bootloader-image yast-travis-ruby
+  - docker run -it yast-bootloader-image rake check:doc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-3.2.18/Dockerfile 
new/yast2-bootloader-3.2.19/Dockerfile
--- old/yast2-bootloader-3.2.18/Dockerfile  2017-03-24 16:41:55.803983895 
+0100
+++ new/yast2-bootloader-3.2.19/Dockerfile  2017-04-18 09:23:45.216091561 
+0200
@@ -1,3 +1,2 @@
 FROM yastdevel/ruby
 COPY . /usr/src/app
-
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-3.2.18/Rakefile 
new/yast2-bootloader-3.2.19/Rakefile
--- old/yast2-bootloader-3.2.18/Rakefile2017-03-24 16:41:55.803983895 
+0100
+++ new/yast2-bootloader-3.2.19/Rakefile2017-04-18 09:23:45.216091561 
+0200
@@ -4,4 +4,7 @@
   # lets ignore license check for now
   conf.skip_license_check << /.*/
   conf.install_locations["doc/autodocs"] = conf.install_doc_dir
+  # TODO: improve it, at least do not get worse
+  # TODO: remove condition when new packaging tasks are accepted to factory
+  conf.documentation_minimal = 50 if conf.respond_to?(:documentation_minimal=)
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.2.18/package/yast2-bootloader.changes 
new/yast2-bootloader-3.2.19/package/yast2-bootloader.changes
--- old/yast2-bootloader-3.2.18/package/yast2-bootloader.changes
2017-03-24 16:41:55.807983895 +0100
+++ new/yast2-bootloader-3.2.19/package/yast2-bootloader.changes
2017-04-18 09:23:45.220091561 +0200
@@ -1,4 +1,10 @@
 ---
+Thu Apr 13 13:34:12 UTC 2017 - jreidin...@suse.com
+
+- Add possibility to use trusted boot for EFI (FATE#315831)
+- 3.2.19
+
+---
 Fri Mar 24 14:17:00 UTC 2017 - jreidin...@suse.com
 
 - Report user friendly message when no root partition is detected
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-bootloader-3.2.18/package/yast2-bootloader.spec 
new/yast2-bootloader-3.2.19/package/yast2-bootloader.spec
--- old/yast2-bootloader-3.2.18/package/yast2-bootloader.spec   2017-03-24 
16:41:55.807983895 +0100
+++ new/yast2-bootloader-3.2.19/package/yast2-bootloader.spec   2017-04-18 
09:23:45.220091561 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-bootloader
-Version:3.2.18
+Version:3.2.19
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-bootloader-3.2.18/src/lib/bootloader/grub2.rb 
new/yast2-bootloader-3.2.19/src/lib/b

commit perl-XML-Simple for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package perl-XML-Simple for openSUSE:Factory 
checked in at 2017-04-25 08:57:30

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


Package is "perl-XML-Simple"

Tue Apr 25 08:57:30 2017 rev:25 rq:489022 version:2.24

Changes:

--- /work/SRC/openSUSE:Factory/perl-XML-Simple/perl-XML-Simple.changes  
2015-12-13 09:36:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-XML-Simple.new/perl-XML-Simple.changes 
2017-04-25 08:57:33.624415937 +0200
@@ -1,0 +2,16 @@
+Mon Apr 17 06:59:58 UTC 2017 - co...@suse.com
+
+- updated to 2.24
+   see /usr/share/doc/packages/perl-XML-Simple/Changes
+
+  2.24  2017-04-17 16:12:00+12:00 Pacific/Auckland
+- fix typo in last commit with mistakenly removed some underscores
+- don't initialise $XML::Simple::PREFERRED_PARSER to undef as a caller may
+  have already set it before loading XML::Simple and if not, it would have
+  defaulted to undef anyway (RT#118205 from Slaven Rezić)
+  
+  2.23  2017-04-17 15:49:14+12:00 Pacific/Auckland
+- another fix to the logic for detecting circular references (RT#114120 
from
+  Matthias Pitzl, also report from Erland Sommarskog)
+
+---

Old:

  XML-Simple-2.22.tar.gz

New:

  XML-Simple-2.24.tar.gz



Other differences:
--
++ perl-XML-Simple.spec ++
--- /var/tmp/diff_new_pack.J9vUCw/_old  2017-04-25 08:57:35.496151275 +0200
+++ /var/tmp/diff_new_pack.J9vUCw/_new  2017-04-25 08:57:35.496151275 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-XML-Simple
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:   perl-XML-Simple
-Version:2.22
+Version:2.24
 Release:0
 %define cpan_name XML-Simple
 Summary:An API for simple XML files
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/XML-Simple/
-Source0:
http://www.cpan.org/authors/id/G/GR/GRANTM/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/G/GR/GRANTM/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -53,7 +53,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 
 %build
 %{__perl} Makefile.PL INSTALLDIRS=vendor
@@ -69,6 +69,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes README
+%license LICENSE
 
 %changelog

++ XML-Simple-2.22.tar.gz -> XML-Simple-2.24.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-Simple-2.22/Changes new/XML-Simple-2.24/Changes
--- old/XML-Simple-2.22/Changes 2015-12-04 23:08:23.0 +0100
+++ new/XML-Simple-2.24/Changes 2017-04-17 06:12:03.0 +0200
@@ -1,5 +1,15 @@
 Revision history for XML-Simple
 
+2.24  2017-04-17 16:12:00+12:00 Pacific/Auckland
+  - fix typo in last commit with mistakenly removed some underscores
+  - don't initialise $XML::Simple::PREFERRED_PARSER to undef as a caller may
+have already set it before loading XML::Simple and if not, it would have
+defaulted to undef anyway (RT#118205 from Slaven Rezić)
+
+2.23  2017-04-17 15:49:14+12:00 Pacific/Auckland
+  - another fix to the logic for detecting circular references (RT#114120 from
+Matthias Pitzl, also report from Erland Sommarskog)
+
 2.22  2015-12-05 11:08:20+13:00 Pacific/Auckland
   - POD fix in link to package XML::SAX::ParseFactory (from Mohammad S Anwar)
   - allow subclass to override attribute escaping (from Christopher Masto)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/XML-Simple-2.22/LICENSE new/XML-Simple-2.24/LICENSE
--- old/XML-Simple-2.22/LICENSE 2015-12-04 23:08:23.0 +0100
+++ new/XML-Simple-2.24/LICENSE 2017-04-17 06:12:03.0 +0200
@@ -22,7 +22,7 @@
  Version 1, February 1989
 
  Copyright (C) 1989 Free Software Foundation, Inc.
- 51 Franklin St, Suite 500, Boston, MA  02110-1335  USA
+ 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowe

commit zypper for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package zypper for openSUSE:Factory checked 
in at 2017-04-25 08:56:53

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


Package is "zypper"

Tue Apr 25 08:56:53 2017 rev:264 rq:490294 version:1.13.24

Changes:

--- /work/SRC/openSUSE:Factory/zypper/zypper.changes2017-04-11 
09:29:30.177808309 +0200
+++ /work/SRC/openSUSE:Factory/.zypper.new/zypper.changes   2017-04-25 
08:56:55.309833617 +0200
@@ -1,0 +2,25 @@
+Mon Apr 24 13:47:12 CEST 2017 - m...@suse.de
+
+- patch: add --with-update to install also plain package updates.
+  This is basically the same as running 'zypper update' afterwards.
+  (FATE#320653)
+- BuildRequires:  libzypp-devel >= 16.8.0
+- Fix TODOs in zypper manpage (bsc#1032259)
+- Remove legacy vendor equivalence between 'suse' and 'opensuse'
+  (bsc#1030686)
+- version 1.13.24
+
+---
+Fri Apr 21 09:42:39 CEST 2017 - m...@suse.de
+
+- Fix crash when exiting after pressing CTRL-C quickly twice or more
+  (bsc#1032279)
+- Use private temporary repos for --plus-repo (bsc#1032632,bsc#1017267)
+- Use private temporary repos to collect rpms passed on the command
+  line (bsc#1032632)
+- Allow --plus-content to temporarily enable repos by alias/number
+- refresh: recognize --plus-content repos (FATE#319486)
+- BuildRequires:  libzypp-devel >= 16.7.0
+- version 1.13.23
+
+---

Old:

  zypper-1.13.22.tar.bz2

New:

  zypper-1.13.24.tar.bz2



Other differences:
--
++ zypper.spec ++
--- /var/tmp/diff_new_pack.l19FGo/_old  2017-04-25 08:56:56.245701284 +0200
+++ /var/tmp/diff_new_pack.l19FGo/_new  2017-04-25 08:56:56.245701284 +0200
@@ -27,7 +27,7 @@
 BuildRequires:  gcc-c++ >= 4.7
 BuildRequires:  gettext-devel >= 0.15
 BuildRequires:  libxml2-devel
-BuildRequires:  libzypp-devel >= 16.4.3
+BuildRequires:  libzypp-devel >= 16.8.0
 BuildRequires:  readline-devel >= 5.1
 Requires:   procps
 %if 0%{?suse_version}
@@ -38,7 +38,7 @@
 Summary:Command line software manager using libzypp
 License:GPL-2.0+
 Group:  System/Packages
-Version:1.13.22
+Version:1.13.24
 Release:0
 Source: %{name}-%{version}.tar.bz2
 Source1:%{name}-rpmlintrc

++ zypper-1.13.22.tar.bz2 -> zypper-1.13.24.tar.bz2 ++
/work/SRC/openSUSE:Factory/zypper/zypper-1.13.22.tar.bz2 
/work/SRC/openSUSE:Factory/.zypper.new/zypper-1.13.24.tar.bz2 differ: char 11, 
line 1




commit yast2-installation-control for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package yast2-installation-control for 
openSUSE:Factory checked in at 2017-04-25 08:56:42

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


Package is "yast2-installation-control"

Tue Apr 25 08:56:42 2017 rev:14 rq:490232 version:3.2.5

Changes:

--- 
/work/SRC/openSUSE:Factory/yast2-installation-control/yast2-installation-control.changes
2017-01-23 11:27:20.291393033 +0100
+++ 
/work/SRC/openSUSE:Factory/.yast2-installation-control.new/yast2-installation-control.changes
   2017-04-25 08:56:44.355382580 +0200
@@ -1,0 +2,21 @@
+Mon Mar 13 16:00:38 UTC 2017 - igonzalezs...@suse.com
+
+- Fix system roles specification in the update section
+  (related to FATE#320772)
+- no_default element in system roles definition is not mandatory
+  (bsc#1029171)
+- 3.2.5
+
+---
+Mon Mar 13 13:01:19 UTC 2017 - igonzalezs...@suse.com
+
+- Support to add roles through addons (FATE#320772)
+- 3.2.4
+
+---
+Mon Feb 13 08:52:08 UTC 2017 - jreidin...@suse.com
+
+- add option to have roles with no default (poo#14936)
+- 3.2.3
+
+---

Old:

  yast2-installation-control-3.2.2.tar.bz2

New:

  yast2-installation-control-3.2.5.tar.bz2



Other differences:
--
++ yast2-installation-control.spec ++
--- /var/tmp/diff_new_pack.giorrx/_old  2017-04-25 08:56:45.959155806 +0200
+++ /var/tmp/diff_new_pack.giorrx/_new  2017-04-25 08:56:45.963155240 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-installation-control
-Version:3.2.2
+Version:3.2.5
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-installation-control-3.2.2.tar.bz2 -> 
yast2-installation-control-3.2.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-installation-control-3.2.2/control/control.rnc 
new/yast2-installation-control-3.2.5/control/control.rnc
--- old/yast2-installation-control-3.2.2/control/control.rnc2017-01-17 
12:05:23.127301000 +0100
+++ new/yast2-installation-control-3.2.5/control/control.rnc2017-03-13 
17:13:38.708068953 +0100
@@ -551,6 +551,9 @@
 ## texts section: ${id} and ${id}_description.
 element id { text } &
 
+## option to not preselect any role, by default first one is preselected
+element no_default { BOOLEAN }? &
+
 ## Role specific overrides for Partitioning
 partitioning? &
 
@@ -811,32 +814,32 @@
 element stage { text } &
 element mode { text } &
 element insert_modules {
-   LIST,
-   element insert_module {
-   element before { text } &
-   element modules {
-   LIST,
-   module+
-   }
-   }+
+LIST,
+element insert_module {
+element before { text } &
+element modules {
+LIST,
+module+
+}
+}+
 }? &
 element append_modules {
-   LIST,
-   module+
+LIST,
+module+
 }? &
 element remove_modules {
-   LIST,
-   element remove_module { text }+
+LIST,
+element remove_module { text }+
 }? &
 element replace_modules {
-   LIST,
-   element replace_module {
-   element replace { text } &
-   element modules {
-   LIST,
-   module+
-   }
-   }+
+LIST,
+element replace_module {
+element replace { text } &
+element modules {
+LIST,
+module+
+}
+}+
 }?
 }
 
@@ -866,29 +869,37 @@
 }?
 }
 
+update_system_roles = element system_roles {
+element insert_system_roles {
+LIST,
+element insert_system_role { system_roles }+
+}?
+}
+
 update = element update {
 element proposals {
-   LIST,
-   update_proposal+
+LIST,
+update_proposal+
 }? &
 element workflows {
-   LIST,
-   update_workflow+
+LIST,
+update_workflow+
 }? &
 element inst_finish {
-   element before_chroot {
-   LIST,
-   element module { text }+
-   }? &
-   element after_chroot {
-   LIST,
-   element module { text }+
-   }? &
-   element before_umount {
-   LIST,
-   element module { text }+
-   }?
-}?
+element before_chroot {
+LIST,
+element module { text }+
+}

commit libzypp for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package libzypp for openSUSE:Factory checked 
in at 2017-04-25 08:56:47

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


Package is "libzypp"

Tue Apr 25 08:56:47 2017 rev:378 rq:490293 version:16.8.0

Changes:

--- /work/SRC/openSUSE:Factory/libzypp/libzypp.changes  2017-04-11 
12:39:57.242755658 +0200
+++ /work/SRC/openSUSE:Factory/.libzypp.new/libzypp.changes 2017-04-25 
08:56:48.742762203 +0200
@@ -1,0 +2,16 @@
+Fri Apr 21 16:23:51 CEST 2017 - m...@suse.de
+
+- Add API to control resolver job to update all packages (FATE#320653)
+- Remove legacy vendor equivalence between 'suse' and 'opensuse'
+  (bsc#1030686)
+- version 16.8.0 (0)
+
+---
+Fri Apr 21 09:40:32 CEST 2017 - m...@suse.de
+
+- RepoInfo: Allow temporary repos to control their metadata
+  directories (bsc#1032632)
+- Arch: add armv5tl
+- version 16.7.0 (0)
+
+---

Old:

  libzypp-16.6.1.tar.bz2

New:

  libzypp-16.8.0.tar.bz2



Other differences:
--
++ libzypp.spec ++
--- /var/tmp/diff_new_pack.45YYbk/_old  2017-04-25 08:56:49.558646836 +0200
+++ /var/tmp/diff_new_pack.45YYbk/_new  2017-04-25 08:56:49.562646271 +0200
@@ -19,7 +19,7 @@
 %define force_gcc_46 0
 
 Name:   libzypp
-Version:16.6.1
+Version:16.8.0
 Release:0
 Url:git://gitorious.org/opensuse/libzypp.git
 Summary:Package, Patch, Pattern, and Product Management

++ libzypp-16.6.1.tar.bz2 -> libzypp-16.8.0.tar.bz2 ++
 4827 lines of diff (skipped)




commit llvm4 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package llvm4 for openSUSE:Factory checked 
in at 2017-04-25 08:56:35

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


Package is "llvm4"

Tue Apr 25 08:56:35 2017 rev:2 rq:489790 version:4.0.0

Changes:

--- /work/SRC/openSUSE:Factory/llvm4/llvm4.changes  2017-04-17 
10:20:17.757327901 +0200
+++ /work/SRC/openSUSE:Factory/.llvm4.new/llvm4.changes 2017-04-25 
08:56:37.568342272 +0200
@@ -1,0 +2,6 @@
+Wed Apr 19 15:08:25 UTC 2017 - dmuel...@suse.com
+
+- readd arm_suse_support.diff which was accidentally removed
+  in the 4.0.0 update
+
+---

New:

  arm_suse_support.diff



Other differences:
--
++ llvm4.spec ++
--- /var/tmp/diff_new_pack.3LYW3j/_old  2017-04-25 08:56:39.892013703 +0200
+++ /var/tmp/diff_new_pack.3LYW3j/_new  2017-04-25 08:56:39.900012572 +0200
@@ -67,6 +67,8 @@
 Patch5: llvm-remove-clang-only-flags.patch
 Patch6: llvm-fix-find-gcc5-install.patch
 Patch7: aarch64-disable-memorytest.patch
+# PATCH-FIX-OPENSUSE arm_suse_support.diff -- Enable ARM suse toolchain support
+Patch8: arm_suse_support.diff
 BuildRequires:  binutils-devel >= 2.21.90
 BuildRequires:  bison
 BuildRequires:  cmake
@@ -361,6 +363,7 @@
 %ifarch aarch64
 %patch7 -p1
 %endif
+%patch8
 
 # Move into right place
 mv cfe-%{version}.src tools/clang
@@ -410,7 +413,7 @@
 flags+=" -mfloat-abi=hard -march=armv6zk -mtune=arm1176jzf-s -mfpu=vfp"
 %endif
 %ifarch armv7hl
-flags+=" -mfloat-abi=hard -march=armv7-a -mtune=cortex-a9 -mfpu=vfpv3-d16"
+flags+=" -mfloat-abi=hard -march=armv7-a -mtune=cortex-a15 -mfpu=vfpv3-d16"
 %endif
 %ifarch %{ix86} x86_64
 TARGETS_TO_BUILD="all"

++ arm_suse_support.diff ++
--- cfe-4.0.0.src/lib/Driver/ToolChains.cpp
+++ cfe-4.0.0.src/lib/Driver/ToolChains.cpp
@@ -1427,7 +1427,9 @@ bool Generic_GCC::GCCInstallationDetecto
   static const char *const ARMTriples[] = {"arm-linux-gnueabi",
"arm-linux-androideabi"};
   static const char *const ARMHFTriples[] = {"arm-linux-gnueabihf",
- "armv7hl-redhat-linux-gnueabi"};
+ "armv7hl-redhat-linux-gnueabi",
+ "armv6hl-suse-linux-gnueabi",
+ "armv7hl-suse-linux-gnueabi"};
   static const char *const ARMebLibDirs[] = {"/lib"};
   static const char *const ARMebTriples[] = {"armeb-linux-gnueabi",
  "armeb-linux-androideabi"};



commit samba for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package samba for openSUSE:Factory checked 
in at 2017-04-25 08:56:28

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


Package is "samba"

Tue Apr 25 08:56:28 2017 rev:211 rq:489610 version:4.6.2+git.19.c267455e57b

Changes:

--- /work/SRC/openSUSE:Factory/samba/samba.changes  2017-04-17 
10:22:22.155710220 +0200
+++ /work/SRC/openSUSE:Factory/.samba.new/samba.changes 2017-04-25 
08:56:31.101256722 +0200
@@ -1,0 +2,8 @@
+Tue Apr 18 13:38:11 UTC 2017 - dd...@suse.com
+
+- Generate source tarball directly from Git using OBS tar_scm
+  + use version string derived from parent Git tag and commit hash
+- remove obsolete vendor-files/tools/package-data version ID
+  + explicitly generate ctdb manpages, needed without "make dist"
+
+---
@@ -59,0 +68,6 @@
+Thu Feb  9 15:23:21 UTC 2017 - nopo...@suse.com
+
+- async_req: make async_connect_send() "reentrant";
+  (bso#12105); (bsc#1024416).
+
+---
@@ -75,0 +90,5 @@
+Mon Jan 23 21:44:03 UTC 2017 - dmul...@suse.com
+
+- Document "winbind: ignore domains" parameter; (bsc#1019416).
+
+---
@@ -97,0 +117,11 @@
+Fri Dec  2 13:15:50 UTC 2016 - nopo...@suse.com
+
+-  Add missing ldb module directory; (bnc#1012092).
+
+---
+Thu Nov 17 08:33:07 UTC 2016 - nopo...@suse.com
+
+- s3/client: obey 'disable netbios' smb.conf param, don't
+ connect via NBT port; (bsc#1009085); (bso#12418).
+
+---
@@ -129,0 +160,6 @@
+Mon Aug 29 10:25:40 UTC 2016 - nopo...@suse.com
+
+- Prevent core, make sure response->extra_data.data is always
+  cleared out; (bsc#993692).
+
+---
@@ -202 +238 @@
-  (bsc#975962).
+  (bsc#975962); (bsc#979268), (bsc#977669).
@@ -228,0 +265,6 @@
+Fri Apr  8 10:23:22 UTC 2016 - nopo...@suse.com
+
+- Fix samba.tests.messaging test and prevent potential tdb corruption
+  by removing obsolete now invalid tdb_close call; (bsc#974629).
+
+---
@@ -457 +499,2 @@
-  + Fix winbindd crashes with samlogon for trusted domain user; (bso#11569).
+  + Fix winbindd crashes with samlogon for trusted domain user; (bso#11569);
+(bnc#949022).

Old:

  patches.tar.bz2
  samba-4.6.2.tar.asc
  samba-4.6.2.tar.gz
  samba.keyring

New:

  _service
  samba-4.6.2+git.19.c267455e57b.tar.bz2



Other differences:
--
++ samba.spec ++
--- /var/tmp/diff_new_pack.2fEUQT/_old  2017-04-25 08:56:32.996988664 +0200
+++ /var/tmp/diff_new_pack.2fEUQT/_new  2017-04-25 08:56:33.016985836 +0200
@@ -130,16 +130,6 @@
 BuildRequires:  libcephfs-devel
 BuildRequires:  librados-devel
 %endif
-%definesamba_ver 4.6.2
-%definesamba_ver_suffix %nil
-%if "%{samba_ver_suffix}" == ""
-%define samba_source_location 
https://ftp.samba.org/pub/samba/stable/samba-%{version}.tar.gz
-%define samba_source_signature_location 
https://ftp.samba.org/pub/samba/stable/samba-%{version}.tar.asc
-%else
-%define samba_source_location 
https://ftp.samba.org/pub/samba/rc/samba-%{version}%{samba_ver_suffix}.tar.gz
-%define samba_source_signature_location 
https://ftp.samba.org/pub/samba/rc/samba-%{version}%{samba_ver_suffix}.tar.asc
-%endif
-%definesamba_ver_full %{samba_ver}%{samba_ver_suffix}
 %if 0%{?suse_version} && 0%{?suse_version} < 1031
 %define libsmbclient_name libsmbclient
 %else
@@ -152,11 +142,11 @@
 %else
 %definebuild_make_smp_mflags %{?jobs:-j%jobs}
 %endif
-%define SOURCE_TIMESTAMP 3760
+%define SOURCE_TIMESTAMP 3761
 %define BRANCH %{version}
 %global with_mitkrb5 1
 %global with_dc 0
-Version:4.6.2
+Version:4.6.2+git.19.c267455e57b
 Release:0
 Url:https://www.samba.org/
 Obsoletes:  samba-gplv3 < %{version}
@@ -168,11 +158,8 @@
 Summary:A SMB/CIFS File, Print, and Authentication Server
 License:GPL-3.0+
 Group:  Productivity/Networking/Samba
-Source: %{samba_source_location}
-Source5:%{samba_source_signature_location}
-Source6:samba.keyring
+Source: samba-%{version}.tar.bz2
 Source1:vendor-files.tar.bz2
-Source2:patches.tar.bz2
 Source4:baselibs.conf
 Source100:  samba-client-rpmlintrc
 Requires:   /usr/bin/getent
@@ -1052,21 +1039,11 @@
 
 
 %prep
-%setup -n samba-%{samba_ver_full} -q
-# patches
-%setup -T -D -a 2 -n samba-%{samba_ver_full} -q
-for patch i

commit skelcd-control-openSUSE for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package skelcd-control-openSUSE for 
openSUSE:Factory checked in at 2017-04-25 08:56:02

Comparing /work/SRC/openSUSE:Factory/skelcd-control-openSUSE (Old)
 and  /work/SRC/openSUSE:Factory/.skelcd-control-openSUSE.new (New)


Package is "skelcd-control-openSUSE"

Tue Apr 25 08:56:02 2017 rev:181 rq:489119 version:42.3.99.3

Changes:

--- 
/work/SRC/openSUSE:Factory/skelcd-control-openSUSE/skelcd-control-openSUSE-promo.changes
2017-03-21 22:47:33.931608251 +0100
+++ 
/work/SRC/openSUSE:Factory/.skelcd-control-openSUSE.new/skelcd-control-openSUSE-promo.changes
   2017-04-25 08:56:03.577148659 +0200
@@ -1,0 +2,7 @@
+Tue Apr 18 14:48:28 UTC 2017 - tchva...@suse.com
+
+- In desktop selector keep all choices unselected for user to decide
+  (poo#14936, bsc#1025415)
+- 42.3.99.3
+
+---
skelcd-control-openSUSE.changes: same change

Old:

  skelcd-control-openSUSE-42.3.99.2.tar.bz2

New:

  skelcd-control-openSUSE-42.3.99.3.tar.bz2



Other differences:
--
++ skelcd-control-openSUSE-promo.spec ++
--- /var/tmp/diff_new_pack.4fBKJg/_old  2017-04-25 08:56:05.500876641 +0200
+++ /var/tmp/diff_new_pack.4fBKJg/_new  2017-04-25 08:56:05.500876641 +0200
@@ -27,7 +27,7 @@
 #
 ##
 Name:   skelcd-control-openSUSE-promo
-Version:42.3.99.2
+Version:42.3.99.3
 Release:0
 Summary:The openSUSE Installation Control file
 License:MIT

skelcd-control-openSUSE.spec: same change
++ skelcd-control-openSUSE-42.3.99.2.tar.bz2 -> 
skelcd-control-openSUSE-42.3.99.3.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/skelcd-control-openSUSE-42.3.99.2/control/control.openSUSE.xml 
new/skelcd-control-openSUSE-42.3.99.3/control/control.openSUSE.xml
--- old/skelcd-control-openSUSE-42.3.99.2/control/control.openSUSE.xml  
2017-02-16 17:37:11.668846491 +0100
+++ new/skelcd-control-openSUSE-42.3.99.3/control/control.openSUSE.xml  
2017-04-18 17:02:12.189719259 +0200
@@ -397,6 +397,7 @@
 
   kde
 
+   true
   
 
   
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/skelcd-control-openSUSE-42.3.99.2/package/skelcd-control-openSUSE.changes 
new/skelcd-control-openSUSE-42.3.99.3/package/skelcd-control-openSUSE.changes
--- 
old/skelcd-control-openSUSE-42.3.99.2/package/skelcd-control-openSUSE.changes   
2017-02-16 17:37:11.668846491 +0100
+++ 
new/skelcd-control-openSUSE-42.3.99.3/package/skelcd-control-openSUSE.changes   
2017-04-18 17:02:12.193719259 +0200
@@ -1,4 +1,11 @@
 ---
+Tue Apr 18 14:48:28 UTC 2017 - tchva...@suse.com
+
+- In desktop selector keep all choices unselected for user to decide
+  (poo#14936, bsc#1025415)
+- 42.3.99.3
+
+---
 Wed Feb  8 14:50:06 UTC 2017 - jreidin...@suse.com
 
 - add new desktop selection workflow (poo#14936, bsc#1025415)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/skelcd-control-openSUSE-42.3.99.2/package/skelcd-control-openSUSE.spec 
new/skelcd-control-openSUSE-42.3.99.3/package/skelcd-control-openSUSE.spec
--- old/skelcd-control-openSUSE-42.3.99.2/package/skelcd-control-openSUSE.spec  
2017-02-16 17:37:11.668846491 +0100
+++ new/skelcd-control-openSUSE-42.3.99.3/package/skelcd-control-openSUSE.spec  
2017-04-18 17:02:12.193719259 +0200
@@ -27,7 +27,7 @@
 #
 ##
 Name:   skelcd-control-openSUSE
-Version:42.3.99.2
+Version:42.3.99.3
 Release:0
 Summary:The openSUSE Installation Control file
 License:MIT




commit yast2 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package yast2 for openSUSE:Factory checked 
in at 2017-04-25 08:56:16

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


Package is "yast2"

Tue Apr 25 08:56:16 2017 rev:401 rq:489337 version:3.2.28

Changes:

--- /work/SRC/openSUSE:Factory/yast2/yast2.changes  2017-04-12 
17:10:45.565609375 +0200
+++ /work/SRC/openSUSE:Factory/.yast2.new/yast2.changes 2017-04-25 
08:56:18.854988355 +0200
@@ -1,0 +2,6 @@
+Wed Apr 19 14:16:33 UTC 2017 - lsle...@suse.cz
+
+- Fixed parsing whitespace lines in /etc/fstab (bsc#1030425)
+- 3.2.28
+
+---

Old:

  yast2-3.2.27.tar.bz2

New:

  yast2-3.2.28.tar.bz2



Other differences:
--
++ yast2.spec ++
--- /var/tmp/diff_new_pack.QJXnWg/_old  2017-04-25 08:56:20.674731042 +0200
+++ /var/tmp/diff_new_pack.QJXnWg/_new  2017-04-25 08:56:20.674731042 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2
-Version:3.2.27
+Version:3.2.28
 Release:0
 Summary:YaST2 - Main Package
 License:GPL-2.0

++ yast2-3.2.27.tar.bz2 -> yast2-3.2.28.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.2.27/library/general/src/scrconf/etc_fstab.scr 
new/yast2-3.2.28/library/general/src/scrconf/etc_fstab.scr
--- old/yast2-3.2.27/library/general/src/scrconf/etc_fstab.scr  2017-04-12 
10:35:57.058772663 +0200
+++ new/yast2-3.2.28/library/general/src/scrconf/etc_fstab.scr  2017-04-19 
16:32:39.495807122 +0200
@@ -42,10 +42,17 @@
  */
 .etc.fstab
 
+/*
+ * Note: the same agent definition is used in
+ * 
https://github.com/yast/yast-update/blob/e2052274034f5240e9f09bceae7c6d888b18468d/src/modules/RootPart.rb#L812
+ * apply any fixes also there.
+ */
+
 `ag_anyagent(
   `Description (
   (`File("/etc/fstab")),   // real file name
-  "#\n",   // Comment
+  // tab and space is a workaround for white space only lines (bsc#1030425)
+  "#\n\t ",// Comment
   false,   // read-only
   (`List (
`Tuple (
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.2.27/library/general/test/agents_test/fstab_agent_test.rb 
new/yast2-3.2.28/library/general/test/agents_test/fstab_agent_test.rb
--- old/yast2-3.2.27/library/general/test/agents_test/fstab_agent_test.rb   
2017-04-12 10:35:57.058772663 +0200
+++ new/yast2-3.2.28/library/general/test/agents_test/fstab_agent_test.rb   
2017-04-19 16:32:39.519807122 +0200
@@ -21,7 +21,14 @@
   root = File.join(File.dirname(__FILE__), "test_root2")
   change_scr_root(root)
   expect(content).to be_a(Array)
+end
 
+it "can read fstab containing just whitespace lines" do
+  reset_scr_root
+  root = File.join(File.dirname(__FILE__), "test_root3")
+  change_scr_root(root)
+  # all lines are returned
+  expect(content.size).to eq(6)
 end
 
 it "returns an array containing nfs entries" do
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.2.27/library/general/test/agents_test/test_root3/etc/fstab 
new/yast2-3.2.28/library/general/test/agents_test/test_root3/etc/fstab
--- old/yast2-3.2.27/library/general/test/agents_test/test_root3/etc/fstab  
1970-01-01 01:00:00.0 +0100
+++ new/yast2-3.2.28/library/general/test/agents_test/test_root3/etc/fstab  
2017-04-19 16:32:39.587807122 +0200
@@ -0,0 +1,8 @@
+UUID=b66c1028-cd4a-4c08-b92d-fc4b9840845d  /   ext4
noatime,data=writeback,acl,user_xattr 1 1 
+UUID=d2811ace-66e0-4ef2-9b68-9b2758359391  /home   ext4
noatime,data=writeback,acl 1 2 
+ 
+192.168.1.2:/home/kv   /home/kv2   nfs defaults 0 0 
+192.168.1.2:/media/new2/media/new2 nfs defaults 0 0 
+192.168.1.2:/media/new /media/new  nfs defaults 0 0 
+# my fine comment
+tmpfs/tmp tmpfs  defaults,size=25% 
 0 0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-3.2.27/library/network/src/lib/network/susefirewall2.rb 
new/yast2-3.2.28/library/network/src/lib/network/susefirewall2.rb
--- old/yast2-3.2.27/library/network/src/lib/network/susefirewall2.rb   
2017-04-12 10:35:57.066772663 +0200
+++ new/yast2-3.2.28/library/network/src/lib/network/susefirewall2.rb   
2017-04-19 16:32:39.843807122 +0200
@@ -259,12 +259,12 @@
 # This is just a helper function that could avoid from filling y2log up 
with
 # a lot of the very same messages - 'foreach()' is a very pow

commit rubygem-cfa_grub2 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package rubygem-cfa_grub2 for 
openSUSE:Factory checked in at 2017-04-25 08:56:08

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


Package is "rubygem-cfa_grub2"

Tue Apr 25 08:56:08 2017 rev:8 rq:489312 version:0.6.2

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-cfa_grub2/rubygem-cfa_grub2.changes  
2017-04-12 17:08:16.094768493 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-cfa_grub2.new/rubygem-cfa_grub2.changes 
2017-04-25 08:56:12.231924863 +0200
@@ -1,0 +2,6 @@
+Wed Apr 19 11:50:04 UTC 2017 - jreidin...@suse.com
+
+- fix parsing grub.cfg with multi-level of submenus (bsc#1009025)
+- 0.6.2
+
+---

Old:

  cfa_grub2-0.6.1.gem

New:

  cfa_grub2-0.6.2.gem



Other differences:
--
++ rubygem-cfa_grub2.spec ++
--- /var/tmp/diff_new_pack.BIVJY0/_old  2017-04-25 08:56:13.903688474 +0200
+++ /var/tmp/diff_new_pack.BIVJY0/_new  2017-04-25 08:56:13.907687908 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   rubygem-cfa_grub2
-Version:0.6.1
+Version:0.6.2
 Release:0
 %define mod_name cfa_grub2
 %define mod_full_name %{mod_name}-%{version}

++ cfa_grub2-0.6.1.gem -> cfa_grub2-0.6.2.gem ++
Binary files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/cfa/grub2/grub_cfg.rb 
new/lib/cfa/grub2/grub_cfg.rb
--- old/lib/cfa/grub2/grub_cfg.rb   2017-03-29 16:32:23.0 +0200
+++ new/lib/cfa/grub2/grub_cfg.rb   2017-04-19 14:27:59.0 +0200
@@ -12,13 +12,13 @@
   # @private only internal parser
   class Parser
 def self.parse(string)
-  submenu = ""
+  submenu = []
   string.lines.each_with_object([]) do |line, result|
 case line
 when /menuentry\s+'/ then result << parse_entry(line, submenu)
-when /^}\s*\n/ then submenu = ""
+when /^\s*}\s*\n/ then submenu.pop
 when /submenu\s+'/
-  submenu = line[/\s*submenu\s+'([^']+)'.*/, 1]
+  submenu.push(line[/\s*submenu\s+'([^']+)'.*/, 1])
 end
   end
 end
@@ -34,9 +34,10 @@
 
 def self.parse_entry(line, submenu)
   entry = line[/\s*menuentry\s+'([^']+)'.*/, 1]
+  submenu.push(entry)
   {
 title: entry,
-path:  submenu.empty? ? entry : "#{submenu}>#{entry}"
+path:  submenu.join(">")
   }
 end
 private_class_method :parse_entry
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2017-03-29 16:32:28.0 +0200
+++ new/metadata2017-04-19 14:28:04.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: cfa_grub2
 version: !ruby/object:Gem::Version
-  version: 0.6.1
+  version: 0.6.2
 platform: ruby
 authors:
 - Josef Reidinger
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2017-03-29 00:00:00.0 Z
+date: 2017-04-19 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: cfa




commit yast2-update for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package yast2-update for openSUSE:Factory 
checked in at 2017-04-25 08:56:23

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


Package is "yast2-update"

Tue Apr 25 08:56:23 2017 rev:114 rq:489346 version:3.2.2

Changes:

--- /work/SRC/openSUSE:Factory/yast2-update/yast2-update.changes
2017-01-10 10:34:18.572965294 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-update.new/yast2-update.changes   
2017-04-25 08:56:24.782150249 +0200
@@ -1,0 +2,13 @@
+Wed Apr 19 14:38:34 UTC 2017 - lsle...@suse.cz
+
+- Fixed parsing whitespace lines in the original /etc/fstab
+  (bsc#1030425)
+- 3.2.2
+
+---
+Mon Jan 30 12:07:55 UTC 2017 - igonzalezs...@suse.com
+
+- Allow YaST modules to add packages during upgrade (bsc#1009834)
+- 3.2.1
+
+---

Old:

  yast2-update-3.2.0.tar.bz2

New:

  yast2-update-3.2.2.tar.bz2



Other differences:
--
++ yast2-update.spec ++
--- /var/tmp/diff_new_pack.vYOTL5/_old  2017-04-25 08:56:25.354069379 +0200
+++ /var/tmp/diff_new_pack.vYOTL5/_new  2017-04-25 08:56:25.358068813 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-update
-Version:3.2.0
+Version:3.2.2
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -26,8 +26,9 @@
 BuildRequires:  update-desktop-files
 BuildRequires:  yast2 >= 3.1.126
 BuildRequires:  yast2-devtools >= 3.1.15
-BuildRequires:  yast2-packager
 BuildRequires:  yast2-ruby-bindings >= 1.0.0
+# Packages#proposal_for_update
+BuildRequires:  yast2-packager >= 3.2.13
 
 # xmllint
 BuildRequires:  libxml2-tools
@@ -45,8 +46,8 @@
 Requires:   yast2 >= 3.1.126
 Requires:   yast2-installation
 
-# packager/product_patterns.rb
-Requires:   yast2-packager >= 3.1.95
+# Packages#proposal_for_update
+Requires:   yast2-packager >= 3.2.13
 
 # Pkg.TargetInitializeOptions()
 Requires:   yast2-pkg-bindings >= 3.1.14

++ yast2-update-3.2.0.tar.bz2 -> yast2-update-3.2.2.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-update-3.2.0/.travis.yml 
new/yast2-update-3.2.2/.travis.yml
--- old/yast2-update-3.2.0/.travis.yml  2017-01-05 15:50:54.009550784 +0100
+++ new/yast2-update-3.2.2/.travis.yml  2017-04-19 17:30:54.849245123 +0200
@@ -1,16 +1,11 @@
-language: cpp
-compiler:
-- gcc
+sudo: required
+language: bash
+services:
+  - docker
+
 before_install:
-# disable rvm, use system Ruby
-- rvm reset
-- wget 
https://raw.githubusercontent.com/yast/yast-devtools/master/travis-tools/travis_setup.sh
-- sh ./travis_setup.sh -p "rake yast2-devtools yast2-testsuite yast2 
yast2-packager yast2-installation-control" -g "rspec:3.3.0 yast-rake gettext"
+  - docker build -t yast-update-image .
 script:
-- rake check:syntax
-- rake check:pot
-- make -f Makefile.cvs
-- make
-- sudo make install
-- make check
-
+  # the "yast-travis-ruby" script is included in the base yastdevel/ruby image
+  # see https://github.com/yast/docker-yast-ruby/blob/master/yast-travis-ruby
+  - docker run -it -e TRAVIS=1 -e TRAVIS_JOB_ID="$TRAVIS_JOB_ID" 
yast-update-image yast-travis-ruby
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-update-3.2.0/Dockerfile 
new/yast2-update-3.2.2/Dockerfile
--- old/yast2-update-3.2.0/Dockerfile   1970-01-01 01:00:00.0 +0100
+++ new/yast2-update-3.2.2/Dockerfile   2017-04-19 17:30:54.865245123 +0200
@@ -0,0 +1,3 @@
+FROM yastdevel/ruby
+COPY . /usr/src/app
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-update-3.2.0/package/yast2-update.changes 
new/yast2-update-3.2.2/package/yast2-update.changes
--- old/yast2-update-3.2.0/package/yast2-update.changes 2017-01-05 
15:50:54.105550784 +0100
+++ new/yast2-update-3.2.2/package/yast2-update.changes 2017-04-19 
17:30:54.897245123 +0200
@@ -1,4 +1,17 @@
 ---
+Wed Apr 19 14:38:34 UTC 2017 - lsle...@suse.cz
+
+- Fixed parsing whitespace lines in the original /etc/fstab
+  (bsc#1030425)
+- 3.2.2
+
+---
+Mon Jan 30 12:07:55 UTC 2017 - igonzalezs...@suse.com
+
+- Allow YaST modules to add packages during upgrade (bsc#1009834)
+- 3.2.1
+
+---
 Thu Jan  5 14:43:00 UTC 2017 - jreidin...@suse.com
 
 - Add storage to build dependencies as tests depends on it
diff -urN '--exclude=CVS' '--

commit lvm2 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package lvm2 for openSUSE:Factory checked in 
at 2017-04-25 08:55:28

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


Package is "lvm2"

Tue Apr 25 08:55:28 2017 rev:101 rq:489075 version:2.02.170

Changes:

--- /work/SRC/openSUSE:Factory/lvm2/device-mapper.changes   2017-03-03 
17:33:26.903127529 +0100
+++ /work/SRC/openSUSE:Factory/.lvm2.new/device-mapper.changes  2017-04-25 
08:55:32.521539971 +0200
@@ -1,0 +2,39 @@
+Tue Apr 18 11:07:01 UTC 2017 - tchva...@suse.com
+
+- Update to 2.02.170:
+  * Few smal fixes around; obsoleted 169 release that was removed
+from mirrors
+- Refresh patch:
+  * display-dm-name-for-lv-name.diff
+
+---
+Wed Apr 12 01:33:15 UTC 2017 - z...@suse.com
+
+- Update device mapper version to 1.02.138, see WHATS_NEW_DM for
+  detailed changelogs
+  * Drop obsolete lvmchange files accordingly
+- Refresh libdm-iface-not-output-error-message-inside-retry-loop.patch
+- Refresh make-mirror-legs-on-different-tag-pvs.patch
+- device-mapper-dmsetup-export.patch
+
+---
+Mon Apr 10 23:08:45 UTC 2017 - jnelson-s...@jamponi.net
+
+- Version update to 2.02.169 release, see WHATS_NEW and WHATS_NEW_DM
+  files for detailed changelogs
+
+---
+Mon Apr 10 10:41:02 UTC 2017 - tchva...@suse.com
+
+- Split configure options to have one per line
+- Pass over with spec-cleaner
+- Enable internal cache
+- Enable lvmpolld
+
+---
+Mon Apr 10 07:41:10 UTC 2017 - z...@suse.com
+
+- Add 'lvm2-lockd' subpackage, fate#323203 to lvm2-clvm to not pull
+  corosync and other deps to the core lvm2 package
+
+---
lvm2-clvm.changes: same change
lvm2.changes: same change

Old:

  LVM2.2.02.168.tgz
  LVM2.2.02.168.tgz.asc

New:

  LVM2.2.02.170.tgz
  LVM2.2.02.170.tgz.asc



Other differences:
--
++ device-mapper.spec ++
--- /var/tmp/diff_new_pack.7IBmYe/_old  2017-04-25 08:55:36.173023645 +0200
+++ /var/tmp/diff_new_pack.7IBmYe/_new  2017-04-25 08:55:36.177023079 +0200
@@ -16,15 +16,13 @@
 #
 
 
+%define libname libdevmapper1_03
+%define libname_event libdevmapper-event1_03
 ### COMMON-DEF-BEGIN ###
-%define lvm2_version  2.02.168
-%define device_mapper_version 1.02.137
+%define lvm2_version  2.02.170
+%define device_mapper_version 1.02.139
 %define thin_provisioning_version 0.5.6
 ### COMMON-DEF-END ###
-
-%define libname libdevmapper1_03
-%define libname_event libdevmapper-event1_03
-
 Name:   device-mapper
 Version:%{device_mapper_version}
 Release:0
@@ -35,7 +33,18 @@
 Source: ftp://sources.redhat.com/pub/lvm2/LVM2.%{lvm2_version}.tgz
 Source1:ftp://sources.redhat.com/pub/lvm2/LVM2.%{lvm2_version}.tgz.asc
 Source99:   baselibs.conf
-
+BuildRequires:  gcc-c++
+BuildRequires:  pkgconfig
+BuildRequires:  suse-module-tools
+BuildRequires:  thin-provisioning-tools >= %{thin_provisioning_version}
+BuildRequires:  pkgconfig(libselinux)
+BuildRequires:  pkgconfig(libsepol)
+BuildRequires:  pkgconfig(libudev)
+BuildRequires:  pkgconfig(systemd)
+Requires:   thin-provisioning-tools >= %{thin_provisioning_version}
+Requires(post): coreutils
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+%{?systemd_requires}
 ### COMMON-PATCH-BEGIN ###
 # Upstream patches
 # SUSE patches: 1000+ for LVM, 2000+ for device mapper
@@ -93,19 +102,6 @@
 Patch2012:  simplify-special-case-for-md-in-69-dm-lvm-metadata.patch
 ### COMMON-PATCH-END ###
 
-BuildRequires:  gcc-c++
-BuildRequires:  pkgconfig
-BuildRequires:  suse-module-tools
-BuildRequires:  thin-provisioning-tools >= %{thin_provisioning_version}
-BuildRequires:  pkgconfig(libselinux)
-BuildRequires:  pkgconfig(libsepol)
-BuildRequires:  pkgconfig(libudev)
-BuildRequires:  pkgconfig(systemd)
-Requires:   thin-provisioning-tools >= %{thin_provisioning_version}
-Requires(post): coreutils
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%{?systemd_requires}
-
 %description
 Programs and man pages for configuring and using the device mapper.
 
@@ -152,8 +148,10 @@
 export PATH=$PATH:/sbin:%{_prefix}/sbin
 sed -ie "s/%{device_mapper_version}/1.03.01/g" VERSION_DM
 %configure \
---enable-dmeventd --enable-cmdlib \
---enable-udev_rules --enable-udev_sync \
+--enable-dmeventd \
+--enable-cmdlib \
+--enable-udev_rules \
+--enable-udev_sync \
 --with-udev-prefix="%{_prefix}/" \
 --enable-selin

commit elfutils for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package elfutils for openSUSE:Factory 
checked in at 2017-04-25 08:55:05

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


Package is "elfutils"

Tue Apr 25 08:55:05 2017 rev:57 rq:487068 version:0.168

Changes:

--- /work/SRC/openSUSE:Factory/elfutils/elfutils.changes2017-03-31 
15:01:25.772734638 +0200
+++ /work/SRC/openSUSE:Factory/.elfutils.new/elfutils.changes   2017-04-25 
08:55:07.273110153 +0200
@@ -1,0 +2,10 @@
+Fri Apr  7 19:16:26 UTC 2017 - jeng...@inai.de
+
+- Add missing ldconfig calls for libasm1
+
+---
+Fri Mar 31 19:02:31 UTC 2017 - bwiedem...@suse.com
+
+- make tests pass when user does not want debuginfo (boo#1031556)
+
+---



Other differences:
--
++ elfutils.spec ++
--- /var/tmp/diff_new_pack.wofDKe/_old  2017-04-25 08:55:08.140987433 +0200
+++ /var/tmp/diff_new_pack.wofDKe/_new  2017-04-25 08:55:08.144986868 +0200
@@ -154,9 +154,11 @@
 # similarly predictable value [upstream default is hostname + date]
 MODVERSION="suse-build `eval echo ${DATE} ${TIME}`"
 sed --in-place "s/^MODVERSION=.*\$/MODVERSION=\"${MODVERSION}\"/" configure.ac
+export CFLAGS="%optflags"
+CFLAGS+=" -g" # make tests pass when user does not want debuginfo (boo#1031556)
 %ifarch %sparc
 # Small PIC model not sufficient
-export CFLAGS="%optflags -fPIC"
+CFLAGS+=" -fPIC"
 %endif
 autoreconf -fi
 %configure --program-prefix=eu-
@@ -169,12 +171,16 @@
 ls -lR $RPM_BUILD_ROOT%{_libdir}/libelf*
 %find_lang %{name}
 
+%post -n libasm1 -p /sbin/ldconfig
+
 %post -n libebl1 -p /sbin/ldconfig
 
 %post -n libelf1 -p /sbin/ldconfig
 
 %post -n libdw1 -p /sbin/ldconfig
 
+%postun -n libasm1 -p /sbin/ldconfig
+
 %postun -n libebl1 -p /sbin/ldconfig
 
 %postun -n libelf1 -p /sbin/ldconfig





commit dracut for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2017-04-25 08:55:37

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


Package is "dracut"

Tue Apr 25 08:55:37 2017 rev:106 rq:489777 version:044

Changes:

--- /work/SRC/openSUSE:Factory/dracut/dracut.changes2017-03-29 
13:21:55.850859250 +0200
+++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes   2017-04-25 
08:55:38.932633431 +0200
@@ -1,0 +2,25 @@
+Thu Apr 20 20:28:43 UTC 2017 - daniel.molken...@suse.com
+
+- Ensure hisi_sas_v2_hw gets included (bsc#1034597)
+  * adds 0515-90kernel-modules-also-add-block-device-driver-revers.patch
+
+---
+Fri Apr  7 10:03:36 UTC 2017 - daniel.molken...@suse.com
+
+- Fix mdraid regression (bsc#1028542)
+  * adds 0513-Fix-regression-caused-by-6f9bf2b8ac436259bdccb110545.patch 
+- man: make the -k option clear using mkinitrd (bsc#1012656)
+  * adds 0514-man-make-the-k-option-clear-using-mkinitrd.patch 
+
+---
+Thu Apr  6 09:35:11 UTC 2017 - daniel.molken...@suse.com
+
+- Fix typo in installkernel script (bsc#1032576)
+
+---
+Mon Apr  3 13:30:20 UTC 2017 - daniel.molken...@suse.com
+
+- Drop binutils dependency in favor of elfutils
+  * add 0512-Make-binutils-optional-when-elfutils-are-available.patch 
+
+---

New:

  0512-Make-binutils-optional-when-elfutils-are-available.patch
  0513-Fix-regression-caused-by-6f9bf2b8ac436259bdccb110545.patch
  0514-man-make-the-k-option-clear-using-mkinitrd.patch
  0515-90kernel-modules-also-add-block-device-driver-revers.patch



Other differences:
--
++ dracut.spec ++
--- /var/tmp/diff_new_pack.fS9rlI/_old  2017-04-25 08:55:41.292299770 +0200
+++ /var/tmp/diff_new_pack.fS9rlI/_new  2017-04-25 08:55:41.292299770 +0200
@@ -191,6 +191,10 @@
 Patch505:   0505-Allow-booting-from-degraded-MD-RAID-arrays.patch
 Patch507:   0507-Set-TaskMax-inifinite-for-the-emergency-shell.patch
 Patch508:   0508-90multipath-start-before-local-fs-pre.target.patch
+Patch512:   0512-Make-binutils-optional-when-elfutils-are-available.patch
+Patch513:   0513-Fix-regression-caused-by-6f9bf2b8ac436259bdccb110545.patch
+Patch514:   0514-man-make-the-k-option-clear-using-mkinitrd.patch
+Patch515:   0515-90kernel-modules-also-add-block-device-driver-revers.patch
 
 BuildRequires:  asciidoc
 BuildRequires:  bash
@@ -201,9 +205,9 @@
 Requires:   %{_bindir}/get_kernel_version
 Requires:   bash
 # systemd-sysvinit provides: poweroff, reboot, halt
-Requires:   binutils
 Requires:   coreutils
 Requires:   cpio
+Requires:   elfutils
 Requires:   file
 Requires:   filesystem
 Requires:   findutils
@@ -406,6 +410,10 @@
 %patch509 -p1
 %patch510 -p1
 %patch511 -p1
+%patch512 -p1
+%patch513 -p1
+%patch514 -p1
+%patch515 -p1
 
 %build
 %configure\
@@ -537,6 +545,9 @@
 %ifarch %ix86 x86_64
 %config %{_sysconfdir}/dracut.conf.d/02-early-microcode.conf
 %endif
+%ifarch s390 s390x
+%config %{_sysconfdir}/dracut.conf.d/10-s390x_persistent_device.conf
+%endif
 
 %{_mandir}/man8/dracut.8*
 %{_mandir}/man8/mkinitrd.8*

++ 0512-Make-binutils-optional-when-elfutils-are-available.patch ++
>From f8d2fa4312ba7989e30b60e5f287c91a1f4b7450 Mon Sep 17 00:00:00 2001
From: Daniel Molkentin 
Date: Mon, 3 Apr 2017 15:23:37 +0200
Subject: [PATCH] Make binutils optional when elfutils are available

Binutils increase the size of initramfs by 36 MB. We only need "strip",
which exists as eu-strip in elfutils, which in turn is < 1 MB in size.

Note that the tests (TEST-04-FULL-SYSTEMD/test.sh) still depend on
strip from binutils. It could use sstrip in the future.
---
 dracut.sh | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/dracut.sh b/dracut.sh
index d25da8e3..f4794d1d 100755
--- a/dracut.sh
+++ b/dracut.sh
@@ -1624,7 +1624,11 @@ fi
 
 # strip binaries
 if [[ $do_strip = yes ]] ; then
-for p in strip xargs find; do
+# Prefer strip from elfutils for package size
+declare strip_cmd=$(command -v eu-strip)
+test -z "$strip_cmd" && strip_cmd="strip"
+
+for p in $strip_cmd xargs find; do
 if ! type -P $p >/dev/null; then
 dinfo "Could not find '$p'. Not stripping the initramfs."
 do_strip=no
@@ -1636,14 +1640,14 @@ if [[ $do_strip = yes ]] && ! [[ $DRACUT_FIPS_MODE ]]; 
then
 dinfo "*** Stripping files ***"
 find "$initdir" -type f \
 -executable -not -path '*/lib/module

commit util-linux for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package util-linux for openSUSE:Factory 
checked in at 2017-04-25 08:55:20

Comparing /work/SRC/openSUSE:Factory/util-linux (Old)
 and  /work/SRC/openSUSE:Factory/.util-linux.new (New)


Package is "util-linux"

Tue Apr 25 08:55:20 2017 rev:217 rq:487606 version:2.29.2

Changes:

--- /work/SRC/openSUSE:Factory/util-linux/python-libmount.changes   
2017-03-01 23:39:13.706580054 +0100
+++ /work/SRC/openSUSE:Factory/.util-linux.new/python-libmount.changes  
2017-04-25 08:55:22.398971323 +0200
@@ -1,0 +2,44 @@
+Wed Apr 12 09:19:21 UTC 2017 - ag...@suse.com
+
+- Prefer sysfs exported SMBIOS3 tables in lscu (bsc#1033718)
+  + arm64-lscpu-use-sysfs-for-table-access-if-available.patch
+
+---
+Thu Apr  6 17:35:34 CEST 2017 - sbra...@suse.com
+
+- To cover release numbers of both SLE12 SP3 and Leap 42.3, relax
+  release based conflict with bash-completion from 13.1 to 10.
+
+---
+Tue Apr  4 14:51:09 UTC 2017 - sweet_...@gmx.de
+
+- fix util-linux-losetup-Add-support-for-setting-logical-blocksize.patch
+  --logical-blocksize was behaving like --nooverlap
+
+---
+Fri Mar 17 17:18:28 CET 2017 - sbra...@suse.com
+
+- Conflict with old systemd-presets-branding to ensure correct
+  preset migration (boo#1029775, bsc#1012850).
+
+---
+Thu Mar 16 22:44:12 CET 2017 - sbra...@suse.com
+
+- Drop "codepage" fstab migration needed for SuSE Linux < 9.1
+  (bsc#51950 (suse#36950)).
+
+---
+Tue Feb 28 17:27:58 CET 2017 - sbra...@suse.com
+
+- Keep dependency on insserv and fillup for compatibilitiy reasons
+  in Leap 42.3. Too many poorly written packages depend on it.
+  (Marked as "sysv compatibility hack".)
+
+---
+Wed Feb 22 22:00:05 UTC 2017 - sweet_...@gmx.de
+
+- Update to version 2.29.2:
+  * su(1) security issue CVE-2017-2616 (bsc#1023041)
+  * minor bugfixes and enhancements
+
+---
@@ -23 +67,2 @@
-  --logical-blocksize can be used only with long option.
+  --logical-blocksize can be used only with long option
+  (bsc#966891).
@@ -28,0 +74,35 @@
+  SLE12 & Leap 42 specific changes:
+  * Fix for SLE12: bsc#956540, SLE12 SP1: bsc#953691, Leap 42.1:
+boo#954482, was obsoleted by the systemd update, and skipped.
+  * Remove --enable-ncurses that is intended to force non-wide
+ncurses (boo#978993).
+  * Make release-dependent conflict with old sysvinit-tools SLE
+specific, as it is required only for SLE 11 upgrade,
+and breaks openSUSE staging builds (boo#994399).
+  * Obsolete these patches, now upstreamed:
+  * Drop upstreamed patches
+(tests-script-race-on-force-only.patch,
+util-linux-libmount-ignore-redundant-slashes.patch,
+util-linux-sfdisk-show-pt-geometry-1.patch,
+util-linux-sfdisk-show-pt-geometry-2.patch,
+util-linux-sfdisk-show-pt-geometry-3.patch,
+util-linux-libblkid-partition-loop.patch,
+util-linux-libblkid-wipe-offset.patch,
+util-linux-mount-reuse-loop-1.patch,
+util-linux-mount-reuse-loop-2.patch,
+util-linux-mount-reuse-loop-3.patch,
+util-linux-mount-reuse-loop-4.patch,
+util-linux-loop-reuse-01.patch, util-linux-loop-reuse-02.patch,
+util-linux-loop-reuse-03.patch, util-linux-loop-reuse-04.patch,
+util-linux-loop-reuse-05.patch, util-linux-loop-reuse-06.patch,
+util-linux-loop-reuse-07.patch, util-linux-loop-reuse-08.patch,
+util-linux-loop-reuse-09.patch, util-linux-loop-reuse-10.patch,
+util-linux-loop-reuse-12.patch, util-linux-loop-reuse-13.patch,
+util-linux-loop-reuse-14.patch, util-linux-loop-reuse-15.patch,
+util-linux-loop-reuse-16.patch, util-linux-loop-reuse-17.patch,
+util-linux-loop-reuse-18.patch, util-linux-loop-reuse-19.patch,
+util-linux-loop-reuse-20.patch,
+util-linux-libmount-cifs-is_mounted.patch).
+  * Refreshed patches
+(make-sure-sbin-resp-usr-sbin-are-in-PATH.diff,
+util-linux-losetup-Add-support-for-setting-logical-blocksize.patch).
@@ -70 +150 @@
-- Update to version 2.29
+- Update to version 2.29 (FATE#322090)
@@ -86,0 +167,5 @@
+  * sfdisk: Support for deprecated --show-pt-geometry (bsc#990531).
+  * libmount: various issues with cifs mount
+(bsc#982331, bsc#987176).
+  * libblkid: Prevent infinite loop DoS while parsing DOS partition
+tables (bsc#988361, CVE-2016-5011).
@@ -198 +283 @@
-* Other bug fixes (bsc#970404, bsc#975082).
+* Other bug fixes (bsc#970404, bsc#975082, FATE#318444).
@@ -211,0 +29

commit lockdev for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package lockdev for openSUSE:Factory checked 
in at 2017-04-25 08:55:12

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


Package is "lockdev"

Tue Apr 25 08:55:12 2017 rev:23 rq:487343 version:1.0.3_git201003141408

Changes:

--- /work/SRC/openSUSE:Factory/lockdev/lockdev.changes  2014-09-28 
19:56:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.lockdev.new/lockdev.changes 2017-04-25 
08:55:13.460235279 +0200
@@ -1,0 +2,5 @@
+Tue Apr  4 13:09:52 UTC 2017 - lnus...@suse.de
+
+- add bcond lockdev_debug to be able to build a package with debugging output
+
+---



Other differences:
--
++ lockdev.spec ++
--- /var/tmp/diff_new_pack.vcCROK/_old  2017-04-25 08:55:14.540082586 +0200
+++ /var/tmp/diff_new_pack.vcCROK/_new  2017-04-25 08:55:14.544082021 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lockdev
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,6 +16,8 @@
 #
 
 
+%bcond_with lockdev_debug
+
 Name:   lockdev
 Summary:A library for locking devices
 License:LGPL-2.0
@@ -82,7 +84,11 @@
 touch ChangeLog
 mkdir -p m4
 autoreconf -f -i
-%configure --disable-silent-rules --enable-helper
+%configure \
+   --disable-silent-rules \
+   --enable-helper \
+   %{?with_lockdev_debug:--enable-debug}
+#
 make %{?_smp_mflags}
 
 %check




commit gawk for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package gawk for openSUSE:Factory checked in 
at 2017-04-25 08:54:51

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


Package is "gawk"

Tue Apr 25 08:54:51 2017 rev:38 rq:487002 version:4.1.4

Changes:

--- /work/SRC/openSUSE:Factory/gawk/gawk.changes2016-09-11 
00:51:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.gawk.new/gawk.changes   2017-04-25 
08:54:52.995129096 +0200
@@ -1,0 +2,7 @@
+Mon Apr 10 07:39:22 UTC 2017 - josef.moell...@suse.com
+
+- Added an explicit rpmlint rule to keep one file (gawkapi.h)
+  from requiring a separate package.
+  [+gawk.rpmlintrc]
+
+---

New:

  gawk.rpmlintrc



Other differences:
--
++ gawk.spec ++
--- /var/tmp/diff_new_pack.072iPj/_old  2017-04-25 08:54:54.098973009 +0200
+++ /var/tmp/diff_new_pack.072iPj/_new  2017-04-25 08:54:54.102972443 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gawk
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 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
@@ -26,6 +26,7 @@
 Source: http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz
 Source2:http://ftp.gnu.org/gnu/%{name}/%{name}-%{version}.tar.xz.sig
 Source3:
http://savannah.gnu.org/people/viewgpg.php?user_id=80653#/gawk.keyring
+Source4:gawk.rpmlintrc
 Patch1: gawk_ppc64le_ignore_transient_test_time_failure.patch
 BuildRequires:  update-alternatives
 Requires(post): %{install_info_prereq}



++ gawk.rpmlintrc ++
addFilter("E: devel-file-in-non-devel-package")



commit opie for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package opie for openSUSE:Factory checked in 
at 2017-04-25 08:54:07

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


Package is "opie"

Tue Apr 25 08:54:07 2017 rev:28 rq:484789 version:2.4

Changes:

--- /work/SRC/openSUSE:Factory/opie/opie.changes2012-03-12 
08:53:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.opie.new/opie.changes   2017-04-25 
08:54:08.269453445 +0200
@@ -1,0 +2,8 @@
+Mon Apr  3 06:21:18 UTC 2017 - meiss...@suse.com
+
+- opie-fix-indendation.patch: fixed a wrong ; that broke a while()
+  loop
+- opie-2.4-decl.diff: added missing stdlib.h, ctype.h, time.h
+  includes everywhere (bsc#1031339)
+
+---

New:

  opie-fix-indendation.patch



Other differences:
--
++ opie.spec ++
--- /var/tmp/diff_new_pack.eNK5LT/_old  2017-04-25 08:54:09.977211963 +0200
+++ /var/tmp/diff_new_pack.eNK5LT/_new  2017-04-25 08:54:09.981211397 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package opie
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,7 +16,6 @@
 #
 
 
-
 Name:   opie
 #!BuildIgnore: opie
 BuildRequires:  automake
@@ -24,9 +23,7 @@
 BuildRequires:  pam-devel
 Url:http://www.inner.net/opie
 Version:2.4
-Release:708
-License:SUSE-Innernet-2.0
-Group:  Productivity/Security
+Release:0
 Provides:   pam_opie
 %define name_pam pam_opie
 %define version_pam 0.21
@@ -54,7 +51,10 @@
 Patch18:opie-fix-autoconf.patch
 Patch19:opie-2.4-DESTDIR.patch
 Patch20:opie-2.4-pie.patch
+Patch21:opie-fix-indendation.patch
 Summary:Support for One-Time Passwords
+License:SUSE-Innernet-2.0
+Group:  Productivity/Security
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 PreReq: permissions
 
@@ -91,6 +91,7 @@
 %patch17
 %patch18
 %patch20 -p1
+%patch21 -p1
 
 %build
 # build opie

++ opie-2.4-decl.diff ++
--- /var/tmp/diff_new_pack.eNK5LT/_old  2017-04-25 08:54:10.053201217 +0200
+++ /var/tmp/diff_new_pack.eNK5LT/_new  2017-04-25 08:54:10.057200652 +0200
@@ -1,6 +1,8 @@
 opie-2.4/libopie/generator.c
+Index: opie-2.4/libopie/generator.c
+===
+--- opie-2.4.orig/libopie/generator.c
 +++ opie-2.4/libopie/generator.c
-@@ -49,6 +49,8 @@
+@@ -49,6 +49,8 @@ you didn't get a copy, you may request o
  #endif /* DEBUG */
  #include "opie.h"
  
@@ -9,9 +11,11 @@
  static char *algids[] = { NULL, NULL, NULL, "sha1", "md4", "md5" };
  
  #if OPIEAUTO
 opie-2.4/libopie/lookup.c
+Index: opie-2.4/libopie/lookup.c
+===
+--- opie-2.4.orig/libopie/lookup.c
 +++ opie-2.4/libopie/lookup.c
-@@ -13,6 +13,7 @@
+@@ -13,6 +13,7 @@ you didn't get a copy, you may request o
  
  #include "opie_cfg.h"
  #include 
@@ -19,9 +23,11 @@
  #include "opie.h"
  
  int opielookup FUNCTION((opie, principal), struct opie *opie AND char 
*principal)
 opie-2.4/libopie/md4c.c
+Index: opie-2.4/libopie/md4c.c
+===
+--- opie-2.4.orig/libopie/md4c.c
 +++ opie-2.4/libopie/md4c.c
-@@ -44,6 +44,8 @@
+@@ -44,6 +44,8 @@ License Agreement applies to this softwa
  #include "opie_cfg.h"
  #include "opie.h"
  
@@ -30,9 +36,11 @@
  /* Constants for MD4Transform routine.
   */
  #define S11 3
 opie-2.4/libopie/md5c.c
+Index: opie-2.4/libopie/md5c.c
+===
+--- opie-2.4.orig/libopie/md5c.c
 +++ opie-2.4/libopie/md5c.c
-@@ -47,6 +47,7 @@
+@@ -47,6 +47,7 @@ License Agreement applies to this softwa
  
  #include "opie_cfg.h"
  #include "opie.h"
@@ -40,9 +48,29 @@
  
  /* Constants for MD5Transform routine.
   */
 opie-2.4/libopie/newseed.c
+Index: opie-2.4/libopie/newseed.c
+===
+--- opie-2.4.orig/libopie/newseed.c
 +++ opie-2.4/libopie/newseed.c
-@@ -35,6 +35,8 @@
+@@ -16,16 +16,11 @@ you didn't get a copy, you may request o
+ */
+ 
+ #include "opie_cfg.h"
+-#if HAVE_TIME_H
+ #include 
+-#endif /* HAVE_TIME_H */
+-#if HAVE_STRING_H
+ #include 
+-#endif /* HAVE_STRING_H */
+ #include 
+-#if HAVE_UNISTD_H
+ #include 
+-#endif /* HAVE_UNISTD_H */
++#include 
+ #if HAVE_SYS_UTSNAME_H
+ #include 
+ #endif /* HAVE_SYS_UTSNAME_H */
+@@ -35,6 +30,8 @

commit sysconfig for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package sysconfig for openSUSE:Factory 
checked in at 2017-04-25 08:54:58

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


Package is "sysconfig"

Tue Apr 25 08:54:58 2017 rev:173 rq:487030 version:0.84.1

Changes:

--- /work/SRC/openSUSE:Factory/sysconfig/sysconfig.changes  2016-10-14 
09:26:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.sysconfig.new/sysconfig.changes 2017-04-25 
08:55:00.794026311 +0200
@@ -1,0 +2,9 @@
+Mon Apr 10 11:14:24 UTC 2017 - m...@suse.de
+
+- version 0.84.1
+- netconfig: cleanup tmp files (boo#1010760)
+  When /var/run/ntp/servers-netconfig has been modified externaly,
+  don't try to backup or keep tmp files to show what we would do.
+- netconfig: improve input check for duplicate keys (bsc#1009801)
+
+---

Old:

  sysconfig-0.84.0.tar.bz2

New:

  sysconfig-0.84.1.tar.bz2



Other differences:
--
++ sysconfig.spec ++
--- /var/tmp/diff_new_pack.LQnwEy/_old  2017-04-25 08:55:01.649905288 +0200
+++ /var/tmp/diff_new_pack.LQnwEy/_new  2017-04-25 08:55:01.653904723 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sysconfig
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -23,7 +23,7 @@
 %define udevdir/lib/udev
 %endif
 Name:   sysconfig
-Version:0.84.0
+Version:0.84.1
 Release:0
 Summary:The sysconfig scheme for traditional network scripts
 License:GPL-2.0+
@@ -35,7 +35,12 @@
 Requires:   /sbin/ifup
 Requires:   /sbin/netconfig
 Requires:   sysvinit(network)
-PreReq: %fillup_prereq textutils fileutils gawk sed grep
+PreReq: %fillup_prereq
+PreReq: fileutils
+PreReq: gawk
+PreReq: grep
+PreReq: sed
+PreReq: textutils
 Recommends: wicked-service
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -74,7 +79,7 @@
 make %{?_smp_mflags} check
 
 %install
-make %{?_smp_mflags} DESTDIR=%{buildroot} install
+%make_install
 touch %{buildroot}%{_sysconfdir}/sysconfig/network/config
 touch %{buildroot}%{_sysconfdir}/sysconfig/network/dhcp
 mkdir -p %{buildroot}/sbin

++ sysconfig-0.84.0.tar.bz2 -> sysconfig-0.84.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/sysconfig-0.84.0/ChangeLog 
new/sysconfig-0.84.1/ChangeLog
--- old/sysconfig-0.84.0/ChangeLog  2016-09-09 19:28:09.0 +0200
+++ new/sysconfig-0.84.1/ChangeLog  2017-04-10 13:31:48.0 +0200
@@ -1,4 +1,54 @@
-commit 3e8950d6eddaa785b64439c3ac09628be0ba7a0c (HEAD -> master)
+commit 026019b0df4064a2a299e4915cc6df55f326c985 (HEAD -> master, tag: 
version-0.84.1, origin/master)
+Author: Marius Tomaschewski 
+Date:   Mon Apr 10 13:29:36 2017 +0200
+
+version 0.84.1
+
+commit 89d69161e4a022fc235570b630e4398b4fe28a66
+Author: Marius Tomaschewski 
+Date:   Mon Apr 10 13:26:43 2017 +0200
+
+version 0.84.1
+
+updated sysconfig.changes file
+
+commit 33ba5fb078c95d10e4fb5c105954742db820ff16
+Author: Marius Tomaschewski 
+Date:   Mon Apr 10 13:25:41 2017 +0200
+
+spec: minor cleanup
+
+commit fbe7f89411c214d7215f13a72e53d0fd9b88bb97
+Author: Marius Tomaschewski 
+Date:   Mon Apr 10 13:13:18 2017 +0200
+
+spec: remove requires for not needed insserv (bsc#999850)
+
+commit 307fb54dca59423f56b3f68f3113173de9292b0e
+Merge: 54c4cde e962089
+Author: Marius Tomaschewski 
+Date:   Mon Apr 10 13:08:32 2017 +0200
+
+Merge pull request #15 from mtomaschewski/boo-1010760
+
+ntp-runtime: cleanup tmp files (boo#1010760)
+
+commit e962089c8f63ce09a3254e72b118af28f0c547fb (mt-hub/boo-1010760, 
boo-1010760)
+Author: Marius Tomaschewski 
+Date:   Thu Nov 24 14:29:17 2016 +0100
+
+ntp-runtime: cleanup tmp files (boo#1010760)
+
+When /var/run/ntp/servers-netconfig has been modified externaly,
+don't try to backup or keep tmp files to show what we would do.
+
+commit 5612ae93f1337279cd0585ad1cf3b96fdcf302aa (mt-hub/bsc-1009801, 
bsc-1009801)
+Author: Roberto Sassu 
+Date:   Mon Dec 5 11:55:00 2016 +0200
+
+netconfig: improve input check for duplicate keys (bsc#1009801)
+
+commit 3e8950d6eddaa785b64439c3ac09628be0ba7a0c (tag: version-0.84.0)
 Author: Marius Tomaschewski 
 Date:   Fri Sep 9 19:25:54 2016 +0200
 
@@ -15,7 +65,7 @@
 It permits to preform multiple modify/remove operations
 and call the effective update at t

commit glibc for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package glibc for openSUSE:Factory checked 
in at 2017-04-25 08:53:44

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


Package is "glibc"

Tue Apr 25 08:53:44 2017 rev:209 rq:483846 version:2.25

Changes:

--- /work/SRC/openSUSE:Factory/glibc/glibc-testsuite.changes2017-03-09 
01:26:20.170110580 +0100
+++ /work/SRC/openSUSE:Factory/.glibc.new/glibc-testsuite.changes   
2017-04-25 08:53:59.510691967 +0200
@@ -1,0 +2,9 @@
+Wed Mar 29 13:09:49 UTC 2017 - sch...@suse.de
+
+- i686-memchr-sse.patch: Fix i686 memchr overflow calculation
+  (bsc#1031021, BZ #21182)
+- sunrpc-use-after-free.patch: Avoid use-after-free read access in
+  clntudp_call (BZ #21115)
+- Build testsuite with gdb and python-pexpect to enable more tests
+
+---
glibc-utils.changes: same change
glibc.changes: same change

New:

  i686-memchr-sse.patch
  sunrpc-use-after-free.patch



Other differences:
--
++ glibc-testsuite.spec ++
--- /var/tmp/diff_new_pack.Y4QbWV/_old  2017-04-25 08:54:05.973778062 +0200
+++ /var/tmp/diff_new_pack.Y4QbWV/_new  2017-04-25 08:54:05.97497 +0200
@@ -47,8 +47,10 @@
 BuildRequires:  xz
 %if %{testsuite_build}
 BuildRequires:  gcc-c++
+BuildRequires:  gdb
 BuildRequires:  glibc-devel-static
 BuildRequires:  libstdc++-devel
+BuildRequires:  python-pexpect
 %endif
 %if %{utils_build}
 BuildRequires:  gd-devel
@@ -251,6 +253,10 @@
 ###
 # PATCH-FIX-UPSTREAM Fix getting tunable values on big-endian (BZ #21109)
 Patch1000:  tunables-bigendian.patch
+# PATCH-FIX-UPSTREAM Fix i686 memchr overflow calculation (BZ #21182)
+Patch1001:  i686-memchr-sse.patch
+# PATCH-FIX-UPSTREAM Avoid use-after-free read access in clntudp_call (BZ 
#21115)
+Patch1002:  sunrpc-use-after-free.patch
 
 ### 
 # Patches awaiting upstream approval
@@ -472,6 +478,8 @@
 %patch306 -p1
 
 %patch1000 -p1
+%patch1001 -p1
+%patch1002 -p1
 
 %patch2000 -p1
 %patch2001 -p1

glibc-utils.spec: same change
glibc.spec: same change


++ i686-memchr-sse.patch ++
2017-03-29  Adhemerval Zanella  

[BZ# 21182]
* string/test-memchr.c (do_test): Add BZ#21182 checks for address
near end of a page.
* sysdeps/i386/i686/multiarch/memchr-sse2.S (__memchr): Fix
overflow calculation.

Index: glibc-2.25/string/test-memchr.c
===
--- glibc-2.25.orig/string/test-memchr.c
+++ glibc-2.25/string/test-memchr.c
@@ -208,6 +208,12 @@ test_main (void)
   do_test (0, i, i + 1, i + 1, 0);
 }
 
+  /* BZ#21182 - wrong overflow calculation for i686 implementation
+ with address near end of the page.  */
+  for (i = 2; i < 16; ++i)
+/* page_size is in fact getpagesize() * 2.  */
+do_test (page_size / 2 - i, i, i, 1, 0x9B);
+
   do_random_tests ();
   return ret;
 }
Index: glibc-2.25/sysdeps/i386/i686/multiarch/memchr-sse2.S
===
--- glibc-2.25.orig/sysdeps/i386/i686/multiarch/memchr-sse2.S
+++ glibc-2.25/sysdeps/i386/i686/multiarch/memchr-sse2.S
@@ -117,7 +117,6 @@ L(crosscache):
 
 # ifndef USE_AS_RAWMEMCHR
jnz L(match_case2_prolog1)
-   lea -16(%edx), %edx
 /* Calculate the last acceptable address and check for possible
addition overflow by using satured math:
edx = ecx + edx
@@ -125,6 +124,7 @@ L(crosscache):
add %ecx, %edx
sbb %eax, %eax
or  %eax, %edx
+   sub $16, %edx
jbe L(return_null)
lea 16(%edi), %edi
 # else
++ sunrpc-use-after-free.patch ++
2017-02-27  Florian Weimer  

[BZ #21115]
* sunrpc/clnt_udp.c (clntudp_call): Free ancillary data later.
* sunrpc/Makefile (tests): Add tst-udp-error.
(tst-udp-error): Link against libc.so explicitly.
* sunrpc/tst-udp-error: New file.

Index: glibc-2.25/sunrpc/Makefile
===
--- glibc-2.25.orig/sunrpc/Makefile
+++ glibc-2.25/sunrpc/Makefile
@@ -93,7 +93,7 @@ rpcgen-objs = rpc_main.o rpc_hout.o rpc_
 extra-objs = $(rpcgen-objs) $(addprefix cross-,$(rpcgen-objs))
 others += rpcgen
 
-tests = tst-xdrmem tst-xdrmem2 test-rpcent
+tests = tst-xdrmem tst-xdrmem2 test-rpcent tst-udp-error
 xtests := tst-getmyaddr
 
 ifeq ($(have-thread-library),yes)
@@ -155,6 +155,7 @@ BUILD_CPPFLAGS += $(sunrpc-CPPFLAGS)
 $(objpfx)tst-getmyaddr: $(common-objpfx)linkobj/libc.so
 $(objpfx)tst-xdrmem: $(common-objpfx)linkobj/libc.so
 $(objpfx)tst-xdrmem2: $(common-objpfx)linkobj/libc.so
+$(objpfx)tst-udp-error: 

commit bc for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package bc for openSUSE:Factory checked in 
at 2017-04-25 08:54:44

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


Package is "bc"

Tue Apr 25 08:54:44 2017 rev:23 rq:486972 version:1.07.1

Changes:

--- /work/SRC/openSUSE:Factory/bc/bc.changes2015-03-23 12:11:39.0 
+0100
+++ /work/SRC/openSUSE:Factory/.bc.new/bc.changes   2017-04-25 
08:54:45.248224529 +0200
@@ -1,0 +2,26 @@
+Mon Apr 10 07:39:45 UTC 2017 - mplus...@suse.com
+
+- Update to version 1.07.1:
+  * Fixed ibase extension causing problems for read()
+  * Fixed parallel make problem.
+  * Fixed dc "Q" comanmd bug.
+- Changes for version 1.07:
+  * Added void functions.
+  * fixes bug in load_code introduced by mathlib string storage in 1.06.
+  * fix to get long options working.
+  * signal code clean-up.
+  * fixed a bug in the AVL tree routines.
+  * fixed math library to work properly when called with ibase not 10.
+  * fixed a symbol table bug when using more than 32 names.
+  * removed a double free.
+  * Added base 17 to 36 for ibase.
+  * Fixed some memory leaks.
+  * Various small tweaks and doc bug fixes.
+- Drop no longer needed patches:
+  * bc-1.06.95-memleak.patch
+  * bc-1.06.95-matlib.patch
+  * bc-1.06.95-sigintmasking.patch
+- Refresh bc-1.06-dc_ibase.patch 
+- Add gpg signature
+
+---

Old:

  bc-1.06.95-matlib.patch
  bc-1.06.95-memleak.patch
  bc-1.06.95-sigintmasking.patch
  bc-1.06.95.tar.bz2

New:

  bc-1.07.1.tar.gz
  bc-1.07.1.tar.gz.sig
  bc.keyring



Other differences:
--
++ bc.spec ++
--- /var/tmp/diff_new_pack.nW5nlj/_old  2017-04-25 08:54:46.048111423 +0200
+++ /var/tmp/diff_new_pack.nW5nlj/_new  2017-04-25 08:54:46.052110857 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bc
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,17 +17,16 @@
 
 
 Name:   bc
-Version:1.06.95
+Version:1.07.1
 Release:0
 Summary:GNU Command Line Calculator
 License:GPL-2.0+
 Group:  Productivity/Scientific/Math
-Url:http://www.gnu.org/software/bc/
-Source0:ftp://alpha.gnu.org/pub/gnu/bc/bc-%{version}.tar.bz2
+Url:https://www.gnu.org/software/bc/
+Source0:https://ftp.gnu.org/gnu/bc/bc-%{version}.tar.gz
+Source1:https://ftp.gnu.org/gnu/bc/bc-%{version}.tar.gz.sig
+Source2:%{name}.keyring
 Patch1: bc-1.06-dc_ibase.patch
-Patch2: bc-1.06.95-memleak.patch
-Patch3: bc-1.06.95-matlib.patch
-Patch4: bc-1.06.95-sigintmasking.patch
 BuildRequires:  bison
 BuildRequires:  ed
 BuildRequires:  flex
@@ -36,7 +35,6 @@
 BuildRequires:  readline-devel
 Requires(post): %{install_info_prereq}
 Requires(preun): %{install_info_prereq}
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 bc is an interpreter that supports numbers of arbitrary precision and
@@ -58,10 +56,7 @@
 
 %prep
 %setup -q
-%patch1 -p1 -b .dc_ibase
-%patch2 -p1 -b .memleak
-%patch3 -p1 -b .matlib
-%patch4 -p1 -b .sigintmask
+%patch1
 
 %build
 %configure \
@@ -70,22 +65,24 @@
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install %{?_smp_mflags}
+%make_install
 
 %post
-%install_info --info-dir=%{_infodir} %{_infodir}/bc.info.gz
-%install_info --info-dir=%{_infodir} %{_infodir}/dc.info.gz
+%install_info --info-dir=%{_infodir} %{_infodir}/bc.info%{ext_info}
+%install_info --info-dir=%{_infodir} %{_infodir}/dc.info%{ext_info}
 
 %preun
-%install_info_delete --info-dir=%{_infodir} %{_infodir}/bc.info.gz
-%install_info_delete --info-dir=%{_infodir} %{_infodir}/dc.info.gz
+%install_info_delete --info-dir=%{_infodir} %{_infodir}/bc.info%{ext_info}
+%install_info_delete --info-dir=%{_infodir} %{_infodir}/dc.info%{ext_info}
 
 %files
 %defattr(-,root,root)
 %doc AUTHORS COPYING ChangeLog NEWS README COPYING.LIB FAQ
 %{_bindir}/bc
 %{_bindir}/dc
-%{_infodir}/*.info*
-%{_mandir}/man1/*
+%{_infodir}/bc.info%{ext_info}
+%{_infodir}/dc.info%{ext_info}
+%{_mandir}/man1/bc.1%{ext_man}
+%{_mandir}/man1/dc.1%{ext_man}
 
 %changelog

++ bc-1.06-dc_ibase.patch ++
--- /var/tmp/diff_new_pack.nW5nlj/_old  2017-04-25 08:54:46.076107464 +0200
+++ /var/tmp/diff_new_pack.nW5nlj/_new  2017-04-25 08:54:46.076107464 +0200
@@ -1,6 +1,8 @@
 bc-1.06/dc/numeric.c.dc_ibase  2007-08-22 08:37:57.0 +0200
-+++ bc-1.06/dc/numeric.c   2007-08-22 08:37:40.0 +020

commit lzo for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package lzo for openSUSE:Factory checked in 
at 2017-04-25 08:54:13

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


Package is "lzo"

Tue Apr 25 08:54:13 2017 rev:33 rq:484792 version:2.10

Changes:

--- /work/SRC/openSUSE:Factory/lzo/lzo.changes  2015-03-01 14:52:02.0 
+0100
+++ /work/SRC/openSUSE:Factory/.lzo.new/lzo.changes 2017-04-25 
08:54:16.816244900 +0200
@@ -1,0 +2,9 @@
+Thu Mar 30 00:00:00 CEST 2017 - dste...@suse.cz
+
+- Update to 2.10
+  * Improve CMake build support.
+  * Add support for pkg-config.
+  * Do not redefine "snprintf" so that the examples build with MSVC 2015.
+  * Assorted cleanups.
+
+---

Old:

  lzo-2.09.tar.gz

New:

  lzo-2.10.tar.gz



Other differences:
--
++ lzo.spec ++
--- /var/tmp/diff_new_pack.KXyrrI/_old  2017-04-25 08:54:18.655984754 +0200
+++ /var/tmp/diff_new_pack.KXyrrI/_new  2017-04-25 08:54:18.659984189 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lzo
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   lzo
-Version:2.09
+Version:2.10
 Release:0
 Summary:A Real-Time Data Compression Library
 License:GPL-2.0+
@@ -130,6 +130,7 @@
 %doc doc/* util/*
 %{_libdir}/liblzo2.so
 %{_includedir}/lzo
+%{_libdir}/pkgconfig/lzo2.pc
 
 %files devel-static
 %defattr (-,root,root)

++ lzo-2.09.tar.gz -> lzo-2.10.tar.gz ++
 6441 lines of diff (skipped)




commit binutils for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package binutils for openSUSE:Factory 
checked in at 2017-04-25 08:54:20

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


Package is "binutils"

Tue Apr 25 08:54:20 2017 rev:117 rq:485830 version:2.28

Changes:

--- /work/SRC/openSUSE:Factory/binutils/binutils.changes2017-03-21 
22:46:02.996464147 +0100
+++ /work/SRC/openSUSE:Factory/.binutils.new/binutils.changes   2017-04-25 
08:54:22.239478036 +0200
@@ -1,0 +2,21 @@
+Wed Apr  5 11:55:17 UTC 2017 - afaer...@suse.de
+
+- Add riscv64 target, tested with gcc7 and downstream newlib 2.4.0
+* Prepare riscv32 target (gh#riscv/riscv-newlib#8)
+
+---
+Fri Mar 31 10:30:08 UTC 2017 - rguent...@suse.com
+
+- Update binutils-2.28-branch.diff.
+- Make compressed debug section handling explicit, disable for
+  old products and enable for gas on all architectures otherwise.
+- Add binutils-bso21333.diff.  [boo#1029995]
+
+---
+Thu Mar 30 11:16:18 UTC 2017 - rguent...@suse.com
+
+- Remove empty rpath component removal optimization from
+  binutils-skip-rpaths.patch to workaround CMake rpath handling.
+  [boo#1025282]
+
+---
cross-aarch64-binutils.changes: same change
cross-arm-binutils.changes: same change
cross-avr-binutils.changes: same change
cross-epiphany-binutils.changes: same change
cross-hppa-binutils.changes: same change
cross-hppa64-binutils.changes: same change
cross-i386-binutils.changes: same change
cross-ia64-binutils.changes: same change
cross-m68k-binutils.changes: same change
cross-mips-binutils.changes: same change
cross-ppc-binutils.changes: same change
cross-ppc64-binutils.changes: same change
cross-ppc64le-binutils.changes: same change
New Changes file:

--- /dev/null   2017-03-01 00:40:19.279048016 +0100
+++ /work/SRC/openSUSE:Factory/.binutils.new/cross-riscv64-binutils.changes 
2017-04-25 08:54:23.447307245 +0200
@@ -0,0 +1,3043 @@
+---
+Wed Apr  5 11:55:17 UTC 2017 - afaer...@suse.de
+
+- Add riscv64 target, tested with gcc7 and downstream newlib 2.4.0
+* Prepare riscv32 target (gh#riscv/riscv-newlib#8)
+
+---
+Fri Mar 31 10:30:08 UTC 2017 - rguent...@suse.com
+
+- Update binutils-2.28-branch.diff.
+- Make compressed debug section handling explicit, disable for
+  old products and enable for gas on all architectures otherwise.
+- Add binutils-bso21333.diff.  [boo#1029995]
+
+---
+Thu Mar 30 11:16:18 UTC 2017 - rguent...@suse.com
+
+- Remove empty rpath component removal optimization from
+  binutils-skip-rpaths.patch to workaround CMake rpath handling.
+  [boo#1025282]
+
+---
+Fri Mar 17 15:28:26 UTC 2017 - m...@suse.com
+
+- Add fix-security-bugs.diff to fix bnc#1029907, bnc#1029908,
+  bnc#1029909 and more.  Upstream bugs fixed: 
+  PR 21135, PR 21137, PR 21139, PR 21147, PR 21148, PR 21149,
+  PR 21150, PR 21151, PR 21155, PR 21156, PR 21157, PR 21158,
+  PR 21159
+
+---
+Wed Mar  8 11:25:04 UTC 2017 - rguent...@suse.com
+
+- Update to binutils 2.28.
+  * Add support for locating separate debug info files using the build-id
+method, where the separate file has a name based upon the build-id of
+the original file.
+  * This version of binutils fixes a problem with PowerPC VLE 16A and 16D
+relocations which were functionally swapped, for example,
+R_PPC_VLE_HA16A performed like R_PPC_VLE_HA16D while R_PPC_VLE_HA16D
+performed like R_PPC_VLE_HA16A.  This could have been fixed by
+renumbering relocations, which would keep object files created by an
+older version of gas compatible with a newer ld.  However, that would
+require an ABI update, affecting other assemblers and linkers that
+create and process the relocations correctly.  It is recommended that
+all VLE object files be recompiled, but ld can modify the relocations
+if --vle-reloc-fixup is passed to ld.  If the new ld command line
+option is not used, ld will ld warn on finding relocations inconsistent
+with the instructions being relocated.
+  * The nm program has a new command line option (--with-version-strings)
+which will display a symbol's version information, if any, after the
+symbol's name.
+  * The ARC port of objdump now accepts a -M option to specify the extra
+instruction class(es) that should be disassembled.
+  * The --remove-section 

commit mednafen for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package mednafen for openSUSE:Factory 
checked in at 2017-04-24 09:50:37

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


Package is "mednafen"

Mon Apr 24 09:50:37 2017 rev:2 rq:489967 version:0.9.44.1

Changes:

--- /work/SRC/openSUSE:Factory/mednafen/mednafen.changes2017-03-29 
13:24:55.697424428 +0200
+++ /work/SRC/openSUSE:Factory/.mednafen.new/mednafen.changes   2017-04-24 
09:50:39.192093287 +0200
@@ -1,0 +2,12 @@
+Sat Apr 22 21:25:34 UTC 2017 - 13i...@gmail.com
+
+- update to mednafen 0.9.44.1
+  * ChangeLog https://mednafen.github.io/documentation/ChangeLog.txt
+
+---
+Sat Apr 22 00:07:34 UTC 2017 - 13i...@gmail.com
+
+- update to mednafen 0.9.44
+  * ChangeLog https://mednafen.github.io/documentation/ChangeLog.txt
+
+---
@@ -5,2 +17 @@
-  * changelog:
-* https://mednafen.github.io/documentation/ChangeLog.txt
+  * ChangeLog https://mednafen.github.io/documentation/ChangeLog.txt
@@ -17,2 +28 @@
-  * changelog:
-* https://mednafen.github.io/documentation/ChangeLog.txt
+  * ChangeLog https://mednafen.github.io/documentation/ChangeLog.txt
@@ -24,2 +34 @@
-  * changelog:
-* https://mednafen.github.io/documentation/ChangeLog.txt
+  * ChangeLog https://mednafen.github.io/documentation/ChangeLog.txt

Old:

  mednafen-0.9.43.tar.xz

New:

  mednafen-0.9.44.1.tar.xz



Other differences:
--
++ mednafen.spec ++
--- /var/tmp/diff_new_pack.GkY60g/_old  2017-04-24 09:50:40.271940560 +0200
+++ /var/tmp/diff_new_pack.GkY60g/_new  2017-04-24 09:50:40.275939995 +0200
@@ -17,7 +17,7 @@
 Name: mednafen
 License:  GPL-2.0+
 Group:System/Emulators/Other
-Version:  0.9.43
+Version:  0.9.44.1
 Release:  0
 Summary:  Multiple video game console emulator
 Source:   
https://mednafen.github.io/releases/files/%{name}-%{version}.tar.xz

++ mednafen-0.9.43.tar.xz -> mednafen-0.9.44.1.tar.xz ++
 16989 lines of diff (skipped)




commit R-base for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package R-base for openSUSE:Factory checked 
in at 2017-04-24 09:50:18

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


Package is "R-base"

Mon Apr 24 09:50:18 2017 rev:53 rq:489881 version:unknown

Changes:

--- /work/SRC/openSUSE:Factory/R-base/R-base.changes2017-04-20 
20:58:46.633552828 +0200
+++ /work/SRC/openSUSE:Factory/.R-base.new/R-base.changes   2017-04-24 
09:50:22.442462250 +0200
@@ -1,0 +2,555 @@
+Fri Apr 21 17:11:31 UTC 2017 - detlef.ste...@gmx.de
+
+- upstream update to 3.4.0
+
+  CHANGES IN R 3.4.0:
+
+  SIGNIFICANT USER-VISIBLE CHANGES:
+
+   * (Unix-alike) The default methods for download.file() and url()
+ now choose "libcurl" except for file:// URLs.  There will be
+ small changes in the format and wording of messages, including in
+ rare cases if an issue is a warning or an error.  For example,
+ when HTTP re-direction occurs, some messages refer to the final
+ URL rather than the specified one.
+
+ Those who use proxies should check that their settings are
+ compatible (see ?download.file: the most commonly used forms work
+ for both "internal" and "libcurl").
+
+   * table() has been amended to be more internally consistent and
+ become back compatible to R <= 2.7.2 again.  Consequently,
+ table(1:2, exclude = NULL) no longer contains a zero count for
+ , but useNA = "always" continues to do so.
+
+   * summary.default() no longer rounds, but its print method does
+ resulting in less extraneous rounding, notably of numbers in the
+ ten thousands.
+
+   * factor(x, exclude = L) behaves more rationally when x or L are
+ character vectors.  Further, exclude =  now behaves as
+ documented for long.
+
+   * Arithmetic, logic (&, |) and comparison (aka 'relational', e.g.,
+ <, ==) operations with arrays now behave consistently, notably
+ for arrays of length zero.
+
+ Arithmetic between length-1 arrays and longer non-arrays had
+ silently dropped the array attributes and recycled.  This now
+ gives a warning and will signal an error in the future, as it has
+ always for logic and comparison operations in these cases (e.g.,
+ compare matrix(1,1) + 2:3 and matrix(1,1) < 2:3).
+
+   * The JIT ('Just In Time') byte-code compiler is now enabled by
+ default at its level 3. This means functions will be compiled on
+ first or second use and top-level loops will be compiled and then
+ run.  (Thanks to Tomas Kalibera for extensive work to make this
+ possible.)
+
+ For now, the compiler will not compile code containing explicit
+ calls to browser(): this is to support single stepping from the
+ browser() call.
+
+ JIT compilation can be disabled for the rest of the session using
+ compiler::enableJIT(0) or by setting environment variable
+ R_ENABLE_JIT to 0.
+
+   * xtabs() works more consistently with NAs, also in its result no
+ longer setting them to 0.  Further, a new logical option addNA
+ allows to count NAs where appropriate.  Additionally, for the
+ case sparse = TRUE, the result's dimnames are identical to the
+ default case's.
+
+   * Matrix products now consistently bypass BLAS when the inputs have
+ NaN/Inf values. Performance of the check of inputs has been
+ improved. Performance when BLAS is used is improved for
+ matrix/vector and vector/matrix multiplication (DGEMV is now used
+ instead of DGEMM).
+
+ One can now choose from alternative matrix product
+ implementations _via_ options(matprod = ).  The "internal"
+ implementation is not optimized for speed but consistent in
+ precision with other summations in R (using long double
+ accumulators where available).  "blas" calls BLAS directly for
+ best speed, but usually with undefined behavior for inputs with
+ NaN/Inf.
+
+   * factor() now uses order() to sort its levels, not sort.list().
+ This makes factor() support custom vector-like objects if methods
+ for the appropriate generics are defined. This change has the
+ side effect of making factor() succeed on empty or length-one
+ non-atomic vector(-like) types (e.g., list), where it failed
+ before.
+
+ NEW FEATURES:
+
+   * User errors such as integrate(f, 0:1, 2) are now caught.
+
+   * Add signature argument to debug(), debugonce(), undebug() and
+ isdebugged() for more conveniently debugging S3 and S4 methods.
+ (Based on a patch by Gabe Becker.)
+
+   * Add utils::debugcall() and utils::undebugcall() for debugging the
+ function that would be called by evaluating the given expression.
+ When the call is to an S4 generic or standard S3 generic,
+ debugcall() debugs the method that wou

commit calibre for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package calibre for openSUSE:Factory checked 
in at 2017-04-24 09:50:41

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


Package is "calibre"

Mon Apr 24 09:50:41 2017 rev:167 rq:490025 version:2.83.0

Changes:

--- /work/SRC/openSUSE:Factory/calibre/calibre.changes  2017-03-18 
20:51:11.352449878 +0100
+++ /work/SRC/openSUSE:Factory/.calibre.new/calibre.changes 2017-04-24 
09:50:44.931281573 +0200
@@ -1,0 +2,31 @@
+Sun Apr 23 13:29:18 UTC 2017 - ec...@opensuse.org
+
+- update to 2.83.0
+  New Features
+  - PDF Output: Default to generating PDFs with a page size of 
+letter instead of taking the page size from the output profile.
+  - PDF/DOCX Output: Add separate, pdf/docx specific, page margin 
+settings that override the common settings.
+  - Table of Contents tool: Add an undo button
+  - Metadata jacket: Show custom rating columns using stars
+  - Metadata jacket: Change formatting of series to match that used 
+by the book details panel. Also allow access to the raw series 
+name and number when customizing the jacket template.
+  - calibredb check_library: Vacuum database when running the check
+  - Check Book: Add a check for empty identifier elements
+  Bug Fixes
+  - Edit book/Book polishing: When adding a cover to an EPUB 3.0 
+file set the svg property if a SVG cover wrapper is used
+  - Refresh the book list when a User Category is added/edited.
+  - EPUB metadata: Fix deleting ISBN from EPUB file could result in
+an EPUB file without a package identifier if the ISBN was used 
+as the package identifier.
+  - Amazon metadata download: Fix title and author names being bold
+in the downloaded comments when using bing to get amazon 
+metadata.
+  - PDF Output: Fix a regression that broke PDF Output for 
+documents containing mathematics.
+  - E-book viewer: Fix a regression that broke the "Clear recently
+read books" action in the viewer
+
+---

Old:

  calibre-2.82.0.tar.xz

New:

  calibre-2.83.0.tar.xz



Other differences:
--
++ calibre.spec ++
--- /var/tmp/diff_new_pack.k9mq6k/_old  2017-04-24 09:50:46.219099433 +0200
+++ /var/tmp/diff_new_pack.k9mq6k/_new  2017-04-24 09:50:46.223098867 +0200
@@ -20,7 +20,7 @@
 License:GPL-3.0
 Group:  Productivity/Other
 Name:   calibre
-Version:2.82.0
+Version:2.83.0
 Release:0
 Url:http://calibre-ebook.com
 Source0:
http://download.calibre-ebook.com/%{version}/calibre-%{version}.tar.xz

++ calibre-2.82.0.tar.xz -> calibre-2.83.0.tar.xz ++
/work/SRC/openSUSE:Factory/calibre/calibre-2.82.0.tar.xz 
/work/SRC/openSUSE:Factory/.calibre.new/calibre-2.83.0.tar.xz differ: char 26, 
line 1




commit bitlbee-facebook for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package bitlbee-facebook for 
openSUSE:Factory checked in at 2017-04-24 09:50:28

Comparing /work/SRC/openSUSE:Factory/bitlbee-facebook (Old)
 and  /work/SRC/openSUSE:Factory/.bitlbee-facebook.new (New)


Package is "bitlbee-facebook"

Mon Apr 24 09:50:28 2017 rev:2 rq:489935 version:1.1.1

Changes:

--- /work/SRC/openSUSE:Factory/bitlbee-facebook/bitlbee-facebook.changes
2016-09-16 11:00:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.bitlbee-facebook.new/bitlbee-facebook.changes   
2017-04-24 09:50:28.941543060 +0200
@@ -1,0 +2,45 @@
+Thu Apr 20 09:56:55 UTC 2017 - tampak...@opensuse.org
+
+- Version bump 1.1.1
+  Fixes one last issue to the server side changes from last week.
+  - Send orca-formatted user agent for all HTTP requests too. Fixes "Failed
+to parse thread information" errors when joining channels.
+  This is in addition to the connection error fixes mentioned in the previous
+  release. Quoting from the previous release: "Fix connection errors after
+  facebook discontinued support for old versions of facebook messenger for
+  android. While most of the protocol implementation was already above that
+  version, there was a subtle change that broke fetching of sync_sequence_id,
+  and the previously empty MQTT user agent string is now considered an old
+  version too (#138)"
+  I waited a few days before releasing this to ensure things calm down,
+  hopefully it continues like this.
+- Version 1.1.0
+  Long overdue release, with a year worth of changes. This is now the minimum
+  required version.
+  - Fix connection errors after facebook discontinued support for old versions
+of facebook messenger for android. While most of the protocol
+implementation was already above that version, there was a subtle change
+that broke fetching of sync_sequence_id, and the previously empty MQTT user
+agent string is now considered an old version too (#138)
+  - Fix receiving topic/groupchat membership events (#119)
+  - Fix creating channels, inviting, kicking members (#120)
+  - Fix setting channel topics (#121)
+  - Fix contacts pagination for accounts with more than 500 friends (#74)
+  - Fix chats with only two members including self, like the Marketplace ones
+  - Fix crash on some kinds of SSL connection failure (#82)
+  - Fix crash when glib is compiled with G_ENABLE_DEBUG
+  - Deduplicate echoes of sent messages (#76)
+  - Set a non-empty HTTP user agent for api/graphql queries, since the empty
+user agent often gets flagged for suspicious activity (#108)
+  - Prevent disconnections due to contacts with incomplete profiles (#89)
+  - Prevent disconnections on invalid attachment errors (#73)
+  - Prevent disconnections when trying to join a chat after being kicked (#244)
+  - Use FetchContactsDeltaQuery to incrementally sync contacts. Uses less
+traffic, can be done more often and fixes issues with non-friends (#116)
+  - Parse URL attachments generated by the android share feature (#97)
+  - Add mark_read_reply setting to only mark messages as read on reply (#69)
+  - Add support for the bitlbee 3.5 plugin information API (bitlbee 3.4 is
+still supported by this version, but will be dropped in the next one)
+  - Improve url comparison to avoid showing urls twice on attachments
+
+---

Old:

  bitlbee-facebook-1.0.0.tar.gz

New:

  bitlbee-facebook-1.1.1.tar.gz



Other differences:
--
++ bitlbee-facebook.spec ++
--- /var/tmp/diff_new_pack.OTEGVH/_old  2017-04-24 09:50:29.653442373 +0200
+++ /var/tmp/diff_new_pack.OTEGVH/_new  2017-04-24 09:50:29.657441808 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   bitlbee-facebook
-Version:1.0.0
+Version:1.1.1
 Release:0
 Summary:The Facebook protocol plugin for bitlbee.
 License:GPL-2.0

++ bitlbee-facebook-1.0.0.tar.gz -> bitlbee-facebook-1.1.1.tar.gz ++
 2304 lines of diff (skipped)




commit xsp for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package xsp for openSUSE:Factory checked in 
at 2017-04-24 09:50:24

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


Package is "xsp"

Mon Apr 24 09:50:24 2017 rev:43 rq:489934 version:3.0.11

Changes:

--- /work/SRC/openSUSE:Factory/xsp/xsp.changes  2017-03-24 02:21:13.719680327 
+0100
+++ /work/SRC/openSUSE:Factory/.xsp.new/xsp.changes 2017-04-24 
09:50:27.825700878 +0200
@@ -1,0 +2,5 @@
+Fri Apr 21 12:23:40 UTC 2017 - bwiedem...@suse.com
+
+- use strip-nondeterminism to make build fully reproducible
+
+---



Other differences:
--
++ xsp.spec ++
--- /var/tmp/diff_new_pack.uQw05k/_old  2017-04-24 09:50:28.725573605 +0200
+++ /var/tmp/diff_new_pack.uQw05k/_new  2017-04-24 09:50:28.729573040 +0200
@@ -41,6 +41,9 @@
 BuildRequires:  monodoc-core
 BuildRequires:  pkgconfig
 BuildRequires:  sqlite
+%if 0%{?suse_version} >= 1300
+BuildRequires:  strip-nondeterminism
+%endif
 Requires(post): %insserv_prereq %fillup_prereq
 %define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services
 %define xspConfigsLocation %{_sysconfdir}/xsp/2.0
@@ -83,6 +86,7 @@
 make
 
 %install
+[ -x /usr/bin/strip-nondeterminism ] && strip-nondeterminism 
docs/Mono.FastCGI/Mono.FastCGI.zip docs/Mono.WebServer/Mono.WebServer.zip
 make install DESTDIR=%{buildroot}
 rm -rf %{buildroot}%{_prefix}/lib/xsp/unittests
 mkdir -p %{buildroot}%{_datadir}




commit prun-ohpc for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package prun-ohpc for openSUSE:Factory 
checked in at 2017-04-24 09:50:14

Comparing /work/SRC/openSUSE:Factory/prun-ohpc (Old)
 and  /work/SRC/openSUSE:Factory/.prun-ohpc.new (New)


Package is "prun-ohpc"

Mon Apr 24 09:50:14 2017 rev:2 rq:489840 version:1.0

Changes:

--- /work/SRC/openSUSE:Factory/prun-ohpc/prun-ohpc.changes  2017-03-12 
19:58:46.482119465 +0100
+++ /work/SRC/openSUSE:Factory/.prun-ohpc.new/prun-ohpc.changes 2017-04-24 
09:50:15.455450450 +0200
@@ -1,0 +2,6 @@
+Thu Mar 23 15:38:14 UTC 2017 - jeng...@inai.de
+
+- Replace weird RPM group
+- Replace %__-type macro indirections
+
+---



Other differences:
--
++ prun-ohpc.spec ++
--- /var/tmp/diff_new_pack.2wktFd/_old  2017-04-24 09:50:16.299331097 +0200
+++ /var/tmp/diff_new_pack.2wktFd/_new  2017-04-24 09:50:16.299331097 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package lua-luaposix
+# spec file for package prun-ohpc
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -14,27 +14,27 @@
 
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
-Summary:   Convenience utility for parallel job launch
+
+
 Name:  prun-ohpc
 Version:   1.0
-Release:   1
+Release:0
+Summary:Convenience utility for parallel job launch
 License:   BSD-3-Clause
-Group: Development/ohpc
+Group:  Productivity/Networking
 BuildArch: noarch
-URL:   https://github.com/openhpc/ohpc
+Url:https://github.com/openhpc/ohpc
 Source1:   prun   
 Source2:   LICENSE  
 Patch1:prun-Add-user-config.patch
-
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
-
 prun provides a unified, script-based wrapper for launching parallel jobs
 within a resource manager for a variety of MPI families.
 
 %prep
-%{__cp} %{S:1} %{S:2} .
+cp %{S:1} %{S:2} .
 
 %patch1 -p0
 
@@ -43,11 +43,10 @@
 LOGLEVEL=2
 EOF
 
-
 %build
 
 %install
-%{__mkdir_p} %{buildroot}%{_bindir}
+mkdir -p %{buildroot}%{_bindir}
 install -D -m 0755 prun %{buildroot}%{_bindir}
 install -D -m 0644 prunrc %{buildroot}%{_sysconfdir}/prunrc
 install -D -m 0644 prunrc %{buildroot}%{_sysconfdir}/skel/.prunrc




commit python-pyperclip for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package python-pyperclip for 
openSUSE:Factory checked in at 2017-04-24 09:49:44

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


Package is "python-pyperclip"

Mon Apr 24 09:49:44 2017 rev:2 rq:489812 version:1.5.27

Changes:

--- /work/SRC/openSUSE:Factory/python-pyperclip/python-pyperclip.changes
2017-04-14 13:32:56.451925347 +0200
+++ /work/SRC/openSUSE:Factory/.python-pyperclip.new/python-pyperclip.changes   
2017-04-24 09:49:45.603672513 +0200
@@ -1,0 +2,5 @@
+Sat Mar 11 21:00:33 UTC 2017 - jeng...@inai.de
+
+- Trim redundant words from descriptions.
+
+---



Other differences:
--
++ python-pyperclip.spec ++
--- /var/tmp/diff_new_pack.ZlBgO0/_old  2017-04-24 09:49:46.303573523 +0200
+++ /var/tmp/diff_new_pack.ZlBgO0/_new  2017-04-24 09:49:46.307572958 +0200
@@ -20,7 +20,7 @@
 Name:   python-pyperclip
 Version:1.5.27
 Release:0
-Summary:A cross-platform clipboard module for Python
+Summary:A clipboard module for Python
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:https://github.com/asweigart/pyperclip
@@ -35,7 +35,7 @@
 %python_subpackages
 
 %description
-A cross-platform clipboard module for Python. (only handles plain text for now)
+A clipboard module for Python. It only handles plain text.
 
 %prep
 %setup -q -n pyperclip-%{version}





commit perl-MooseX-Role-Parameterized for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package perl-MooseX-Role-Parameterized for 
openSUSE:Factory checked in at 2017-04-24 09:50:06

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


Package is "perl-MooseX-Role-Parameterized"

Mon Apr 24 09:50:06 2017 rev:13 rq:489835 version:1.10

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-MooseX-Role-Parameterized/perl-MooseX-Role-Parameterized.changes
2016-08-09 22:15:21.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-MooseX-Role-Parameterized.new/perl-MooseX-Role-Parameterized.changes
   2017-04-24 09:50:11.484012146 +0200
@@ -1,0 +2,10 @@
+Fri Apr 21 06:14:17 UTC 2017 - co...@suse.com
+
+- updated to 1.10
+   see /usr/share/doc/packages/perl-MooseX-Role-Parameterized/Changes
+
+  1.10  2017-04-20 17:50:53Z
+ - add MooseX::Role::Parameterised as stub documentation, for
+   discoverability
+
+---

Old:

  MooseX-Role-Parameterized-1.09.tar.gz

New:

  MooseX-Role-Parameterized-1.10.tar.gz



Other differences:
--
++ perl-MooseX-Role-Parameterized.spec ++
--- /var/tmp/diff_new_pack.d0rrGH/_old  2017-04-24 09:50:13.835679541 +0200
+++ /var/tmp/diff_new_pack.d0rrGH/_new  2017-04-24 09:50:13.839678975 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-MooseX-Role-Parameterized
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-MooseX-Role-Parameterized
-Version:1.09
+Version:1.10
 Release:0
 #Upstream: Artistic-1.0 or GPL-1.0+
 %define cpan_name MooseX-Role-Parameterized
@@ -25,7 +25,7 @@
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/MooseX-Role-Parameterized/
-Source0:
http://www.cpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/E/ET/ETHER/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -100,6 +100,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README
+%doc Changes CONTRIBUTING README
+%license LICENSE
 
 %changelog

++ MooseX-Role-Parameterized-1.09.tar.gz -> 
MooseX-Role-Parameterized-1.10.tar.gz ++
 2322 lines of diff (skipped)




commit google-croscore-fonts for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package google-croscore-fonts for 
openSUSE:Factory checked in at 2017-04-24 09:50:22

Comparing /work/SRC/openSUSE:Factory/google-croscore-fonts (Old)
 and  /work/SRC/openSUSE:Factory/.google-croscore-fonts.new (New)


Package is "google-croscore-fonts"

Mon Apr 24 09:50:22 2017 rev:8 rq:489933 version:1.31.0

Changes:

--- 
/work/SRC/openSUSE:Factory/google-croscore-fonts/google-croscore-fonts.changes  
2016-07-14 09:45:59.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.google-croscore-fonts.new/google-croscore-fonts.changes
 2017-04-24 09:50:24.302199220 +0200
@@ -1,0 +2,5 @@
+Sat Apr  8 06:14:14 UTC 2017 - kah0...@gmail.com
+
+- Updated to verison 1.31, which removes Symbol Neau
+
+---

Old:

  croscorefonts-1.23.0.tar.gz

New:

  croscorefonts-1.31.0.tar.bz2



Other differences:
--
++ google-croscore-fonts.spec ++
--- /var/tmp/diff_new_pack.du5ikQ/_old  2017-04-24 09:50:25.074090048 +0200
+++ /var/tmp/diff_new_pack.du5ikQ/_new  2017-04-24 09:50:25.078089483 +0200
@@ -19,13 +19,13 @@
 %define arname  croscorefonts
 
 Name:   google-croscore-fonts
-Version:1.23.0
+Version:1.31.0
 Release:0
 Summary:Croscore fonts 
 License:OFL-1.1
 Group:  System/X11/Fonts
 Url:http://gsdview.appspot.com/chromeos-localmirror/distfiles/
-Source0:%{arname}-%{version}.tar.gz
+Source0:%{arname}-%{version}.tar.bz2
 Source1:LICENSE
 BuildRequires:  fontpackages-devel
 Provides:   locale(bg;el;ru;bg)
@@ -33,7 +33,6 @@
 BuildArch:  noarch
 Requires:   google-arimo-fonts
 Requires:   google-cousine-fonts
-Requires:   google-symbolneu-fonts
 Requires:   google-tinos-fonts
 
 %description
@@ -80,13 +79,6 @@
 looking for width-compatible fonts to address document portability 
 across platforms.
 
-%package -n google-symbolneu-fonts
-%reconfigure_fonts_prereq
-Summary:Monospace Sans Serif Font
-Group:  System/X11/Fonts
-
-%description -n google-symbolneu-fonts
-Symbol Neu is a metrically compatible font to Symbol.
 
 %prep
 %setup -q -n %{arname}-%{version}
@@ -104,7 +96,7 @@
 
 %reconfigure_fonts_scriptlets -n google-tinos-fonts
 
-%reconfigure_fonts_scriptlets -n google-symbolneu-fonts
+
 
 %files
 %defattr(-,root,root)
@@ -123,8 +115,5 @@
 %defattr(-,root,root)
 %{_ttfontsdir}/Tinos*.ttf
 
-%files -n google-symbolneu-fonts
-%defattr(-,root,root)
-%{_ttfontsdir}/SymbolNeu*.ttf
 
 %changelog

++ croscorefonts-1.23.0.tar.gz -> croscorefonts-1.31.0.tar.bz2 ++
Binary files old/croscorefonts-1.23.0/Arimo-Bold.ttf and 
new/croscorefonts-1.31.0/Arimo-Bold.ttf differ
Binary files old/croscorefonts-1.23.0/Arimo-BoldItalic.ttf and 
new/croscorefonts-1.31.0/Arimo-BoldItalic.ttf differ
Binary files old/croscorefonts-1.23.0/Arimo-Italic.ttf and 
new/croscorefonts-1.31.0/Arimo-Italic.ttf differ
Binary files old/croscorefonts-1.23.0/Arimo-Regular.ttf and 
new/croscorefonts-1.31.0/Arimo-Regular.ttf differ
Binary files old/croscorefonts-1.23.0/Cousine-Bold.ttf and 
new/croscorefonts-1.31.0/Cousine-Bold.ttf differ
Binary files old/croscorefonts-1.23.0/Cousine-BoldItalic.ttf and 
new/croscorefonts-1.31.0/Cousine-BoldItalic.ttf differ
Binary files old/croscorefonts-1.23.0/Cousine-Italic.ttf and 
new/croscorefonts-1.31.0/Cousine-Italic.ttf differ
Binary files old/croscorefonts-1.23.0/Cousine-Regular.ttf and 
new/croscorefonts-1.31.0/Cousine-Regular.ttf differ
Binary files old/croscorefonts-1.23.0/SymbolNeu.ttf and 
new/croscorefonts-1.31.0/SymbolNeu.ttf differ
Binary files old/croscorefonts-1.23.0/Tinos-Bold.ttf and 
new/croscorefonts-1.31.0/Tinos-Bold.ttf differ
Binary files old/croscorefonts-1.23.0/Tinos-BoldItalic.ttf and 
new/croscorefonts-1.31.0/Tinos-BoldItalic.ttf differ
Binary files old/croscorefonts-1.23.0/Tinos-Italic.ttf and 
new/croscorefonts-1.31.0/Tinos-Italic.ttf differ
Binary files old/croscorefonts-1.23.0/Tinos-Regular.ttf and 
new/croscorefonts-1.31.0/Tinos-Regular.ttf differ




commit perl-bareword-filehandles for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package perl-bareword-filehandles for 
openSUSE:Factory checked in at 2017-04-24 09:50:01

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


Package is "perl-bareword-filehandles"

Mon Apr 24 09:50:01 2017 rev:4 rq:489832 version:0.005

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-bareword-filehandles/perl-bareword-filehandles.changes
  2016-05-25 21:29:12.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-bareword-filehandles.new/perl-bareword-filehandles.changes
 2017-04-24 09:50:05.028925116 +0200
@@ -1,0 +2,11 @@
+Fri Apr 21 07:09:21 UTC 2017 - co...@suse.com
+
+- updated to 0.005
+   see /usr/share/doc/packages/perl-bareword-filehandles/Changes
+
+  0.005 2017-04-20 16:27:24+01:00 Europe/London
+   - Switch to Dist::Zilla::PluginBundle::Starter
+ and ::Plugin::DymamicPrereqs
+   - Use Devel::PPPort insted of hand-rolled compat macros
+
+---

Old:

  bareword-filehandles-0.004.tar.gz

New:

  bareword-filehandles-0.005.tar.gz



Other differences:
--
++ perl-bareword-filehandles.spec ++
--- /var/tmp/diff_new_pack.iqJ9le/_old  2017-04-24 09:50:05.752822732 +0200
+++ /var/tmp/diff_new_pack.iqJ9le/_new  2017-04-24 09:50:05.752822732 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-bareword-filehandles
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:   perl-bareword-filehandles
-Version:0.004
+Version:0.005
 Release:0
 %define cpan_name bareword-filehandles
 Summary:Disables Bareword Filehandles
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/bareword-filehandles/
-Source0:
http://www.cpan.org/authors/id/I/IL/ILMARI/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/I/IL/ILMARI/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -59,6 +59,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes README
+%license LICENSE
 
 %changelog

++ bareword-filehandles-0.004.tar.gz -> bareword-filehandles-0.005.tar.gz 
++
 5500 lines of diff (skipped)




commit phpMyAdmin for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package phpMyAdmin for openSUSE:Factory 
checked in at 2017-04-24 09:50:30

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


Package is "phpMyAdmin"

Mon Apr 24 09:50:30 2017 rev:136 rq:489944 version:4.7.0

Changes:

--- /work/SRC/openSUSE:Factory/phpMyAdmin/phpMyAdmin.changes2017-04-11 
09:39:58.757018686 +0200
+++ /work/SRC/openSUSE:Factory/.phpMyAdmin.new/phpMyAdmin.changes   
2017-04-24 09:50:37.184377246 +0200
@@ -1,0 +2,9 @@
+Sat Apr 22 16:41:39 UTC 2017 - ch...@computersalat.de
+
+- restore phpMyAdmin-pma.patch
+  * because it is NOT upstream and needed for configuration storage
+- restore previous phpMyAdmin-config.patch
+  * merge with upstream config VAR changes
+- removed $cfg['Servers'][$i]['designer_coords']
+
+---

New:

  phpMyAdmin-pma.patch



Other differences:
--
++ phpMyAdmin.spec ++
--- /var/tmp/diff_new_pack.RRmqZS/_old  2017-04-24 09:50:38.772152681 +0200
+++ /var/tmp/diff_new_pack.RRmqZS/_new  2017-04-24 09:50:38.776152115 +0200
@@ -44,6 +44,8 @@
 Source100:  %{name}-rpmlintrc
 # Fix-SuSE: provide useful default config
 Patch0: %{name}-config.patch
+# Fix-SUSE: auto config for pma storage
+Patch1: %{name}-pma.patch
 BuildRequires:  apache2-devel
 BuildRequires:  python-devel
 BuildRequires:  xz
@@ -113,6 +115,7 @@
 # wrong-file-end-of-line-encoding
 perl -p -i -e 's|\r\n|\n|' examples/config.manyhosts.inc.php
 %patch0
+%patch1
 
 # rpmlint: fix incorrect-fsf-address
 find . -type f | xargs sed -i -e 's:59 Temple Place\, Suite 330\, Boston\, MA  
02111-1307  USA:51 Franklin Street\, Fifth Floor\, Boston\, MA 02110-1301 USA:g'


++ phpMyAdmin-config.patch ++
--- /var/tmp/diff_new_pack.RRmqZS/_old  2017-04-24 09:50:38.816146459 +0200
+++ /var/tmp/diff_new_pack.RRmqZS/_new  2017-04-24 09:50:38.816146459 +0200
@@ -60,16 +60,28 @@
   */
  $i = 0;
  
-@@ -31,38 +74,141 @@ $cfg['Servers'][$i]['auth_type'] = 'cook
- $cfg['Servers'][$i]['host'] = 'localhost';
- $cfg['Servers'][$i]['compress'] = false;
- $cfg['Servers'][$i]['AllowNoPassword'] = false;
+@@ -25,44 +68,153 @@ $i = 0;
+  * First server
+  */
+ $i++;
+-/* Authentication type */
+-$cfg['Servers'][$i]['auth_type'] = 'cookie';
+-/* Server parameters */
+-$cfg['Servers'][$i]['host'] = 'localhost';
+-$cfg['Servers'][$i]['compress'] = false;
+-$cfg['Servers'][$i]['AllowNoPassword'] = false;
++
++$cfg['Servers'][$i]['host'] = 'localhost';
 +$cfg['Servers'][$i]['port'] = '';
 +$cfg['Servers'][$i]['socket']   = '';
 +$cfg['Servers'][$i]['ssl']  = false;
++$cfg['Servers'][$i]['connect_type'] = 'socket';
 +$cfg['Servers'][$i]['extension']= 'mysqli';
++$cfg['Servers'][$i]['compress'] = false;
++$cfg['Servers'][$i]['auth_type']= 'cookie';
 +$cfg['Servers'][$i]['user'] = 'root';
 +$cfg['Servers'][$i]['password'] = '';
++$cfg['Servers'][$i]['AllowNoPassword']  = false;
 +$cfg['Servers'][$i]['AllowRoot']= true;
 +$cfg['Servers'][$i]['SignonSession']= '';
 +$cfg['Servers'][$i]['SignonURL']= '';
@@ -92,12 +104,34 @@
 -// $cfg['Servers'][$i]['controlport'] = '';
 -// $cfg['Servers'][$i]['controluser'] = 'pma';
 -// $cfg['Servers'][$i]['controlpass'] = 'pmapass';
+-
+-/* Storage database and tables */
+-// $cfg['Servers'][$i]['pmadb'] = 'phpmyadmin';
+-// $cfg['Servers'][$i]['bookmarktable'] = 'pma__bookmark';
+-// $cfg['Servers'][$i]['relation'] = 'pma__relation';
+-// $cfg['Servers'][$i]['table_info'] = 'pma__table_info';
+-// $cfg['Servers'][$i]['table_coords'] = 'pma__table_coords';
+-// $cfg['Servers'][$i]['pdf_pages'] = 'pma__pdf_pages';
+-// $cfg['Servers'][$i]['column_info'] = 'pma__column_info';
+-// $cfg['Servers'][$i]['history'] = 'pma__history';
+-// $cfg['Servers'][$i]['table_uiprefs'] = 'pma__table_uiprefs';
+-// $cfg['Servers'][$i]['tracking'] = 'pma__tracking';
+-// $cfg['Servers'][$i]['userconfig'] = 'pma__userconfig';
+-// $cfg['Servers'][$i]['recent'] = 'pma__recent';
+-// $cfg['Servers'][$i]['favorite'] = 'pma__favorite';
+-// $cfg['Servers'][$i]['users'] = 'pma__users';
+-// $cfg['Servers'][$i]['usergroups'] = 'pma__usergroups';
+-// $cfg['Servers'][$i]['navigationhiding'] = 'pma__navigationhiding';
+-// $cfg['Servers'][$i]['savedsearches'] = 'pma__savedsearches';
+-// $cfg['Servers'][$i]['central_columns'] = 'pma__central_columns';
+-// $cfg['Servers'][$i]['designer_settings'] = 'pma__designer_settings';
+-// $cfg['Servers'][$i]['export_templa

commit gdouros-text-fonts for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package gdouros-text-fonts for 
openSUSE:Factory checked in at 2017-04-24 09:49:16

Comparing /work/SRC/openSUSE:Factory/gdouros-text-fonts (Old)
 and  /work/SRC/openSUSE:Factory/.gdouros-text-fonts.new (New)


Package is "gdouros-text-fonts"

Mon Apr 24 09:49:16 2017 rev:2 rq:489734 version:7.17

Changes:

--- /work/SRC/openSUSE:Factory/gdouros-text-fonts/gdouros-text-fonts.changes
2017-04-20 20:46:36.416809517 +0200
+++ 
/work/SRC/openSUSE:Factory/.gdouros-text-fonts.new/gdouros-text-fonts.changes   
2017-04-24 09:49:16.955724328 +0200
@@ -2 +2 @@
-Mon Apr 10 17:58:55 UTC 2017 - aloi...@gmx.com
+Fri Apr 21 06:56:12 UTC 2017 - aloi...@gmx.com
@@ -4 +4 @@
-- Unified textfonts 9.17 package replacing:
+- Unified textfonts 7.17 package replacing:
@@ -9,0 +10,3 @@
+
+- Fixed changelog itself
+



Other differences:
--
++ gdouros-text-fonts.spec ++
+++ empty output from diff against gdouros-text-fonts.spec




commit tmux for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package tmux for openSUSE:Factory checked in 
at 2017-04-24 09:49:19

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


Package is "tmux"

Mon Apr 24 09:49:19 2017 rev:34 rq:489756 version:2.4

Changes:

--- /work/SRC/openSUSE:Factory/tmux/tmux.changes2016-10-02 
00:09:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.tmux.new/tmux.changes   2017-04-24 
09:49:20.787182426 +0200
@@ -1,0 +2,71 @@
+Fri Apr 21 06:12:25 UTC 2017 - a...@cryptomilk.org
+
+- Fix tmux-socket-path.patch to create directories inside of /run/tmux
+
+---
+Thu Apr 20 19:42:50 UTC 2017 - mimi...@gmail.com
+
+- update to 2.4
+- refresh tmux-socket-path.patch
+  + Incompatible Changes
+   * Key tables have undergone major changes. Mode key tables are no longer
+ separate from the main key tables. All mode key tables have been 
removed,
+ together with the -t flag to bind-key and unbind-key.
+ The emacs-edit, vi-edit, emacs-choose and vi-choose tables have been 
replaced
+ by fixed key bindings in the command prompt and choose modes. The 
mode-keys
+ and status-keys options remain.
+ The emacs-copy and vi-copy tables have been replaced by the copy-mode 
and
+ copy-mode-vi tables. Commands are sent using the -X and -N flags to
+ send-keys. So the following:
+   bind -temacs-copy C-Up scroll-up
+   bind -temacs-copy -R5 WheelUpPane scroll-up
+ Becomes:
+   bind -Tcopy-mode C-Up send -X scroll-up
+   bind -Tcopy-mode WheelUpPane send -N5 -X scroll-up
+ This changes allows the full command parser (including command 
sequences) and
+ command set to be used - for example, the normal command prompt with 
editing
+ and history is now used for searching, jumping, and so on instead of 
a custom
+ one. The default C-r binding is now:
+   bind -Tcopy-mode C-r command-prompt -p'search up' "send -X 
search-backward '%%'"
+ There are also some new commmands available with send -X, such as
+ copy-pipe-and-cancel.
+   * set-remain-on-exit has gone -- can be achieved with hooks instead.
+   * Hooks: before hooks have been removed and only a selection of 
commands now
+ have after hooks (they are no longer automatic). Additional hooks 
have been
+ added.
+   * The xterm-keys option now defaults to on.
+ + Normal Changes
+   * Support for mouse double and triple clicks.
+   * BCE (Background Colour Erase) is now supported.
+   * All occurrences of a search string in copy mode are now highlighted;
+ additionally, the number of search results is displayed. The 
highlighting
+ updates interactively with the default emacs key bindings (incremental
+ search).
+   * source-file now understands glob patterns.
+   * Formats now have simple comparisons:
+   #{==:a,b}
+   #{!=:a,b}
+   * There are the following new formats:
+ - #{version} -- the tmux server version;
+ - #{client_termtype} -- the terminal type of the client;
+ - #{client_name} -- the name of a client;
+ - #{client_written} -- the number of bytes written to the client.
+   * The configuration file now accepts %if/%endif conditional blocks 
which are
+ processed when it is parsed; the argument is a format string (useful 
with the
+ new format comparison options).
+   * detach-client now has -E to execute a command replacing the client 
instead of
+ exiting.
+   * Add support for custom command aliases, this is an array option which
+ contains items of the form "alias=command". This is consulted when an
+ unknown command is parsed.
+   * break-pane now has -n to specify the new window name.
+   * OSC 52 support has been added for programs inside tmux to set a tmux 
buffer.
+   * The mouse "all event" mode (1003) is now supported.
+   * Palette setting is now possible (OSC 4 and 104).
+   * Strikethrough support (a recent terminfo is required).
+   * Grouped sessions can now be named (new -t).
+   * terminal-overrides and update-environment are now array options (the 
previous
+ set -ag syntax should work without change).
+   * There have been substantial performance improvements.
+
+---

Old:

  tmux-2.3.tar.gz

New:

  tmux-2.4.tar.gz



Other differences:
--
++ tmux.spec ++
--- /var/tmp/diff_new_pack.GJR4wH/_old  20

commit mrsh for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package mrsh for openSUSE:Factory checked in 
at 2017-04-24 09:49:50

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


Package is "mrsh"

Mon Apr 24 09:49:50 2017 rev:4 rq:489826 version:2.12

Changes:

--- /work/SRC/openSUSE:Factory/mrsh/mrsh.changes2016-12-12 
12:46:47.325460221 +0100
+++ /work/SRC/openSUSE:Factory/.mrsh.new/mrsh.changes   2017-04-24 
09:49:51.378855703 +0200
@@ -1,0 +2,7 @@
+Sat Apr  8 18:51:29 UTC 2017 - toddrme2...@gmail.com
+
+- Have mrsh-rsh-compat provide rsh and mrsh-rsh-server-compat
+  provide rsh-server for backwards-compatibility with packages that
+  depend on rsh or rsh-server.
+
+---



Other differences:
--
++ mrsh.spec ++
--- /var/tmp/diff_new_pack.zcNVoc/_old  2017-04-24 09:49:53.182600592 +0200
+++ /var/tmp/diff_new_pack.zcNVoc/_new  2017-04-24 09:49:53.182600592 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mrsh
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -66,7 +66,8 @@
 Summary:Rsh compatibility package for mrcp/mrlogin/mrsh
 Group:  System/Base
 Requires:   mrsh = %version
-Conflicts:  rsh
+Provides:   rsh
+Conflicts:  otherproviders(rsh)
 
 %description -n %{name}-rsh-compat
 This package provides rsh compatibility for mrcp/mrlogin/mrsh
@@ -75,7 +76,8 @@
 Summary:Rsh server compatibility package for mrlogind/mrshd
 Group:  System/Daemons
 Requires:   mrsh-server = %version
-Conflicts:  rsh-server
+Provides:   rsh-server
+Conflicts:  otherproviders(rsh-server)
 
 %description -n %{name}-rsh-server-compat
 This package provides rsh server compatibility for mrlogind/mrshd




commit python-PyPDF2 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package python-PyPDF2 for openSUSE:Factory 
checked in at 2017-04-24 09:49:40

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


Package is "python-PyPDF2"

Mon Apr 24 09:49:40 2017 rev:4 rq:489795 version:1.26.0

Changes:

--- /work/SRC/openSUSE:Factory/python-PyPDF2/python-PyPDF2.changes  
2015-05-16 19:01:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-PyPDF2.new/python-PyPDF2.changes 
2017-04-24 09:49:42.136162938 +0200
@@ -1,0 +2,57 @@
+Thu Apr 20 04:22:33 UTC 2017 - sfl...@suse.de
+
+- Convert to single spec
+- Update to version 1.26.0
+  * NOTE: Active maintenance on PyPDF2 is resuming after a hiatus
+  * Fixed a bug where image resources where incorrectly overwritten
+when merging pages
+  * Added dictionary for JavaScript actions to the root (louib)
+  * Added unit tests for the JS functionality (louib)
+  * Add more Python 3 compatibility when reading inline images (im2703
+and (VyacheslavHashov)
+  * Return NullObject instead of raising error when failing to resolve
+object (ctate)
+  * Don't output warning for non-zeroed xref table when strict=False
+(BenRussert)
+  * Remove extraneous zeroes from output formatting (speedplane)
+  * Fix bug where reading an inline image would cut off prematurely in
+certain cases (speedplane)
+- Changes for 1.25
+BUGFIXES:
+* Added Python 3 algorithm for ASCII85Decode. Fixes issue when
+  reading reportlab-generated files with Py 3 (jerickbixly)
+* Recognize more escape sequence which would otherwise throw an
+  exception (manuelzs, robertsoakes)
+* Fixed overflow error in generic.py. Occurred
+  when reading a too-large int in Python 2 (by Raja Jamwal)
+* Allow access to files which were encrypted with an empty
+  password. Previously threw a "File has not been decrypted"
+  exception (Elena Williams)
+* Do not attempt to decode an empty data stream. Previously
+  would cause an error in decode algorithms (vladir)
+* Fixed some type issues specific to Py 2 or Py 3
+* Fix issue when stream data begins with whitespace (soloma83)
+* Recognize abbreviated filter names (AlmightyOatmeal and
+  Matthew Weiss)
+* Copy decryption key from PdfFileReader to PdfFileMerger.
+  Allows usage of PdfFileMerger with encrypted files (twolfson)
+* Fixed bug which occurred when a NameObject is present at end
+  of a file stream. Threw a "Stream has ended unexpectedly"
+  exception (speedplane)
+FEATURES:
+* Initial work on a test suite; to be expanded in future.
+  Tests and Resources directory added, README updated (robertsoakes)
+* Added document cloning methods to PdfFileWriter:
+  appendPagesFromReader, cloneReaderDocumentRoot, and
+  cloneDocumentFromReader. See official documentation (robertsoakes)
+* Added method for writing to form fields: updatePageFormFieldValues.
+  This will be enhanced in the future. See official documentation
+  (robertsoakes)
+* New addAttachment method. See documentation. Support for adding
+  and extracting embedded files to be enhanced in the future
+  (moshekaplan)
+* Added methods to get page number of given PageObject or
+  Destination: getPageNumber and getDestinationPageNumber.
+  See documentation (mozbugbox)
+
+---

Old:

  PyPDF2-1.24.tar.gz

New:

  PyPDF2-1.26.0.tar.gz



Other differences:
--
++ python-PyPDF2.spec ++
--- /var/tmp/diff_new_pack.FuoijM/_old  2017-04-24 09:49:43.224009080 +0200
+++ /var/tmp/diff_new_pack.FuoijM/_new  2017-04-24 09:49:43.228008514 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-PyPDF2
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,22 +16,23 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-PyPDF2
-Version:1.24
+Version:1.26.0
 Release:0
 Url:http://mstamy2.github.com/PyPDF2
 Summary:PDF toolkit
 License:BSD-3-Clause
 Group:  Development/Languages/Python
-Source: 
https://pypi.python.org/packages/source/P/PyPDF2/PyPDF2-%{version}.tar.gz
+Source: 
https://pypi.io/packages/source/P/PyPDF2/PyPDF2-%{version}.tar.gz
+BuildRequires:  %{python_module devel}
+BuildRequires:  %{python_module setuptools}
+BuildRequires:  fdupes
+BuildRequires: 

commit perl-Image-ExifTool for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package perl-Image-ExifTool for 
openSUSE:Factory checked in at 2017-04-24 09:49:46

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


Package is "perl-Image-ExifTool"

Mon Apr 24 09:49:46 2017 rev:23 rq:489816 version:10.50

Changes:

--- /work/SRC/openSUSE:Factory/perl-Image-ExifTool/perl-Image-ExifTool.changes  
2017-02-16 17:04:42.238792941 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Image-ExifTool.new/perl-Image-ExifTool.changes 
2017-04-24 09:49:48.435272027 +0200
@@ -1,0 +2,106 @@
+Fri Apr 21 12:10:48 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 10.50 (changes since 10.40):
+  * Add an experimental metadata validation feature (invoked either
+by requesting the new Extra Validate tag or by setting the
+API Validate option).
+  * Add support for the PSDT file extension.
+  * Add age.config to the distribution.
+  * Add a new Sony lens.
+  * Add a new PentaxModelID.
+  * Enhance the -p option to allow files to be grouped in sections.
+  * Made the makernote offset warning minor.
+  * Relaxe parsing of NMEA GGA sentence so comma after the geoid
+units is now optional.
+  * Patch the problem extracting value of an unsafe binary tag with
+the -b option when specified using -TAG# instead of -TAG with -n.
+  * Add an ability to read/write PNG eXIF and zXIF chunks, and make
+these the place where new EXIF is created in PNG images (zXIF
+if the -z option is used, or eXIF otherwise).
+  * Add an ability to copy Photoshop OriginPathInfo with
+photoshop_paths.config.
+  * Make FileUserID and FileGroupID writable.
+  * Change format for the Sony ImageCount tag.
+  * Improvements to the experimental Validate feature.
+  * Fix an incorrect XMP swf namespace URI.
+  * Fix a problem using new -p section feature when combined with
+-w or -ee.
+  * Fix a formatting problem in -listx output when the -lang option
+was used.
+  * Fix a problem where UserComment wasn't removed if found in IFD0
+when writing it to the correct IFD.
+  * Restrict writing of EXIF:FlashEnergy to a single value as per
+EXIF spec.
+  * Revert format change of the Sony ImageCount tag.
+  * Change PNG new eXIF/zXIF chunk names to "exIf" and "zxIf" until
+the proposed chunks are accepted (of course, while maintaining
+backward compatibility for reading/updating the other chunks).
+  * Lower priority of XMP-pdf:Keywords so it doesn't take
+precedence over PDF:Keywords when the Duplicates option is not
+used.
+  * Improve config_files/convert_regions.config to handle the case
+where the RegionInfoMP is missing a Rectangle.
+  * Add a few new CanonModelID values and a new Canon LensType.
+  * Add two new Nikon lenses.
+  * Add a few new Sony/Minolta lenses.
+  * Add two new Sony MeteringMode values.
+  * Improve verbose dump of Photoshop Layer information.
+  * Patch to allow "FileName encoding not specified" warnings to be
+avoided by setting -charset filename="".
+  * Fix a problem in photoshop_paths.config printing some paths.
+  * Add an ability to write a number of macOS system tags (including
+the file creation date!).
+  * Add an ability to extract macOS extended attributes
+("XAttr" tags).
+  * Move macOS System tags from the Extra table into a new macOS
+group and add an ability to extract them by requesting the
+macOS group.
+  * Update QuickTime GenreID list.
+  * Fix the "Invalid xref" problem when reading some PDF files.
+  * Fix an error in Minolta lens list.
+  * Fix a minor problem with the -U option generating Unknown tags
+for some known bytes in variable-sized strings.
+  * Add read support for JSON-format files.
+  * Add two new Sony/Minolta lenses.
+  * Add a number of new Pentax tag values.
+  * Decode a new Canon CR2 tag.
+  * Decode WB information for Canon 800D.
+  * Improve config_files/photoshop_paths.config to indicate start
+ of paths.
+  * Experimental Validate feature no longer warns about Windows XP
+tags.
+  * Fix a problem extracting layer information from very large
+PSD/PSB files.
+  * Add some new FujiFlashMode values.
+  * Add a new Sony LensType.
+  * Add a new Canon LensType.
+  * Add a new CanonModelID and minor changes to some others.
+  * Decode two Pentax tags and add a number of new values for other
+Pentax tags.
+  * Decode a new Sony tag.
+  * Improvements to the experimental Validate feature.
+  * Fix a problem which could cause hang when reading bad PPT
+documents.
+  * Add a "DateFmt" utility function for use in advanced formatting
+expressions.
+  * Add a new Sony/Minolta LensType.
+  * Decode a new Panasonic tag.
+  * Fix a problem decoding Sony VariableLowPassFilter values.
+  * Fix a problem se

commit perl-multidimensional for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package perl-multidimensional for 
openSUSE:Factory checked in at 2017-04-24 09:49:53

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


Package is "perl-multidimensional"

Mon Apr 24 09:49:53 2017 rev:4 rq:489831 version:0.013

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-multidimensional/perl-multidimensional.changes  
2016-05-25 21:29:13.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-multidimensional.new/perl-multidimensional.changes
 2017-04-24 09:49:56.474135056 +0200
@@ -1,0 +2,11 @@
+Fri Apr 21 07:10:37 UTC 2017 - co...@suse.com
+
+- updated to 0.013
+   see /usr/share/doc/packages/perl-multidimensional/Changes
+
+  0.013 2017-04-20 15:05:14+01:00 Europe/London
+   - Switch to Dist::Zilla::PluginBundle::Starter
+ and ::Plugin::DymamicPrereqs
+   - Use Devel::PPPort insted of hand-rolled compat macros
+
+---

Old:

  multidimensional-0.012.tar.gz

New:

  multidimensional-0.013.tar.gz



Other differences:
--
++ perl-multidimensional.spec ++
--- /var/tmp/diff_new_pack.AWz1be/_old  2017-04-24 09:49:58.261882207 +0200
+++ /var/tmp/diff_new_pack.AWz1be/_new  2017-04-24 09:49:58.265881641 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-multidimensional
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
 
 
 Name:   perl-multidimensional
-Version:0.012
+Version:0.013
 Release:0
 %define cpan_name multidimensional
 Summary:Disables Multidimensional Array Emulation
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/multidimensional/
-Source0:
http://www.cpan.org/authors/id/I/IL/ILMARI/%{cpan_name}-%{version}.tar.gz
+Source0:
https://cpan.metacpan.org/authors/id/I/IL/ILMARI/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -63,6 +63,7 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes LICENSE README
+%doc Changes README
+%license LICENSE
 
 %changelog

++ multidimensional-0.012.tar.gz -> multidimensional-0.013.tar.gz ++
 9737 lines of diff (skipped)




commit transactional-update for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package transactional-update for 
openSUSE:Factory checked in at 2017-04-24 09:49:30

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


Package is "transactional-update"

Mon Apr 24 09:49:30 2017 rev:8 rq:489767 version:1.14

Changes:

--- 
/work/SRC/openSUSE:Factory/transactional-update/transactional-update.changes
2017-03-21 22:51:35.429467071 +0100
+++ 
/work/SRC/openSUSE:Factory/.transactional-update.new/transactional-update.changes
   2017-04-24 09:49:31.293696439 +0200
@@ -1,0 +2,6 @@
+Fri Apr 21 11:24:54 CEST 2017 - ku...@suse.de
+
+- Update to version 1.14
+  - Fix check of return values of commands in pipes [bsc#1034900]
+
+---

Old:

  transactional-update-1.12.tar.bz2

New:

  transactional-update-1.14.tar.bz2



Other differences:
--
++ transactional-update.spec ++
--- /var/tmp/diff_new_pack.1NMj3w/_old  2017-04-24 09:49:33.029450943 +0200
+++ /var/tmp/diff_new_pack.1NMj3w/_new  2017-04-24 09:49:33.033450377 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   transactional-update
-Version:1.12
+Version:1.14
 Release:0
 Summary:Transactional Updates with btrfs and snapshots
 License:GPL-2.0+

++ transactional-update-1.12.tar.bz2 -> transactional-update-1.14.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/transactional-update-1.12/NEWS 
new/transactional-update-1.14/NEWS
--- old/transactional-update-1.12/NEWS  2017-03-21 10:26:55.0 +0100
+++ new/transactional-update-1.14/NEWS  2017-04-21 11:24:36.0 +0200
@@ -2,6 +2,12 @@
 
 Copyright (C) 2016, 2017 Thorsten Kukuk
 
+Version 1.14
+* Fix check of return values of commands in pipes
+
+Version 1.13
+* Remove not-working bootloader option
+
 Version 1.12
 * Minor bug fixes
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/transactional-update-1.12/configure 
new/transactional-update-1.14/configure
--- old/transactional-update-1.12/configure 2017-03-21 10:27:02.0 
+0100
+++ new/transactional-update-1.14/configure 2017-04-21 11:24:40.0 
+0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for transactional-update 1.12.
+# Generated by GNU Autoconf 2.69 for transactional-update 1.14.
 #
 #
 # Copyright (C) 1992-1996, 1998-2012 Free Software Foundation, Inc.
@@ -576,8 +576,8 @@
 # Identity of this package.
 PACKAGE_NAME='transactional-update'
 PACKAGE_TARNAME='transactional-update'
-PACKAGE_VERSION='1.12'
-PACKAGE_STRING='transactional-update 1.12'
+PACKAGE_VERSION='1.14'
+PACKAGE_STRING='transactional-update 1.14'
 PACKAGE_BUGREPORT=''
 PACKAGE_URL=''
 
@@ -1211,7 +1211,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 transactional-update 1.12 to adapt to many kinds of 
systems.
+\`configure' configures transactional-update 1.14 to adapt to many kinds of 
systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1278,7 +1278,7 @@
 
 if test -n "$ac_init_help"; then
   case $ac_init_help in
- short | recursive ) echo "Configuration of transactional-update 1.12:";;
+ short | recursive ) echo "Configuration of transactional-update 1.14:";;
esac
   cat <<\_ACEOF
 
@@ -1358,7 +1358,7 @@
 test -n "$ac_init_help" && exit $ac_status
 if $ac_init_version; then
   cat <<\_ACEOF
-transactional-update configure 1.12
+transactional-update configure 1.14
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1375,7 +1375,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by transactional-update $as_me 1.12, which was
+It was created by transactional-update $as_me 1.14, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2238,7 +2238,7 @@
 
 # Define the identity of the package.
  PACKAGE='transactional-update'
- VERSION='1.12'
+ VERSION='1.14'
 
 
 cat >>confdefs.h <<_ACEOF
@@ -3097,7 +3097,7 @@
 # report actual input values of CONFIG_FILES etc. instead of their
 # values after options handling.
 ac_log="
-This file was extended by transactional-update $as_me 1.12, which was
+This file was extended by transactional-update $as_me 1.14, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   CONFIG_FILES= $CONFIG

commit tbb for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package tbb for openSUSE:Factory checked in 
at 2017-04-24 09:48:37

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


Package is "tbb"

Mon Apr 24 09:48:37 2017 rev:6 rq:489245 version:2017_20170226

Changes:

--- /work/SRC/openSUSE:Factory/tbb/tbb.changes  2017-03-12 20:01:07.330189817 
+0100
+++ /work/SRC/openSUSE:Factory/.tbb.new/tbb.changes 2017-04-24 
09:48:42.292626912 +0200
@@ -1,0 +2,5 @@
+Wed Apr 19 08:07:44 UTC 2017 - idon...@suse.com
+
+- Add missing include files boo#1034842
+
+---



Other differences:
--
++ tbb.spec ++
--- /var/tmp/diff_new_pack.Is0BhA/_old  2017-04-24 09:48:43.128508688 +0200
+++ /var/tmp/diff_new_pack.Is0BhA/_new  2017-04-24 09:48:43.132508123 +0200
@@ -107,7 +107,7 @@
 mkdir -p %{buildroot}%{_libdir}
 
 pushd include
-find tbb -type f -name \*.h -exec \
+find tbb -type f -exec \
 install -Dpm 644 {} %{buildroot}%{_includedir}/{} \
 \;
 popd




commit python-stevedore for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package python-stevedore for 
openSUSE:Factory checked in at 2017-04-24 09:49:03

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


Package is "python-stevedore"

Mon Apr 24 09:49:03 2017 rev:26 rq:489584 version:1.20.0

Changes:

--- /work/SRC/openSUSE:Factory/python-stevedore/python-stevedore.changes
2016-10-13 11:32:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-stevedore.new/python-stevedore.changes   
2017-04-24 09:49:04.981417914 +0200
@@ -1,0 +2,16 @@
+Fri Feb 10 14:23:46 UTC 2017 - cloud-de...@suse.de
+
+- update to version 1.20.0:
+  - extension: add entry_point_names method
+  - Add Constraints support
+  - Fix typos in exception.py
+  - Updated from global requirements
+  - extension: expose _find_entry_points as list_entry_points
+  - Show team and repo badges on README
+  - Remove reference to non-existing page
+  - Allow suppression of warnings from DriverManager
+  - Add Apache 2.0 license to source file
+  - Add reno for release notes management
+  - Broken link at stevedore developer documentation
+
+---

Old:

  stevedore-1.17.1.tar.gz

New:

  stevedore-1.20.0.tar.gz



Other differences:
--
++ python-stevedore.spec ++
--- /var/tmp/diff_new_pack.FQl1xU/_old  2017-04-24 09:49:06.469207489 +0200
+++ /var/tmp/diff_new_pack.FQl1xU/_new  2017-04-24 09:49:06.473206923 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-stevedore
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %global pypi_name stevedore
 Name:   python-stevedore
-Version:1.17.1
+Version:1.20.0
 Release:0
 Summary:Manage dynamic plugins for Python applications
 License:Apache-2.0
@@ -29,9 +29,9 @@
 BuildRequires:  python-devel
 BuildRequires:  python-mock >= 2.0
 BuildRequires:  python-oslotest >= 1.10.0
-BuildRequires:  python-pbr >= 1.6
+BuildRequires:  python-pbr >= 1.8
 BuildRequires:  python-setuptools >= 16.0
-Requires:   python-pbr >= 1.6
+Requires:   python-pbr >= 1.8
 Requires:   python-six >= 1.9.0
 BuildArch:  noarch
 
@@ -50,7 +50,7 @@
 Summary:Documentation for %{name}
 Group:  Documentation
 BuildRequires:  python-Sphinx
-BuildRequires:  python-oslosphinx >= 2.5.0
+BuildRequires:  python-oslosphinx >= 4.7.0
 
 %description doc
 Python makes loading code dynamically easy, allowing you to configure
@@ -66,7 +66,8 @@
 This package contains documentation in HTML format.
 
 %prep
-%setup -q -n %{pypi_name}-%{version}
+%autosetup -n %{pypi_name}-%{version}
+%py_req_cleanup
 
 %build
 %py2_build

++ _service ++
--- /var/tmp/diff_new_pack.FQl1xU/_old  2017-04-24 09:49:06.525199570 +0200
+++ /var/tmp/diff_new_pack.FQl1xU/_new  2017-04-24 09:49:06.525199570 +0200
@@ -1,8 +1,10 @@
 
   
-https://raw.githubusercontent.com/openstack/rpm-packaging/stable/newton/openstack/stevedore/stevedore.spec.j2
+https://raw.githubusercontent.com/openstack/rpm-packaging/stable/ocata/openstack/stevedore/stevedore.spec.j2
 python-stevedore.spec
-https://raw.githubusercontent.com/openstack/requirements/stable/newton/global-requirements.txt
+https://raw.githubusercontent.com/openstack/requirements/stable/ocata/global-requirements.txt
+cloud-de...@suse.de
+gh,openstack,stevedore
   
   
 enable

++ stevedore-1.17.1.tar.gz -> stevedore-1.20.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/stevedore-1.17.1/AUTHORS new/stevedore-1.20.0/AUTHORS
--- old/stevedore-1.17.1/AUTHORS2016-08-18 19:40:14.0 +0200
+++ new/stevedore-1.20.0/AUTHORS2017-01-18 15:12:13.0 +0100
@@ -1,5 +1,7 @@
 Abhishek Chanda 
+Andreas Jaeger 
 Bernhard M. Wiedemann 
+Cao Xuan Hoang 
 ChangBo Guo(gcb) 
 Chris Yeoh 
 Cleber Rosa 
@@ -10,19 +12,24 @@
 Doug Hellmann 
 Doug Hellmann 
 Doug Hellmann 
+Flavio Percoco 
 Jamie Lennox 
 Jeremy Stanley 
 Joshua Harlow 
 Joshua Harlow 
 Julien Danjou 
+Kevin Benton 
 Louis Taylor 
 Marc Koderer 
+Marianne Linhares 
 Philip Tzou 
 Ricardo Kirkner 
 Ryan Petrello 
 Swapnil Kulkarni (coolsvap) 
 Thomas Goirand 
+Tony Breeds 
 Wes Turner 
+Yvonne Stachowski 
 Zhao Lei 
 caoyue 
 liangjingtao 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/stevedore-1.17.1/ChangeLog 
new/stevedore-

commit simple-ccsm for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package simple-ccsm for openSUSE:Factory 
checked in at 2017-04-24 09:49:12

Comparing /work/SRC/openSUSE:Factory/simple-ccsm (Old)
 and  /work/SRC/openSUSE:Factory/.simple-ccsm.new (New)


Package is "simple-ccsm"

Mon Apr 24 09:49:12 2017 rev:3 rq:489682 version:0.8.14.1

Changes:

--- /work/SRC/openSUSE:Factory/simple-ccsm/simple-ccsm.changes  2016-05-10 
09:27:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.simple-ccsm.new/simple-ccsm.changes 
2017-04-24 09:49:13.140263967 +0200
@@ -1,0 +2,15 @@
+Thu Apr 20 20:22:12 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 0.8.14.1:
+  * Fix Compiz checking on Python3.
+  * Silence a RSVG API version startup warning.
+
+---
+Tue Apr 18 11:10:04 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 0.8.14:
+  * Fixes for Python3.
+  * Update translations.
+- Switch to Python3.
+
+---

Old:

  simple-ccsm-0.8.12.tar.xz

New:

  simple-ccsm-0.8.14.1.tar.xz



Other differences:
--
++ simple-ccsm.spec ++
--- /var/tmp/diff_new_pack.9OBTaK/_old  2017-04-24 09:49:13.896157057 +0200
+++ /var/tmp/diff_new_pack.9OBTaK/_new  2017-04-24 09:49:13.896157057 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package simple-ccsm
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   simple-ccsm
-Version:0.8.12
+Version:0.8.14.1
 Release:0
 Summary:Simple settings manager for Compiz
 License:GPL-2.0+
@@ -30,17 +30,17 @@
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  intltool
 BuildRequires:  libcompizconfig < 0.9
-BuildRequires:  python-devel
+BuildRequires:  python3-devel
 BuildRequires:  update-desktop-files
 Requires:   compiz < 0.9
 Requires:   compiz-plugins < 0.9
 Requires:   compiz-plugins-main < 0.9
-Requires:   libcompizconfig < 0.9
-Requires:   python-cairo
-Requires:   python-ccm < 0.9
-Requires:   python-ccm >= 0.8.12
-Requires:   python-gobject
-Requires:   python-gobject-cairo
+Requires:   python3-cairo
+Requires:   python3-ccm < 0.9
+Requires:   python3-ccm >= 0.8.12
+Requires:   python3-compizconfig < 0.9
+Requires:   python3-gobject
+Requires:   python3-gobject-cairo
 Recommends: %{name}-lang
 Recommends: compiz-plugins-extra < 0.9
 # simple-ccsm-kde was last used in openSUSE 11.3.
@@ -49,7 +49,7 @@
 Provides:   ccsm = 0.8
 BuildArch:  noarch
 %if 0%{?suse_version} > 1320 || 0%{?sle_version} >= 120200
-Requires:   python-gobject-Gdk
+Requires:   python3-gobject-Gdk
 %endif
 
 %description
@@ -61,15 +61,16 @@
 %setup -q
 
 %build
-python2 setup.py build \
+python3 setup.py build \
   --prefix=%{_prefix}\
   --enableDesktopEffects
 
 %install
-python2 setup.py install \
+python3 setup.py install \
   --root=%{buildroot} \
   --prefix=%{_prefix}
 
+mv %{buildroot}%{_datadir}/{metainfo,appdata}/
 %fdupes %{buildroot}%{_datadir}/
 %suse_update_desktop_file -N "Desktop Effects" %{name}
 %find_lang simple-ccsm
@@ -87,7 +88,7 @@
 %doc AUTHORS COPYING NEWS README.md
 %{_bindir}/%{name}
 %{_datadir}/%{name}/
-%{python_sitelib}/simple_ccsm-*
+%{python3_sitelib}/simple_ccsm-*
 %{_datadir}/applications/%{name}.desktop
 %{_datadir}/icons/hicolor/*/apps/%{name}.*
 %dir %{_datadir}/appdata/

++ simple-ccsm-0.8.12.tar.xz -> simple-ccsm-0.8.14.1.tar.xz ++
 9159 lines of diff (skipped)




commit pgadmin3 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package pgadmin3 for openSUSE:Factory 
checked in at 2017-04-24 09:48:54

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


Package is "pgadmin3"

Mon Apr 24 09:48:54 2017 rev:24 rq:489423 version:1.22.2

Changes:

--- /work/SRC/openSUSE:Factory/pgadmin3/pgadmin3.changes2017-02-03 
18:55:20.362879618 +0100
+++ /work/SRC/openSUSE:Factory/.pgadmin3.new/pgadmin3.changes   2017-04-24 
09:48:55.218798693 +0200
@@ -1,0 +2,6 @@
+Tue Apr 18 19:10:24 UTC 2017 - br...@ioda-net.ch
+
+- Add 0001-Set-row-heights-based-on-pixels-rather-than-points.patch
+  Fix control grid row on hidpi screen. 
+
+---

New:

  0001-Set-row-heights-based-on-pixels-rather-than-points.patch



Other differences:
--
++ pgadmin3.spec ++
--- /var/tmp/diff_new_pack.ZAQKq8/_old  2017-04-24 09:48:56.230655581 +0200
+++ /var/tmp/diff_new_pack.ZAQKq8/_new  2017-04-24 09:48:56.234655015 +0200
@@ -29,6 +29,7 @@
 Source4:
http://ftp.postgresql.org/pub/pgadmin3/release/v%{version}/src/pgadmin3-%{version}.tar.gz.sig
 # Limit to strict minimum the needed wxWidgets inspired by debian patches
 Patch0: wxWidget-limit-libs-used.patch
+Patch1: 0001-Set-row-heights-based-on-pixels-rather-than-points.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  fdupes
@@ -84,6 +85,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 autoreconf -fiv
 
 sed -i 's/\r$//' LICENSE TODO CHANGELOG # remove wrong EOL

++ 0001-Set-row-heights-based-on-pixels-rather-than-points.patch ++
>From aea3d062fe5ba992ddbf2ebd09654d3f105b01c7 Mon Sep 17 00:00:00 2001
From: Ryan Trinkle 
Date: Sun, 16 Apr 2017 16:20:16 -0400
Subject: [PATCH] Set row heights based on pixels rather than points

Previously, on a high-DPI display, rows in the ctlSQLGrid
would be too small by default.  Although the user can
manually adjust row heights, this is tedious and makes it
almost impossible to skim through data.  By calculating
the default row height based on pixels rather than points,
this is taken into account.

There are still some magic numbers here.  Using
GetPixelSize() alone seems to place the baseline of the
text at the bottom of the cell, cutting off any descenders
in the text.  To adjust for this, we add 20% of one line
height (experimentally determined).  Unfortunately, we
can't use wxDC::GetTextExtent, which would give us precise
results, because we don't have a wxDC at the time we're
setting these default heights.
---
 pgadmin/ctl/ctlSQLGrid.cpp | 16 
 1 file changed, 12 insertions(+), 4 deletions(-)

diff --git a/pgadmin/ctl/ctlSQLGrid.cpp b/pgadmin/ctl/ctlSQLGrid.cpp
index ac13bfed1..68e298dcd 100644
--- a/pgadmin/ctl/ctlSQLGrid.cpp
+++ b/pgadmin/ctl/ctlSQLGrid.cpp
@@ -15,6 +15,8 @@
 #include 
 #include 
 
+#include 
+
 #include "db/pgConn.h"
 #include "ctl/ctlSQLGrid.h"
 #include "utils/sysSettings.h"
@@ -48,8 +50,10 @@ ctlSQLGrid::ctlSQLGrid(wxWindow *parent, wxWindowID id, 
const wxPoint &pos, cons
SetLabelFont(fntLabel);
SetColLabelAlignment(wxALIGN_LEFT, wxALIGN_CENTER);
SetRowLabelSize(50);
-   SetDefaultRowSize(fntCells.GetPointSize() * 2);
-   SetColLabelSize(fntLabel.GetPointSize() * 4);
+   int cellHeight = fntCells.GetPixelSize().GetHeight() * 1.2;
+   int rowLabelHeight = fntLabel.GetPixelSize().GetHeight() * 1.2;
+   SetDefaultRowSize(std::max(cellHeight, rowLabelHeight));
+   SetColLabelSize(fntLabel.GetPixelSize().GetHeight() * 2.2);
SetDefaultCellOverflow(false);
 
Connect(wxID_ANY, wxEVT_GRID_LABEL_LEFT_DCLICK, 
wxGridEventHandler(ctlSQLGrid::OnLabelDoubleClick));
@@ -85,8 +89,12 @@ void ctlSQLGrid::OnMouseWheel(wxMouseEvent &event)
}
SetLabelFont(fontlabel);
SetDefaultCellFont(fontcells);
-   SetColLabelSize(fontlabel.GetPointSize() * 4);
-   SetDefaultRowSize(fontcells.GetPointSize() * 2);
+   wxFont fntCells(settings->GetSQLFont());
+   wxFont fntLabel(settings->GetSystemFont());
+   int cellHeight = fntCells.GetPixelSize().GetHeight() * 1.2;
+   int rowLabelHeight = fntLabel.GetPixelSize().GetHeight() * 1.2;
+   SetDefaultRowSize(std::max(cellHeight, rowLabelHeight));
+   SetColLabelSize(fntLabel.GetPixelSize().GetHeight() * 2.2);
for (int index = 0; index < GetNumberCols(); index++)
SetColSize(index, -1);
ForceRefresh();
-- 
2.12.2






commit dfc for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package dfc for openSUSE:Factory checked in 
at 2017-04-24 09:49:18

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


Package is "dfc"

Mon Apr 24 09:49:18 2017 rev:3 rq:489755 version:3.1.0

Changes:

--- /work/SRC/openSUSE:Factory/dfc/dfc.changes  2017-02-21 13:49:44.501493617 
+0100
+++ /work/SRC/openSUSE:Factory/.dfc.new/dfc.changes 2017-04-24 
09:49:19.799322143 +0200
@@ -1,0 +2,41 @@
+Fri Apr 21 08:05:13 UTC 2017 - mplus...@suse.com
+
+- Update to version 3.1.0:
+  * New features:
++ Major code refactoring: now, platform specific code is
+  clearly separated
++ Solaris support.
++ The CSV separator can be specified via the configuration file
+  (defaults to",").
++ In addition to the already export formats (CSV, text, tex and
+  HTML), dfc is able to export the information as JSON (no
+  additional dependency required).
++ Add support for bold font via the configuration file
++ Add -M option to disable "Mounted On" information.
++ Add Dutch translation.
++ Add git revision to the dfc version string for development
+  versions of dfc.
+  * Bug fixes:
++ Fix type not respecting -W flag.
++ Fix alignment issue when both -M and -o options are specified.
++ Plug a few memory leaks.
++ Escape mount options with "" when exporting to CSV as mount
+  options may typically contain a ",".
++ Linux: avoid stat'ing remote file system when local flag is
+  given (prevents dfc from potentially hanging on remote file
+  systems).
++ Consider nfs4 a remote filesystem.
++ Correctly link math library (fixes build on, at least,
+  Ubuntu).
++ Remove a few extra incorrect CSV separators in CSV export
+  mode.
++ Silently ignore EACCESS error on statvfs.
++ Fix build failure on Hurd.
++ Fix build failure on kFreeBSD.
+  * Incompatible changes:
++ Remove "GRIM" compile option - compile flags previously set
+  by "grim" are now defaults.
++ Stop translating color names in the configuration file - now,
+  only "English" names are understood.
+
+---

Old:

  dfc-3.0.5.tar.gz

New:

  dfc-3.1.0.tar.gz



Other differences:
--
++ dfc.spec ++
--- /var/tmp/diff_new_pack.IvCRyJ/_old  2017-04-24 09:49:20.459228810 +0200
+++ /var/tmp/diff_new_pack.IvCRyJ/_new  2017-04-24 09:49:20.463228245 +0200
@@ -18,13 +18,13 @@
 
 
 Name:   dfc
-Version:3.0.5
+Version:3.1.0
 Release:0
 Summary:Display file system space usage using graphs and colors
 License:BSD-3-Clause
 Group:  Productivity/File utilities
 Url:http://projects.gw-computing.net/projects/dfc/
-Source0:
http://projects.gw-computing.net/attachments/download/467/%{name}-%{version}.tar.gz
+Source0:
http://projects.gw-computing.net/attachments/download/614/%{name}-%{version}.tar.gz
 BuildRequires:  cmake
 Recommends: %{name}-lang
 
@@ -49,16 +49,18 @@
 
 %files
 %defattr(-,root,root,-)
-%doc AUTHORS CHANGELOG LICENSE README
-%{_bindir}/dfc
-%doc %{_docdir}/dfc/
-%{_mandir}/man1/dfc.1%{ext_man}
+%doc AUTHORS.md CHANGELOG.md README.md LICENSE HACKING.md TRANSLATORS.md
 %dir %{_sysconfdir}/xdg/dfc/
-%dir %{_sysconfdir}/xdg/dfc/fr/
 %config(noreplace) %{_sysconfdir}/xdg/dfc/dfcrc
-%config(noreplace) %{_sysconfdir}/xdg/dfc/fr/dfcrc
+%{_bindir}/dfc
+%{_mandir}/man1/dfc.1%{ext_man}
 
 %files lang -f %{name}.lang
 %defattr(-,root,root,-)
+%dir %{_sysconfdir}/xdg/dfc/
+%dir %{_sysconfdir}/xdg/dfc/fr/
+%config(noreplace) %{_sysconfdir}/xdg/dfc/fr/dfcrc
+%dir %{_sysconfdir}/xdg/dfc/nl/
+%config(noreplace) %{_sysconfdir}/xdg/dfc/nl/dfcrc
 
 %changelog

++ dfc-3.0.5.tar.gz -> dfc-3.1.0.tar.gz ++
 10398 lines of diff (skipped)




commit crmsh for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package crmsh for openSUSE:Factory checked 
in at 2017-04-24 09:49:14

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


Package is "crmsh"

Mon Apr 24 09:49:14 2017 rev:118 rq:489715 version:3.0.0

Changes:

--- /work/SRC/openSUSE:Factory/crmsh/crmsh.changes  2017-03-16 
09:51:35.897254393 +0100
+++ /work/SRC/openSUSE:Factory/.crmsh.new/crmsh.changes 2017-04-24 
09:49:15.651908733 +0200
@@ -1,0 +2,12 @@
+Fri Apr 21 05:45:15 UTC 2017 - b...@suse.com
+
+- low: remove bindnetaddr for unicast(bsc#1030437)
+- Add 0006-remove-bindnetaddr-for-unicast-bsc-1030437.patch
+
+---
+Thu Apr 20 12:06:05 UTC 2017 - kgronl...@suse.com
+
+- medium: scripts/health: Make health script available as wizard (fate#320848) 
(fate#320866)
+- Add 0005-medium-scripts-health-Make-health-script-available-a.patch 
+
+---

New:

  0005-medium-scripts-health-Make-health-script-available-a.patch
  0006-remove-bindnetaddr-for-unicast-bsc-1030437.patch



Other differences:
--
++ crmsh.spec ++
--- /var/tmp/diff_new_pack.onIQRZ/_old  2017-04-24 09:49:16.667765055 +0200
+++ /var/tmp/diff_new_pack.onIQRZ/_new  2017-04-24 09:49:16.675763924 +0200
@@ -50,7 +50,10 @@
 Patch3: 0003-medium-ui_cluster-Fix-init-with-no-arguments-bsc-102.patch
 # PATCH-FIX-UPSTREAM: low: utils: Use /proc for process discovery
 Patch4: 0004-low-utils-Use-proc-for-process-discovery.patch
-
+# PATCH-FIX-UPSTREAM: medium: scripts/health: Make health script available as 
wizard (fate#320848) (fate#320866)
+Patch5: 0005-medium-scripts-health-Make-health-script-available-a.patch
+# PATCH-FIX-UPSTREAM: low: remove bindnetaddr for unicast(bsc#1030437)
+Patch6: 0006-remove-bindnetaddr-for-unicast-bsc-1030437.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 # Requiring pacemaker makes crmsh harder to build on other distributions,
@@ -156,6 +159,8 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
+%patch6 -p1
 
 # Force the local time
 #

++ 0005-medium-scripts-health-Make-health-script-available-a.patch ++
>From e3d74556a75d387cab51b923873655809651adda Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Kristoffer=20Gr=C3=B6nlund?= 
Date: Thu, 20 Apr 2017 10:56:52 +0200
Subject: [PATCH] medium: scripts/health: Make health script available as
 wizard (fate#320848) (fate#320866)

Enables running the cluster health check directly from hawk.
---
 scripts/health/collect.py |  6 +-
 scripts/health/main.yml   | 15 ++-
 utils/crm_init.py |  5 -
 3 files changed, 19 insertions(+), 7 deletions(-)

diff --git a/scripts/health/collect.py b/scripts/health/collect.py
index bb873687..15c2e5ce 100755
--- a/scripts/health/collect.py
+++ b/scripts/health/collect.py
@@ -1,5 +1,6 @@
 #!/usr/bin/env python
 import os
+import pwd
 import hashlib
 import platform
 import crm_script
@@ -16,6 +17,9 @@ def rpm_info():
 def logrotate_info():
 return {}
 
+def get_user():
+return pwd.getpwuid(os.getuid()).pw_name
+
 def sys_info():
 sysname, nodename, release, version, machine = os.uname()
 #The first three columns measure CPU and IO utilization of the
@@ -38,7 +42,7 @@ def sys_info():
 'distname': distname,
 'distver': distver,
 'distid': distid,
-'user': os.getlogin(),
+'user': get_user(),
 'hostname': hostname,
 'uptime': uptime[0],
 'idletime': uptime[1],
diff --git a/scripts/health/main.yml b/scripts/health/main.yml
index 327fa179..7c59bddc 100644
--- a/scripts/health/main.yml
+++ b/scripts/health/main.yml
@@ -1,11 +1,16 @@
 version: 2.2
-category: Script
-shortdesc: Check the health of the cluster
-longdesc: Runs various checks to verify the health of the cluster nodes
+category: Basic
+shortdesc: Verify health and configuration
+longdesc: |
+  Checks and detects issues with the cluster, by creating and
+  analysing a cluster report.
+
+  Requires SSH access between cluster nodes. This command is
+  also available from the command line as "crm cluster health".
 actions:
   - collect: collect.py
-shortdesc: Collect cluster information
+shortdesc: Collect information
   - apply_local: hahealth.py
-shortdesc: Run HA health check
+shortdesc: Run cluster health check
   - report: report.py
 shortdesc: Report cluster state
diff --git a/utils/crm_init.py b/utils/crm_init.py
index 35384539..f695b6dc 100644
--- a/utils/crm_init.py
+++ b/utils/crm_init.py
@@ -1,4 +1,5 @@
 import os
+import pwd
 import r

commit python-renderspec for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package python-renderspec for 
openSUSE:Factory checked in at 2017-04-24 09:49:23

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


Package is "python-renderspec"

Mon Apr 24 09:49:23 2017 rev:3 rq:489763 version:1.6.0

Changes:

--- /work/SRC/openSUSE:Factory/python-renderspec/python-renderspec.changes  
2017-04-20 20:50:14.625956221 +0200
+++ /work/SRC/openSUSE:Factory/.python-renderspec.new/python-renderspec.changes 
2017-04-24 09:49:23.94673 +0200
@@ -1,0 +2,17 @@
+Fri Apr 21 09:14:13 UTC 2017 - cloud-de...@suse.de
+
+- update to version 1.6.0
+  - Return the full path when searching for archive files
+  - Add 'basename' filter
+
+---
+Thu Apr 13 10:14:13 UTC 2017 - cloud-de...@suse.de
+
+- update to version 1.5.0:
+  - Look in 'output_dir' when searching archives
+  - Enable and fix more tests
+  - Updated from global requirements
+  - Make output dir available in the context
+  - Add new function fetch_source() to download files
+
+---

Old:

  renderspec-1.4.0.tar.gz

New:

  renderspec-1.6.0.tar.gz



Other differences:
--
++ python-renderspec.spec ++
--- /var/tmp/diff_new_pack.F15Xxy/_old  2017-04-24 09:49:24.890602059 +0200
+++ /var/tmp/diff_new_pack.F15Xxy/_new  2017-04-24 09:49:24.894601494 +0200
@@ -18,7 +18,7 @@
 
 %global sname renderspec
 Name:   python-renderspec
-Version:1.4.0
+Version:1.6.0
 Release:0
 Summary:Generate spec files from Jinja2 templates
 License:Apache-2.0

++ renderspec-1.4.0.tar.gz -> renderspec-1.6.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/renderspec-1.4.0/ChangeLog 
new/renderspec-1.6.0/ChangeLog
--- old/renderspec-1.4.0/ChangeLog  2017-04-05 16:50:36.0 +0200
+++ new/renderspec-1.6.0/ChangeLog  2017-04-21 11:14:16.0 +0200
@@ -1,6 +1,21 @@
 CHANGES
 ===
 
+1.6.0
+-
+
+* Add 'basename' filter
+* Return the full path when searching for archive files
+
+1.5.0
+-
+
+* Look in 'output_dir' when searching archives
+* Enable and fix more tests
+* Add new function fetch_source() to download files
+* Make output dir available in the context
+* Updated from global requirements
+
 1.4.0
 -
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/renderspec-1.4.0/PKG-INFO 
new/renderspec-1.6.0/PKG-INFO
--- old/renderspec-1.4.0/PKG-INFO   2017-04-05 16:50:36.0 +0200
+++ new/renderspec-1.6.0/PKG-INFO   2017-04-21 11:14:16.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: renderspec
-Version: 1.4.0
+Version: 1.6.0
 Summary: Jinja2 template renderer for generating .spec files
 Home-page: http://docs.openstack.org/developer/renderspec/
 Author: OpenStack
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/renderspec-1.4.0/doc/source/usage.rst 
new/renderspec-1.6.0/doc/source/usage.rst
--- old/renderspec-1.4.0/doc/source/usage.rst   2017-04-05 16:48:18.0 
+0200
+++ new/renderspec-1.6.0/doc/source/usage.rst   2017-04-21 11:10:44.0 
+0200
@@ -131,14 +131,17 @@
 For automatic version detection, the context need to know the `pypi_name` and a
 archive file must be available and the context variable `upstream_version` 
needs to
 be set to the value of the context function `upstream_version()`. The 
difference
-here is that the version in `upstream_version()` is not explicit given::
+here is that the version in `upstream_version()` is not explicit given. The 
archive
+can be fetched with the `fetch_source()` function::
 
+  {% set source = 
fetch_source('http://tarballs.openstack.org/oslo.config/oslo.config-master.tar.gz')
 %}
   {% set pypi_name = 'oslo.config' %}
   {% set upstream_version = upstream_version() %}
   {% set rpm_release = '1' %}
 
   Version: {{ py2rpmversion() }}
   Release: {{ py2rpmrelease() }}
+  Source0: {{ source }}
 
 .. _PKG-INFO: https://www.python.org/dev/peps/pep-0314/
 
@@ -259,7 +262,12 @@
   {% set upstream_version = upstream_version() %}
 
 Note that for dynamic version detection, the variable `pypi_name` needs to be 
set
-before calling `upstream_version()`.
+before calling `upstream_version()`. `upstream_version()` tries to find an 
archive
+in:
+
+1. the output directory where the rendered .spec file ends
+2. the directory where the .spec.j2 template comes from
+3. the current working directory
 
 
 context function `py2rpmversion`
@@ -303,6 +311,30 @@
 to be able t

commit xine-ui for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package xine-ui for openSUSE:Factory checked 
in at 2017-04-24 09:48:58

Comparing /work/SRC/openSUSE:Factory/xine-ui (Old)
 and  /work/SRC/openSUSE:Factory/.xine-ui.new (New)


Package is "xine-ui"

Mon Apr 24 09:48:58 2017 rev:34 rq:489536 version:0.99.9

Changes:

--- /work/SRC/openSUSE:Factory/xine-ui/xine-ui.changes  2015-04-21 
10:54:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.xine-ui.new/xine-ui.changes 2017-04-24 
09:48:59.818148182 +0200
@@ -1,0 +2,5 @@
+Thu Apr 20 06:57:38 UTC 2017 - davejpla...@gmail.com
+
+- Fix desktop file with xine-ui-desktop.patch
+
+---

New:

  xine-ui-desktop.patch



Other differences:
--
++ xine-ui.spec ++
--- /var/tmp/diff_new_pack.Foexub/_old  2017-04-24 09:49:00.814007333 +0200
+++ /var/tmp/diff_new_pack.Foexub/_new  2017-04-24 09:49:00.818006767 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xine-ui
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -22,9 +22,10 @@
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  curl-devel
+BuildRequires:  fdupes
 BuildRequires:  libjpeg-devel
-BuildRequires:  libpng-devel
-BuildRequires:  libxine-devel
+BuildRequires:  pkgconfig(libpng12)
+BuildRequires:  pkgconfig(libxine)
 %if !%{with distributable}
 BuildRequires:  libxine2-codecs
 %endif
@@ -32,6 +33,7 @@
 BuildRequires:  readline-devel
 BuildRequires:  update-desktop-files
 BuildRequires:  xorg-x11-devel
+BuildRequires:  pkgconfig(caca)
 Summary:Video player with plugins
 License:GPL-2.0+ and SUSE-Public-Domain
 Group:  Productivity/Multimedia/Video/Players
@@ -50,6 +52,8 @@
 Source99:   baselibs.conf
 # *** xine-lib: Bugfixes
 Patch0: xine-ui-various.diff
+#PATCH_FIX-OPENSUSE xine-ui-desktop.patch davejpla...@gmail.com - remove 
desktop file errors
+Patch1: xine-ui-desktop.patch
 Patch2: xine-ui-lirc.diff
 Patch22:xine-ui-rpmlintrc.diff
 # *** SUSE only changes
@@ -78,6 +82,7 @@
 %patch22 -p1
 %patch50 -p1
 %patch60
+%patch1
 install -m 0644 %SOURCE1 misc/splash-default/xine-ui_logo.png
 install -m 0644 %SOURCE2 misc/splash-default/xine-ui_logo-crippled.png
 %ifarch x86_64
@@ -86,10 +91,19 @@
 %endif
 
 %build
-export CFLAGS="$RPM_OPT_FLAGS -fno-strict-aliasing"
+%if 1 == 0
+%define gcc_version 7
+export CC=gcc-7
+export CPP=cpp-7
+export CXX=g++-7
+%endif
+export CFLAGS="%{optflags} -fno-strict-aliasing"
+%if 0%{?gcc_version} > 5
+export CFLAGS="$CFLAGS -Werror=date-time"
+%endif
 # ignore nonupdated automake+co files
 rm -f missing ; touch missing
-export XINE_DOCPATH=/usr/share/doc/packages/xine-ui
+export XINE_DOCPATH=%{_datadir}/doc/packages/xine-ui
 
 NO_CONFIGURE=1 ./autogen.sh
 
@@ -97,27 +111,33 @@
--enable-vdr-keys \
--with-pic \
--disable-static
-make %{?jobs:-j%jobs}
+make %{_smp_mflags} V=1
 
 %install
-make install DESTDIR=$RPM_BUILD_ROOT
-install -d -m755 $RPM_BUILD_ROOT%{_defaultdocdir}
-mv $RPM_BUILD_ROOT/usr/share/doc/xitk $RPM_BUILD_ROOT%{_defaultdocdir}/xine-ui
-mkdir -p $RPM_BUILD_ROOT/usr/share/applications/
-rm -rf $RPM_BUILD_ROOT/usr/share/xine/desktop
-install -m 0644 %SOURCE2 
$RPM_BUILD_ROOT/usr/share/xine/skins/xine-ui_logo-crippled.png
+make install DESTDIR=%{buildroot}
+install -d -m755 %{buildroot}%{_defaultdocdir}
+mv %{buildroot}%{_datadir}/doc/xitk %{buildroot}%{_defaultdocdir}/xine-ui
+mkdir -p %{buildroot}%{_datadir}/applications/
+rm -rf %{buildroot}%{_datadir}/xine/desktop
+install -m 0644 %SOURCE2 
%{buildroot}%{_datadir}/xine/skins/xine-ui_logo-crippled.png
 # extra skins
-install -d -m755 %buildroot/usr/share/xine/skins/
+install -d -m755 %{buildroot}%{_datadir}/xine/skins/
 for i in %SOURCE11 %SOURCE12 %SOURCE13 ; do
-  tar xfvj $i -C %buildroot/usr/share/xine/skins/
+  tar xfvj $i -C %buildroot%{_datadir}/xine/skins/
 done
 #
-%suse_update_desktop_file -i xine AudioVideo Player Video
 %find_lang %{name}
 %find_lang xitk %{name}.lang
+%fdupes -s %{buildroot}%{_mandir}
+%fdupes -s %{buildroot}%{_datadir}/xine
 
-%clean
-rm -rf $RPM_BUILD_ROOT
+%post
+%mime_database_post
+%desktop_database_post
+
+%postun
+%mime_database_postun
+%desktop_database_postun
 
 %files -f %{name}.lang
 %defattr(-,root,root,0755)
@@ -131,33 +151,34 @@
 %doc %_mandir/man1/xine.1.gz
 %doc %_mandir/man1/xine-check.1.gz
 %doc %_mandir/man1/xine-remote.1.gz
-/usr/bin/aaxine
-/usr/bin/fbxine
-/usr/bin/xine
-/usr/bin/xine-check
-/usr/bin/xine-remote
-%dir /usr/s

commit monit for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package monit for openSUSE:Factory checked 
in at 2017-04-24 09:49:21

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


Package is "monit"

Mon Apr 24 09:49:21 2017 rev:38 rq:489761 version:5.22.0

Changes:

--- /work/SRC/openSUSE:Factory/monit/monit.changes  2017-03-18 
20:51:00.733954149 +0100
+++ /work/SRC/openSUSE:Factory/.monit.new/monit.changes 2017-04-24 
09:49:22.342962384 +0200
@@ -1,0 +2,41 @@
+Fri Apr 21 08:28:52 UTC 2017 - lie...@rz.uni-mannheim.de
+
+- update to 5.22:
+  + New: Linux: Added support for monitoring ZFS disk activity.
+  + New: Added option to explicit specify if the HTTP method HEAD
+ or GET should be used in a HTTP protocol test. If not
+ specified, HEAD will be used unless a content or a checksum
+ test is also specified, in which case GET is used instead.
+ The default is normally what you want, but now you have the
+ option to specificially use GET instead of HEAD.
+  + New: File, Directory, Fifo checks: Added support for explicit
+ testing access, change and modification time properties.
+ If the type is not specified, the original timestamp test
+ is performed, which checks the latest of ctime and mtime.
+ It is also possible to use newer and older operators in the
+ test now.
+  + New: Renamed the statement, set logfile  to
+set log .
+  + Fixed: Linux: If the monitored filesystem was not found in
+   /proc/diskstat, Monit could leak filedescriptors.
+  + Fixed: Solaris on SPARC: Monit didn't trigger an event if a
+   protocol test failed.
+  + Fixed: Systemd template for Monit: Added StandardOutput=null
+   option to prevent systemd to duplicate Monit log output.
+  + Fixed: Monit cross-compilation
+  + Fixed: configure --without-zlib
+  + Fixed: If the connection test required STARTTLS, the certificate
+   valid days test was broken.
+  + Fixed: Compile on MacOSX 10.6.x - 10.9.x.
+  + Fixed: HTTP protocol test: Allow using a request string in addition
+   to path, to monitor e.g. a HTTP proxy.
+  + Fixed: If connection or ping test repetition is set, log partial
+   failures with warning priority instead of error.
+  + Fixed: Linux: Support rootfs ramdisk.
+  + Fixed: Connection retry was broken and performed the test only
+   once with no retry on error.
+  + Fixed: Linux: Subtract ZFS ARC size from the system memory usage.
+  + Fixed: SSL certificate validity test and checksum test didn't work
+   for self-signed certificates.
+
+---

Old:

  monit-5.21.0.tar.gz
  monit-5.21.0.tar.gz.sha256

New:

  monit-5.22.0.tar.gz
  monit-5.22.0.tar.gz.sha256



Other differences:
--
++ monit.spec ++
--- /var/tmp/diff_new_pack.rLeYrQ/_old  2017-04-24 09:49:23.330822667 +0200
+++ /var/tmp/diff_new_pack.rLeYrQ/_new  2017-04-24 09:49:23.334822100 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   monit
-Version:5.21.0
+Version:5.22.0
 Release:0
 Summary:Service Manager and Monitor System
 License:AGPL-3.0

++ monit-5.21.0.tar.gz -> monit-5.22.0.tar.gz ++
 24972 lines of diff (skipped)

++ monit-5.21.0.tar.gz.sha256 -> monit-5.22.0.tar.gz.sha256 ++
--- /work/SRC/openSUSE:Factory/monit/monit-5.21.0.tar.gz.sha256 2017-03-18 
20:51:00.645966614 +0100
+++ /work/SRC/openSUSE:Factory/.monit.new/monit-5.22.0.tar.gz.sha256
2017-04-24 09:49:22.254974828 +0200
@@ -1 +1 @@
-fbf76163ed4a180854d378af60fed0cdbc5a8772823957234efc182ead10c03c  
monit-5.21.0.tar.gz
+9fc58b5e3caafd64f0b6fff3e65ae757239fab37d04fb33efce177da15176183  
monit-5.22.0.tar.gz

++ monit-better_default_monitrc.patch ++
--- /var/tmp/diff_new_pack.rLeYrQ/_old  2017-04-24 09:49:23.738764969 +0200
+++ /var/tmp/diff_new_pack.rLeYrQ/_new  2017-04-24 09:49:23.738764969 +0200
@@ -1,11 +1,11 @@
 monit-5.20.0/monitrc   2016-10-21 11:58:30.0 +0200
-+++ monit-5.20.0/monitrc   2016-11-04 14:58:04.539402482 +0100
+--- monit-5.22.0/monitrc   2017-04-19 15:19:49.0 +0200
 monit-5.22.0/monitrc   2017-04-21 10:56:02.422079492 +0200
 @@ -24,20 +24,20 @@
  ## Set syslog logging. If you want to log to a standalone log file instead,
  ## specify the full path to the log file
  #
--set logfile syslog
-+set logfile syslog facility log_daemon
+-set log syslog
++set log syslog facility log_daemon
  
  #
  #
@@ -13,14 +13,14 @@
  ## running Monit instance. By default this file is stored in $HOME/.monit.pid
  #
 -# set pidfile /var/run/monit.pid
-+set pidfile /run/monit/monit.p

commit i3status for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package i3status for openSUSE:Factory 
checked in at 2017-04-24 09:48:45

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


Package is "i3status"

Mon Apr 24 09:48:45 2017 rev:7 rq:489273 version:2.11

Changes:

--- /work/SRC/openSUSE:Factory/i3status/i3status.changes2016-03-11 
09:38:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.i3status.new/i3status.changes   2017-04-24 
09:48:48.459754661 +0200
@@ -1,0 +2,33 @@
+Wed Apr 12 20:47:43 UTC 2017 - a...@gmx.de
+
+- update to version 2.11:
+  * re-add forgotten wakeup call from SIGUSR1 handler
+  * disk_info: bugfix: check format_not_mounted is not NULL before
+using it
+  * revert back to using nanosleep
+  * man: give more descriptive symbols to battery format
+  * battery: removes the 'remaining' time when the battery is full
+  * add separator and separator_block_width as universal module
+options
+  * man: fix link to contrib
+  * cpu_temperature: add glob check
+  * battery: add status_unk
+  * reconnect to PluseAudio when connection is lost
+  * wireless: add ifdef to compile on macOS
+  * order default configuration paths the same as in i3
+  * add version files for release tarball
+  * man: make tztime example config match the context
+  * cpu_usage: add color thresholds
+  * battery: support multiple batteries
+  * disk: use empty string for not mounted disks
+  * default config: remove DHCP, VPN
+  * wireless: fix FTBFS on hurd and kFreeBSD
+  * parse uevent file to detect network device type
+  * allow pulse device to be specified by name
+  * battery: find batteries using glob
+  * tztime: support locales
+  * wireless: use blank padding for quality
+  * add unit tests
+  * fix compilation with -fno-common
+
+---

Old:

  i3status-2.10.tar.bz2

New:

  i3status-2.11.tar.bz2



Other differences:
--
++ i3status.spec ++
--- /var/tmp/diff_new_pack.XvDjyQ/_old  2017-04-24 09:48:49.103663590 +0200
+++ /var/tmp/diff_new_pack.XvDjyQ/_new  2017-04-24 09:48:49.107663024 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package i3status
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2014 Thomas Pfeiffer 
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,7 +18,7 @@
 
 
 Name:   i3status
-Version:2.10
+Version:2.11
 Release:0
 Summary:I3 Status Bar
 License:BSD-3-Clause

++ i3status-2.10.tar.bz2 -> i3status-2.11.tar.bz2 ++
 3661 lines of diff (skipped)




commit calcurse for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package calcurse for openSUSE:Factory 
checked in at 2017-04-24 09:49:05

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


Package is "calcurse"

Mon Apr 24 09:49:05 2017 rev:21 rq:489608 version:4.2.2

Changes:

--- /work/SRC/openSUSE:Factory/calcurse/calcurse.changes2016-10-23 
12:53:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.calcurse.new/calcurse.changes   2017-04-24 
09:49:07.821016295 +0200
@@ -1,0 +2,10 @@
+Thu Mar 23 23:41:44 UTC 2017 - r...@fthiessen.de
+
+- Update to version 4.2.2
+  * Prevent free-before-init of timstr
+  * Prevent segfault when all todo items are hidden
+  * Fix visible region after loading list box items
+  * calcurse-caldav: Fix scrambled comment
+- Added keyring and asc file for verification.
+
+---

Old:

  calcurse-4.2.0.tar.gz

New:

  calcurse-4.2.2.tar.gz
  calcurse-4.2.2.tar.gz.asc
  calcurse.keyring



Other differences:
--
++ calcurse.spec ++
--- /var/tmp/diff_new_pack.I7STnj/_old  2017-04-24 09:49:08.808876578 +0200
+++ /var/tmp/diff_new_pack.I7STnj/_new  2017-04-24 09:49:08.808876578 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package calcurse
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,13 +17,15 @@
 
 
 Name:   calcurse
-Version:4.2.0
+Version:4.2.2
 Release:0
 Summary:Text-based Organizer
 License:BSD-2-Clause
 Group:  Productivity/Office/Organizers
 Source: http://calcurse.org/files/calcurse-%{version}.tar.gz
-Source1:%{name}.desktop
+Source1:http://calcurse.org/files/calcurse-%{version}.tar.gz.asc
+source2:%{name}.keyring
+Source3:%{name}.desktop
 Url:http://calcurse.org
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gettext-devel
@@ -49,17 +51,16 @@
 make %{?_smp_flags}
 
 %install
-%makeinstall
+%make_install
 
 rm -rf "%{buildroot}%{_datadir}/doc"
 
-install -D -m 0644 "%{SOURCE1}" 
"%{buildroot}%{_datadir}/applications/%{name}.desktop"
-%if 0%{?suse_version} > 0
+install -D -m 0644 %{SOURCE3} 
"%{buildroot}%{_datadir}/applications/%{name}.desktop"
+%if 0%{?suse_version}
 %suse_update_desktop_file -r "%{name}" Office Calendar
 %endif
 
-mv \
-"%{buildroot}%{_datadir}/locale/en" \
+mv "%{buildroot}%{_datadir}/locale/en" \
 "%{buildroot}%{_datadir}/locale/en_US"
 
 %find_lang %{name}
@@ -73,7 +74,7 @@
 %{_bindir}/calcurse
 %{_bindir}/calcurse-caldav
 %{_bindir}/calcurse-upgrade
-%doc %{_mandir}/man1/calcurse.1*
+%{_mandir}/man1/calcurse.1*
 %{_datadir}/applications/%{name}.desktop
 
 %files lang -f %{name}.lang

++ calcurse-4.2.0.tar.gz -> calcurse-4.2.2.tar.gz ++
 1840 lines of diff (skipped)




commit fsharp for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package fsharp for openSUSE:Factory checked 
in at 2017-04-24 09:48:43

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


Package is "fsharp"

Mon Apr 24 09:48:43 2017 rev:13 rq:489255 version:4.1.12

Changes:

--- /work/SRC/openSUSE:Factory/fsharp/fsharp.changes2017-03-28 
15:24:31.601983897 +0200
+++ /work/SRC/openSUSE:Factory/.fsharp.new/fsharp.changes   2017-04-24 
09:48:45.536168160 +0200
@@ -1,0 +2,22 @@
+Wed Apr 19 08:34:22 UTC 2017 - idon...@suse.com
+
+- Update to version 4.1.12
+  * No changelog upstream
+
+---
+Wed Apr  5 09:38:30 UTC 2017 - idon...@suse.com
+
+- Update to version 4.1.8
+  * Fix regression in Microsoft.Build.FSharp.targets
+  * Fix binding redirects for System.Collections.Immutable
+  * Fix version of library going in /usr/lib/mono/fsharp
+
+---
+Wed Mar 29 14:40:03 UTC 2017 - idon...@suse.com
+
+- Update to version 4.1.4
+  * Align fsc task and target file
+  * Use install layout that includes mono/fsharp
+  * Fix F# Intereactive on Mono 4.9+
+
+---

Old:

  fsharp-4.1.1.tar.xz

New:

  fsharp-4.1.12.tar.xz



Other differences:
--
++ fsharp.spec ++
--- /var/tmp/diff_new_pack.x1kfTn/_old  2017-04-24 09:48:47.66782 +0200
+++ /var/tmp/diff_new_pack.x1kfTn/_new  2017-04-24 09:48:47.671866097 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   fsharp
-Version:4.1.1
+Version:4.1.12
 Release:0
 Summary:F# compiler, core library and core tools
 License:Apache-2.0
@@ -33,6 +33,7 @@
 BuildRequires:  mono-wcf >= 4.0.0
 BuildRequires:  mono-winfxcore >= 4.0.0
 BuildArch:  noarch
+Provides:   mono(System.Collections.Immutable) = 1.2.0.0
 
 %description
 F# is a mature, open source, functional-first programming language
@@ -59,15 +60,6 @@
 find %{buildroot}%{_prefix}/lib/mono -iname "*.Fsharp.Targets" -type f -print0 
| xargs -0 chmod -v -x
 find %{buildroot}%{_prefix}/lib/mono -iname "Fsharp.*.xml" -type f -print0 | 
xargs -0 chmod -v -x
 
-# Fix brp-25-symlink failure
-while read line
-do
-  src=`readlink -f "$line"`
-  echo "replacing link $line with file $src"
-  rm "$line"
-  cp "$src" "$line"
-done <<< "$(find %{buildroot}%{_prefix}/lib/mono/Reference* -type l)"
-
 # Fix duplicate files
 %fdupes %{buildroot}%{_prefix}
 
@@ -76,25 +68,29 @@
 %{_bindir}/fsharpc
 %{_bindir}/fsharpi
 %{_bindir}/fsharpiAnyCpu
-%{_prefix}/lib/mono/4.5/FSharp.Compiler.Interactive.Settings.dll
-%{_prefix}/lib/mono/4.5/FSharp.Compiler.Interactive.Settings.xml
-%{_prefix}/lib/mono/4.5/FSharp.Compiler.Server.Shared.dll
-%{_prefix}/lib/mono/4.5/FSharp.Compiler.Server.Shared.xml
 %{_prefix}/lib/mono/4.5/FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/FSharp.Core.xml
 %{_prefix}/lib/mono/4.5/FSharp.Core.optdata
 %{_prefix}/lib/mono/4.5/FSharp.Core.sigdata
-%{_prefix}/lib/mono/4.5/policy.2.0.FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/policy.2.3.FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/policy.3.3.FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/policy.4.0.FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/policy.4.3.FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/policy.3.259.FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/policy.3.47.FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/policy.3.7.FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/policy.3.78.FSharp.Core.dll
-%{_prefix}/lib/mono/4.5/policy.4.4.FSharp.Core.dll
+%{_prefix}/lib/mono/4.5/FSharp.Core.xml
 %{_prefix}/lib/mono/fsharp
+%{_prefix}/lib/mono/fsharp/FSharp.Compiler.Interactive.Settings.dll
+%{_prefix}/lib/mono/fsharp/FSharp.Compiler.Interactive.Settings.xml
+%{_prefix}/lib/mono/fsharp/FSharp.Compiler.Server.Shared.dll
+%{_prefix}/lib/mono/fsharp/FSharp.Compiler.Server.Shared.xml
+%{_prefix}/lib/mono/fsharp/FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/FSharp.Core.xml
+%{_prefix}/lib/mono/fsharp/FSharp.Core.optdata
+%{_prefix}/lib/mono/fsharp/FSharp.Core.sigdata
+%{_prefix}/lib/mono/fsharp/policy.2.0.FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/policy.2.3.FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/policy.3.3.FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/policy.4.0.FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/policy.4.3.FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/policy.3.259.FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/policy.3.47.FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/policy.3.7.FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/policy.3.78.FSharp.Core.dll
+%{_prefix}/lib/mono/fsharp/policy.4.4.FSharp.Core.dll
 %{_prefix}/lib/mono/fsharp/fsc.exe
 %{_prefix}/lib/mono/fsharp/fsi.exe
 %{_prefix}/lib/mono/fsharp/fsiAnyC

commit acct for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package acct for openSUSE:Factory checked in 
at 2017-04-24 09:48:51

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


Package is "acct"

Mon Apr 24 09:48:51 2017 rev:40 rq:489313 version:6.6.3

Changes:

--- /work/SRC/openSUSE:Factory/acct/acct.changes2017-04-11 
09:46:20.351113499 +0200
+++ /work/SRC/openSUSE:Factory/.acct.new/acct.changes   2017-04-24 
09:48:52.847134130 +0200
@@ -1,0 +2,8 @@
+Thu Apr 13 11:59:17 UTC 2017 - kstreit...@suse.com
+
+- remove acct-info.patch that is no longer needed (fixed upstream
+  in version 6.6.3)
+- note: acct-6.6.2-hz.patch was not accepted upstream as it might
+  break support for the HP alpha platform
+
+---

Old:

  acct-info.patch



Other differences:
--
++ acct.spec ++
--- /var/tmp/diff_new_pack.YdWRqZ/_old  2017-04-24 09:48:53.603027220 +0200
+++ /var/tmp/diff_new_pack.YdWRqZ/_new  2017-04-24 09:48:53.607026654 +0200
@@ -29,7 +29,6 @@
 Source3:https://ftp.gnu.org/gnu/acct/%{name}-%{version}.tar.gz.sig
 Source4:acct.keyring
 Patch0: acct-6.6.2-hz.patch
-Patch2: acct-info.patch
 BuildRequires:  makeinfo
 BuildRequires:  systemd-rpm-macros
 Requires:   logrotate
@@ -45,7 +44,6 @@
 %prep
 %setup -q
 %patch0
-%patch2
 
 %build
 %configure





commit ghc-happstack-server for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package ghc-happstack-server for 
openSUSE:Factory checked in at 2017-04-24 09:49:00

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


Package is "ghc-happstack-server"

Mon Apr 24 09:49:00 2017 rev:2 rq:489556 version:7.4.6.4

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-happstack-server/ghc-happstack-server.changes
2017-04-13 10:43:58.594705637 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-happstack-server.new/ghc-happstack-server.changes
   2017-04-24 09:49:01.217950201 +0200
@@ -1,0 +2,10 @@
+Tue Mar 14 09:26:28 UTC 2017 - psim...@suse.com
+
+- Update to version 7.4.6.4 with cabal2obs.
+
+---
+Sun Feb 12 14:15:31 UTC 2017 - psim...@suse.com
+
+- Update to version 7.4.6.3 with cabal2obs.
+
+---

Old:

  happstack-server-7.4.6.2.tar.gz

New:

  happstack-server-7.4.6.4.tar.gz



Other differences:
--
++ ghc-happstack-server.spec ++
--- /var/tmp/diff_new_pack.EQXZdm/_old  2017-04-24 09:49:02.673744301 +0200
+++ /var/tmp/diff_new_pack.EQXZdm/_new  2017-04-24 09:49:02.673744301 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-happstack-server
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,15 +19,14 @@
 %global pkg_name happstack-server
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:7.4.6.2
+Version:7.4.6.4
 Release:0
 Summary:Web related tools and services
 License:BSD-3-Clause
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-base64-bytestring-devel
 BuildRequires:  ghc-blaze-html-devel
 BuildRequires:  ghc-bytestring-devel
@@ -65,7 +64,6 @@
 %if %{with tests}
 BuildRequires:  ghc-HUnit-devel
 %endif
-# End cabal-rpm deps
 
 %description
 Happstack Server provides an HTTP server and a rich set of functions for
@@ -88,20 +86,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache

++ happstack-server-7.4.6.2.tar.gz -> happstack-server-7.4.6.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/happstack-server-7.4.6.2/happstack-server.cabal 
new/happstack-server-7.4.6.4/happstack-server.cabal
--- old/happstack-server-7.4.6.2/happstack-server.cabal 2016-06-05 
22:51:37.0 +0200
+++ new/happstack-server-7.4.6.4/happstack-server.cabal 2017-03-08 
22:41:40.0 +0100
@@ -1,5 +1,5 @@
 Name:happstack-server
-Version: 7.4.6.2
+Version: 7.4.6.4
 Synopsis:Web related tools and services.
 Description: Happstack Server provides an HTTP server and a rich set 
of functions for routing requests, handling query parameters, generating 
responses, working with cookies, serving files, and more. For in-depth 
documentation see the Happstack Crash Course 

 License: BSD3
@@ -9,7 +9,7 @@
 homepage:http://happstack.com
 Category:Web, Happstack
 Build-Type:  Simple
-Cabal-Version:   >= 1.8
+Cabal-Version:   >= 1.10
 Extra-Source-Files:  tests/Happstack/Server/Tests.hs README.md
 tested-with: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2, GHC==8.0.1
 
@@ -20,7 +20,7 @@
 Flag template_haskell
 Description: Template Haskell is available on this system
 Default: True
-Manual: True
+Manual: False
 
 flag network-uri
 description: Get Network.URI from the network-uri package
@@ -75,7 +75,7 @@
  build-depends:network   < 2.6
   Build-Depends:   base   >= 4&& < 5,
base64-bytestring  == 1.0.*,
-   blaze-html >= 0.5  && < 0.9,
+   blaze-html >= 0.5  && < 0.10,
bytestring,
containers,
directory,
@@ -93,6 +93,7 @@
system-filepa

commit wmakerconf for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package wmakerconf for openSUSE:Factory 
checked in at 2017-04-24 09:48:48

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


Package is "wmakerconf"

Mon Apr 24 09:48:48 2017 rev:22 rq:489274 version:2.12

Changes:

--- /work/SRC/openSUSE:Factory/wmakerconf/wmakerconf.changes2017-04-11 
09:40:09.11407 +0200
+++ /work/SRC/openSUSE:Factory/.wmakerconf.new/wmakerconf.changes   
2017-04-24 09:48:51.579313445 +0200
@@ -1,0 +2,6 @@
+Fri Apr  7 20:52:06 UTC 2017 - jeng...@inai.de
+
+- Replace old %makeinstall by %make_install. Remove redundnat
+  %clean section.
+
+---



Other differences:
--
++ wmakerconf.spec ++
--- /var/tmp/diff_new_pack.C5fBH2/_old  2017-04-24 09:48:52.447190696 +0200
+++ /var/tmp/diff_new_pack.C5fBH2/_new  2017-04-24 09:48:52.451190131 +0200
@@ -80,7 +80,7 @@
 # ---
 
 %install
-%makeinstall
+%make_install
 # Change no to nb
 mv %{buildroot}%{_datadir}/locale/no %{buildroot}%{_datadir}/locale/nb
 %find_lang %{name}
@@ -93,9 +93,6 @@
 done
 %fdupes -s %{buildroot}
 
-%clean
-rm -rf $RPM_BUILD_ROOT
-
 %files -f %{name}.lang
 %defattr(-,root,root)
 %doc ABOUT-NLS AUTHORS COPYING ChangeLog MANUAL NEWS NLS-TEAM1 README TODO




commit smc-tools for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package smc-tools for openSUSE:Factory 
checked in at 2017-04-24 09:48:30

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


Package is "smc-tools"

Mon Apr 24 09:48:30 2017 rev:2 rq:489185 version:1.0.0

Changes:

--- /work/SRC/openSUSE:Factory/smc-tools/smc-tools.changes  2017-04-12 
18:23:18.909727136 +0200
+++ /work/SRC/openSUSE:Factory/.smc-tools.new/smc-tools.changes 2017-04-24 
09:48:36.657423930 +0200
@@ -1,0 +2,5 @@
+Mon Apr  3 13:45:31 UTC 2017 - jeng...@inai.de
+
+- Update summary. Replace old RPM shell variables by macros.
+
+---



Other differences:
--
++ smc-tools.spec ++
--- /var/tmp/diff_new_pack.XBgZkA/_old  2017-04-24 09:48:37.377322111 +0200
+++ /var/tmp/diff_new_pack.XBgZkA/_new  2017-04-24 09:48:37.385320980 +0200
@@ -19,7 +19,7 @@
 Version:   1.0.0
 Release:   0
 Url:   https://www.ibm.com/developerworks/linux/linux390/
-Summary:   Shared Memory
+Summary:   Shared Memory Communication via RDMA
 License:   EPL-1.0
 Group: System/Kernel
 Source:%{name}-%{version}.tar.gz
@@ -53,13 +53,13 @@
 
 %build
 MYCFLAGS=$(grep ^CFLAGS Makefile | cut -f2 -d=)
-make CFLAGS="${MYCFLAGS} ${RPM_OPT_FLAGS}"
+make CFLAGS="${MYCFLAGS} %{optflags}"
 
 %install
 %make_install
 
 %ifarch s390 %{ix86} 
-rm -rf ${RPM_BUILD_ROOT}/usr/lib64
+rm -Rf "%{buildroot}/usr/lib64"
 %endif
 
 %files




commit compiz for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package compiz for openSUSE:Factory checked 
in at 2017-04-24 09:48:15

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


Package is "compiz"

Mon Apr 24 09:48:15 2017 rev:129 rq:489084 version:0.8.14

Changes:

--- /work/SRC/openSUSE:Factory/compiz/compiz.changes2017-03-24 
02:23:12.470877797 +0100
+++ /work/SRC/openSUSE:Factory/.compiz.new/compiz.changes   2017-04-24 
09:48:16.576264126 +0200
@@ -1,0 +2,17 @@
+Tue Apr 18 11:10:04 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 0.8.14:
+  * Handle _NET_WM_MOVERESIZE ClientMessages.
+Fixes the whisker menu resize bug.
+  * Improve horizontal and vertical maximizing.
+  * Remove the "Number of Desktops" option.
+  * Fix a crash when displaying special characters in gtk-window-decorator.
+  * Set rotate and wall default flip bindings to None.
+Fixes a problem where edges of screen are unclickable by default.
+  * Fix potential for skydome silently failing to render.
+  * Don't fallback for exceeding max texture size.
+  * Improve --button-layout behavior for gtk-window-decorator.
+  * Update translations.
+- Rebase compiz-suse-defaults.patch.
+
+---

Old:

  compiz-0.8.12.3.tar.xz

New:

  compiz-0.8.14.tar.xz



Other differences:
--
++ compiz.spec ++
--- /var/tmp/diff_new_pack.sKSQh0/_old  2017-04-24 09:48:17.412145902 +0200
+++ /var/tmp/diff_new_pack.sKSQh0/_new  2017-04-24 09:48:17.416145336 +0200
@@ -18,7 +18,7 @@
 
 %define sover   0
 Name:   compiz
-Version:0.8.12.3
+Version:0.8.14
 Release:0
 Summary:OpenGL window and compositing manager
 License:GPL-2.0+ and LGPL-2.1+ and MIT
@@ -27,7 +27,7 @@
 Source: 
https://github.com/compiz-reloaded/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.xz
 Source1:opensuse.png
 Source2:sle.png
-Source6:baselibs.conf
+Source3:baselibs.conf
 # PATCH-FEATURE-OPENSUSE compiz-suse-defaults.patch dims...@opensuse.org -- 
Compiz default settings for openSUSE.
 Patch0: %{name}-suse-defaults.patch
 # PATCH-FIX-UPSTREAM compiz-java-config-notify.diff dreve...@novell.com -- 
Java config notify workaround.
@@ -134,12 +134,12 @@
 Requires:   pkgconfig(fuse)
 Requires:   pkgconfig(gl)
 Requires:   pkgconfig(glu)
-Requires:   pkgconfig(gtk+-2.0)
+Requires:   pkgconfig(gtk+-3.0)
 Requires:   pkgconfig(ice)
 Requires:   pkgconfig(libpng)
 Requires:   pkgconfig(librsvg-2.0)
 Requires:   pkgconfig(libstartup-notification-1.0)
-Requires:   pkgconfig(libwnck-1.0)
+Requires:   pkgconfig(libwnck-3.0)
 Requires:   pkgconfig(libxml-2.0)
 Requires:   pkgconfig(libxslt)
 Requires:   pkgconfig(pangocairo)
@@ -368,8 +368,6 @@
 %{_datadir}/%{name}/*svg.*
 %{_libdir}/%{name}/*switcher.*
 %{_datadir}/%{name}/*switcher.*
-%{_libdir}/%{name}/*video.*
-%{_datadir}/%{name}/*video.*
 %{_libdir}/%{name}/*wall.*
 %{_datadir}/%{name}/*wall.*
 %{_libdir}/%{name}/*water.*

++ compiz-0.8.12.3.tar.xz -> compiz-0.8.14.tar.xz ++
 333856 lines of diff (skipped)

++ compiz-suse-defaults.patch ++
--- /var/tmp/diff_new_pack.sKSQh0/_old  2017-04-24 09:48:18.851942263 +0200
+++ /var/tmp/diff_new_pack.sKSQh0/_new  2017-04-24 09:48:18.851942263 +0200
@@ -1,6 +1,6 @@
 --- a/metadata/core.xml.in.in
 +++ b/metadata/core.xml.in.in
-@@ -16,7 +16,7 @@
+@@ -17,7 +17,7 @@

<_short>Audible Bell
<_long>Audible system beep
@@ -9,7 +9,7 @@


<_short>Ignore Hints When Maximized
-@@ -50,7 +50,7 @@
+@@ -51,7 +51,7 @@

<_short>Ping Delay
<_long>Interval between ping messages
@@ -18,18 +18,9 @@
1000
3

-@@ -235,7 +235,7 @@
-   
-   <_short>Lighting
-   <_long>Use diffuse light when screen is transformed
--  true
-+  false
-   
-   
-   <_short>Detect Refresh Rate
 --- a/metadata/cube.xml.in
 +++ b/metadata/cube.xml.in
-@@ -110,7 +110,7 @@
+@@ -114,7 +114,7 @@
string
file;image;

@@ -38,7 +29,7 @@



-@@ -124,7 +124,7 @@
+@@ -128,7 +128,7 @@

<_short>Skydome
<_long>Render skydome
@@ -47,7 +38,7 @@


<_short>Skydom

commit tpm2-0-tss for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package tpm2-0-tss for openSUSE:Factory 
checked in at 2017-04-24 09:48:25

Comparing /work/SRC/openSUSE:Factory/tpm2-0-tss (Old)
 and  /work/SRC/openSUSE:Factory/.tpm2-0-tss.new (New)


Package is "tpm2-0-tss"

Mon Apr 24 09:48:25 2017 rev:6 rq:489134 version:1.0

Changes:

--- /work/SRC/openSUSE:Factory/tpm2-0-tss/tpm2-0-tss.changes2017-03-03 
17:54:49.653895083 +0100
+++ /work/SRC/openSUSE:Factory/.tpm2-0-tss.new/tpm2-0-tss.changes   
2017-04-24 09:48:30.758258283 +0200
@@ -1,0 +2,5 @@
+Tue Apr 11 14:26:14 UTC 2017 - meiss...@suse.com
+
+- fixed typo in resourcemgr.service (bsc#1031004)
+
+---



Other differences:
--
++ tpm2-0-tss.spec ++
--- /var/tmp/diff_new_pack.SeSV8j/_old  2017-04-24 09:48:31.606138363 +0200
+++ /var/tmp/diff_new_pack.SeSV8j/_new  2017-04-24 09:48:31.610137797 +0200
@@ -91,7 +91,7 @@
 %make_install
 find %{buildroot} -type f -name "*.la" -delete -print
 install -D -m 0644 contrib/resourcemgr.service 
%{buildroot}/%{_unitdir}/resourcemgr.service
-sed -e 's#usr/local/sbin/#usr/sbin#;' -i 
%{buildroot}/%{_unitdir}/resourcemgr.service
+sed -e 's#usr/local/sbin/#usr/sbin/#;' -i 
%{buildroot}/%{_unitdir}/resourcemgr.service
 ln -sv %{_sbindir}/service %{buildroot}%{_sbindir}/rcresourcemgr
 
 %post -n libsapi0 -p /sbin/ldconfig




commit compiz-bcop for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package compiz-bcop for openSUSE:Factory 
checked in at 2017-04-24 09:48:12

Comparing /work/SRC/openSUSE:Factory/compiz-bcop (Old)
 and  /work/SRC/openSUSE:Factory/.compiz-bcop.new (New)


Package is "compiz-bcop"

Mon Apr 24 09:48:12 2017 rev:25 rq:489081 version:0.8.14

Changes:

--- /work/SRC/openSUSE:Factory/compiz-bcop/compiz-bcop.changes  2016-02-26 
00:28:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.compiz-bcop.new/compiz-bcop.changes 
2017-04-24 09:48:14.664534513 +0200
@@ -1,0 +2,6 @@
+Tue Apr 18 11:10:04 UTC 2017 - sor.ale...@meowr.ru
+
+- Update to version 0.8.14:
+  * No changelog available.
+
+---

Old:

  compiz-bcop-0.8.12.tar.xz

New:

  compiz-bcop-0.8.14.tar.xz



Other differences:
--
++ compiz-bcop.spec ++
--- /var/tmp/diff_new_pack.iB91Ac/_old  2017-04-24 09:48:15.272448532 +0200
+++ /var/tmp/diff_new_pack.iB91Ac/_new  2017-04-24 09:48:15.276447967 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package compiz-bcop
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,14 +18,16 @@
 
 %define _name   bcop
 Name:   compiz-bcop
-Version:0.8.12
+Version:0.8.14
 Release:0
 Summary:Compiz option code generator
 License:GPL-2.0+
 Group:  System/GUI/Other
 Url:https://github.com/raveit65/compiz-bcop
 Source: 
https://github.com/raveit65/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.xz
-BuildRequires:  pkg-config
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(libxslt)
 Requires:   xsltproc
 Recommends: compiz >= %{version}
@@ -39,8 +41,9 @@
 %setup -q
 
 %build
+NOCONFIGURE=1 ./autogen.sh
 %configure
-make %{?_smp_mflags}
+make %{?_smp_mflags} V=1
 
 %install
 %make_install

++ compiz-bcop-0.8.12.tar.xz -> compiz-bcop-0.8.14.tar.xz ++
 1716 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/compiz-bcop-0.8.12/ChangeLog new/compiz-bcop-0.8.14/ChangeLog
--- old/compiz-bcop-0.8.12/ChangeLog2015-12-12 20:38:48.0 +0100
+++ new/compiz-bcop-0.8.14/ChangeLog2017-04-18 04:17:57.0 +0200
@@ -0,0 +1,1076 @@
+commit 9315d61c0bfb367bd7d7660dd71ea42a586a0959
+Author: raveit65 
+Date:   Wed Oct 5 07:28:45 2016 +0200
+
+Add Changelog generation
+
+ Makefile.am | 10 ++
+ 1 file changed, 10 insertions(+)
+
+commit a7df60d8c46c946386ec70cd748c448ba82d23ac
+Author: Alexei Sorokin 
+Date:   Mon Sep 26 22:12:03 2016 +0300
+
+Post-release version increment
+
+ VERSION  | 2 +-
+ configure.ac | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+commit 1a9efe2a528c893457379b4efed4bafee6fa4eff
+Author: Sorokin Alexei 
+Date:   Wed Mar 2 01:26:32 2016 +0300
+
+Add missing files to dist and prettify README
+
+Also delete empty ChangeLog file.
+
+ ChangeLog   | 0
+ Makefile.am | 9 +++--
+ README  | 0
+ README.md   | 3 ++-
+ 4 files changed, 9 insertions(+), 3 deletions(-)
+
+commit 730f46b80c25891535c905511d7da6887ce38028
+Author: Sorokin Alexei 
+Date:   Sat Feb 13 00:15:24 2016 +0300
+
+Release version 0.8.12
+
+ NEWS | 5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+commit 8cc2fd3165dd3069d897cc5a6d236b33777100f2
+Author: Sorokin Alexei 
+Date:   Thu Feb 11 18:00:36 2016 +0300
+
+Pre-bump version to 0.8.12
+
+ NEWS | 9 -
+ VERSION  | 2 +-
+ configure.ac | 2 +-
+ 3 files changed, 10 insertions(+), 3 deletions(-)
+
+commit 4ac6c8f4691475fbe4cf08d98db83cf4562e24b7
+Author: Sorokin Alexei 
+Date:   Thu Feb 11 17:59:08 2016 +0300
+
+Stop using mate-autogen in autogen.sh
+
+Was initially added to supress warnings no longer there.
+
+ autogen.sh | 24 +++-
+ 1 file changed, 11 insertions(+), 13 deletions(-)
+
+commit 5d8a6f9368084aa048a33f8b3a1727fec64792bf
+Author: Wolfgang Ulbrich 
+Date:   Thu Oct 29 23:54:49 2015 +0100
+
+Build xz tarballs and require NEWS
+
+ NEWS | 2 +-
+ configure.ac | 6 ++
+ 2 files changed, 3 insertions(+), 5 deletions(-)
+
+commit 1f9a57f16869856fca8f9eecb726c1490011

commit python-monascaclient for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package python-monascaclient for 
openSUSE:Factory checked in at 2017-04-24 09:48:19

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


Package is "python-monascaclient"

Mon Apr 24 09:48:19 2017 rev:2 rq:489115 version:1.5.0

Changes:

--- 
/work/SRC/openSUSE:Factory/python-monascaclient/python-monascaclient.changes
2017-02-21 13:46:33.860327732 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-monascaclient.new/python-monascaclient.changes
   2017-04-24 09:48:25.546995343 +0200
@@ -1,0 +2,5 @@
+Tue Apr 18 14:35:49 UTC 2017 - tbecht...@suse.com
+
+- Add 0001-Added-support-for-os_auth_version-when-os_auth_url-i.patch
+
+---

New:

  0001-Added-support-for-os_auth_version-when-os_auth_url-i.patch



Other differences:
--
++ python-monascaclient.spec ++
--- /var/tmp/diff_new_pack.dgvuno/_old  2017-04-24 09:48:26.446868068 +0200
+++ /var/tmp/diff_new_pack.dgvuno/_new  2017-04-24 09:48:26.450867502 +0200
@@ -25,6 +25,8 @@
 Group:  Development/Languages/Python
 Url:https://launchpad.net/%{sname}
 Source0:
https://pypi.io/packages/source/p/%{sname}/%{sname}-%{version}.tar.gz
+# from https://review.openstack.org/#/c/457663/
+Patch1: 0001-Added-support-for-os_auth_version-when-os_auth_url-i.patch
 BuildRequires:  openstack-macros
 BuildRequires:  python-PrettyTable >= 0.7.1
 BuildRequires:  python-PyYAML >= 3.10.0
@@ -69,7 +71,7 @@
 The Monasca Client was written using the OpenStack Heat Python client as a 
framework.
 
 %prep
-%autosetup -n %{sname}-%{version}
+%autosetup -p1 -n %{sname}-%{version}
 %py_req_cleanup
 
 %build

++ 0001-Added-support-for-os_auth_version-when-os_auth_url-i.patch ++
>From 3a320ee5d14e343debf97a5d06b1af8f24ed8e02 Mon Sep 17 00:00:00 2001
From: Sumit Jamgade 
Date: Tue, 4 Apr 2017 15:32:46 +0200
Subject: [PATCH] Added support for os_auth_version when os_auth_url is
 unversiond

Change-Id: I89e9b040e41caabcf366def480bb5c5cd0eb965d
Story: 2000965
---
 README.rst |  6 +-
 monascaclient/shell.py | 14 ++
 2 files changed, 19 insertions(+), 1 deletion(-)

diff --git a/README.rst b/README.rst
index 970afbe..ddee5cd 100644
--- a/README.rst
+++ b/README.rst
@@ -91,6 +91,8 @@ When using Keystone to obtain the token and endpoint::
   export OS_PROJECT_NAME=
   export OS_AUTH_URL=
   export OS_REGION_NAME=
+  # Optional(specific version added to OS_AUTH_URL if (v2.0 or v3) not present 
already)
+  export OS_AUTH_VERSION=
 
 When OS_USER_DOMAIN_NAME is not set, then 'Default' is assumed. Alternatively 
IDs can be used instead of names.
 
@@ -112,7 +114,7 @@ You'll find complete documentation on the shell by running
[--os-user-domain-id OS_USER_DOMAIN_ID] [--os-user-domain-name 
OS_USER_DOMAIN_NAME]
[--os-project-name OS_PROJECT_NAME]
[--os-project-domain-id OS_PROJECT_DOMAIN_ID] 
[--os-project-domain-name OS_PROJECT_DOMAIN_NAME]
-   [--os-auth-url OS_AUTH_URL] [--os-region-name OS_REGION_NAME]
+   [--os-auth-url OS_AUTH_URL] [--os-auth-version OS_AUTH_VERSION] 
[--os-region-name OS_REGION_NAME]
[--os-auth-token OS_AUTH_TOKEN] [--os-no-client-auth]
[--monasca-api-url MONASCA_API_URL]
[--monasca-api-version MONASCA_API_VERSION]
@@ -187,6 +189,8 @@ You'll find complete documentation on the shell by running
 --os-domain-name OS_DOMAIN_NAME
Defaults to env[OS_DOMAIN_NAME].
 --os-auth-url OS_AUTH_URL  Defaults to env[OS_AUTH_URL].
+  --os-auth-version OS_AUTH_VERSION
+   Defaults to env[OS_AUTH_VERSION].
 --os-region-name OS_REGION_NAME
Defaults to env[OS_REGION_NAME].
 --os-auth-token OS_AUTH_TOKEN
diff --git a/monascaclient/shell.py b/monascaclient/shell.py
index 6fcffc1..bc85a10 100644
--- a/monascaclient/shell.py
+++ b/monascaclient/shell.py
@@ -24,6 +24,8 @@ import logging
 import string
 import sys
 
+from six.moves.urllib.parse import urljoin
+
 import monascaclient
 from monascaclient import client as monasca_client
 from monascaclient.common import utils
@@ -155,6 +157,13 @@ class MonascaShell(object):
 parser.add_argument('--os_auth_url',
 help=argparse.SUPPRESS)
 
+parser.add_argument('--os-auth-version',
+default=utils.env('OS_AUTH_VERSION'),
+help='Defaults to env[OS_AUTH_VERSION].')
+
+parser.add_argument('--os_auth_version',
+   

commit chessx for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package chessx for openSUSE:Factory checked 
in at 2017-04-24 09:48:08

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


Package is "chessx"

Mon Apr 24 09:48:08 2017 rev:4 rq:487946 version:1.4.6

Changes:

--- /work/SRC/openSUSE:Factory/chessx/chessx.changes2017-04-11 
09:46:45.467565467 +0200
+++ /work/SRC/openSUSE:Factory/.chessx.new/chessx.changes   2017-04-24 
09:48:10.389139209 +0200
@@ -1,0 +2,13 @@
+Fri Apr 14 10:19:31 UTC 2017 - aloi...@gmx.com
+
+- Update to version 1.4.6
+  * New feature: Indicate underprotected pieces
+  * New feature: Indicate covered squares
+  * New feature: Book building progress
+  * Bugfix: Annotations remain visible after adding variation
+  * Bugfix: Saving games on non-current database
+  * Bugfix: Name of downloaded files
+  * Bugfix: Crash engine accessing closed book
+  * Changed: Use more threads for book building
+
+---

Old:

  chessx-1.4.4.tgz

New:

  chessx-1.4.6.tgz



Other differences:
--
++ chessx.spec ++
--- /var/tmp/diff_new_pack.MOxtpR/_old  2017-04-24 09:48:11.600967812 +0200
+++ /var/tmp/diff_new_pack.MOxtpR/_new  2017-04-24 09:48:11.604967246 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   chessx
-Version:1.4.4
+Version:1.4.6
 Release:0
 Summary:Chess database
 License:GPL-2.0
@@ -28,6 +28,7 @@
 BuildRequires:  libqt5-linguist
 BuildRequires:  libqt5-qtbase-common-devel
 BuildRequires:  pkg-config
+BuildRequires:  pkgconfig(Qt5Concurrent)
 BuildRequires:  pkgconfig(Qt5Multimedia)
 BuildRequires:  pkgconfig(Qt5PrintSupport)
 BuildRequires:  pkgconfig(Qt5Svg)

++ chessx-1.4.4.tgz -> chessx-1.4.6.tgz ++
 2412 lines of diff (skipped)




commit argon2 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package argon2 for openSUSE:Factory checked 
in at 2017-04-24 09:48:17

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


Package is "argon2"

Mon Apr 24 09:48:17 2017 rev:4 rq:489103 version:0.0+20161029

Changes:

--- /work/SRC/openSUSE:Factory/argon2/argon2.changes2017-03-02 
19:29:35.337413138 +0100
+++ /work/SRC/openSUSE:Factory/.argon2.new/argon2.changes   2017-04-24 
09:48:24.195186536 +0200
@@ -1,0 +2,5 @@
+Tue Apr 18 14:01:09 UTC 2017 - meiss...@suse.com
+
+- ship libargon2.pc (bsc#1034441)
+
+---



Other differences:
--
++ argon2.spec ++
--- /var/tmp/diff_new_pack.lBDrA1/_old  2017-04-24 09:48:25.323027019 +0200
+++ /var/tmp/diff_new_pack.lBDrA1/_new  2017-04-24 09:48:25.327026454 +0200
@@ -27,6 +27,7 @@
 Url:https://github.com/P-H-C/phc-winner-argon2
 Source: 
https://github.com/P-H-C/phc-winner-argon2/archive/%{_version}.tar.gz#/phc-winner-argon2-%{_version}.tar.gz
 Patch1: optflags.patch
+BuildRequires:  pkgconfig
 BuildRequires:  sed
 ExclusiveArch:  i686 x86_64
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -83,6 +84,7 @@
 ln -s %{_libdir}/libargon2.so.0 %{buildroot}%{_libdir}/libargon2.so
 
 install -D -m 644 man/argon2.1 %{buildroot}%{_mandir}/man1/argon2.1
+install -D -m 644 libargon2.pc %{buildroot}/%{_libdir}/pkgconfig/libargon2.pc
 
 %check
 make CFLAGS="-pthread %{optflags} -Iinclude -Isrc" test
@@ -108,5 +110,6 @@
 %defattr(-,root,root)
 %{_includedir}/argon2.h
 %{_libdir}/libargon2.so
+%{_libdir}/pkgconfig/libargon2.pc
 
 %changelog




commit python-rtslib-fb for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package python-rtslib-fb for 
openSUSE:Factory checked in at 2017-04-24 09:48:03

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


Package is "python-rtslib-fb"

Mon Apr 24 09:48:03 2017 rev:9 rq:487880 version:2.1.63

Changes:

--- /work/SRC/openSUSE:Factory/python-rtslib-fb/python-rtslib-fb.changes
2016-06-29 15:10:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-rtslib-fb.new/python-rtslib-fb.changes   
2017-04-24 09:48:03.878060110 +0200
@@ -1,0 +2,14 @@
+Thu Apr 13 07:11:02 UTC 2017 - h...@suse.com
+
+- Update to version 2.1.63:
+  * Get/Set LUN's ALUA group
+  * Add ALUA restore support
+  * Delete ALUA groups with its storage object
+  * version 2.1.fb62
+  * Do not set alua_tg_pt_gp if not supported
+  * Add ability to invalidate caches
+  * Add ALUA supported method
+  * Don't raise exception when getting/setting a LUNs ALUA group
+  * update to 2.1.fb63
+
+---

Old:

  rtslib-fb-2.1.fb60.tar.gz

New:

  _service
  _servicedata
  rtslib-fb-2.1.fb63.tar.xz



Other differences:
--
++ python-rtslib-fb.spec ++
--- /var/tmp/diff_new_pack.lstI0T/_old  2017-04-24 09:48:04.577961119 +0200
+++ /var/tmp/diff_new_pack.lstI0T/_new  2017-04-24 09:48:04.581960554 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-rtslib-fb
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,20 +17,21 @@
 
 
 %define oname rtslib-fb
-%define realver 2.1.fb60
+%define realver 2.1.fb63
 
 Name:   python-%{oname}
-Version:2.1.60
-Release:1%{?dist}
-Url:http://github.com/agrover/rtslib-fb
+Version:2.1.63
+Release:0%{?dist}
+Url:http://github.com/open-iscsi/rtslib-fb.git
 Summary:API for Linux kernel SCSI target (aka LIO)
 License:Apache-2.0
 Group:  Development/Languages/Python
-Source: %{oname}-%{realver}.tar.gz
+Source: %{oname}-%{realver}.tar.xz
 Conflicts:  python-rtslib
 BuildRequires:  fdupes
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
+BuildRequires:  python-six
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   pyudev
 

++ _service ++

  
git
https://github.com/open-iscsi/rtslib-fb.git

rtslib-fb
2.1.fb63
v2.1.fb63
enable
  
  
*rtslib-fb*.tar
xz
  
  

++ _servicedata ++


https://github.com/open-iscsi/rtslib-fb.git
  3637171a68889e340f553943f25d6a5ca20ad1ca


commit python-itsdangerous for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package python-itsdangerous for 
openSUSE:Factory checked in at 2017-04-24 09:47:59

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


Package is "python-itsdangerous"

Mon Apr 24 09:47:59 2017 rev:5 rq:487846 version:0.24

Changes:

--- /work/SRC/openSUSE:Factory/python-itsdangerous/python-itsdangerous.changes  
2016-11-28 15:06:32.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-itsdangerous.new/python-itsdangerous.changes 
2017-04-24 09:48:02.574244517 +0200
@@ -1,0 +2,5 @@
+Tue Apr  4 15:53:02 UTC 2017 - jmate...@suse.com
+
+- update for singlespec
+
+---



Other differences:
--
++ python-itsdangerous.spec ++
--- /var/tmp/diff_new_pack.owHHuc/_old  2017-04-24 09:48:03.630095182 +0200
+++ /var/tmp/diff_new_pack.owHHuc/_new  2017-04-24 09:48:03.634094616 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-itsdangerous
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,6 +16,7 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-itsdangerous
 Version:0.24
 Release:0
@@ -23,14 +24,12 @@
 License:BSD-3-Clause
 Group:  Development/Languages/Python
 Url:http://github.com/mitsuhiko/itsdangerous
-Source: 
https://pypi.python.org/packages/source/i/itsdangerous/itsdangerous-%{version}.tar.gz
-BuildRequires:  python-devel
+Source: 
https://files.pythonhosted.org/packages/source/i/itsdangerous/itsdangerous-%{version}.tar.gz
+BuildRequires:  %{python_module devel}
+BuildRequires:  python-rpm-macros
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
 BuildArch:  noarch
-%endif
+%python_subpackages
 
 %description
 It's Dangerous
@@ -45,17 +44,16 @@
 
 Also I plan to add some extra things.  Work in progress.
 
-
 %prep
 %setup -q -n itsdangerous-%{version}
 
 %build
-python setup.py build
+%python_build
 
 %install
-python setup.py install --prefix=%{_prefix} --root=%{buildroot}
+%python_install
 
-%files
+%files %{python_files}
 %defattr(-,root,root,-)
 %doc CHANGES LICENSE README
 %{python_sitelib}/*




commit libmirage for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package libmirage for openSUSE:Factory 
checked in at 2017-04-24 09:47:49

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


Package is "libmirage"

Mon Apr 24 09:47:49 2017 rev:16 rq:487460 version:3.0.5

Changes:

--- /work/SRC/openSUSE:Factory/libmirage/libmirage.changes  2017-02-09 
11:17:05.382566411 +0100
+++ /work/SRC/openSUSE:Factory/.libmirage.new/libmirage.changes 2017-04-24 
09:47:49.760056910 +0200
@@ -1,0 +2,11 @@
+Sat Apr 06 08:39:43 UTC 2017 - zeni...@ya.ru
+
+- Fix SLES 11 build. We're also need Glib 2.28 instead of 2.22.5.
+  Most desktop and workstation users are turn on Packman
+  repository, so they're have Glib 2.28 installed from there.
+- Added 01_g_assert_nonnull.diff patch taken from Cdemu PPA.
+- Add libmirage-3.0.5-glib-2.28-workaround.patch
+- Add glib2-devel as a required for the -devel package. That fixes
+  some rpmbuild warning.
+
+---

New:

  01_g_assert_nonnull.diff
  libmirage-3.0.5-glib-2.28-workaround.patch



Other differences:
--
++ libmirage.spec ++
--- /var/tmp/diff_new_pack.Jb9Z54/_old  2017-04-24 09:47:51.107866280 +0200
+++ /var/tmp/diff_new_pack.Jb9Z54/_new  2017-04-24 09:47:51.111865715 +0200
@@ -28,6 +28,23 @@
 
 #Git-Clone: git://git.code.sf.net/p/cdemu/code
 Source: http://downloads.sf.net/cdemu/%name-%version.tar.bz2
+# A patch taken from Cdemu PPA
+Patch1: 01_g_assert_nonnull.diff
+# SLES 11 is still supported
+%if 0%{?sles_version} && 0%{?suse_version} == 1110
+Patch2: libmirage-3.0.5-glib-2.28-workaround.patch
+# Dependencies list in an old style
+BuildRequires:  cmake >= 2.8.5
+BuildRequires:  glib2-devel >= 2.28
+BuildRequires:  gtk-doc >= 1.4
+BuildRequires:  libbz2-devel >= 1.0.0
+BuildRequires:  libsamplerate-devel >= 0.1.0
+BuildRequires:  libsndfile-devel >= 1.0.0
+BuildRequires:  pkg-config >= 0.16
+BuildRequires:  shared-mime-info
+BuildRequires:  xz-devel >= 5.0.0
+BuildRequires:  zlib-devel >= 1.2.0
+%else
 BuildRequires:  cmake >= 2.8.5
 BuildRequires:  pkg-config >= 0.16
 BuildRequires:  pkgconfig(bzip2) >= 1.0.0
@@ -41,6 +58,8 @@
 BuildRequires:  pkgconfig(shared-mime-info)
 BuildRequires:  pkgconfig(sndfile) >= 1.0.0
 BuildRequires:  pkgconfig(zlib) >= 1.2.0
+%endif
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 A CD-ROM image access library part of the cdemu suite.
@@ -80,6 +99,7 @@
 Summary:Development files for libmirage, a CD-ROM image access library
 Group:  Development/Libraries/C and C++
 Requires:   %lname = %version
+Requires:   glib2-devel
 
 %description devel
 A CD-ROM image access library part of the cdemu suite.
@@ -95,7 +115,9 @@
 Group:  Development/Libraries/C and C++
 Requires(post): shared-mime-info
 Requires(postun): shared-mime-info
+%if 0%{?suse_version} >= 1130
 BuildArch:  noarch
+%endif
 
 %description data
 libmirage provides uniform access to the data stored in different
@@ -105,7 +127,7 @@
 This package contains the MIME type definitions and documentation.
 
 %package -n typelib-1_0-libmirage-%pname
-Summary:The libmirage CD-ROM image access library – introspection 
bindings
+Summary:The libmirage CD-ROM image access library – introspection 
bindings
 Group:  System/Libraries
 
 %description -n typelib-1_0-libmirage-%pname
@@ -117,6 +139,10 @@
 
 %prep
 %setup -q
+%patch1 -p1
+%if 0%{?sles_version} && 0%{?suse_version} == 1110
+%patch2 -p1
+%endif
 
 %build
 %cmake -DCMAKE_MODULE_LINKER_FLAGS=""
@@ -129,10 +155,18 @@
 %postun -n %lname -p /sbin/ldconfig
 
 %post data
+%if 0%{?sles_version} && 0%{?suse_version} == 1110
+/usr/bin/update-mime-database %{_datadir}/mime &> /dev/null || :
+%else
 %mime_database_post
+%endif
 
 %postun data
+%if 0%{?sles_version} && 0%{?suse_version} == 1110
+/usr/bin/update-mime-database %{_datadir}/mime &> /dev/null || :
+%else
 %mime_database_postun
+%endif
 
 %files -n %lname
 %defattr(-,root,root)
@@ -152,10 +186,12 @@
 %_includedir/libmirage-3.0/
 %_libdir/libmirage.so
 %_libdir/pkgconfig/libmirage.pc
+%if 0%{?suse_version} > 1110
 %_datadir/gir-1.0
 
 %files -n typelib-1_0-libmirage-%pname
 %defattr(-,root,root)
 %_libdir/girepository-1.0
+%endif
 
 %changelog

++ 01_g_assert_nonnull.diff ++
Index: libmirage-3.0.5/images/image-ccd/parser.c
===
--- libmirage-3.0.5.orig/images/image-ccd/parser.c  2016-10-19 
20:45:47.238020045 +0200
+++ libmirage-3.0.5/images/image-ccd/parser.c   2016-10-19 20:46:38.188531986 
+0200
@@ -927,7 +927,7 @@
 
 CCD_RegexRule *new_rule =

commit qscintilla-qt5 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package qscintilla-qt5 for openSUSE:Factory 
checked in at 2017-04-24 09:47:36

Comparing /work/SRC/openSUSE:Factory/qscintilla-qt5 (Old)
 and  /work/SRC/openSUSE:Factory/.qscintilla-qt5.new (New)


Package is "qscintilla-qt5"

Mon Apr 24 09:47:36 2017 rev:2 rq:484372 version:2.10

Changes:

--- /work/SRC/openSUSE:Factory/qscintilla-qt5/python-qscintilla-qt5.changes 
2016-10-19 13:01:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.qscintilla-qt5.new/python-qscintilla-qt5.changes
2017-04-24 09:47:36.461937750 +0200
@@ -1,0 +2,78 @@
+Sun Mar 12 16:15:39 UTC 2017 - toddrme2...@gmail.com
+
+- Implement single-spec version
+
+---
+Wed Mar  1 02:22:52 UTC 2017 - ter...@gmail.com
+
+- Update to 2.10
+  - Based on Scintilla v3.7.2.
+  - Added the QsciLexerJSON class.
+  - Added the QsciLexerMarkdown class.
+  - Added replaceHorizontalScrollBar() and replaceVerticalScrollBar() to
+QsciScintillaBase.
+  - Added bytes() and a corresponding text() overload to QsciScintilla.
+  - Added EdgeMultipleLines to QsciScintilla::EdgeMode.
+  - Added addEdgeColumn() and clearEdgeColumns() to QsciScintilla.
+  - Added the marginRightClicked() signal to QsciScintilla.
+  - Added SymbolMarginColor to QsciScintilla::MarginType.
+  - Added setMarginBackgroundColor() and marginBackgroundColor() to
+QsciScintilla.
+  - Added setMargins() and margins() to QsciScintilla.
+  - Added TriangleIndicator and TriangleCharacterIndicator to
+QsciScintilla::IndicatorStyle.
+  - Added WsVisibleOnlyInIndent to QsciScintilla::WhitespaceVisibility.
+  - Added TabDrawMode, setTabDrawMode() and tabDrawMode() to QsciScintilla.
+  - Added InstanceProperty to QsciLexerCoffeeScript.
+  - Added EDGE_MULTILINE to QsciScintillaBase.
+  - Added INDIC_POINT and INDIC_POINTCHARACTER to QsciScintillaBase.
+  - Added SC_AC_FILLUP, SC_AC_DOUBLECLICK, SC_AC_TAB, SC_AC_NEWLINE and
+SC_AC_COMMAND to QsciScintillaBase.
+  - Added SC_CASE_CAMEL to QsciScintillaBase.
+  - Added SC_CHARSET_CYRILLIC and SC_CHARSET_OEM866 to QsciScintillaBase.
+  - Added SC_FOLDDISPLAYTEXT_HIDDEN, SC_FOLDDISPLAYTEXT_STANDARD and
+SC_FOLDDISPLAYTEXT_BOXED to QsciScintillaBase.
+  - Added SC_IDLESTYLING_NONE, SC_IDLESTYLING_TOVISIBLE,
+SC_IDLESTYLING_AFTERVISIBLE and SC_IDLESTYLING_ALL to QsciScintillaBase.
+  - Added SC_MARGIN_COLOUR to QsciScintillaBase.
+  - Added SC_POPUP_NEVER, SC_POPUP_ALL and SC_POPUP_TEXT to QsciScintillaBase.
+  - Added SCI_FOLDDISPLAYTEXTSETSTYLE and SCI_TOGGLEFOLDSHOWTEXT to
+QsciScintillaBase.
+  - Added SCI_GETIDLESTYLING and SCI_SETIDLESTYLING to QsciScintillaBase.
+  - Added SCI_GETMARGINBACKN and SCI_SETMARGINBACKN to QsciScintillaBase.
+  - Added SCI_GETMARGINS and SCI_SETMARGINS to QsciScintillaBase.
+  - Added SCI_GETMOUSEWHEELCAPTURES and SCI_SETMOUSEWHEELCAPTURES to
+QsciScintillaBase.
+  - Added SCI_GETTABDRAWMODE and SCI_SETTABDRAWMODE to QsciScintillaBase.
+  - Added SCI_ISRANGEWORD to QsciScintillaBase.
+  - Added SCI_MULTIEDGEADDLINE and SCI_MULTIEDGECLEARALL to QsciScintillaBase.
+  - Added SCI_MULTIPLESELECTADDNEXT and SCI_MULTIPLESELECTADDEACH to
+QsciScintillaBase.
+  - Added SCI_TARGETWHOLEDOCUMENT to QsciScintillaBase.
+  - Added SCLEX_JSON and SCLEX_EDIFACT to QsciScintillaBase.
+  - Added SCTD_LONGARROW and SCTD_STRIKEOUT to QsciScintillaBase.
+  - Added SCVS_NOWRAPLINESTART to QsciScintillaBase.
+  - Added SCWS_VISIBLEONLYININDENT to QsciScintillaBase.
+  - Added STYLE_FOLDDISPLAYTEXT to QsciScintillaBase.
+  - Added the SCN_AUTOCCOMPLETED() signal to QsciScintillaBase.
+  - Added the overloaded SCN_AUTOCSELECTION() and SCN_USERLISTSELECTION()
+signals to QsciScintillaBase.
+  - Added the SCN_MARGINRIGHTCLICK() signal to QsciScintillaBase.
+  - Renamed SCI_GETTARGETRANGE to SCI_GETTARGETTEXT in QsciScintillaBase.
+  - Removed SCI_GETKEYSUNICODE and SCI_SETKEYSUNICODE to QsciScintillaBase.
+  - The autoCompletionFillups(), autoCompletionWordSeparators(), blockEnd(),
+blockLookback(), blockStart(), blockStartKeyword(), braceStyle(),
+caseSensitive(), indentationGuideView() and defaultStyle() methods of
+QsciLexer are no longer marked as internal and are exposed to Python so
+that they may be used by QsciLexerCustom sub-classes.
+  - The name of the library has been changed to include the major version
+number of the version of Qt it is built against (ie. 4 or 5).
+
+---
+Tue Jan  3 21:59:21 UTC 2017 - ter...@gmail.com
+
+- Update to 2.9.4
+  - Added the .api file for Python v3.6.
+  - Bug fixes.
+
+---
--- /work/SRC/openSUSE:Factory/qscintilla-qt5/qscintilla-qt5.changes

commit python-Werkzeug for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package python-Werkzeug for openSUSE:Factory 
checked in at 2017-04-24 09:47:54

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


Package is "python-Werkzeug"

Mon Apr 24 09:47:54 2017 rev:17 rq:487845 version:0.12.1

Changes:

--- /work/SRC/openSUSE:Factory/python-Werkzeug/python-Werkzeug-doc.changes  
2016-09-27 13:44:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-Werkzeug.new/python-Werkzeug-doc.changes 
2017-04-24 09:47:55.995175037 +0200
@@ -1,0 +2,6 @@
+Tue Apr  4 15:47:05 UTC 2017 - jmate...@suse.com
+
+- update to 0.12.1
+- use python3-Sphinx for build
+
+---
--- /work/SRC/openSUSE:Factory/python-Werkzeug/python-Werkzeug.changes  
2016-11-28 15:06:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-Werkzeug.new/python-Werkzeug.changes 
2017-04-24 09:47:56.059165986 +0200
@@ -1,0 +2,49 @@
+Tue Apr  4 15:26:59 UTC 2017 - jmate...@suse.com
+
+- update for singlespec
+- update to 0.12.1
+  * deprecate werkzeug.script
+  * Use `inspect.getfullargspec` internally when available as
+`inspect.getargspec` is gone in 3.6
+  * Added support for status code 451 and 423
+  * Improved the build error suggestions.  In particular only if
+someone stringifies the error will the suggestions be calculated.
+  * Added support for uWSGI's caching backend.
+  * Fix a bug where iterating over a `FileStorage` would result in an infinite
+loop.
+  * Datastructures now inherit from the relevant baseclasses from the
+`collections` module in the stdlib. See #794.
+  * Add support for recognizing NetBSD, OpenBSD, FreeBSD, DragonFlyBSD 
platforms
+in the user agent string.
+  * Recognize SeaMonkey browser name and version correctly
+  * Recognize Baiduspider, and bingbot user agents
+  * If `LocalProxy`'s wrapped object is a function, refer to it with 
__wrapped__
+attribute.
+  * The defaults of ``generate_password_hash`` have been changed to more secure
+ones, see pull request ``#753``.
+  * Add support for encoding in options header parsing, see pull request
+``#933``.
+  * ``test.Client`` now properly handles Location headers with relative URLs, 
see
+pull request ``#879``.
+  * When `HTTPException` is raised, it now prints the description, for easier
+debugging.
+  * Werkzeug's dict-like datastructures now have ``view``-methods under Python 
2,
+see pull request ``#968``.
+  * Fix a bug in ``MultiPartParser`` when no ``stream_factory`` was provided
+during initialization, see pull request ``#973``.
+  * Disable autocorrect and spellchecker in the debugger middleware's Python
+prompt, see pull request ``#994``.
+  * Don't redirect to slash route when method doesn't match, see pull request
+``#907``.
+  * Fix a bug when using ``SharedDataMiddleware`` with frozen packages, see 
pull
+request ``#959``.
+  * `Range` header parsing function fixed for invalid values ``#974``.
+  * Add support for byte Range Requests, see pull request ``#978``.
+  * Use modern cryptographic defaults in the dev servers ``#1004``.
+  * the post() method of the test client now accept file object through the 
data
+parameter.
+  * Color run_simple's terminal output based on HTTP codes ``#1013``.
+  * Fix self-XSS in debugger console, see ``#1031``.
+  * Fix IPython 5.x shell support, see ``#1033``.
+
+---

Old:

  Werkzeug-0.11.11.tar.gz

New:

  Werkzeug-0.12.1.tar.gz



Other differences:
--
++ python-Werkzeug-doc.spec ++
--- /var/tmp/diff_new_pack.je324C/_old  2017-04-24 09:47:56.843055116 +0200
+++ /var/tmp/diff_new_pack.je324C/_new  2017-04-24 09:47:56.847054550 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-Werkzeug-doc
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,23 +16,24 @@
 #
 
 
+%{?!python_module:%define python_module() python-%{**} python3-%{**}}
 Name:   python-Werkzeug-doc
-Version:0.11.11
+Version:0.12.1
 Release:0
 Url:http://werkzeug.pocoo.org/
-Summary:Documentation for python3-Werkzeug
+Summary:Documentation for python-Werkzeug
 License:BSD-3-Clause
 Group:  Documentation/Other
 Source: 
https://files.pythonhosted.org/packages/source/W/Werkzeug/Werkzeug-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}

commit systemd for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package systemd for openSUSE:Factory checked 
in at 2017-04-24 09:47:19

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


Package is "systemd"

Mon Apr 24 09:47:19 2017 rev:253 rq:487063 version:232

Changes:

--- /work/SRC/openSUSE:Factory/systemd/systemd-mini.changes 2017-03-17 
14:59:34.940813003 +0100
+++ /work/SRC/openSUSE:Factory/.systemd.new/systemd-mini.changes
2017-04-24 09:47:21.068115003 +0200
@@ -1,0 +2,17 @@
+Mon Apr 10 09:38:45 UTC 2017 - f...@suse.com
+
+- Import commit f0325620d23a247682c629d28883a364e4a7a8c4
+
+  327814841 core: when a unit's SourcePath points to API VFS pretend we are 
never out-of-date (#5487)
+  f4b9fb58e units: move Before deps for quota services to remote-fs.target 
(#5627) (bsc#1028263)
+  44b9d27f8 udev: net_id - support predictable ifnames on vio buses (#5675) 
(bnc#1029183)
+  64f4761c9 units: apply plymouth warning fix to in rescue mode as well (#5615)
+  77607b887 units: do not throw a warning in emergency mode if plymouth is not 
installed (#5528) (bsc#1025398)
+  336d6016c core: downgrade "Time has been changed" to debug (#4906) 
(bsc#1028610)
+
+---
+Wed Mar 22 13:24:57 UTC 2017 - f...@suse.com
+
+- Consider chroot updates in fix-machines-subvol-for-rollbacks.sh (bsc#1030290)
+
+---
systemd.changes: same change



Other differences:
--
systemd.spec: same change
++ fix-machines-subvol-for-rollbacks.sh ++
--- /var/tmp/diff_new_pack.JJ1ivZ/_old  2017-04-24 09:47:22.219952091 +0200
+++ /var/tmp/diff_new_pack.JJ1ivZ/_new  2017-04-24 09:47:22.223951525 +0200
@@ -57,9 +57,26 @@
 }
 
 #
-# If something is already mounted don't try to fix anything, the
-# subvolume has already been created by either mksubvolume(8) or by
-# the admin. In the later case we don't want to screw up his setup.
+# If there's already an entry in fstab for /var/lib/machines, it
+# means that:
+#
+#   - the installer initialized /var/lib/machines correctly (default)
+#   - we already fixed it
+#   - the sysadmin added it manually
+#
+# In any cases we should exit.
+#
+# Note: we can't simply check if /var/lib/machines has been mounted
+# because an update through a chroot might be in progress (see
+# bsc#1030290).
+#
+if mount --fake /var/lib/machines 2>/dev/null; then
+   exit
+fi
+
+#
+# If something is already mounted don't try to fix anything, it's been
+# done manually by the sysadmin.
 #
 if mountpoint -q /var/lib/machines; then
exit

++ systemd-232.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/systemd-232/src/core/manager.c 
new/systemd-232/src/core/manager.c
--- old/systemd-232/src/core/manager.c  2017-03-07 10:19:41.0 +0100
+++ new/systemd-232/src/core/manager.c  2017-04-10 12:06:11.0 +0200
@@ -2151,7 +2151,7 @@
 assert(m);
 assert(m->time_change_fd == fd);
 
-log_struct(LOG_INFO,
+log_struct(LOG_DEBUG,
LOG_MESSAGE_ID(SD_MESSAGE_TIME_CHANGE),
LOG_MESSAGE("Time has been changed"),
NULL);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/systemd-232/src/core/unit.c 
new/systemd-232/src/core/unit.c
--- old/systemd-232/src/core/unit.c 2017-03-07 10:19:41.0 +0100
+++ new/systemd-232/src/core/unit.c 2017-04-10 12:06:11.0 +0200
@@ -3110,6 +3110,11 @@
 if (!path)
 return false;
 
+/* If the source is some virtual kernel file system, then we assume we 
watch it anyway, and hence pretend we
+ * are never out-of-date. */
+if (path_startswith(path, "/proc") || path_startswith(path, "/sys"))
+return false;
+
 if (stat(path, &st) < 0)
 /* What, cannot access this anymore? */
 return true;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/systemd-232/src/udev/udev-builtin-net_id.c 
new/systemd-232/src/udev/udev-builtin-net_id.c
--- old/systemd-232/src/udev/udev-builtin-net_id.c  2017-03-07 
10:19:41.0 +0100
+++ new/systemd-232/src/udev/udev-builtin-net_id.c  2017-04-10 
12:06:11.0 +0200
@@ -44,6 +44,7 @@
  * — PCI geographical location
  *   
[P]ps[f][u][..][c][i]
  * — USB port number chain
+ *   v   - VIO slot number (IBM PowerVM)
  *
  * All multi-function PCI devices will carry the

commit highlight for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package highlight for openSUSE:Factory 
checked in at 2017-04-24 09:46:50

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


Package is "highlight"

Mon Apr 24 09:46:50 2017 rev:9 rq:488007 version:3.36

Changes:

--- /work/SRC/openSUSE:Factory/highlight/highlight.changes  2017-02-08 
10:40:52.571690884 +0100
+++ /work/SRC/openSUSE:Factory/.highlight.new/highlight.changes 2017-04-24 
09:46:51.676272104 +0200
@@ -1,0 +2,29 @@
+Fri Apr 14 20:09:00 UTC 2017 - antoine.belv...@opensuse.org
+
+- Update to version 3.36:
+  * Fix code folding plugin to support more Ruby conditional
+modifiers
+  * Fix Perl quoted string highlighting
+  * Add new GeneratorOverride syntax definition parameter
+  * Add Filenames parameter in filetypes.conf to assign input
+filenames to syntax types
+  * Add FASM definition and edit-fasm theme
+  * Add outhtml_ie7_webctrl plug-in
+  * GUI: File extensions can be configured for multiple languages,
+triggers syntax selection prompt
+  * GUI: Added Italian translation
+- Changes from version 3.35:
+  * Fix code folding plugin to support Ruby conditional modifiers
+  * Fix JSON definition
+  * Fix output of unknown syntax warning with applied force switch
+  * Add state trace parameter to Decorate plug-in function 
+  * Add GDScript definition and edit-godot theme
+  * Update SWIG code samples
+  * Update Artistic Style lib
+  * Revise docs
+  * CLI: Fix creation of hidden files if output filename is
+prepended by its input path
+  * CLI: added switch --stdout
+- Drop highlight-3.34-use-default-compiler.patch (fixed upstream).
+
+---

Old:

  highlight-3.34-use-default-compiler.patch
  highlight-3.34.tar.bz2
  highlight-3.34.tar.bz2.asc

New:

  highlight-3.36.tar.bz2
  highlight-3.36.tar.bz2.asc



Other differences:
--
++ highlight.spec ++
--- /var/tmp/diff_new_pack.3o4fV9/_old  2017-04-24 09:46:52.532151051 +0200
+++ /var/tmp/diff_new_pack.3o4fV9/_new  2017-04-24 09:46:52.532151051 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   highlight
-Version:3.34
+Version:3.36
 Release:0
 Summary:Universal Source Code to Formatted Text Converter
 License:GPL-3.0+
@@ -30,8 +30,6 @@
 Patch0: highlight-3.32-fix-doc-dir.patch
 # PATCH-FIX-OPENSUSE highlight-3.34-use_optflags.patch
 Patch1: highlight-3.34-use_optflags.patch
-# PATCH-FIX-UPSTREAM highlight-3.34-use-default-compiler.patch -- Don't force 
the use of clang for gui code without reason
-Patch2: highlight-3.34-use-default-compiler.patch
 %if 0%{?suse_version} > 1325
 BuildRequires:  libboost_headers-devel
 %else
@@ -68,7 +66,6 @@
 %setup -q
 %patch0 -p1
 %patch1
-%patch2
 
 %build
 make OPTFLAGS="%{optflags}" %{?_smp_mflags}

++ highlight-3.34.tar.bz2 -> highlight-3.36.tar.bz2 ++
 15296 lines of diff (skipped)





commit libinput for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package libinput for openSUSE:Factory 
checked in at 2017-04-24 09:47:02

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


Package is "libinput"

Mon Apr 24 09:47:02 2017 rev:43 rq:488626 version:1.7.0

Changes:

--- /work/SRC/openSUSE:Factory/libinput/libinput.changes2017-04-11 
09:28:42.820496597 +0200
+++ /work/SRC/openSUSE:Factory/.libinput.new/libinput.changes   2017-04-24 
09:47:02.570731220 +0200
@@ -1,0 +2,7 @@
+Sat Apr 15 02:03:21 UTC 2017 - badshah...@gmail.com
+
+- Add libinput-elantech-pressure-levels.patch to fix pressure
+  sensitivity for ELANTECH touchpads causing uncomfortable
+  two-finger taps, scrolls (boo#1034335, fdo#100463).
+
+---

New:

  libinput-elantech-pressure-levels.patch



Other differences:
--
++ libinput.spec ++
--- /var/tmp/diff_new_pack.ciw6m2/_old  2017-04-24 09:47:04.326482892 +0200
+++ /var/tmp/diff_new_pack.ciw6m2/_new  2017-04-24 09:47:04.330482327 +0200
@@ -32,6 +32,7 @@
 Source2:
http://freedesktop.org/software/libinput/%name-%version.tar.xz.sig
 Source3:baselibs.conf
 Source4:%name.keyring
+Patch1: libinput-elantech-pressure-levels.patch
 #git#BuildRequires:  autoconf >= 2.64
 #git#BuildRequires:  automake >= 1.11
 #git#BuildRequires:  libtool >= 2.2
@@ -98,6 +99,7 @@
 
 %prep
 %setup -qn %name-%version
+%patch -P 1 -p1
 
 %build
 if [ ! -e configure ]; then


++ libinput-elantech-pressure-levels.patch ++
From: badshah...@gmail.com

Fix pressure sensitivity for ELANTECH touchpads causing uncomfortable
two-finger taps, scrolls.

References: http://bugzilla.opensuse.org/1034335
References: http://bugs.freedesktop.orgs/100463

Index: libinput-1.7.0/src/evdev-mt-touchpad.c
===
--- libinput-1.7.0.orig/src/evdev-mt-touchpad.c
+++ libinput-1.7.0/src/evdev-mt-touchpad.c
@@ -2383,8 +2383,8 @@ tp_init_pressure(struct tp_dispatch *tp,
range = abs->maximum - abs->minimum;
 
if (device->model_flags & EVDEV_MODEL_ELANTECH_TOUCHPAD) {
-   tp->pressure.high = 24;
-   tp->pressure.low = 10;
+   tp->pressure.high = 10;
+   tp->pressure.low = 8;
} else if (device->model_flags & EVDEV_MODEL_CYAPA) {
tp->pressure.high = 10;
tp->pressure.low = 8;



commit cppunit for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package cppunit for openSUSE:Factory checked 
in at 2017-04-24 09:46:55

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


Package is "cppunit"

Mon Apr 24 09:46:55 2017 rev:3 rq:488418 version:1.14.0

Changes:

--- /work/SRC/openSUSE:Factory/cppunit/cppunit.changes  2013-11-22 
17:34:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.cppunit.new/cppunit.changes 2017-04-24 
09:46:59.171212039 +0200
@@ -1,0 +2,12 @@
+Sun Apr 16 19:15:54 UTC 2017 - tchva...@suse.com
+
+- Version update to 1.14.0:
+  * TestCaller supports any callable that can be put into
+std::function.
+  * CPPUNIT_TEST_PARAMETERIZED executes a test for any value in
+an iteratable.
+  * Added new Assertion macros: ASSERT_LESS, ASSERT_GREATER,
+ASSERT_LESSEQUAL, ASSERT_GREATEREQUAL
+  * Remove QT test runner
+
+---

Old:

  cppunit-1.13.2.tar.gz

New:

  cppunit-1.14.0.tar.gz



Other differences:
--
++ cppunit.spec ++
--- /var/tmp/diff_new_pack.9KpTjM/_old  2017-04-24 09:47:00.107079673 +0200
+++ /var/tmp/diff_new_pack.9KpTjM/_new  2017-04-24 09:47:00.111079108 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package cppunit
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,18 +16,20 @@
 #
 
 
-%define libname libcppunit-1_13-0
+%define libname libcppunit-1_14-0
 Name:   cppunit
-Version:1.13.2
+Version:1.14.0
 Release:0
 Summary:C++ Port of the JUnit Testing Framework
 License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
 Url:http://www.freedesktop.org/wiki/Software/cppunit
-Source: http://dev-www.libreoffice.org/src/%name-%version.tar.gz
+Source: http://dev-www.libreoffice.org/src/%{name}-%{version}.tar.gz
 Source1:cppunit-devel.desktop
+Source99:   baselibs.conf
 BuildRequires:  doxygen
 BuildRequires:  gcc-c++
+BuildRequires:  graphviz
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
@@ -62,9 +64,7 @@
 Summary:Documentation for the cppunit API
 Group:  Documentation/HTML
 Conflicts:  libcppunit-devel < 1.13.2
-%if 0%{?suse_version} > 1200
 BuildArch:  noarch
-%endif
 
 %description devel-doc
 This package contains documentation for the cppunit API.
@@ -75,14 +75,16 @@
 %build
 export CXXFLAGS="%{optflags}"
 %configure \
+--docdir=%{_docdir}/%{name} \
+--disable-silent-rules \
--disable-static \
--enable-doxygen
-make %{?_smp_mflags} V=1
+make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install
+%make_install
 # remove la archive
-rm %{buildroot}%{_libdir}/*.la
+find %{buildroot} -type f -name "*.la" -delete -print
 # this got also installed to _defaultdocdir
 rm -rf %{buildroot}%{_datadir}/cppunit/html/
 find %{buildroot}%{_includedir} -type f | xargs chmod a-x
@@ -92,10 +94,9 @@
 %suse_update_desktop_file 
%{buildroot}%{_datadir}/susehelp/meta/Development/Libraries/cppunit-devel.desktop
 
 %check
-make check %{?_smp_mflags} V=1
+make check %{?_smp_mflags}
 
 %post -n %{libname} -p /sbin/ldconfig
-
 %postun -n %{libname} -p /sbin/ldconfig
 
 %files -n %{libname}
@@ -107,13 +108,12 @@
 %files devel
 %defattr(-,root,root)
 %doc NEWS README THANKS ChangeLog
+%dir %{_docdir}/%{name}
+%{_docdir}/%{name}/*
 %{_bindir}/DllPlugInTester
-%{_bindir}/cppunit-config
 %{_libdir}/libcppunit*.so
 %{_libdir}/pkgconfig/cppunit.pc
 %{_includedir}/*
-%{_mandir}/*/*
-%{_datadir}/aclocal/cppunit.m4
 
 %files devel-doc
 %defattr(-,root,root)

++ baselibs.conf ++
--- /var/tmp/diff_new_pack.9KpTjM/_old  2017-04-24 09:47:00.163071754 +0200
+++ /var/tmp/diff_new_pack.9KpTjM/_new  2017-04-24 09:47:00.167071187 +0200
@@ -1,4 +1,4 @@
-libcppunit-1_13-0
-libcppunit-devel
+libcppunit-1_14-0
+cppunit-devel
   requires -libcppunit-
-  requires "libcppunit-1_13-0- = "
+  requires "libcppunit-1_14-0- = "

++ cppunit-1.13.2.tar.gz -> cppunit-1.14.0.tar.gz ++
 190928 lines of diff (skipped)




commit virtualbox for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package virtualbox for openSUSE:Factory 
checked in at 2017-04-24 09:46:19

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


Package is "virtualbox"

Mon Apr 24 09:46:19 2017 rev:132 rq:486867 version:5.1.18

Changes:

--- /work/SRC/openSUSE:Factory/virtualbox/virtualbox.changes2017-03-21 
22:44:57.265756838 +0100
+++ /work/SRC/openSUSE:Factory/.virtualbox.new/virtualbox.changes   
2017-04-24 09:46:20.932620418 +0200
@@ -1,0 +2,11 @@
+Sat Apr  8 23:10:36 UTC 2017 - larry.fin...@lwfinger.net
+
+- Add File "vbox_fix_42.3_api.patch" to handle the get_user_pages() API change 
in Leap 42.3.
+
+---
+Tue Mar 28 14:53:52 UTC 2017 - larry.fin...@lwfinger.net
+
+- Package VBoxVNC.so. This extension is already being built, just not packaged.
+  This feature is requested in bsc #1024671.
+
+---

New:

  vbox_fix_42.3_api.patch



Other differences:
--
++ virtualbox.spec ++
--- /var/tmp/diff_new_pack.YWclEb/_old  2017-04-24 09:46:24.000186547 +0200
+++ /var/tmp/diff_new_pack.YWclEb/_new  2017-04-24 09:46:24.004185981 +0200
@@ -90,6 +90,8 @@
 Patch112:   modify_for_4_8_bo_move.patch
 # Remove all mention of _smp_mflags
 Patch113:   vbox_remove_smp_mflags.patch
+# Fix change in API for get_user_pages()
+Patch114:   vbox_fix_42.3_api.patch
 # Fix for missing include needed for server 1.19
 Patch116:   Fix_for_server_1.19.patch
 #
@@ -333,6 +335,9 @@
 %patch109 -p1
 %patch112 -p1
 %patch113 -p1
+%if 0%{?sle_version} == 120300
+%patch114 -p1
+%endif
 %patch116 -p1
 
 #copy user manual
@@ -459,6 +464,8 @@
 install -d -m 755 %{buildroot}%{_sysconfdir}/vbox
 install -d -m 755 %{buildroot}%{_udevrulesdir}
 install -d -m 755 %{buildroot}%{_sysconfdir}/X11/xinit/xinitrc.d
+install -m 755 out/linux.*/release/bin/ExtensionPacks/VNC/linux.*/VBoxVNC.so 
%{buildroot}%{_vbox_instdir}/VBoxVNC.so
+install -m 755 
out/linux.*/release/bin/ExtensionPacks/VNC/linux.*/VBoxVNCMain.so 
%{buildroot}%{_vbox_instdir}/VBoxVNCMain.so
 
 

 echo "entering virtualbox-kmp-guest and virtualbox-kmp-host install section"
@@ -743,6 +750,7 @@
 %{_vbox_instdir}/VBoxDD2.so
 %{_vbox_instdir}/VBoxDD.so
 %{_vbox_instdir}/VBoxDDU.so
+%{_vbox_instdir}/VBoxVNC*.so
 %{_vbox_instdir}/VBoxGuestControlSvc.so
 %{_vbox_instdir}/VBoxGuestPropSvc.so
 %{_vbox_instdir}/VBoxHeadless.so
@@ -759,7 +767,6 @@
 %{_vbox_instdir}/VBoxSharedCrOpenGL.so
 %{_vbox_instdir}/VBoxSharedFolders.so
 %{_vbox_instdir}/VBoxVMM.so
-#%{_vbox_instdir}/VBoxVNC.so
 %{_vbox_instdir}/VBoxXPCOMC.so
 %{_vbox_instdir}/VBoxXPCOM.so
 %{_vbox_instdir}/VBoxDD2RC.rc

++ vbox_fix_42.3_api.patch ++
Index: VirtualBox-5.1.18/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
===
--- VirtualBox-5.1.18.orig/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
+++ VirtualBox-5.1.18/src/VBox/Runtime/r0drv/linux/memobj-r0drv-linux.c
@@ -1084,18 +1079,14 @@ DECLHIDDEN(int) rtR0MemObjNativeLockUser
 # endif
 );
 #else /* LINUX_VERSION_CODE < KERNEL_VERSION(4, 6, 0) */
-rc = get_user_pages(pTask,  /* Task for fault 
accounting. */
-pTask->mm,  /* Whose pages. */
-R3Ptr,  /* Where from. */
+   /* The following is modified for Leap 42.3 having the
+*  get_user_pages() API from kernel 4.10
+*/
+rc = get_user_pages(R3Ptr,  /* Where from. */
 cPages, /* How many pages. */
-# if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 9, 0)
 fWrite ? FOLL_WRITE |   /* Write to memory. */
  FOLL_FORCE /* force write access. 
*/
: 0, /* Write to memory. */
-# else
-fWrite, /* Write to memory. */
-fWrite, /* force write access. 
*/
-# endif
 &pMemLnx->apPages[0],   /* Page array. */
 papVMAs);   /* vmas */
 #endif /* LINUX_VERSION_CODE < KERNEL_VERSION(4, 6, 0) */




commit fcoe-utils for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package fcoe-utils for openSUSE:Factory 
checked in at 2017-04-24 09:46:27

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


Package is "fcoe-utils"

Mon Apr 24 09:46:27 2017 rev:14 rq:487258 version:1.0.32

Changes:

--- /work/SRC/openSUSE:Factory/fcoe-utils/fcoe-utils.changes2017-03-11 
15:17:48.295109371 +0100
+++ /work/SRC/openSUSE:Factory/.fcoe-utils.new/fcoe-utils.changes   
2017-04-24 09:46:29.063470407 +0200
@@ -1,0 +2,6 @@
+Tue Apr 11 09:10:32 UTC 2017 - jthumsh...@suse.com
+
+- Disable Werror when building to work around a new GCC 7 warning. 
(bsc#1030244)
+  + 0009-disable-Werror-building.patch
+
+---

New:

  0009-disable-Werror-building.patch



Other differences:
--
++ fcoe-utils.spec ++
--- /var/tmp/diff_new_pack.8Pwnm7/_old  2017-04-24 09:46:29.971341999 +0200
+++ /var/tmp/diff_new_pack.8Pwnm7/_new  2017-04-24 09:46:29.975341434 +0200
@@ -43,6 +43,7 @@
 Patch5: 0005-fcoe.service-Add-foreground-to-prevent-fcoemon-to-be.patch
 Patch6: 0006-fipvlan-fixup-return-value-on-error.patch
 Patch8: 0008-Use-correct-socket-for-fcoemon.socket.patch
+Patch9: 0009-disable-Werror-building.patch
 Patch12:0012-fcoemon-Retry-fcm_link_getlink-on-EBUSY.patch
 
 # Patches from Fedora
@@ -61,6 +62,7 @@
 %patch5 -p1
 %patch6 -p1
 %patch8 -p1
+%patch9 -p1
 %patch12 -p1
 %patch101 -p1
 

++ 0009-disable-Werror-building.patch ++
From: Johannes Thumshirn 
Date: Tue Apr 11 11:08:13 CEST 2017
Subject: Disable Werror building

Disbale the -Werror compiler flag due to a new warning in GCC 7. Although the
warning is legitim it is a false positive in this place.

Signed-off-by: Johannes Thumshirn 
---
 Makefile.am |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/Makefile.am
+++ b/Makefile.am
@@ -5,7 +5,7 @@ sbin_PROGRAMS = fcoeadm fcoemon fcping f
 AM_CPPFLAGS = -I${srcdir}/include -I${builddir}/include
 ## pass the sysconfdir into the C proprocessor
 AM_CPPFLAGS += -DSYSCONFDIR="\"${sysconfdir}\"" -D_FORTIFY_SOURCE=2
-AM_CFLAGS = -Wall -Wformat=2 -Werror -Wmissing-prototypes -Wstrict-prototypes
+AM_CFLAGS = -Wall -Wformat=2 -Wmissing-prototypes -Wstrict-prototypes
 
 ## rules for building fcoeadm
 fcoeadm_SOURCES = fcoeadm.c fcoeadm_display.c
++ fcoe-utils-1.0.29-make.patch ++
--- /var/tmp/diff_new_pack.8Pwnm7/_old  2017-04-24 09:46:30.063328989 +0200
+++ /var/tmp/diff_new_pack.8Pwnm7/_new  2017-04-24 09:46:30.063328989 +0200
@@ -1,5 +1,7 @@
-diff --git a/Makefile.am b/Makefile.am
-index 5cbc15f..57bdbdb 100644
+---
+ Makefile.am |2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
 --- a/Makefile.am
 +++ b/Makefile.am
 @@ -2,7 +2,7 @@
@@ -10,4 +12,4 @@
 +AM_CPPFLAGS = -I${srcdir}/include -I${builddir}/include -I/lib/modules/`rpm 
-q --list kernel | grep "^/lib/modules/.*/build$$" | cut -f4 -d"/" | sort -r | 
head -1`/build/include
  ## pass the sysconfdir into the C proprocessor
  AM_CPPFLAGS += -DSYSCONFDIR="\"${sysconfdir}\"" -D_FORTIFY_SOURCE=2
- AM_CFLAGS = -Wall -Wformat=2 -Werror -Wmissing-prototypes -Wstrict-prototypes
+ AM_CFLAGS = -Wall -Wformat=2 -Wmissing-prototypes -Wstrict-prototypes




commit ffado for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package ffado for openSUSE:Factory checked 
in at 2017-04-24 09:46:32

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


Package is "ffado"

Mon Apr 24 09:46:32 2017 rev:29 rq:487547 version:2.3.0

Changes:

--- /work/SRC/openSUSE:Factory/ffado/ffado-mixer.changes2016-03-29 
14:29:55.0 +0200
+++ /work/SRC/openSUSE:Factory/.ffado.new/ffado-mixer.changes   2017-04-24 
09:46:33.690815925 +0200
@@ -1,0 +2,7 @@
+Fri Mar 31 15:35:32 UTC 2017 - davejpla...@gmail.com
+
+- Update to 2.3.0
+- Removed api documentation package, no longer builds.
+- See ffado.changes for common changes, no mixer changes.
+
+---
--- /work/SRC/openSUSE:Factory/ffado/ffado.changes  2016-08-06 
20:35:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.ffado.new/ffado.changes 2017-04-24 
09:46:33.806799520 +0200
@@ -1,0 +2,29 @@
+Wed Apr 12 10:44:23 UTC 2017 - davejpla...@gmail.com
+
+- Modify libffado-date_time.patch to allow reproducible builds.
+
+---
+Fri Mar 31 13:41:22 UTC 2017 - davejpla...@gmail.com
+
+- Update to 2.3.0
+- Fix gcc7 errors with -fpermissive see boo#1030245
+- Removed obsolete udev macro definition
+- Rebased ffado_SConstruct_powerpc_update.patch and
+  ffado-gcc6.patch
+- Duplicated %build scons statement in %install to prevent a
+  complete rebuild of the package.
+- Upstream changes:
+  *Configuration entries added for additional devices which work
+   with the generic support layer (PreSonus Studiolive 32.4.2,
+   Presonus StudioLive 16.0.2, ICON FireXon, Onyx Blackbird and
+   the new Onyx 1640i, among others).
+  *Support added for the newer Focusrite Saffire Pro 26.
+  *Improved build support for various downstream consumers.
+  *Better routing for selected Saffire devices and the Firestudio
+   Mobile.
+  *Significant cleanup and refinement of the M-Audio and Yamaha
+   driver.
+  *Compilation fixes for recent versions of gcc.
+  *Recover from dead streams without causing jackd to shut down.
+
+---

Old:

  libffado-2.2.1.tar.bz2

New:

  libffado-2.3.0.tgz



Other differences:
--
++ ffado-mixer.spec ++
--- /var/tmp/diff_new_pack.j4WBLb/_old  2017-04-24 09:46:34.906643961 +0200
+++ /var/tmp/diff_new_pack.j4WBLb/_new  2017-04-24 09:46:34.910643395 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ffado-mixer
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,22 +16,25 @@
 #
 
 
-Name:   ffado-mixer
+%define gcc7 0
+%define docs 0
 %define tname libffado
-Version:2.2.1
+Name:   ffado-mixer
+Version:2.3.0
 Release:0
 Summary:FireWire 1394 support for audio devices, svn snapshot
 License:GPL-2.0+
 Group:  Productivity/Multimedia/Other
 Url:http://www.ffado.org/
-Source0:%{tname}-%{version}.tar.bz2
+# NOTE: download of tarball is taken care of in ffado
+Source0:%{tname}-%{version}.tgz
 Patch1: ffado_SConstruct_powerpc_update.patch
 Patch2: ffado-gcc6.patch
 BuildRequires:  alsa-devel
 BuildRequires:  dbus-1-python-devel
 BuildRequires:  doxygen
 BuildRequires:  fdupes
-BuildRequires:  ffado
+BuildRequires:  ffado = %{version}
 BuildRequires:  gcc-c++
 BuildRequires:  graphviz-gnome
 BuildRequires:  libavc1394-devel
@@ -43,13 +46,15 @@
 BuildRequires:  libraw1394-devel >= 1.3.0
 BuildRequires:  pkg-config
 BuildRequires:  python-qt4-devel
-Requires:   python-qt4
 BuildRequires:  scons
 BuildRequires:  update-desktop-files
 BuildRequires:  xdg-utils
 BuildRequires:  xorg-x11-fonts
 BuildRequires:  pkgconfig(dbus-1) >= 1.0
+BuildRequires:  pkgconfig(libffado) = %{version}
 BuildRequires:  pkgconfig(libxml++-2.6) >= 2.13.0
+Requires:   ffado = %{version}
+Requires:   python-qt4
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
 %{py_requires}
@@ -67,6 +72,7 @@
 mixed audio-control devices to DSP algorithm devices.
 This is a snapshot of svn revision 2040
 
+%if %{docs} == 1
 %package -n ffado-doc
 Summary:API documentation for ffado
 Group:  Documentation/HTML
@@ -74,38 +80,64 @@
 
 %description -n ffado-doc
 This package contains the libffado API documentation.
+%endif
 
 %prep
 %setup -n %{tname}-%{version} -q
-%patch1 -p1
+%patch1 -p0
 %patch2
 
 %build
-scons %{?

commit grub2 for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package grub2 for openSUSE:Factory checked 
in at 2017-04-24 09:46:06

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


Package is "grub2"

Mon Apr 24 09:46:06 2017 rev:160 rq:485744 version:2.02~rc2

Changes:

--- /work/SRC/openSUSE:Factory/grub2/grub2.changes  2017-03-21 
22:47:24.360961291 +0100
+++ /work/SRC/openSUSE:Factory/.grub2.new/grub2.changes 2017-04-24 
09:46:08.930318001 +0200
@@ -1,0 +2,13 @@
+Sun Mar 26 18:08:20 UTC 2017 - arvidj...@gmail.com
+
+- update grub2-btrfs-workaround-grub2-once.patch to also store saved_entry
+  in additional environment block (boo#1031025)
+
+---
+Wed Mar 22 17:39:52 UTC 2017 - arvidj...@gmail.com
+
+- fix building with GCC (bsc#1030247)
+  * add grub2-fix-uninitialized-variable-in-btrfs-with-GCC7.patch
+  * grub2-add-FALLTHROUGH-annotations.patch
+
+---

New:

  grub2-add-FALLTHROUGH-annotations.patch
  grub2-fix-uninitialized-variable-in-btrfs-with-GCC7.patch



Other differences:
--
++ grub2.spec ++
--- /var/tmp/diff_new_pack.XxBmjc/_old  2017-04-24 09:46:12.029879605 +0200
+++ /var/tmp/diff_new_pack.XxBmjc/_new  2017-04-24 09:46:12.033879039 +0200
@@ -208,6 +208,8 @@
 Patch79:grub2-efi-chainload-harder.patch
 Patch80:grub2-emu-4-all.patch
 Patch81:grub2-lvm-allocate-metadata-buffer-from-raw-contents.patch
+Patch82:grub2-fix-uninitialized-variable-in-btrfs-with-GCC7.patch
+Patch83:grub2-add-FALLTHROUGH-annotations.patch
 # Btrfs snapshot booting related patches
 Patch101:   grub2-btrfs-01-add-ability-to-boot-from-subvolumes.patch
 Patch102:   grub2-btrfs-02-export-subvolume-envvars.patch
@@ -470,6 +472,8 @@
 %patch79 -p1
 %patch80 -p1
 %patch81 -p1
+%patch82 -p1
+%patch83 -p1
 %patch101 -p1
 %patch102 -p1
 %patch103 -p1


++ grub2-add-FALLTHROUGH-annotations.patch ++
From: Andrei Borzenkov 
Subject: [PATCH] i386, x86_64, ppc: fix switch fallthrough cases with GCC7

In util/getroot and efidisk slightly modify exitsing comment to mostly
retain it but still make GCC7 compliant with respect to fall through
annotation.

In grub-core/lib/xzembed/xz_dec_lzma2.c it adds same comments as
upstream (I plan to update after release).

In grub-core/tests/setjmp_tets.c declare functions as "noreturn" to
suppress GCC7 warning.

In grub-core/gnulib/regexec.c move FALLTHROUGH outside of #ifdef block,
otherwise it is not accepted by GCC7 parser (which requires that comment
immediately precedes case statement).

Otherwise add FALLTHROUGH comment.

Closes: 50598

---
 grub-core/commands/hdparm.c   | 1 +
 grub-core/commands/nativedisk.c   | 1 +
 grub-core/disk/cryptodisk.c   | 1 +
 grub-core/disk/efi/efidisk.c  | 2 +-
 grub-core/efiemu/mm.c | 1 +
 grub-core/gdb/cstub.c | 1 +
 grub-core/gnulib/regexec.c| 4 +++-
 grub-core/lib/xzembed/xz_dec_lzma2.c  | 4 
 grub-core/lib/xzembed/xz_dec_stream.c | 6 ++
 grub-core/loader/i386/linux.c | 3 +++
 grub-core/tests/setjmp_test.c | 5 -
 grub-core/video/ieee1275.c| 1 +
 grub-core/video/readers/jpeg.c| 1 +
 util/getroot.c| 2 +-
 util/grub-install.c   | 1 +
 util/grub-mkimagexx.c | 1 +
 util/grub-mount.c | 1 +
 17 files changed, 32 insertions(+), 4 deletions(-)

diff --git a/grub-core/commands/hdparm.c b/grub-core/commands/hdparm.c
index f6b178e..d3fa966 100644
--- a/grub-core/commands/hdparm.c
+++ b/grub-core/commands/hdparm.c
@@ -328,6 +328,7 @@ grub_cmd_hdparm (grub_extcmd_context_t ctxt, int argc, char 
**args)
  ata = ((struct grub_scsi *) disk->data)->data;
  break;
}
+  /* FALLTHROUGH */
 default:
   grub_disk_close (disk);
   return grub_error (GRUB_ERR_IO, "not an ATA device");
diff --git a/grub-core/commands/nativedisk.c b/grub-core/commands/nativedisk.c
index 345f97c..2f56a87 100644
--- a/grub-core/commands/nativedisk.c
+++ b/grub-core/commands/nativedisk.c
@@ -79,6 +79,7 @@ get_uuid (const char *name, char **uuid, int getnative)
 case GRUB_DISK_DEVICE_XEN:
   if (getnative)
break;
+  /* FALLTHROUGH */
 
   /* Virtual disks.  */
   /* GRUB dynamically generated files.  */
diff --git a/grub-core/disk/cryptodisk.c b/grub-core/disk/cryptodisk.c
index 1e03a09..bd60a66 100644
--- a/grub-core/disk/cryptodisk.c
+++ b/grub-core/disk/cryptodisk.c
@@ -282,6 +282,7 @@ grub_cryptodisk_endecrypt (struct grub_cryptodisk *dev,
  break;
cas

commit ovmf for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package ovmf for openSUSE:Factory checked in 
at 2017-04-24 09:46:39

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


Package is "ovmf"

Mon Apr 24 09:46:39 2017 rev:11 rq:487904 version:2017+git1492060560.b6d11d7c46

Changes:

--- /work/SRC/openSUSE:Factory/ovmf/ovmf.changes2017-03-10 
21:09:33.454888394 +0100
+++ /work/SRC/openSUSE:Factory/.ovmf.new/ovmf.changes   2017-04-24 
09:46:43.305456052 +0200
@@ -1,0 +2,118 @@
+Thu Apr 13 07:13:09 UTC 2017 - g...@suse.com
+
+- Update to 2017+git1492060560.b6d11d7c46
+  + MdePkg: BaseIoLibIntrinsic (IoLib class) library
+  + MdeModulePkg/IdeBusPei: Fix undefined behavior in signed left
+shift
+  + MdeModulePkg/ScsiDiskDxe: Fix undefined behavior in signed left
+shift
+  + OvmfPkg/QemuVideoDxe: VMWare SVGA device support
+  + MdeModulePkg/UefiBootManagerLib: Enhance short-form expanding
+logic
+  + CryptoPkg/BaseCryptLib: Adding NULL checking in time() wrapper
+  + CryptoPkg: Fix possible unresolved external symbol issue.
+  + CryptoPkg/OpensslLib: Suppress extra build warnings in openssl
+source
+  + CryptoPkg: Move openssl and CRT headers to private include
+section
+  + BaseTools: Update tools_def.template to add -fno-builtin in GCC
+tool chain
+  + SecurityPkg: SecureBootConfigDxe: Support AUTH_2 enrollment to
+DBX
+  + MdeModulePkg/UefiHiiLib:Fix incorrect comparison expression
+  + ArmVirtPkg/ArmVirtQemuKernel: increase slack space for DTB
+  + ArmVirtPkg/FdtClientDxe: honor memory DT node 'status' property
+  + NetworkPkg: Fix some bugs related to iSCSI keyword configuration
+  + MdeModulePkg/DxeHttpLib: Avoid the pointless comparison of
+UINTN with zero
+  + BaseTools: Enhance expression to support some more operation
+  + MdePkg/Shell.h: Update Shell version from 2.1 to 2.2
+  + UefiCpuPkg/PiSmmCpuDxeSmm: Update saved SMM ranges check in
+SmmProfile
+  + ArmVirtPkg/PlatformHasAcpiDtDxe: allow guest level ACPI disable
+override
+  + BaseTools/GCC AARCH64: force disable PIC code generation
+  + UefiCpuPkg/MtrrLib: Use a better algorithm to calculate MTRR
+  + MdeModulePkg/SmmCore: Fix memory leak on Profile unregistered
+  + OvmfPkg: Allow multiple add-pointer linker commands to same
+ACPI table
+- Drop upstream patch: ovmf-bsc1031336-fix-hii-gcc7-build.patch
+
+---
+Wed Apr  5 04:43:20 UTC 2017 - g...@suse.com
+
+- Add ovmf-bsc1031336-fix-hii-gcc7-build.patch to fix gcc7 build
+  (bsc#1031336)
+
+---
+Thu Mar 30 08:31:38 UTC 2017 - g...@suse.com
+
+- Update to 2017+git1490844769.d3017dd96b
+  + MdeModulePkg/DxeHttpLib: Fix the incorrect return status if URI
+port is invalid
+  + NetworkPkg/DnsDxe: Fix zero StationIp configuration failure of
+DNSv6
+  + CryptoPkg: Clean-up CRT Library Wrapper
+  + CryptoPkg: Fix handling of &strcmp function pointers
+  + CryptoPkg/OpensslLib: Update INF files to support OpenSSL-1.1.0x
+build
+  + ArmVirtPkg/PlatformHasAcpiDtDxe: don't expose DT if QEMU
+provides ACPI
+  + ArmVirtPkg: enable AcpiTableDxe and EFI_ACPI_TABLE_PROTOCOL
+dynamically
+  + ArmVirtPkg: add XenPlatformHasAcpiDtDxe
+  + ArmVirtPkg: add PlatformHasAcpiDtDxe
+  + UefiCpuPkg/AcpiCpuData.h: Support >4GB MMIO address
+  + NetworkPkg/IScsiDxe: Fix the incorrect error handling in
+DriverEntryPoint
+  + Fix potential ASSERT if NetIp4IsUnicast is called
+  + ArmPkg/PlatformBootManagerLib: move to BootLogoLib for boot
+splash support
+  + UefiCpuPkg: Add CPU Features PEI/DXE drivers
+  + ArmVirtPkg/HighMemDxe: use CPU arch protocol to apply memprotect
+policy
+  + MdeModulePkg/BootGraphicsResourceTableDxe: don't allocate below
+4 GB
+  + MdeModulePkg/DxeCore: deal with allocations spanning several
+memmap entries
+  + MdeModulePkg/AcpiTableDxe: Not make FADT.{DSDT,X_DSDT} mutual
+exclusion
+  + NetworkPkg: Fix service binding issue in TCP dxe
+  + MdeModulePkg: Fix service binding issue in TCP4 and Ip4 dxe
+  + MdeModulePkg: Fix bug in DxeHttplib when converting port number
+  + MdeModulePkg/Ip4Dxe: Add Ip/Netmask pair check for Ip4Config2
+  + ArmPkg/UncachedMemoryAllocationLib: set XP bit via CPU arch
+protocol
+  + MdeModulePkg DxeCore: Remove unreferenced symbol for memory
+profile
+  + MdeModulePkg PiSmmCore: Remove unreferenced symbol for SMRAM
+profile
+  + NetworkPkg: Fix potential bug if the iSCSI use dns protocol
+  + MdePkg/UefiDevicePathLib: Fix the wrong MAC address length
+  + OvmfPkg/AcpiPlatformDxe: save fw_cfg boot script with QemuFwCfgS3Lib
+  + ArmVirtPkg, OvmfPkg: retire QemuFwCfgS3Enabled() from QemuFwCfgLib
+  + OvmfPkg: resolve QemuFwCfgS3Lib
+  + ArmVi

commit libiscsi for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package libiscsi for openSUSE:Factory 
checked in at 2017-04-24 09:45:39

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


Package is "libiscsi"

Mon Apr 24 09:45:39 2017 rev:6 rq:484320 version:1.18.0

Changes:

--- /work/SRC/openSUSE:Factory/libiscsi/libiscsi.changes2016-11-15 
17:54:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.libiscsi.new/libiscsi.changes   2017-04-24 
09:45:41.954133472 +0200
@@ -1,0 +2,5 @@
+Sat Apr  1 10:29:07 UTC 2017 - mplus...@suse.com
+
+- Do not build with -Werror
+
+---



Other differences:
--
++ libiscsi.spec ++
--- /var/tmp/diff_new_pack.zRS2Ct/_old  2017-04-24 09:45:43.085973386 +0200
+++ /var/tmp/diff_new_pack.zRS2Ct/_new  2017-04-24 09:45:43.085973386 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libiscsi
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -33,7 +33,6 @@
 BuildRequires:  libtool
 BuildRequires:  pkgconfig
 BuildRequires:  pkgconfig(cunit)
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 libiscsi is a clientside library to implement the iSCSI protocol
@@ -74,7 +73,8 @@
 Group:  System/Base
 
 %description test
-A comprehensive iSCSI transport and SCSI block device test suite based on 
CUnit.
+A comprehensive iSCSI transport and SCSI block device test suite based on
+CUnit.
 
 %prep
 %setup -q
@@ -84,11 +84,12 @@
 autoreconf -fiv
 %configure \
  --enable-manpages \
+  --disable-werror  \
  --disable-static
 make %{?_smp_mflags}
 
 %install
-make %{?_smp_mflags} DESTDIR=%{buildroot} install
+%make_install
 mv "%{buildroot}/%{_bindir}/ld_iscsi.so" "%{buildroot}/%{_libdir}/"
 find %{buildroot} -type f -name "*.la" -delete -print
 
@@ -110,19 +111,19 @@
 # preload library that intercepts a handful of system calls and converts
 # iSCSI URLs to look and behave as if they are normal read-only files.
 %{_libdir}/ld_iscsi.so
-%{_mandir}/man1/iscsi-inq.1*
-%{_mandir}/man1/iscsi-ls.1*
-%{_mandir}/man1/iscsi-swp.1*
+%{_mandir}/man1/iscsi-inq.1%{ext_man}
+%{_mandir}/man1/iscsi-ls.1%{ext_man}
+%{_mandir}/man1/iscsi-swp.1%{ext_man}
 
 %files devel
 %defattr(-,root,root)
-%{_libdir}/pkgconfig/*.pc
+%{_libdir}/pkgconfig/libiscsi.pc
 %{_includedir}/iscsi/
 %{_libdir}/libiscsi.so
 
 %files test
 %defattr(-,root,root)
 %{_bindir}/iscsi-test-cu
-%{_mandir}/man1/iscsi-test-cu.1*
+%{_mandir}/man1/iscsi-test-cu.1%{ext_man}
 
 %changelog




commit kyotocabinet for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package kyotocabinet for openSUSE:Factory 
checked in at 2017-04-24 09:46:12

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


Package is "kyotocabinet"

Mon Apr 24 09:46:12 2017 rev:9 rq:485796 version:1.2.76

Changes:

--- /work/SRC/openSUSE:Factory/kyotocabinet/kyotocabinet.changes
2016-05-31 12:10:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.kyotocabinet.new/kyotocabinet.changes   
2017-04-24 09:46:15.645368236 +0200
@@ -1,0 +2,6 @@
+Tue Apr  4 03:47:22 UTC 2017 - crrodrig...@opensuse.org
+
+- kyotocabinet-fix-debuginfo.patch: Fix debuginfo generation
+- gcc6-fix-errors.patch: return NULL instead, make GCC7 happy 
+
+---

New:

  kyotocabinet-fix-debuginfo.patch



Other differences:
--
++ kyotocabinet.spec ++
--- /var/tmp/diff_new_pack.5YOqHv/_old  2017-04-24 09:46:16.405260759 +0200
+++ /var/tmp/diff_new_pack.5YOqHv/_new  2017-04-24 09:46:16.409260193 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package kyotocabinet
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -28,8 +28,10 @@
 # PATCH-MISSING-TAG -- See 
http://wiki.opensuse.org/openSUSE:Packaging_Patches_guidelines
 Patch1: %{name}-fix_rpath.patch
 Patch2: configure-8-byte-atomics.patch 
-# PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors seen by GCC6.
+# PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Fix errors seen by GCC6/GCC7.
 Patch3: gcc6-fix-errors.patch
+# PATCH-FIX-OPENSUSE gcc6-fix-errors.patch -- Do not supress debuginfo
+Patch4: kyotocabinet-fix-debuginfo.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  gcc-c++
@@ -110,6 +112,7 @@
 %patch1 -p 1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 sed -ie "/ldconfig/d" Makefile.in
 sed -ie "/DOCDIR/d" Makefile.in
 

++ gcc6-fix-errors.patch ++
--- /var/tmp/diff_new_pack.5YOqHv/_old  2017-04-24 09:46:16.441255667 +0200
+++ /var/tmp/diff_new_pack.5YOqHv/_new  2017-04-24 09:46:16.445255102 +0200
@@ -1,11 +1,13 @@
 kyotocabinet-1.2.76/kcdbext.h  2016-05-25 11:32:53.591866016 +0200
-+++ kyotocabinet-1.2.76/kcdbext.h  2012-05-24 18:27:59.0 +0200
-@@ -1278,7 +1278,7 @@
+Index: kyotocabinet-1.2.76/kcdbext.h
+===
+--- kyotocabinet-1.2.76.orig/kcdbext.h
 kyotocabinet-1.2.76/kcdbext.h
+@@ -1278,7 +1278,7 @@ class IndexDB {
  if (omode_ == 0) {
set_error(_KCCODELINE_, BasicDB::Error::INVALID, "not opened");
*sp = 0;
 -  return false;
-+  return '\0';
++  return NULL;
  }
  if (!cache_) return db_.get(kbuf, ksiz, sp);
  size_t dvsiz = 0;

++ kyotocabinet-fix-debuginfo.patch ++
Index: kyotocabinet-1.2.76/configure.in
===
--- kyotocabinet-1.2.76.orig/configure.in
+++ kyotocabinet-1.2.76/configure.in
@@ -35,8 +35,8 @@ MYDOCUMENTFILES="COPYING FOSSEXCEPTION C
 MYPCFILES="kyotocabinet.pc"
 
 # Building flags
-MYCFLAGS="-Wall -ansi -pedantic -fPIC -fsigned-char -g0"
-MYCXXFLAGS="-Wall -fPIC -fsigned-char -g0 -O2"
+MYCFLAGS="-Wall -fPIC -fsigned-char "
+MYCXXFLAGS="-Wall -fPIC -fsigned-char -fvisibility-inlines-hidden"
 MYCPPFLAGS="-I. -I\$(INCLUDEDIR)"
 MYCPPFLAGS="$MYCPPFLAGS -DNDEBUG -D_GNU_SOURCE=1"
 MYCPPFLAGS="$MYCPPFLAGS -D_FILE_OFFSET_BITS=64 -D_REENTRANT -D__EXTENSIONS__"



commit kdebase4-workspace for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package kdebase4-workspace for 
openSUSE:Factory checked in at 2017-04-24 09:45:52

Comparing /work/SRC/openSUSE:Factory/kdebase4-workspace (Old)
 and  /work/SRC/openSUSE:Factory/.kdebase4-workspace.new (New)


Package is "kdebase4-workspace"

Mon Apr 24 09:45:52 2017 rev:326 rq:484856 version:4.11.22

Changes:

--- /work/SRC/openSUSE:Factory/kdebase4-workspace/kdebase4-workspace.changes
2016-05-31 12:11:06.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kdebase4-workspace.new/kdebase4-workspace.changes   
2017-04-24 09:45:53.776461338 +0200
@@ -1,0 +2,5 @@
+Mon Apr  3 09:47:34 UTC 2017 - wba...@tmo.at
+
+- Add gcc7-fix.diff to fix an error reported by GCC7 (boo#1031317)
+
+---

New:

  gcc7-fix.diff



Other differences:
--
++ kdebase4-workspace.spec ++
--- /var/tmp/diff_new_pack.QPbje7/_old  2017-04-24 09:45:55.980149651 +0200
+++ /var/tmp/diff_new_pack.QPbje7/_new  2017-04-24 09:45:55.984149086 +0200
@@ -150,6 +150,8 @@
 Patch73:systemsettings-desktop-kde4.diff
 # PATCH-FIX-OPENSUSE gcc6-fixes.diff -- Fix errors reported by GCC6 compiler
 Patch74:gcc6-fixes.diff
+# PATCH-FIX-OPENSUSE gcc7-fix.diff boo#1031317 wba...@tmo.at -- Fix an error 
reported by the GCC7 compiler
+Patch75:gcc7-fix.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   %{name}-ksysguardd = %{version}
 Requires:   %{name}-liboxygenstyle = %{version}
@@ -385,6 +387,7 @@
 %patch52
 %endif
 %patch74
+%patch75 -p1
 
 cp %{SOURCE3} kwin/effects/cube/data/cubecap.png
 

++ gcc7-fix.diff ++
>From f28130d1365f43e28bb5490ca821340a0b37d262 Mon Sep 17 00:00:00 2001
From: Wolfgang Bauer 
Date: Mon, 3 Apr 2017 12:53:31 +0200
Subject: [PATCH] Fix error reported by GCC7 (boo#1031317)

/home/abuild/rpmbuild/BUILD/kde-workspace-4.11.22/libs/oxygen/oxygenhelper.cpp:
In member function 'bool Oxygen::Helper::hasHint(WId, Atom) const':
/home/abuild/rpmbuild/BUILD/kde-workspace-4.11.22/libs/oxygen/oxygenhelper.cpp:1092:21:
error: ISO C++ forbids comparison between pointer and integer
[-fpermissive]
  if( data == None || n != 1 ) return false;
  ^~~~
---
 libs/oxygen/oxygenhelper.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/oxygen/oxygenhelper.cpp b/libs/oxygen/oxygenhelper.cpp
index bc05ecc5a5..208a7f65d2 100644
--- a/libs/oxygen/oxygenhelper.cpp
+++ b/libs/oxygen/oxygenhelper.cpp
@@ -1089,7 +1089,7 @@ namespace Oxygen
 &data);
 
 // finish if no data is found
-if( data == None || n != 1 ) return false;
+if( data == NULL || n != 1 ) return false;
 else return *data;
 
 }
-- 
2.12.0






commit hardlink for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package hardlink for openSUSE:Factory 
checked in at 2017-04-24 09:45:16

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


Package is "hardlink"

Mon Apr 24 09:45:16 2017 rev:7 rq:483311 version:1.0+git.e66999f

Changes:

--- /work/SRC/openSUSE:Factory/hardlink/hardlink.changes2014-11-26 
10:35:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.hardlink.new/hardlink.changes   2017-04-24 
09:45:18.853400815 +0200
@@ -1,0 +2,7 @@
+Wed Mar 22 13:05:13 UTC 2017 - fcro...@suse.com
+
+- Switch to source service and update git snapshot to e66999f:
+  * Make hardlinking atomic wrt replacing existing files
+  * Fixed 32 bit build with gcc7 (rh#1422989) (boo#1030251)
+
+---

Old:

  hardlink-1.0.g50.tar.xz

New:

  _service
  _servicedata
  hardlink-1.0+git.e66999f.tar.xz



Other differences:
--
++ hardlink.spec ++
--- /var/tmp/diff_new_pack.dRvAJu/_old  2017-04-24 09:45:19.685283155 +0200
+++ /var/tmp/diff_new_pack.dRvAJu/_new  2017-04-24 09:45:19.689282588 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package hardlink
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,12 +20,11 @@
 Summary:Create a tree of hardlinks
 License:GPL-2.0+
 Group:  System/Base
-Version:1.0.g50
+Version:1.0+git.e66999f
 Release:0
-Url:http://pkgs.fedoraproject.org/gitweb/?p=hardlink.git
+Url:https://pagure.io/hardlink
 
-#Git-Clone:git://pkgs.fedoraproject.org/hardlink
-#Snapshot: 9188816748565d869c87474c2ab59a65bf337ed3 (50 from root)
+#Git-Clone:https://pagure.io/hardlink.git
 Source: %name-%version.tar.xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  xz
@@ -36,7 +35,7 @@
 each kernel package installed.
 
 %prep
-%setup -qn %name
+%setup -q
 
 %build
 gcc %optflags hardlink.c -o hardlink

++ _service ++

  
hardlink
1.0+git.%h
https://pagure.io/hardlink.git
git
HEAD
enable
  
  
xz
*.tar
  
  

++ _servicedata ++


https://pagure.io/hardlink.git
  e66999f5a0bf68471c0d5ee272611f38e38d40ae


commit gperftools for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package gperftools for openSUSE:Factory 
checked in at 2017-04-24 09:45:57

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


Package is "gperftools"

Mon Apr 24 09:45:57 2017 rev:18 rq:485196 version:2.5

Changes:

--- /work/SRC/openSUSE:Factory/gperftools/gperftools.changes2016-08-05 
18:17:18.0 +0200
+++ /work/SRC/openSUSE:Factory/.gperftools.new/gperftools.changes   
2017-04-24 09:45:58.555785358 +0200
@@ -1,0 +2,6 @@
+Fri Mar 31 15:23:59 UTC 2017 - fcro...@suse.com
+
+- Don't BuildRequires libunwind-devel on s390*, it doesn't exist
+  there.
+
+---



Other differences:
--
++ gperftools.spec ++
--- /var/tmp/diff_new_pack.UrtRAt/_old  2017-04-24 09:46:00.591497430 +0200
+++ /var/tmp/diff_new_pack.UrtRAt/_new  2017-04-24 09:46:00.595496864 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package gperftools
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,7 +30,9 @@
 BuildRequires:  automake
 BuildRequires:  gcc-c++
 BuildRequires:  libtool
+%ifnarch s390x s390
 BuildRequires:  libunwind-devel
+%endif
 BuildRequires:  pkg-config
 BuildRequires:  valgrind-devel
 Provides:   google-perftools




commit jack for openSUSE:Factory

2017-04-24 Thread root
Hello community,

here is the log from the commit of package jack for openSUSE:Factory checked in 
at 2017-04-24 09:45:45

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


Package is "jack"

Mon Apr 24 09:45:45 2017 rev:59 rq:484400 version:1.9.10

Changes:

--- /work/SRC/openSUSE:Factory/jack/jack.changes2016-04-30 
23:27:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.jack.new/jack.changes   2017-04-24 
09:45:48.681182007 +0200
@@ -1,0 +2,6 @@
+Sun Apr  2 11:26:15 UTC 2017 - davejpla...@gmail.com
+
+- Fix gcc7 build failure with jack-fixgcc7.patch, sent to github
+  jack2 issue#253
+
+---

Old:

  jack-1.9.10.tar.bz2

New:

  jack-1.9.10.tar.gz
  jack-fixgcc7.patch



Other differences:
--
++ jack.spec ++
--- /var/tmp/diff_new_pack.spzxDT/_old  2017-04-24 09:45:49.801023618 +0200
+++ /var/tmp/diff_new_pack.spzxDT/_new  2017-04-24 09:45:49.805023053 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package jack
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,15 +19,9 @@
 #FIXME: Waf error when using doc build atm
 %define buildoc 1
 %define debug_package_requires %{name} = %{version}-%{release}
-%if 0%{?suse_version} > 1110
 # Switch the --dbus on and off, on = 1
 %define wdbus 1
-%if 0%{?suse_version} > 1140
 BuildRequires:  pkgconfig(libffado) >= 2.0.1.2040
-%endif
-%else
-%define wdbus 0
-%endif
 Name:   jack
 Version:1.9.10
 Release:0
@@ -36,9 +30,7 @@
 License:GPL-2.0+ and LGPL-2.1+
 Group:  System/Sound Daemons
 Url:http://jackaudio.org/
-# http://www.grame.fr/~letz/
-# Source url invalid http://jackaudio.org/downloads/ converted .tgz to bz2
-Source0:%{name}-%{version}.tar.bz2
+Source0:
https://github.com/jackaudio/jack2/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:baselibs.conf
 # Without this, there is a link error on SPARC
 Patch2: jack-sparcv9.diff
@@ -48,6 +40,8 @@
 Patch7: reproducible.patch
 # PATCH-FIX-OPENSUSE gcc6-fixes.diff ti...@suse.de -- fix for gcc6 build 
failures
 Patch8: gcc6-fixes.diff
+# PATCH-FIX-UPSTREAM gcc6-fixes.diff dav...@gmail.com -- fix for gcc 7 build 
failures.
+Patch3: jack-fixgcc7.patch
 BuildRequires:  dos2unix
 BuildRequires:  doxygen
 BuildRequires:  fdupes
@@ -115,14 +109,21 @@
 communicate with jack clients/servers.
 
 %prep
-%setup -q
+%setup -q -n %{name}2-%{version}
 %patch2
 %patch6 -p1
 %patch7 -p1
 %patch8 -p1
+%patch3
 
 %build
 
+%if 1 == 0
+%define gcc_version 7
+export CC=gcc-7
+export CPP=cpp-7
+export CXX=g++-7
+%endif
 export CFLAGS="%{optflags} -ggdb -fPIC"
 export CXXFLAGS="$CFLAGS"
 
@@ -133,9 +134,7 @@
 %if 0%{?wdbus} == 1
   --dbus \
 %endif
-%if 0%{?suse_version} > 1140
   --firewire \
-%endif
 %if %{buildoc} == 1
   --doxygen \
 %endif
@@ -198,9 +197,7 @@
 %{_libdir}/%{name}/%{name}_loopback.so*
 %{_libdir}/%{name}/%{name}_netone.so*
 %{_libdir}/%{name}/jack_alsarawmidi.so
-%if 0%{?suse_version} > 1140
 %{_libdir}/%{name}/%{name}_firewire.so
-%endif
 %if 0%{?wdbus} == 1
 %{_datadir}/dbus-1/services/org.jackaudio.service
 %endif

++ jack-fixgcc7.patch ++
Index: tests/test.cpp
===
--- tests/test.cpp.orig 2014-07-19 15:34:15.0 +0200
+++ tests/test.cpp  2017-04-02 13:02:23.615321226 +0200
@@ -480,7 +480,7 @@ int process4(jack_nframes_t nframes, voi
jack_nframes_t delta_time = cur_time - last_time;
 
Log("calling process4 callback : jack_frame_time = %ld delta_time = 
%ld\n", cur_time, delta_time);
-   if (delta_time > 0  && (jack_nframes_t)abs(delta_time - 
cur_buffer_size) > tolerance) {
+   if (delta_time > 0  && (jack_nframes_t)abs((int)delta_time - 
(int)cur_buffer_size) > tolerance) {
printf("!!! ERROR !!! jack_frame_time seems to return incorrect 
values cur_buffer_size = %d, delta_time = %d tolerance %d\n", cur_buffer_size, 
delta_time, tolerance);
}
 



  1   2   >