commit ghc-uuid for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package ghc-uuid for openSUSE:Factory 
checked in at 2016-04-03 23:07:25

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


Package is "ghc-uuid"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-uuid/ghc-uuid.changes2015-12-09 
22:17:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-uuid.new/ghc-uuid.changes   2016-04-03 
23:07:42.0 +0200
@@ -1,0 +2,10 @@
+Sun Apr  3 15:18:34 UTC 2016 - mimi...@gmail.com
+
+- update to 1.3.12
+* Use `cryptonite` for crypto
+* The function `V4.nextRandom` is now implemented with functions from
+   `Crypto.Random` in package `cryptonite`. This does slow-down random
+   UUID generation but provides for far greater randomness. The
+   `Random` instance for `UUID` can be used to re-gain the old behavior.
+
+---

Old:

  uuid-1.3.11.tar.gz

New:

  uuid-1.3.12.tar.gz



Other differences:
--
++ ghc-uuid.spec ++
--- /var/tmp/diff_new_pack.54udf1/_old  2016-04-03 23:07:43.0 +0200
+++ /var/tmp/diff_new_pack.54udf1/_new  2016-04-03 23:07:43.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-uuid
-Version:1.3.11
+Version:1.3.12
 Release:0
 Summary:For creating, comparing, parsing and printing Universally 
Unique Identifiers
 License:BSD-3-Clause
@@ -36,7 +36,8 @@
 # Begin cabal-rpm deps:
 BuildRequires:  ghc-binary-devel
 BuildRequires:  ghc-bytestring-devel
-BuildRequires:  ghc-cryptohash-devel
+BuildRequires:  ghc-cryptonite-devel
+BuildRequires:  ghc-memory-devel
 BuildRequires:  ghc-network-info-devel
 BuildRequires:  ghc-random-devel
 BuildRequires:  ghc-text-devel

++ uuid-1.3.11.tar.gz -> uuid-1.3.12.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uuid-1.3.11/CHANGES new/uuid-1.3.12/CHANGES
--- old/uuid-1.3.11/CHANGES 2015-08-02 06:14:34.0 +0200
+++ new/uuid-1.3.12/CHANGES 2016-04-02 21:48:04.0 +0200
@@ -1,3 +1,13 @@
+1.3.12
+
+- Update package dependencies
+- Use `cryptonite` for crypto
+- The function `V4.nextRandom` is now implemented with functions from
+  `Crypto.Random` in package `cryptonite`. This does slow-down random
+  UUID generation but provides for far greater randomness. The
+  `Random` instance for `UUID` can be used to re-gain the old
+  behavior.
+
 1.3.11
 
 - Add toText/fromText
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uuid-1.3.11/CONTRIBUTORS new/uuid-1.3.12/CONTRIBUTORS
--- old/uuid-1.3.11/CONTRIBUTORS2015-08-02 06:14:34.0 +0200
+++ new/uuid-1.3.12/CONTRIBUTORS1970-01-01 01:00:00.0 +0100
@@ -1,13 +0,0 @@
-In order of appearance:
-
-Antoine Latter
-Jason Dusek
-Tim Newsham
-Mark Lentczner
-Neil Mitchell
-Bas van Dijk
-Sergei Trofimovich
-davean
-Francesco Mazzoli
-Michael Snoyman
-Bardur Arantsson
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uuid-1.3.11/Data/UUID/Named.hs 
new/uuid-1.3.12/Data/UUID/Named.hs
--- old/uuid-1.3.11/Data/UUID/Named.hs  2015-08-02 06:14:34.0 +0200
+++ new/uuid-1.3.12/Data/UUID/Named.hs  2016-04-02 21:48:04.0 +0200
@@ -33,19 +33,21 @@
 import Data.Maybe
 import Data.Word (Word8)
 
+import qualified Data.ByteArray as BA
 import qualified Data.ByteString as B
 import qualified Data.ByteString.Lazy as BL
 
 -- |Generate a 'UUID' within the specified namespace out of the given
 -- object.
-generateNamed :: (B.ByteString -> B.ByteString) -- ^Hash
+generateNamed :: BA.ByteArrayAccess bs
+  => (B.ByteString -> bs) -- ^Hash
   -> Word8   -- ^Version
   ->  UUID   -- ^Namespace
   -> [Word8] -- ^Object
   -> UUID
 generateNamed hash version namespace object =
 let chunk = B.pack $ toList namespace ++ object
-bytes = BL.fromChunks . (:[]) $ hash chunk
+bytes = BL.fromStrict . BA.convert $ hash chunk
 w = getWord32be
 unpackBytes = runGet $
  buildFromWords version <$> w <*> w <*> w <*> w
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uuid-1.3.11/Data/UUID/V3.hs 
new/uuid-1.3.12/Data/UUID/V3.hs
--- old/uuid-1.3.11/Data/UUID/V3.hs 2015-08-02 06:14:34.0 +0200
+++ new/uuid-1.3.12/Data/UUID/V3.hs 2016-04-02 21:48:04.0 +0200
@@ -35,7 +35,7 @@
 
 import Data.UUID.Types.Internal
 import qualified Data.UUID.Named as Shared
-import qualified Crypto.Hash.MD5 as MD5
+import qualified Crypto.Hash as H
 
 
 -- |Generate a 

commit ghc-managed for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package ghc-managed for openSUSE:Factory 
checked in at 2016-04-03 23:07:21

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


Package is "ghc-managed"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-managed/ghc-managed.changes  2016-02-09 
13:32:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-managed.new/ghc-managed.changes 
2016-04-03 23:07:39.0 +0200
@@ -1,0 +2,5 @@
+Tue Mar 29 07:53:22 UTC 2016 - mimi...@gmail.com
+
+- update to 1.0.3 
+
+---

Old:

  managed-1.0.2.tar.gz

New:

  managed-1.0.3.tar.gz



Other differences:
--
++ ghc-managed.spec ++
--- /var/tmp/diff_new_pack.NUFirI/_old  2016-04-03 23:07:40.0 +0200
+++ /var/tmp/diff_new_pack.NUFirI/_new  2016-04-03 23:07:40.0 +0200
@@ -18,7 +18,7 @@
 %global pkg_name managed
 
 Name:   ghc-managed
-Version:1.0.2
+Version:1.0.3
 Release:0
 Summary:A monad for managed values
 Group:  System/Libraries

++ managed-1.0.2.tar.gz -> managed-1.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/managed-1.0.2/LICENSE new/managed-1.0.3/LICENSE
--- old/managed-1.0.2/LICENSE   2016-01-18 18:56:49.0 +0100
+++ new/managed-1.0.3/LICENSE   2014-08-10 18:37:16.0 +0200
@@ -1,24 +1,24 @@
-Copyright (c) 2014 Gabriel Gonzalez
-All rights reserved.
-
-Redistribution and use in source and binary forms, with or without 
modification,
-are permitted provided that the following conditions are met:
-* Redistributions of source code must retain the above copyright notice,
-  this list of conditions and the following disclaimer.
-* Redistributions in binary form must reproduce the above copyright notice,
-  this list of conditions and the following disclaimer in the documentation
-  and/or other materials provided with the distribution.
-* Neither the name of Gabriel Gonzalez nor the names of other contributors
-  may be used to endorse or promote products derived from this software
-  without specific prior written permission.
-
-THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
-ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
-WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
-DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
-ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
-(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
-LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
-ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+Copyright (c) 2014 Gabriel Gonzalez
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without 
modification,
+are permitted provided that the following conditions are met:
+* Redistributions of source code must retain the above copyright notice,
+  this list of conditions and the following disclaimer.
+* Redistributions in binary form must reproduce the above copyright notice,
+  this list of conditions and the following disclaimer in the documentation
+  and/or other materials provided with the distribution.
+* Neither the name of Gabriel Gonzalez nor the names of other contributors
+  may be used to endorse or promote products derived from this software
+  without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/managed-1.0.2/Setup.hs new/managed-1.0.3/Setup.hs
--- 

commit hylafax+ for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package hylafax+ for openSUSE:Factory 
checked in at 2016-04-03 23:07:19

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


Package is "hylafax+"

Changes:

--- /work/SRC/openSUSE:Factory/hylafax+/hylafax+.changes2016-02-18 
12:36:53.0 +0100
+++ /work/SRC/openSUSE:Factory/.hylafax+.new/hylafax+.changes   2016-04-03 
23:07:37.0 +0200
@@ -1,0 +2,12 @@
+Sun Apr  3 10:39:42 UTC 2016 - axel.br...@gmx.de
+
+- hylafax+ 5.5.8
+* stop using mktemp() (5 Feb 2016)
+* fix LDAP authentication broken in 5.5.4 (24-26 Jan 2016)
+* reset senderinfo properly when receiving faxes (22 Jan 2016)
+* cope with V.21 HDLC carrier loss following +FRH:3 better (22, 26 Jan 2016)
+* increase the time Class1SwitchingCmd will wait for a response (14 Jan 2016)
+* undo faulty/incorrect previous "fix" to ntries/npages (13 Jan 2016)
+* fix short blocking problems in reading from the device (12 Jan 2016)
+
+---

Old:

  hylafax-5.5.7.tar.gz

New:

  hylafax-5.5.8.tar.gz



Other differences:
--
++ hylafax+.spec ++
--- /var/tmp/diff_new_pack.uhNkkp/_old  2016-04-03 23:07:38.0 +0200
+++ /var/tmp/diff_new_pack.uhNkkp/_new  2016-04-03 23:07:38.0 +0200
@@ -19,7 +19,7 @@
 %global faxspool%{_localstatedir}/spool/hylafax
 %define lib_version %(echo %{version} | tr \. _)
 Name:   hylafax+
-Version:5.5.7
+Version:5.5.8
 Release:0
 Summary:An enterprise-strength fax server
 License:BSD-3-Clause

++ hylafax-5.5.7.tar.gz -> hylafax-5.5.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hylafax-5.5.7/CHANGES new/hylafax-5.5.8/CHANGES
--- old/hylafax-5.5.7/CHANGES   2015-12-28 17:26:09.0 +0100
+++ new/hylafax-5.5.8/CHANGES   2016-02-06 22:32:30.0 +0100
@@ -2,6 +2,16 @@
 
 New Changes
 
+* stop using mktemp() (5 Feb 2016)
+* fix LDAP authentication broken in 5.5.4 (24-26 Jan 2016)
+* reset senderinfo properly when receiving faxes (22 Jan 2016)
+* cope with V.21 HDLC carrier loss following +FRH:3 better (22, 26 Jan 2016)
+* increase the time Class1SwitchingCmd will wait for a response (14 Jan 2016)
+* undo faulty/incorrect previous "fix" to ntries/npages (13 Jan 2016)
+* fix short blocking problems in reading from the device (12 Jan 2016)
+
+(5.5.7)
+
 * fix ntries counter to apply to pages instead of documents (5 Dec 2015)
 * reject jobs rejected by the proxy (18-19 Nov 2015)
 * add RewriteFaxName and RewriteFaxNumber jobcontrol features (14 Nov 2015)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hylafax-5.5.7/VERSION new/hylafax-5.5.8/VERSION
--- old/hylafax-5.5.7/VERSION   2015-12-28 17:26:08.0 +0100
+++ new/hylafax-5.5.8/VERSION   2016-02-06 22:32:30.0 +0100
@@ -1 +1 @@
-5.5.7
+5.5.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hylafax-5.5.7/faxd/Class1.c++ 
new/hylafax-5.5.8/faxd/Class1.c++
--- old/hylafax-5.5.7/faxd/Class1.c++   2015-12-28 17:26:08.0 +0100
+++ new/hylafax-5.5.8/faxd/Class1.c++   2016-02-06 22:32:30.0 +0100
@@ -501,7 +501,7 @@
scmd = scmd.head(7) | fxStr(dur, "%d");
}
 }
-if (!silenceHeard && !atCmd(scmd, AT_OK)) {
+if (!silenceHeard && !atCmd(scmd, AT_OK, 60*1000)) {
emsg = "Failure to receive silence (synchronization failure). {E100}";
protoTrace(emsg);
if (wasTimeout()) abortReceive();
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hylafax-5.5.7/faxd/Class1.h 
new/hylafax-5.5.8/faxd/Class1.h
--- old/hylafax-5.5.7/faxd/Class1.h 2015-12-28 17:26:08.0 +0100
+++ new/hylafax-5.5.8/faxd/Class1.h 2016-02-06 22:32:30.0 +0100
@@ -223,7 +223,7 @@
 void   getDataStats(FaxSetup* setupinfo);
 void   sendSetupPhaseB(const fxStr& pwd, const fxStr& sub);
 FaxSendStatus sendPhaseB(TIFF* tif, Class2Params&, FaxMachineInfo&,
-   fxStr& pph, fxStr& emsg, u_int& batched, u_short& npages);
+   fxStr& pph, fxStr& emsg, u_int& batched);
 void   sendEnd();
 void   sendAbort();
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/hylafax-5.5.7/faxd/Class1Recv.c++ 
new/hylafax-5.5.8/faxd/Class1Recv.c++
--- old/hylafax-5.5.7/faxd/Class1Recv.c++   2015-12-28 17:26:08.0 
+0100
+++ new/hylafax-5.5.8/faxd/Class1Recv.c++   2016-02-06 22:32:30.0 
+0100
@@ -97,6 +97,8 @@
 capsUsed = 0;  

commit chromium for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2016-04-03 23:07:04

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


Package is "chromium"

Changes:

--- /work/SRC/openSUSE:Factory/chromium/chromium.changes2016-03-18 
21:42:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2016-04-03 
23:07:15.0 +0200
@@ -1,0 +2,20 @@
+Wed Mar 30 07:42:53 UTC 2016 - tittiatc...@gmail.com
+
+- Update to Chromium 49.0.2623.110
+  * No changelog available
+
+---
+Mon Mar 28 17:44:43 UTC 2016 - tittiatc...@gmail.com
+
+- Update to Chromium 49.0.2623.108
+  * Security fixes (boo#972834):
+- CVE-2016-1646: Out-of-bounds read in V8
+- CVE-2016-1647: Use-after-free in Navigation
+- CVE-2016-1648: Use-after-free in Extensions
+- CVE-2016-1649: Buffer overflow in libANGLE
+- CVE-2016-1650: Various fixes from internal audits, fuzzing 
+ and other initiatives
+- CVE-2016-3679: Multiple vulnerabilities in V8 fixed at the
+ tip of the 4.9 branch (currently 4.9.385.33).
+
+---

Old:

  chromium-49.0.2623.87.tar.xz

New:

  chromium-49.0.2623.110.tar.xz



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.pFL4pc/_old  2016-04-03 23:07:28.0 +0200
+++ /var/tmp/diff_new_pack.pFL4pc/_new  2016-04-03 23:07:28.0 +0200
@@ -18,7 +18,7 @@
 
 %define chromium_no_dlopen 1
 Name:   chromium
-Version:49.0.2623.87
+Version:49.0.2623.110
 Release:0
 Summary:Google's opens source browser project
 License:BSD-3-Clause and LGPL-2.1+


++ chromium-49.0.2623.87.tar.xz -> chromium-49.0.2623.110.tar.xz ++
/work/SRC/openSUSE:Factory/chromium/chromium-49.0.2623.87.tar.xz 
/work/SRC/openSUSE:Factory/.chromium.new/chromium-49.0.2623.110.tar.xz differ: 
char 27, line 1





commit texmath for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package texmath for openSUSE:Factory checked 
in at 2016-04-03 23:07:24

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


Package is "texmath"

Changes:

--- /work/SRC/openSUSE:Factory/texmath/texmath.changes  2016-03-31 
13:02:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.texmath.new/texmath.changes 2016-04-03 
23:07:40.0 +0200
@@ -1,0 +2,16 @@
+Thu Mar 31 08:41:59 UTC 2016 - mimi...@gmail.com
+
+- update to 0.8.6.1
+* OMML writer:  Fixed rendering of roots, so that the degree appears
+in the right place.
+* OMML writer:  Don't include empty rPr elements.
+
+---
+Tue Mar 29 07:57:26 UTC 2016 - mimi...@gmail.com
+
+- update to 0.8.6
+* TeX reader: Support hundreds more math symbols (all of those defined in 
+Text.TeXMath.Unicode.ToTeX), including `\nwarrow`, `\swarrow`, `\nearrow`,
+`\searrow`.
+
+---

Old:

  texmath-0.8.5.1.tar.gz

New:

  texmath-0.8.6.1.tar.gz



Other differences:
--
++ texmath.spec ++
--- /var/tmp/diff_new_pack.RL48Rv/_old  2016-04-03 23:07:41.0 +0200
+++ /var/tmp/diff_new_pack.RL48Rv/_new  2016-04-03 23:07:41.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name texmath
 
 Name:   texmath
-Version:0.8.5.1
+Version:0.8.6.1
 Release:0
 Summary:Conversion of LaTeX math formulas to MathML or OMML
 License:GPL-2.0

++ texmath-0.8.5.1.tar.gz -> texmath-0.8.6.1.tar.gz ++
 160509 lines of diff (skipped)




commit ghc-uuid-types for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package ghc-uuid-types for openSUSE:Factory 
checked in at 2016-04-03 23:07:27

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


Package is "ghc-uuid-types"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-uuid-types/ghc-uuid-types.changes
2015-12-09 22:17:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-uuid-types.new/ghc-uuid-types.changes   
2016-04-03 23:07:44.0 +0200
@@ -1,0 +2,5 @@
+Sun Apr  3 15:22:37 UTC 2016 - mimi...@gmail.com
+
+- update to 1.0.3
+
+---

Old:

  uuid-types-1.0.2.tar.gz

New:

  uuid-types-1.0.3.tar.gz



Other differences:
--
++ ghc-uuid-types.spec ++
--- /var/tmp/diff_new_pack.qEkLva/_old  2016-04-03 23:07:45.0 +0200
+++ /var/tmp/diff_new_pack.qEkLva/_new  2016-04-03 23:07:45.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-uuid-types
-Version:1.0.2
+Version:1.0.3
 Release:0 
 Summary:Type definitions for Universally Unique Identifiers
 License:BSD-3-Clause

++ uuid-types-1.0.2.tar.gz -> uuid-types-1.0.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uuid-types-1.0.2/CHANGES new/uuid-types-1.0.3/CHANGES
--- old/uuid-types-1.0.2/CHANGES2015-08-02 06:12:43.0 +0200
+++ new/uuid-types-1.0.3/CHANGES2016-04-02 21:47:47.0 +0200
@@ -1,3 +1,7 @@
+1.0.3
+
+- Bump package dependencies
+
 1.0.2
 
 - Add toText/fromText
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uuid-types-1.0.2/CONTRIBUTORS 
new/uuid-types-1.0.3/CONTRIBUTORS
--- old/uuid-types-1.0.2/CONTRIBUTORS   2015-08-02 06:12:43.0 +0200
+++ new/uuid-types-1.0.3/CONTRIBUTORS   1970-01-01 01:00:00.0 +0100
@@ -1,13 +0,0 @@
-In order of appearance:
-
-Antoine Latter
-Jason Dusek
-Tim Newsham
-Mark Lentczner
-Neil Mitchell
-Bas van Dijk
-Sergei Trofimovich
-davean
-Francesco Mazzoli
-Michael Snoyman
-Bardur Arantsson
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/uuid-types-1.0.2/uuid-types.cabal 
new/uuid-types-1.0.3/uuid-types.cabal
--- old/uuid-types-1.0.2/uuid-types.cabal   2015-08-02 06:12:43.0 
+0200
+++ new/uuid-types-1.0.3/uuid-types.cabal   2016-04-02 21:47:47.0 
+0200
@@ -1,5 +1,5 @@
 Name: uuid-types
-Version: 1.0.2
+Version: 1.0.3
 Copyright: (c) 2008-2014 Antoine Latter
 Author: Antoine Latter
 Maintainer: aslat...@gmail.com
@@ -23,12 +23,11 @@
 
 Extra-Source-Files:
  CHANGES
- CONTRIBUTORS
 
 
 Library
  Build-Depends: base >=3 && < 5,
-binary >= 0.4 && < 0.8,
+binary >= 0.4 && < 0.9,
 bytestring >= 0.9 && < 0.11,
 deepseq >= 1.3 && < 1.5,
 hashable (>= 1.1.1.0 && < 1.2.0) || (>= 1.2.1 && < 1.3),
@@ -57,9 +56,9 @@
 Build-Depends: base >= 3 && < 5,
uuid-types,
bytestring >= 0.9 && < 0.11,
-   HUnit >=1.2 && < 1.3,
+   HUnit >=1.2 && < 1.4,
QuickCheck >=2.4 && < 2.9,
-   tasty == 0.10.*,
+   tasty >= 0.10 && < 0.12,
tasty-hunit == 0.9.*,
tasty-quickcheck == 0.8.*
 




commit ghc-conduit-extra for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package ghc-conduit-extra for 
openSUSE:Factory checked in at 2016-04-03 23:07:20

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


Package is "ghc-conduit-extra"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-conduit-extra/ghc-conduit-extra.changes  
2016-03-16 10:33:35.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-conduit-extra.new/ghc-conduit-extra.changes 
2016-04-03 23:07:38.0 +0200
@@ -1,0 +2,13 @@
+Sun Apr  3 15:14:52 UTC 2016 - mimi...@gmail.com
+
+- update to 1.1.13.1
+* Add sinkStorable and sinkStorableEx
+
+---
+Thu Mar 31 08:36:42 UTC 2016 - mimi...@gmail.com
+
+- update to 1.1.12.1
+* Add sourceProcessWithStreams
+* Fix accidentally breaking change in sourceProcessWithConsumer type signature
+
+---

Old:

  conduit-extra-1.1.11.tar.gz

New:

  conduit-extra-1.1.13.1.tar.gz



Other differences:
--
++ ghc-conduit-extra.spec ++
--- /var/tmp/diff_new_pack.WmnG3u/_old  2016-04-03 23:07:39.0 +0200
+++ /var/tmp/diff_new_pack.WmnG3u/_new  2016-04-03 23:07:39.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-conduit-extra
-Version:1.1.11
+Version:1.1.13.1
 Release:0
 Summary:Batteries included conduit: adapters for common libraries
 License:MIT
@@ -34,6 +34,7 @@
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
+BuildRequires:  ghc-async-devel
 BuildRequires:  ghc-attoparsec-devel
 BuildRequires:  ghc-blaze-builder-devel
 BuildRequires:  ghc-bytestring-devel

++ conduit-extra-1.1.11.tar.gz -> conduit-extra-1.1.13.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-extra-1.1.11/ChangeLog.md 
new/conduit-extra-1.1.13.1/ChangeLog.md
--- old/conduit-extra-1.1.11/ChangeLog.md   2016-03-03 10:58:27.0 
+0100
+++ new/conduit-extra-1.1.13.1/ChangeLog.md 2016-04-02 19:35:12.0 
+0200
@@ -1,3 +1,20 @@
+## 1.1.13.1
+
+* Fix an incorrect comment
+
+## 1.1.13
+
+* Add `sinkStorable` and `sinkStorableEx`
+
+## 1.1.12.1
+
+* Fix build for GHC `<= 7.8` 
[#260](https://github.com/snoyberg/conduit/issues/260)
+* Fix accidentally breaking change in `sourceProcessWithConsumer` type 
signature
+
+## 1.1.12
+
+* Add sourceProcessWithStreams 
[#258](https://github.com/snoyberg/conduit/pull/258)
+
 ## 1.1.11
 
 * `withCheckedProcessCleanup`
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-extra-1.1.11/Data/Conduit/Attoparsec.hs 
new/conduit-extra-1.1.13.1/Data/Conduit/Attoparsec.hs
--- old/conduit-extra-1.1.11/Data/Conduit/Attoparsec.hs 2016-03-03 
10:58:27.0 +0100
+++ new/conduit-extra-1.1.13.1/Data/Conduit/Attoparsec.hs   2016-04-02 
19:35:12.0 +0200
@@ -105,7 +105,7 @@
 f (Position l c) ch | ch == '\n' = Position (l + 1) 0
 | otherwise = Position l (c + 1)
 stripFromEnd (TI.Text arr1 off1 len1) (TI.Text _ _ len2) =
-TI.textP arr1 off1 (len1 - len2)
+TI.text arr1 off1 (len1 - len2)
 
 -- | Convert an Attoparsec 'A.Parser' into a 'Sink'. The parser will
 -- be streamed bytes until it returns 'A.Done' or 'A.Fail'.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-extra-1.1.11/Data/Conduit/Binary.hs 
new/conduit-extra-1.1.13.1/Data/Conduit/Binary.hs
--- old/conduit-extra-1.1.11/Data/Conduit/Binary.hs 2016-03-03 
10:58:27.0 +0100
+++ new/conduit-extra-1.1.13.1/Data/Conduit/Binary.hs   2016-04-02 
19:35:12.0 +0200
@@ -1,4 +1,6 @@
 {-# LANGUAGE CPP, RankNTypes #-}
+{-# LANGUAGE DeriveDataTypeable #-}
+{-# LANGUAGE ScopedTypeVariables #-}
 -- | Functions for interacting with bytes.
 --
 -- For many purposes, it's recommended to use the conduit-combinators library,
@@ -36,6 +38,9 @@
 , sinkCacheLength
 , sinkLbs
 , mapM_
+  -- *** Storable
+, sinkStorable
+, sinkStorableEx
   -- ** Conduits
 , isolate
 , takeWhile
@@ -45,6 +50,7 @@
 import qualified Data.Streaming.FileRead as FR
 import Prelude hiding (head, take, drop, takeWhile, dropWhile, mapM_)
 import qualified Data.ByteString as S
+import Data.ByteString.Unsafe (unsafeUseAsCString)
 import qualified Data.ByteString.Lazy as L
 import Data.Conduit
 import Data.Conduit.List (sourceList, consume)
@@ -55,16 +61,21 @@
 import Control.Monad.Trans.Class (lift)
 import qualified System.IO as IO
 import Data.Word (Word8, 

commit python3-numexpr for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package python3-numexpr for openSUSE:Factory 
checked in at 2016-04-03 23:07:11

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


Package is "python3-numexpr"

Changes:

--- /work/SRC/openSUSE:Factory/python3-numexpr/python3-numexpr.changes  
2016-02-17 12:23:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-numexpr.new/python3-numexpr.changes 
2016-04-03 23:07:30.0 +0200
@@ -1,0 +2,12 @@
+Sat Apr  2 03:39:15 UTC 2016 - a...@gmx.de
+
+- update to version 2.5.1:
+  * Fix for log10() and conj() functions. These produced wrong results
+when numexpr was compiled with Intel's MKL (which is a popular
+build since Anaconda ships it by default) and non-contiguous data
+(issue #210). Thanks to Arne de Laat and Tom Kooij for reporting
+and providing a nice test unit.
+  * Fix that allows numexpr-powered apps to be profiled with
+pympler. Thanks to @nbecker.
+
+---

Old:

  numexpr-2.5.tar.gz

New:

  numexpr-2.5.1.tar.gz



Other differences:
--
++ python3-numexpr.spec ++
--- /var/tmp/diff_new_pack.j5jy68/_old  2016-04-03 23:07:30.0 +0200
+++ /var/tmp/diff_new_pack.j5jy68/_new  2016-04-03 23:07:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-numexpr
-Version:2.5
+Version:2.5.1
 Release:0
 Url:https://github.com/pydata/numexpr
 Summary:Fast numerical expression evaluator for NumPy

++ numexpr-2.5.tar.gz -> numexpr-2.5.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/numexpr-2.5/ANNOUNCE.rst 
new/numexpr-2.5.1/ANNOUNCE.rst
--- old/numexpr-2.5/ANNOUNCE.rst2016-02-06 11:44:03.0 +0100
+++ new/numexpr-2.5.1/ANNOUNCE.rst  2016-03-31 09:22:51.0 +0200
@@ -1,5 +1,5 @@
 =
- Announcing Numexpr 2.5
+ Announcing Numexpr 2.5.1
 =
 
 Numexpr is a fast numerical expression evaluator for NumPy.  With it,
@@ -8,7 +8,7 @@
 
 It wears multi-threaded capabilities, as well as support for Intel's
 MKL (Math Kernel Library), which allows an extremely fast evaluation
-of transcendental functions (sin, cos, tan, exp, log...)  while
+of transcendental functions (sin, cos, tan, exp, log...) while
 squeezing the last drop of performance out of your multi-core
 processors.  Look here for a some benchmarks of numexpr using MKL:
 
@@ -21,10 +21,12 @@
 What's new
 ==
 
-In this version, a lock has been added so that numexpr can be called
-not from multithreaded apps.  Mind that this does not prevent numexpr
-to use multiple cores internally.  Also, a new min() and max()
-functions have been added.  Thanks to contributors!
+Fixed a critical bug that caused wrong evaluations of log10() and
+conj().  These produced wrong results when numexpr was compiled with
+Intel's MKL (which is a popular build since Anaconda ships it by
+default) and non-contiguous data.  This is considered a *critical* bug
+and upgrading is highly recommended. Thanks to Tom Kooij and Arne de
+Laat for reporting and providing a test unit.
 
 In case you want to know more in detail what has changed in this
 version, see:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/numexpr-2.5/PKG-INFO new/numexpr-2.5.1/PKG-INFO
--- old/numexpr-2.5/PKG-INFO2016-02-06 11:48:22.0 +0100
+++ new/numexpr-2.5.1/PKG-INFO  2016-03-31 09:37:44.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: numexpr
-Version: 2.5
+Version: 2.5.1
 Summary: Fast numerical expression evaluator for NumPy
 Home-page: https://github.com/pydata/numexpr
 Author: David M. Cooke, Francesc Alted and others
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/numexpr-2.5/RELEASE_NOTES.rst 
new/numexpr-2.5.1/RELEASE_NOTES.rst
--- old/numexpr-2.5/RELEASE_NOTES.rst   2016-02-06 11:34:30.0 +0100
+++ new/numexpr-2.5.1/RELEASE_NOTES.rst 2016-03-31 09:34:43.0 +0200
@@ -2,6 +2,20 @@
  Release notes for Numexpr 2.5 series
 ==
 
+
+Changes from 2.5 to 2.5.1
+=
+
+- Fix for log10() and conj() functions.  These produced wrong results
+  when numexpr was compiled with Intel's MKL (which is a popular build
+  since Anaconda ships it by default) and non-contiguous data (issue
+  #210).  Thanks to Arne de Laat and Tom Kooij for reporting and
+  providing a nice test unit.
+
+- Fix that allows numexpr-powered apps to be profiled with pympler.
+  Thanks to @nbecker.
+
+
 

commit ghc-wai for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package ghc-wai for openSUSE:Factory checked 
in at 2016-04-03 23:07:28

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


Package is "ghc-wai"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-wai/ghc-wai.changes  2016-01-28 
17:25:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-wai.new/ghc-wai.changes 2016-04-03 
23:07:47.0 +0200
@@ -1,0 +2,5 @@
+Thu Mar 31 08:44:31 UTC 2016 - mimi...@gmail.com
+
+- update to 3.2.0.1 
+
+---

Old:

  wai-3.2.0.tar.gz

New:

  wai-3.2.0.1.tar.gz



Other differences:
--
++ ghc-wai.spec ++
--- /var/tmp/diff_new_pack.bMCQKx/_old  2016-04-03 23:07:48.0 +0200
+++ /var/tmp/diff_new_pack.bMCQKx/_new  2016-04-03 23:07:48.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-wai
-Version:3.2.0
+Version:3.2.0.1
 Release:0
 Summary:Web Application Interface
 License:MIT

++ wai-3.2.0.tar.gz -> wai-3.2.0.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-3.2.0/ChangeLog.md new/wai-3.2.0.1/ChangeLog.md
--- old/wai-3.2.0/ChangeLog.md  2015-12-30 01:24:47.0 +0100
+++ new/wai-3.2.0.1/ChangeLog.md2016-03-29 08:31:37.0 +0200
@@ -1,3 +1,17 @@
+## 3.2.0.1
+
+* Add missing changelog entry
+
+## 3.2.0
+
+* Major version up due to breaking changes. We chose 3.2.0, not 3.1.0
+  for consistency with Warp 3.2.0.
+* The Network.Wai.HTTP2 module was removed.
+* tryGetFileSize, hContentRange, hAcceptRanges, contentRangeHeader and
+  chooseFilePart, adjustForFilePart and parseByteRanges were removed
+  from the Network.Wai.Internal module.
+* New fields for Request:  requestHeaderReferer and requestHeaderUserAgent.
+
 ## 3.0.5.0
 
 * Avoid using the IsString Builder instance
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-3.2.0/wai.cabal new/wai-3.2.0.1/wai.cabal
--- old/wai-3.2.0/wai.cabal 2015-12-30 01:24:47.0 +0100
+++ new/wai-3.2.0.1/wai.cabal   2016-03-29 08:31:37.0 +0200
@@ -1,5 +1,5 @@
 Name:wai
-Version: 3.2.0
+Version: 3.2.0.1
 Synopsis:Web Application Interface.
 Description: Provides a common protocol for communication between web 
applications and web servers.
 description: API docs and the README are available at 
.




commit vertex-gtk-theme for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package vertex-gtk-theme for 
openSUSE:Factory checked in at 2016-04-03 23:07:17

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


Package is "vertex-gtk-theme"

Changes:

--- /work/SRC/openSUSE:Factory/vertex-gtk-theme/vertex-gtk-theme.changes
2015-09-30 05:53:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.vertex-gtk-theme.new/vertex-gtk-theme.changes   
2016-04-03 23:07:35.0 +0200
@@ -1,0 +2,8 @@
+Sat Apr  2 17:02:31 UTC 2016 - virtuous...@gmail.com
+
+- Update to 20160329:
+  * Add support for Gnome 3.20.
+  * Add Budgie v10.x support.
+  * Bugfixes.
+
+---

Old:

  vertex-gtk-theme-20150923.tar.gz

New:

  vertex-gtk-theme-20160329.tar.gz



Other differences:
--
++ vertex-gtk-theme.spec ++
--- /var/tmp/diff_new_pack.te7H79/_old  2016-04-03 23:07:35.0 +0200
+++ /var/tmp/diff_new_pack.te7H79/_new  2016-04-03 23:07:35.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package vertex-gtk-theme
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 %define _theme  Vertex
 %define _name   vertex
 Name:   vertex-gtk-theme
-Version:20150923
+Version:20160329
 Release:0
 Summary:Vertex GTK+ theme
 License:GPL-3.0+
@@ -81,7 +81,7 @@
 This package contains the GTK+3 theme.
 
 %prep
-%setup -q -n %{_theme}-theme-%{version}
+%setup -q -n %{_name}-theme-%{version}
 sed -i 's/^\(IconTheme=\).*$/\1Adwaita/' common/index.theme*
 
 %build

++ vertex-gtk-theme-20150923.tar.gz -> vertex-gtk-theme-20160329.tar.gz 
++
 314608 lines of diff (skipped)




commit python3-html2text for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package python3-html2text for 
openSUSE:Factory checked in at 2016-04-03 23:07:07

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


Package is "python3-html2text"

Changes:

--- /work/SRC/openSUSE:Factory/python3-html2text/python3-html2text.changes  
2016-01-20 09:55:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-html2text.new/python3-html2text.changes 
2016-04-03 23:07:29.0 +0200
@@ -1,0 +2,10 @@
+Sat Apr  2 03:38:44 UTC 2016 - a...@gmx.de
+
+- update to version 2016.4.2:
+  * Fix #106: encoding by stdin
+  * Fix #89: Python 3.5 support.
+  * Fix #113: inplace baseurl substitution for  and  tags.
+  * Feature #118: Update the badges to badge.kloud51.com
+  * Fix #119: new-line after a list is inserted
+
+---

Old:

  html2text-2016.1.8.tar.gz

New:

  html2text-2016.4.2.tar.gz



Other differences:
--
++ python3-html2text.spec ++
--- /var/tmp/diff_new_pack.svqzJC/_old  2016-04-03 23:07:30.0 +0200
+++ /var/tmp/diff_new_pack.svqzJC/_new  2016-04-03 23:07:30.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-html2text
-Version:2016.1.8
+Version:2016.4.2
 Release:0
 Url:https://github.com/Alir3z4/html2text/
 Summary:Turn HTML into equivalent Markdown-structured text

++ html2text-2016.1.8.tar.gz -> html2text-2016.4.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/html2text-2016.1.8/AUTHORS.rst 
new/html2text-2016.4.2/AUTHORS.rst
--- old/html2text-2016.1.8/AUTHORS.rst  2015-11-04 15:32:38.0 +0100
+++ new/html2text-2016.4.2/AUTHORS.rst  2016-04-01 23:55:11.0 +0200
@@ -19,6 +19,7 @@
 * Albert Berger 
 * Etienne Millon 
 * John C F 
+* Mikhail Melnik 
 
 
 Maintainer:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/html2text-2016.1.8/ChangeLog.rst 
new/html2text-2016.4.2/ChangeLog.rst
--- old/html2text-2016.1.8/ChangeLog.rst2016-01-08 17:35:35.0 
+0100
+++ new/html2text-2016.4.2/ChangeLog.rst2016-04-01 23:57:46.0 
+0200
@@ -1,3 +1,14 @@
+2016.4.2
+=
+
+
+* Fix #106: encoding by stdin
+* Fix #89: Python 3.5 support.
+* Fix #113: inplace baseurl substitution for  and  tags.
+* Feature #118: Update the badges to badge.kloud51.com
+* Fix #119: new-line after a list is inserted
+
+
 2016.1.8
 =
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/html2text-2016.1.8/PKG-INFO 
new/html2text-2016.4.2/PKG-INFO
--- old/html2text-2016.1.8/PKG-INFO 2016-01-08 17:40:00.0 +0100
+++ new/html2text-2016.4.2/PKG-INFO 2016-04-02 00:00:15.0 +0200
@@ -1,12 +1,99 @@
 Metadata-Version: 1.1
 Name: html2text
-Version: 2016.1.8
+Version: 2016.4.2
 Summary: Turn HTML into equivalent Markdown-structured text.
 Home-page: https://github.com/Alir3z4/html2text/
 Author: Alireza Savand
 Author-email: alireza.sav...@gmail.com
 License: GNU GPL 3
-Description: UNKNOWN
+Description: # html2text
+
+[![Build 
Status](https://secure.travis-ci.org/Alir3z4/html2text.png)](http://travis-ci.org/Alir3z4/html2text)
+[![Coverage 
Status](https://coveralls.io/repos/Alir3z4/html2text/badge.png)](https://coveralls.io/r/Alir3z4/html2text)
+
[![Downloads](http://badge.kloud51.com/pypi/d/html2text.png)](https://pypi.python.org/pypi/html2text/)
+
[![Version](http://badge.kloud51.com/pypi/v/html2text.png)](https://pypi.python.org/pypi/html2text/)
+
[![Wheel?](http://badge.kloud51.com/pypi/wheel/html2text.png)](https://pypi.python.org/pypi/html2text/)
+
[![Format](http://badge.kloud51.com/pypi/format/html2text.png)](https://pypi.python.org/pypi/html2text/)
+
[![License](http://badge.kloud51.com/pypi/license/html2text.png)](https://pypi.python.org/pypi/html2text/)
+
+
+html2text is a Python script that converts a page of HTML into clean, 
easy-to-read plain ASCII text. Better yet, that ASCII also happens to be valid 
Markdown (a text-to-HTML format).
+
+
+Usage: `html2text [(filename|url) [encoding]]`
+
+| Option | Description
+
||---
+| `--version`| Show 
program's version number and exit
+| `-h`, `--help`

commit systemd for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package systemd for openSUSE:Factory checked 
in at 2016-04-03 23:06:56

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


Package is "systemd"

Changes:

--- /work/SRC/openSUSE:Factory/systemd/systemd-mini.changes 2016-03-16 
10:23:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.systemd.new/systemd-mini.changes
2016-04-03 23:06:58.0 +0200
@@ -1,0 +2,43 @@
+Sat Mar 26 15:59:36 UTC 2016 - jeng...@inai.de
+
+- Add two patches which address logind/networkd disappearing from
+  dbus (and busctl) even while the units and processes continue
+  running.
+  0001-core-fix-bus-name-synchronization-after-daemon-reloa.patch
+  0001-core-re-sync-bus-name-list-after-deserializing-durin.patch
+
+---
+Mon Mar 14 18:04:10 UTC 2016 - f...@suse.com
+
+- drop all compiler/linker option customizations:
+  - -pipe option is used by default since day 0
+  - get rid of cflags() function which is not needed
+  - --hash-size has no impact specially in runtime
+
+  IOW, use the default options for the compiler and the linker,
+  there's no point in making systemd different from other package in
+  this regards.
+
+---
+Mon Mar 14 17:26:00 UTC 2016 - f...@suse.com
+
+- use %make_build instead of 'make %{?_smp_mflags}'
+
+---
+Mon Mar 14 16:36:32 UTC 2016 - f...@suse.com
+
+- be more strict on own lib version requirements
+
+---
+Mon Mar 14 16:11:49 UTC 2016 - f...@suse.com
+
+- systemd should require udev with the exact same version
+
+---
+Thu Mar 10 08:01:57 UTC 2016 - wer...@suse.de
+
+- Modify patch handle-numlock-value-in-etc-sysconfig-keyboard.patch
+  to allow that open, seek, and read of /dev/mem may fail e.g.
+  on XEN based virtual guests (bsc#961120) 
+
+---
@@ -7,0 +51,14 @@
+
+---
+Thu Feb  4 11:05:37 UTC 2016 - lnus...@suse.de
+
+- require curl and bzip2 to build importd
+- curl also causes building of journal-upload. That one has rather
+  unusal certificate usage, set it's ca root to /etc/pki/systemd
+  instead of the built-in default /etc/ssl as journal-remote and
+  journal-upload think they kan put stuff in /etc/ssl/certs then but
+  that directory is managed by p11-kit and doesn't serve the purpose
+  those programs think.
+- /var/lib/systemd/random-seed is a file
+- own /var/lib/machines
+- add systemd-228-nspawn-make-journal-linking-non-fatal-in-try-and-auto.diff
systemd.changes: same change

New:

  0001-core-fix-bus-name-synchronization-after-daemon-reloa.patch
  0001-core-re-sync-bus-name-list-after-deserializing-durin.patch
  systemd-228-nspawn-make-journal-linking-non-fatal-in-try-and-auto.diff



Other differences:
--
++ systemd-mini.spec ++
--- /var/tmp/diff_new_pack.PBnTRP/_old  2016-04-03 23:07:01.0 +0200
+++ /var/tmp/diff_new_pack.PBnTRP/_new  2016-04-03 23:07:01.0 +0200
@@ -92,6 +92,9 @@
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  libgcrypt-devel
 BuildRequires:  libxslt-tools
+# curl and bzip2 are required for building importd
+BuildRequires:  pkgconfig(bzip2)
+BuildRequires:  pkgconfig(libcurl)
 %if %{with python}
 BuildRequires:  python
 %endif
@@ -102,7 +105,7 @@
 BuildRequires:  pkgconfig(usbutils) >= 0.82
 # the buildignore is important for bootstrapping
 #!BuildIgnore:  udev
-Requires:   udev >= 172
+Requires:   udev = %{version}-%{release}
 Recommends: %{name}-bash-completion
 Requires:   dbus-1 >= 1.4.0
 Requires:   kbd
@@ -250,6 +253,12 @@
 Patch524:   0001-nss-mymachines-do-not-allow-overlong-machine-names.patch
 # PATCH-FIX-UPSTREAM (bsc#966535)
 Patch525:   0001-core-exclude-.slice-units-from-systemctl-isolate.patch
+# PATCH-FIX-UPSTREAM -- fixed after 228
+Patch526:   
systemd-228-nspawn-make-journal-linking-non-fatal-in-try-and-auto.diff
+# PATCH-FIX-UPSTREAM -- fixed after 228
+Patch527:   0001-core-fix-bus-name-synchronization-after-daemon-reloa.patch
+# PATCH-FIX-UPSTREAM -- fixed after 228
+Patch528:   0001-core-re-sync-bus-name-list-after-deserializing-durin.patch
 
 # UDEV PATCHES
 # 
@@ -324,7 +333,7 @@
 Summary:Development headers for systemd
 License:LGPL-2.1+
 Group:  Development/Libraries/C and C++
-Requires:   libsystemd0%{?mini} = %version

commit perl-Bootloader for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package perl-Bootloader for openSUSE:Factory 
checked in at 2016-04-03 23:06:41

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


Package is "perl-Bootloader"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Bootloader/perl-Bootloader.changes  
2016-03-20 11:48:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-Bootloader.new/perl-Bootloader.changes 
2016-04-03 23:06:43.0 +0200
@@ -1,0 +2,13 @@
+Thu Mar 31 10:04:20 UTC 2016 - snw...@suse.com
+
+- Revert "Set GRUB_GFXPAYLOAD based on gfxterm"
+- 0.911
+
+---
+Tue Mar 29 10:47:18 UTC 2016 - snw...@suse.com
+
+- Set GRUB_GFXPAYLOAD based on gfxterm
+- Fix syntax errors in grub2/install
+- 0.910
+
+---

Old:

  perl-Bootloader-0.908.tar.xz

New:

  perl-Bootloader-0.911.tar.xz



Other differences:
--
++ perl-Bootloader.spec ++
--- /var/tmp/diff_new_pack.3jZN0F/_old  2016-04-03 23:06:44.0 +0200
+++ /var/tmp/diff_new_pack.3jZN0F/_new  2016-04-03 23:06:44.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Bootloader
-Version:0.908
+Version:0.911
 Release:0
 Requires:   coreutils
 Requires:   perl-base = %{perl_version}

++ perl-Bootloader-0.908.tar.xz -> perl-Bootloader-0.911.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.908/VERSION 
new/perl-Bootloader-0.911/VERSION
--- old/perl-Bootloader-0.908/VERSION   2016-03-15 14:32:38.0 +0100
+++ new/perl-Bootloader-0.911/VERSION   2016-03-31 12:03:11.0 +0200
@@ -1 +1 @@
-0.908
+0.911
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.908/changelog 
new/perl-Bootloader-0.911/changelog
--- old/perl-Bootloader-0.908/changelog 2016-03-15 14:32:38.0 +0100
+++ new/perl-Bootloader-0.911/changelog 2016-03-31 12:03:11.0 +0200
@@ -1,3 +1,12 @@
+2016-03-31:0.911
+   - Revert "Set GRUB_GFXPAYLOAD based on gfxterm"
+
+2016-03-29:0.910
+   - Fix syntax errors in grub2/install
+
+2016-03-23:0.909
+   - Set GRUB_GFXPAYLOAD based on gfxterm
+
 2016-03-15:0.908
- Skip grub2-install on PowerNV
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/perl-Bootloader-0.908/grub2/install 
new/perl-Bootloader-0.911/grub2/install
--- old/perl-Bootloader-0.908/grub2/install 2016-03-15 14:32:38.0 
+0100
+++ new/perl-Bootloader-0.911/grub2/install 2016-03-31 12:03:11.0 
+0200
@@ -15,7 +15,7 @@
 
 echo "target = $target"
 
-if [ "$target" = "powerpc-ieee1275" ];
+if [ "$target" = "powerpc-ieee1275" ] ; then
   grep -q PowerNV /proc/cpuinfo && exit 0
 fi
 err=0




commit libsodium for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package libsodium for openSUSE:Factory 
checked in at 2016-04-03 23:07:14

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


Package is "libsodium"

Changes:

--- /work/SRC/openSUSE:Factory/libsodium/libsodium.changes  2015-12-27 
02:00:30.0 +0100
+++ /work/SRC/openSUSE:Factory/.libsodium.new/libsodium.changes 2016-04-03 
23:07:33.0 +0200
@@ -1,0 +2,19 @@
+Sat Apr  2 15:50:44 UTC 2016 - idon...@suse.com
+
+- Update to version 1.0.9
+  * A detached API was added to the ChaCha20-Poly1305 and AES256-GCM
+implementations.
+  * The Argon2i password hashing function was added, and is accessible
+directly and through a new, high-level crypto_pwhash API.
+The scrypt function remains available as well.
+  * A speed-record AVX2 implementation of BLAKE2b was added.
+  * Countermeasures for Ed25519 signatures malleability have been
+added to match the irtf-cfrg-eddsa draft.
+  * The HChaCha20 core function was implemented (crypto_core_hchacha20()).
+  * No-op stubs were added for all AES256-GCM public functions even
+when compiled on non-Intel platforms.
+  * crypt_generichash_blake2b_statebytes() was added.
+  * New macros were added for the IETF variant of the ChaCha20-Poly1305
+construction.
+
+---

Old:

  libsodium-1.0.8.tar.gz

New:

  libsodium-1.0.9.tar.gz



Other differences:
--
++ libsodium.spec ++
--- /var/tmp/diff_new_pack.H2dqgz/_old  2016-04-03 23:07:34.0 +0200
+++ /var/tmp/diff_new_pack.H2dqgz/_new  2016-04-03 23:07:34.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libsodium
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 %define lname libsodium18
 Name:   libsodium
-Version:1.0.8
+Version:1.0.9
 Release:0
 Summary:Portable NaCl-based crypto library
 License:ISC

++ libsodium-1.0.8.tar.gz -> libsodium-1.0.9.tar.gz ++
 19363 lines of diff (skipped)




commit python3-blosc for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package python3-blosc for openSUSE:Factory 
checked in at 2016-04-03 23:07:13

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


Package is "python3-blosc"

Changes:

--- /work/SRC/openSUSE:Factory/python3-blosc/python3-blosc.changes  
2015-11-10 10:01:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-blosc.new/python3-blosc.changes 
2016-04-03 23:07:31.0 +0200
@@ -1,0 +2,29 @@
+Sat Apr  2 03:34:46 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 1.3.0:
+  * Internal C-Blosc version bumped to 1.8.0. As consequence, support
+for BITSHUFFLE is here. For activating it, just pass
+blosc.BITSHUFFLE to the shuffle parameter of compression
+functions.
+  * Added a new as_bytearray=False parameter to the decompress()
+function so that a mutable bytearray will be returned instead of a
+bytes one (inmutable). PR #107. Thanks to Joe Jevnik.
+  * The '__all__' variable has been removed from the module. I
+consider this good practice to avoid things like "from blosc
+import *".
+  * For consistency, the next symbols have been renamed:
++ BLOSC_VERSION_STRING -> VERSION_STRING, BLOSC_VERSION_DATE ->
+  VERSION_DATE, BLOSC_MAX_BUFFERSIZE -> MAX_BUFFERSIZE,
+  BLOSC_MAX_THREADS -> MAX_THREADS, BLOSC_MAX_TYPESIZE ->
+  MAX_TYPESIZE,
+  * The typesize parameter is set by default to 8 in compression
+functions. This usually behaves well for 4-bytes typesizes
+too. Nevertheless, it is advised to use the actual typesize.
+  * The maximum number of threads to use by default is set to 4 (less
+if less cores are detected). Feel free to use more or less threads
+depending on the resources you want to use for compression.
+
+---

Old:

  blosc-1.2.8.tar.gz

New:

  blosc-1.3.0.tar.gz



Other differences:
--
++ python3-blosc.spec ++
--- /var/tmp/diff_new_pack.kHt8FW/_old  2016-04-03 23:07:32.0 +0200
+++ /var/tmp/diff_new_pack.kHt8FW/_new  2016-04-03 23:07:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-blosc
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python3-blosc
-Version:1.2.8
+Version:1.3.0
 Release:0
 Summary:Blosc data compressor for Python
 License:MIT
@@ -27,8 +27,8 @@
 BuildRequires:  blosc-devel
 BuildRequires:  gcc-c++
 BuildRequires:  python3-devel
-BuildRequires:  python3-setuptools
 BuildRequires:  python3-numpy-devel
+BuildRequires:  python3-setuptools
 Requires:   blosc-devel
 Requires:   python3-numpy
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ blosc-1.2.8.tar.gz -> blosc-1.3.0.tar.gz ++
 9366 lines of diff (skipped)




commit dracut for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package dracut for openSUSE:Factory checked 
in at 2016-04-03 23:06:51

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


Package is "dracut"

Changes:

--- /work/SRC/openSUSE:Factory/dracut/dracut.changes2016-02-25 
22:36:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.dracut.new/dracut.changes   2016-04-03 
23:06:53.0 +0200
@@ -1,0 +2,8 @@
+Thu Mar 24 16:28:01 UTC 2016 - tr...@suse.de
+
+- Move dist config file to /usr/lib/dracut/dracut.conf.d (bsc#972143)
+- Remove stale, unused patch file:
+0181-no_systemd_cryptsetup.patch
+- Still create a debug config example in /etc/dracut.conf.d
+
+---

Old:

  0181-no_systemd_cryptsetup.patch

New:

  99-debug.conf



Other differences:
--
++ dracut.spec ++
--- /var/tmp/diff_new_pack.MlqyTP/_old  2016-04-03 23:06:55.0 +0200
+++ /var/tmp/diff_new_pack.MlqyTP/_new  2016-04-03 23:06:55.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package dracut
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 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
@@ -31,6 +31,7 @@
 Source4:purge-kernels
 Source5:purge-kernels.service
 Source6:dracut-installkernel
+Source7:99-debug.conf
 
 #Network:
 Patch12:0019-40network-Fix-race-condition-when-wait-for-networks.patch
@@ -101,7 +102,6 @@
 Patch164:   0164-Fix-initramfs-ver.img-vs-initrd-ver-in-dracut-initra.patch
 Patch168:   0168-remove_plymouth_logo_file.patch
 Patch180:   0180-i18n_add_correct_fontmaps.patch
-Patch181:   0181-no_systemd_cryptsetup.patch
 Patch182:   0182-fix-include-parsing.patch
 Patch183:   0183-fix_add_drivers_hang.patch
 
@@ -311,7 +311,8 @@
 mkdir -p %{buildroot}%{_localstatedir}/log
 touch %{buildroot}%{_localstatedir}/log/dracut.log
 
-install -m 0644 dracut.conf.d/suse.conf.example 
%{buildroot}%{_sysconfdir}/dracut.conf.d/01-dist.conf
+install -D -m 0644 dracut.conf.d/suse.conf.example 
%{buildroot}/usr/lib/dracut/dracut.conf.d/01-dist.conf
+install -m 0644 %{SOURCE7} 
%{buildroot}%{_sysconfdir}/dracut.conf.d/99-debug.conf
 install -m 0644 dracut.conf.d/fips.conf.example 
%{buildroot}%{_sysconfdir}/dracut.conf.d/40-fips.conf
 
 %ifarch %ix86 x86_64
@@ -395,8 +396,10 @@
 
 %config(noreplace) %{_sysconfdir}/dracut.conf
 %dir %{_sysconfdir}/dracut.conf.d
+%dir /usr/lib/dracut/dracut.conf.d
+%config %{_sysconfdir}/dracut.conf.d/99-debug.conf
 %if 0%{?fedora} || 0%{?suse_version} || 0%{?rhel}
-%config %{_sysconfdir}/dracut.conf.d/01-dist.conf
+/usr/lib/dracut/dracut.conf.d/01-dist.conf
 %endif
 %ifarch %ix86 x86_64
 %config %{_sysconfdir}/dracut.conf.d/02-early-microcode.conf

++ 99-debug.conf ++
# Below adds additional tools to the initrd which are not urgently necessary to
# bring up the system, but help to debug problems.
# See /usr/lib/dracut/modules.d/95debug/module-setup.sh which additional tools
# are installed and add more if you need them. This specifically helps if you
# use:
# rd.break=[cmdline|pre-udev|pre-trigger|initqueue|pre-mount|
# mount|pre-pivot|cleanup]
# boot parameter or if you are forced to enter the dracut emergency shell.

# add_dracutmodules+=debug



commit yast2-cluster for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package yast2-cluster for openSUSE:Factory 
checked in at 2016-04-03 23:07:03

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


Package is "yast2-cluster"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-cluster/yast2-cluster.changes  
2015-12-03 13:32:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-cluster.new/yast2-cluster.changes 
2016-04-03 23:07:04.0 +0200
@@ -1,0 +2,7 @@
+Fri Mar 25 08:25:25 UTC 2016 - nw...@suse.com
+
+- bsc#971961, fix error when using ipv6.
+- Add totem.ip_version for ipv6 support.
+- Version 3.1.23
+
+---

Old:

  yast2-cluster-3.1.22.tar.bz2

New:

  yast2-cluster-3.1.23.tar.bz2



Other differences:
--
++ yast2-cluster.spec ++
--- /var/tmp/diff_new_pack.cDEGbl/_old  2016-04-03 23:07:05.0 +0200
+++ /var/tmp/diff_new_pack.cDEGbl/_new  2016-04-03 23:07:05.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-cluster
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 Name:   yast2-cluster
 %define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services
-Version:3.1.22
+Version:3.1.23
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-cluster-3.1.22.tar.bz2 -> yast2-cluster-3.1.23.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-cluster-3.1.22/package/yast2-cluster.changes 
new/yast2-cluster-3.1.23/package/yast2-cluster.changes
--- old/yast2-cluster-3.1.22/package/yast2-cluster.changes  2015-12-01 
10:27:02.0 +0100
+++ new/yast2-cluster-3.1.23/package/yast2-cluster.changes  2016-03-25 
09:29:20.0 +0100
@@ -1,4 +1,11 @@
 ---
+Fri Mar 25 08:25:25 UTC 2016 - nw...@suse.com
+
+- bsc#971961, fix error when using ipv6.
+- Add totem.ip_version for ipv6 support.
+- Version 3.1.23
+
+---
 Tue Dec  1 09:21:16 UTC 2015 - nw...@suse.com
 
 - BSC#957305. Change required package from hawk to hawk2.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-cluster-3.1.22/package/yast2-cluster.spec 
new/yast2-cluster-3.1.23/package/yast2-cluster.spec
--- old/yast2-cluster-3.1.22/package/yast2-cluster.spec 2015-12-01 
10:27:02.0 +0100
+++ new/yast2-cluster-3.1.23/package/yast2-cluster.spec 2016-03-25 
09:29:20.0 +0100
@@ -18,7 +18,7 @@
 
 Name:   yast2-cluster
 %define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services
-Version:3.1.22
+Version:3.1.23
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-cluster-3.1.22/src/include/cluster/dialogs.rb 
new/yast2-cluster-3.1.23/src/include/cluster/dialogs.rb
--- old/yast2-cluster-3.1.22/src/include/cluster/dialogs.rb 2015-12-01 
10:27:02.0 +0100
+++ new/yast2-cluster-3.1.23/src/include/cluster/dialogs.rb 2016-03-25 
09:29:20.0 +0100
@@ -592,9 +592,11 @@
   netaddr = Convert.to_string(UI.QueryWidget(Id(ret), :Value))
   ip6 = IP.Check6(netaddr)
   if ip6
+Cluster.ip_version = "ipv6"
 UI.ChangeWidget(Id(:autoid), :Value, false)
 UI.ChangeWidget(Id(:autoid), :Enabled, false)
   else
+Cluster.ip_version = "ipv4"
 UI.ChangeWidget(Id(:autoid), :Enabled, true)
   end
   next
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-cluster-3.1.22/src/modules/Cluster.rb 
new/yast2-cluster-3.1.23/src/modules/Cluster.rb
--- old/yast2-cluster-3.1.22/src/modules/Cluster.rb 2015-12-01 
10:27:02.0 +0100
+++ new/yast2-cluster-3.1.23/src/modules/Cluster.rb 2016-03-25 
09:29:20.0 +0100
@@ -67,6 +67,7 @@
   # Settings: Define all variables needed for configuration of cluster
   @secauth = false
   @cluster_name = ""
+  @ip_version = ""
   @expected_votes = ""
   @two_node = "0"
   @config_format = ""
@@ -162,6 +163,8 @@
 
   @cluster_name = SCR.Read(path(".openais.totem.cluster_name"))
 
+  @ip_version = SCR.Read(path(".openais.totem.ip_version"))
+
   

commit kdepim-runtime for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package kdepim-runtime for openSUSE:Factory 
checked in at 2016-04-03 23:06:34

Comparing /work/SRC/openSUSE:Factory/kdepim-runtime (Old)
 and  /work/SRC/openSUSE:Factory/.kdepim-runtime.new (New)


Package is "kdepim-runtime"

Changes:

--- /work/SRC/openSUSE:Factory/kdepim-runtime/kdepim-runtime.changes
2016-03-26 15:15:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.kdepim-runtime.new/kdepim-runtime.changes   
2016-04-03 23:06:35.0 +0200
@@ -1,0 +2,6 @@
+Wed Mar 30 08:42:37 UTC 2016 - tittiatc...@gmail.com
+
+- Add upstream patch bko354056.diff to resolve issues with 
+  Courier IMAP servers (bko#354056)
+
+---

New:

  bko354056.diff



Other differences:
--
++ kdepim-runtime.spec ++
--- /var/tmp/diff_new_pack.YMUpTQ/_old  2016-04-03 23:06:36.0 +0200
+++ /var/tmp/diff_new_pack.YMUpTQ/_new  2016-04-03 23:06:36.0 +0200
@@ -26,6 +26,8 @@
 Group:  System/GUI/KDE
 Url:http://www.kde.org
 Source: kdepim-runtime-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM bko354056.diff -- dvra...@kde.org  handle deprecated 
Delete rights when checking ACL before expunge
+Patch1: bko354056.diff
 BuildRequires:  akonadi-calendar-devel >= %{kf5_pimlibs_version}
 BuildRequires:  akonadi-contact-devel >= %{kf5_pimlibs_version}
 BuildRequires:  akonadi-devel >= %{kf5_pimlibs_version}
@@ -89,6 +91,7 @@
 
 %prep
 %setup -q -n kdepim-runtime-%{version}
+%patch1 -p1
 
 %build
 %cmake_kf5 -d build -- -DBUILD_TESTING=ON 
-DKF5_INCLUDE_INSTALL_DIR=%{_kf5_includedir}

++ bko354056.diff ++
From: Daniel Vrátil 
Date: Mon, 21 Mar 2016 22:27:09 +
Subject: IMAP: handle deprecated Delete right when checking ACL before expunge
X-Git-Tag: v16.03.80
X-Git-Url: 
http://quickgit.kde.org/?p=kdepim-runtime.git=commitdiff=6f2026f657ba7b68b4022ca969b3b6ff052609d1
---
IMAP: handle deprecated Delete right when checking ACL before expunge

Due to ambiguity in RFC 2086 the new RFC 4314 introduced two virtual
rights, one of them being "d" (delete). When "d" right is present,
presence of "e", "t" and "x" rights must be assumed by the clients.

Courier IMAP server uses this virtual rights but does not explicitly list
the "e" (expunge) right like most other servers, which caused RetrieveItemsTask
to not trigger EXPUNGE before syncing the mailbox.

BUG: 354056
FIXED-IN: 16.04.0
---


--- a/resources/imap/retrieveitemstask.cpp
+++ b/resources/imap/retrieveitemstask.cpp
@@ -161,8 +161,9 @@
 m_time.start();
 
 // Now is the right time to expunge the messages marked \\Deleted from 
this mailbox.
-// We assume that we can only expunge if we can delete items (correct 
would be to check for "e" ACL right).
-if (isAutomaticExpungeEnabled() && 
(!serverCapabilities().contains(QStringLiteral("ACL")) || 
(myRights(collection()) & KIMAP::Acl::Expunge))) {
+const bool hasACL = serverCapabilities().contains(QStringLiteral("ACL"));
+const KIMAP::Acl::Rights rights = myRights(collection());
+if (isAutomaticExpungeEnabled() && (!hasACL || (rights & 
KIMAP::Acl::Expunge) || (rights & KIMAP::Acl::Delete))) {
 if (m_session->selectedMailBox() != mailBox) {
 triggerPreExpungeSelect(mailBox);
 } else {




commit perl-Unicode-LineBreak for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package perl-Unicode-LineBreak for 
openSUSE:Factory checked in at 2016-04-03 23:06:13

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


Package is "perl-Unicode-LineBreak"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Unicode-LineBreak/perl-Unicode-LineBreak.changes
2015-12-06 07:27:47.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Unicode-LineBreak.new/perl-Unicode-LineBreak.changes
   2016-04-03 23:06:14.0 +0200
@@ -1,0 +2,6 @@
+Tue Mar 29 10:20:41 UTC 2016 - co...@suse.com
+
+- updated to 2016.003
+   see /usr/share/doc/packages/perl-Unicode-LineBreak/Changes.REL1
+
+---

Old:

  Unicode-LineBreak-2015.12.tar.gz

New:

  Unicode-LineBreak-2016.003.tar.gz



Other differences:
--
++ perl-Unicode-LineBreak.spec ++
--- /var/tmp/diff_new_pack.ChtxVA/_old  2016-04-03 23:06:15.0 +0200
+++ /var/tmp/diff_new_pack.ChtxVA/_new  2016-04-03 23:06:15.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Unicode-LineBreak
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   perl-Unicode-LineBreak
-Version:2015.12
+Version:2016.003
 Release:0
 %define cpan_name Unicode-LineBreak
 Summary:UAX #14 Unicode Line Breaking Algorithm

++ Unicode-LineBreak-2015.12.tar.gz -> Unicode-LineBreak-2016.003.tar.gz 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Unicode-LineBreak-2015.12/Changes 
new/Unicode-LineBreak-2016.003/Changes
--- old/Unicode-LineBreak-2015.12/Changes   2015-11-29 04:46:26.0 
+0100
+++ new/Unicode-LineBreak-2016.003/Changes  2016-03-28 18:44:23.0 
+0200
@@ -1,3 +1,11 @@
+2016.003  Tue Mar 29 2016
+# No new features, version number as canonical numstring.
+
+2016.002_27  Sat Feb 27 2016
+! Makefile.PL.sombok
+  - CPAN RT#112078: Compiling libsombok.a fails due to invalid path for object
+files.
+
 2015.12  Sun Nov 29 2015
 # No new features.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Unicode-LineBreak-2015.12/META.json 
new/Unicode-LineBreak-2016.003/META.json
--- old/Unicode-LineBreak-2015.12/META.json 2015-11-29 04:47:19.0 
+0100
+++ new/Unicode-LineBreak-2016.003/META.json2016-03-28 18:53:53.0 
+0200
@@ -48,5 +48,5 @@
  "url" : "https://github.com/hatukanezumi/Unicode-LineBreak/;
   }
},
-   "version" : "2015.12"
+   "version" : "2016.003"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Unicode-LineBreak-2015.12/META.yml 
new/Unicode-LineBreak-2016.003/META.yml
--- old/Unicode-LineBreak-2015.12/META.yml  2015-11-29 04:47:18.0 
+0100
+++ new/Unicode-LineBreak-2016.003/META.yml 2016-03-28 18:53:52.0 
+0200
@@ -25,4 +25,4 @@
 resources:
   license: http://dev.perl.org/licenses/
   repository: https://github.com/hatukanezumi/Unicode-LineBreak/
-version: '2015.12'
+version: '2016.003'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Unicode-LineBreak-2015.12/Makefile.PL.sombok 
new/Unicode-LineBreak-2016.003/Makefile.PL.sombok
--- old/Unicode-LineBreak-2015.12/Makefile.PL.sombok2013-10-29 
03:00:44.0 +0100
+++ new/Unicode-LineBreak-2016.003/Makefile.PL.sombok   2016-02-27 
06:38:18.0 +0100
@@ -63,6 +63,8 @@
{ $1 . $self->cd('lib', split /(?

commit gsoap for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package gsoap for openSUSE:Factory checked 
in at 2016-04-03 23:06:07

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


Package is "gsoap"

Changes:

--- /work/SRC/openSUSE:Factory/gsoap/gsoap.changes  2016-02-29 
09:13:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.gsoap.new/gsoap.changes 2016-04-03 
23:06:09.0 +0200
@@ -1,0 +2,18 @@
+Tue Mar 22 09:38:28 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 2.8.29
+* Added new soapcpp2 option `-r` to generate a soapReadme.md report
+  that summarizes the input .h file information, the serializable
+  C/C++ types, the services, and the generated code.
+* Added new wsdl2h option `-M` to suppress error "must understand
+  element with wsdl:required='true'".
+* Upgraded HTTP digest authentication "httpda" plugin to 2.0 to
+  support RFC7616 "HTTP Digest Access Authentication" with SHA2
+  (replaciing MD5) that is compatibale with RFC2617
+* Updated `wsdl2h` HTTPS-enabled build steps to use upgraded
+  "httpda" plugin.
+* Fixed wsdl2h skipping mime:multipartRelated/mime:part.
+- Drop gsoap-03-seqpoint.diff, gsoap-mindeflateratio.diff,
+  gsoap-no-tcpfastopen-fail.diff (applied upstream)
+
+---

Old:

  gsoap-03-seqpoint.diff
  gsoap-2.8.28.tar.xz
  gsoap-mindeflateratio.diff
  gsoap-no-tcpfastopen-fail.diff

New:

  gsoap-2.8.29.tar.xz



Other differences:
--
++ gsoap.spec ++
--- /var/tmp/diff_new_pack.NppbYd/_old  2016-04-03 23:06:10.0 +0200
+++ /var/tmp/diff_new_pack.NppbYd/_new  2016-04-03 23:06:10.0 +0200
@@ -17,24 +17,21 @@
 
 
 Name:   gsoap
-%define lname  libgsoap-2_8_28
-Version:2.8.28
+%define lname  libgsoap-2_8_29
+Version:2.8.29
 Release:0
 Summary:Toolkit for C/C++ server and client web service applications
 License:SUSE-GPL-2.0+-with-openssl-exception
 Group:  Development/Libraries/C and C++
-Url:http://gsoap2.sf.net/
+Url:http://www.genivia.com/dev.html
 
-#DL-URL:   http://downloads.sf.net/gsoap2/gsoap_2.8.22.zip
+#DL-URL:   http://downloads.sf.net/gsoap2/gsoap_2.8.29.zip
 Source: gsoap-%version.tar.xz
 Source2:sanitize_source.sh
-Patch13:gsoap-automake1_13.diff
-Patch0: gsoap-00-builtsource.diff
-Patch1: gsoap-01-sharedlibs.diff
-Patch2: gsoap-02-typepuns.diff
-Patch3: gsoap-03-seqpoint.diff
-Patch4: gsoap-mindeflateratio.diff
-Patch6: gsoap-no-tcpfastopen-fail.diff
+Patch6: gsoap-automake1_13.diff
+Patch7: gsoap-00-builtsource.diff
+Patch8: gsoap-01-sharedlibs.diff
+Patch9: gsoap-02-typepuns.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf
 BuildRequires:  automake
@@ -64,9 +61,12 @@
 %package devel
 Summary:Development files for the gSOAP toolkit
 Group:  Development/Libraries/C and C++
+Obsoletes:  libgsoap-devel < %version-%release
+Provides:   libgsoap-devel = %version-%release
 
 %description devel
-This package contains the runtime development programs for gSOAP.
+This package contains the runtime development programs, include
+headers and development library symlinks for libgsoap.
 
 %package -n %lname
 Summary:Runtime libraries for gSOAP
@@ -82,19 +82,10 @@
 also supports WS-Addressing and WS-Security, with several other WS-*
 available or under development.
 
-%package -n libgsoap-devel
-Summary:Development files for libgsoap
-Group:  Development/Libraries/C and C++
-Requires:   %lname = %version
-
-%description -n libgsoap-devel
-This package contains the include headers and development library
-symlinks for libgsoap.
-
 %prep
 %setup -q
 cmp gsoap/stdsoap2.cpp gsoap/stdsoap2.c
-%patch -P 13 -P 0 -P 1 -P 2 -P 3 -P 4 -P 6 -p1
+%patch -P 6 -P 7 -P 8 -P 9 -p1
 ln -fs stdsoap2.cpp gsoap/stdsoap2.c
 
 %build
@@ -126,22 +117,20 @@
 
 %files devel
 %defattr(-,root,root)
-%_bindir/*
+%_bindir/*soap*
+%_bindir/*wsdl*
 %_datadir/%name/
-
-%files -n %lname
-%defattr(-,root,root)
-%_libdir/libgsoap*-%version.so
-
-%files -n libgsoap-devel
-%defattr(-,root,root)
-%_includedir/*
+%_includedir/*soap*
 %_libdir/libgsoap.so
 %_libdir/libgsoapck.so
 %_libdir/libgsoapssl.so
 %_libdir/libgsoap++.so
 %_libdir/libgsoapck++.so
 %_libdir/libgsoapssl++.so
-%_libdir/pkgconfig/*
+%_libdir/pkgconfig/*gsoap*.pc
+
+%files -n %lname
+%defattr(-,root,root)
+%_libdir/libgsoap*-%version.so
 
 %changelog

++ gsoap-00-builtsource.diff ++
--- /var/tmp/diff_new_pack.NppbYd/_old  2016-04-03 23:06:10.0 +0200
+++ 

commit pciutils-ids for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package pciutils-ids for openSUSE:Factory 
checked in at 2016-04-03 23:06:23

Comparing /work/SRC/openSUSE:Factory/pciutils-ids (Old)
 and  /work/SRC/openSUSE:Factory/.pciutils-ids.new (New)


Package is "pciutils-ids"

Changes:

--- /work/SRC/openSUSE:Factory/pciutils-ids/pciutils-ids.changes
2015-10-20 16:21:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.pciutils-ids.new/pciutils-ids.changes   
2016-04-03 23:06:24.0 +0200
@@ -1,0 +2,5 @@
+Thu Mar 24 09:58:47 UTC 2016 - mplus...@suse.com
+
+- Update to 2016.02.27
+
+---



Other differences:
--
++ pciutils-ids.spec ++
--- /var/tmp/diff_new_pack.YubzBX/_old  2016-04-03 23:06:25.0 +0200
+++ /var/tmp/diff_new_pack.YubzBX/_new  2016-04-03 23:06:25.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pciutils-ids
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   pciutils-ids
-Version:2015.09.01
+Version:2016.02.27
 Release:0
 Summary:PCI-utilities pci.ids database
 License:GPL-2.0+

++ pci.ids.bz2 ++
 1851 lines (skipped)
 between pci.ids.bz2
 and /work/SRC/openSUSE:Factory/.pciutils-ids.new/pci.ids.bz2




commit libosinfo for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package libosinfo for openSUSE:Factory 
checked in at 2016-04-03 23:05:58

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


Package is "libosinfo"

Changes:

--- /work/SRC/openSUSE:Factory/libosinfo/libosinfo.changes  2016-02-23 
16:53:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.libosinfo.new/libosinfo.changes 2016-04-03 
23:06:00.0 +0200
@@ -1,0 +2,35 @@
+Thu Mar 24 10:40:07 MDT 2016 - carn...@suse.com
+
+- Replace patches with upstream version
+  0ae4f0db-add-missing-sles-distros.patch
+  92c55cab-add-missing-opensuse-distros.patch
+- Dropped
+  add-missing-sles-distros.patch
+  add-missing-opensuse-distros.patch
+
+---
+Wed Mar 23 09:29:57 MDT 2016 - carn...@suse.com
+
+- Replace patches with newer versions
+  add-missing-opensuse-distros.patch
+  add-missing-sles-distros.patch
+- Dropped patches:
+  add-opensuse-leap-42.1-support.patch
+  add-tumbleweed-support.patch with
+  add-sle12sp1-support.patch with 
+
+---
+Wed Mar 16 11:45:34 MDT 2016 - carn...@suse.com
+
+- Fix version string for sled12sp2
+  add-sle12sp2-support.patch
+
+---
+Tue Mar 15 16:07:47 MDT 2016 - carn...@suse.com
+
+- bsc#971077 - virt-manager error: 'maximum recursion depth
+  exceeded while calling a Python object' when installing TW as a
+  KVM guest
+  add-tumbleweed-support.patch
+
+---

Old:

  add-opensuse-leap-42.1-support.patch
  add-sle12sp1-support.patch
  add-tumbleweed-support.patch

New:

  0ae4f0db-add-missing-sles-distros.patch
  92c55cab-add-missing-opensuse-distros.patch



Other differences:
--
++ libosinfo.spec ++
--- /var/tmp/diff_new_pack.YenaN2/_old  2016-04-03 23:06:01.0 +0200
+++ /var/tmp/diff_new_pack.YenaN2/_new  2016-04-03 23:06:01.0 +0200
@@ -28,11 +28,10 @@
 Url:http://libosinfo.org/
 Source0:
https://fedorahosted.org/releases/l/i/libosinfo/%{name}-%{version}.tar.gz
 Source1:ids.tar.bz2
-Patch10:add-sle12sp1-support.patch
-Patch11:add-opensuse-leap-42.1-support.patch
-Patch12:Fix_derives-from_and_add_tablet_item.patch
-Patch13:add-sle12sp2-support.patch
-Patch14:add-tumbleweed-support.patch
+Patch1: 0ae4f0db-add-missing-sles-distros.patch
+Patch2: 92c55cab-add-missing-opensuse-distros.patch
+Patch10:Fix_derives-from_and_add_tablet_item.patch
+Patch11:add-sle12sp2-support.patch
 BuildRequires:  intltool
 BuildRequires:  libtool
 BuildRequires:  vala
@@ -97,11 +96,10 @@
 %endif
 %prep
 %setup -q -a 1
+%patch1 -p1
+%patch2 -p1
 %patch10 -p1
 %patch11 -p1
-%patch12 -p1
-%patch13 -p1
-%patch14 -p1
 
 %build
 %configure \

++ 0ae4f0db-add-missing-sles-distros.patch ++
Subject: data: add missing SLES/SLED distro information
From: Charles Arnold carn...@suse.com Tue Mar 22 15:57:17 2016 -0600
Date: Thu Mar 24 11:41:25 2016 +0100:
Git: 0ae4f0dbe8ce237c1dc8725acd1a0e30593622d4

Add missing SLES/SLED distro information.

Added os data and isodata for the following distros:
SUSE Linux Enterprise Server 12 SP1
SUSE Linux Enterprise Desktop 12 SP1

Added isodata for the following distros:
SUSE Linux Enterprise Server 11 SP4
SUSE Linux Enterprise Desktop 11 SP4

diff --git a/data/os/suse.com/sled-12.1.xml.in 
b/data/os/suse.com/sled-12.1.xml.in
new file mode 100644
index 000..1d0167f
--- /dev/null
+++ b/data/os/suse.com/sled-12.1.xml.in
@@ -0,0 +1,23 @@
+
+  http://suse.com/sled/12.1;>
+sled12sp1
+<_name>SUSE Linux Enterprise Desktop 12 SP1
+12.1
+<_vendor>SUSE
+linux
+sled
+http://suse.com/sled/12"/>
+http://suse.com/sled/12"/>
+
+2015-12-18
+
+
+  
+LINUX
+SLE-12-SP1-Desktop-DVD-x86_64*
+  
+  boot/x86_64/loader/linux
+  boot/x86_64/loader/initrd
+
+  
+
diff --git a/data/os/suse.com/sles-12.1.xml.in 
b/data/os/suse.com/sles-12.1.xml.in
new file mode 100644
index 000..5956ce1
--- /dev/null
+++ b/data/os/suse.com/sles-12.1.xml.in
@@ -0,0 +1,23 @@
+
+  http://suse.com/sles/12.1;>
+sles12sp1
+<_name>SUSE Linux Enterprise Server 12 SP1
+12.1
+<_vendor>SUSE
+linux
+sles
+http://suse.com/sles/12"/>
+http://suse.com/sles/12"/>
+
+2015-12-18
+
+
+  
+LINUX
+SLE-12-SP1-Server-DVD-x86_64*
+  
+  boot/x86_64/loader/linux
+  boot/x86_64/loader/initrd
+
+  
+
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 

commit ruby2.2 for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package ruby2.2 for openSUSE:Factory checked 
in at 2016-04-03 23:06:28

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


Package is "ruby2.2"

Changes:

--- /work/SRC/openSUSE:Factory/ruby2.2/ruby2.2.changes  2016-01-13 
22:44:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.ruby2.2.new/ruby2.2.changes 2016-04-03 
23:06:30.0 +0200
@@ -1,0 +2,8 @@
+Mon Mar 14 23:14:12 UTC 2016 - dval...@suse.com
+
+- 0001-GC-Use-__builtin_ppc_get_timebase-for-POWER-arch.patch
+  Use __builtin_ppc_get_timebase on POWER architecture to gain
+  a little bit of performance improvement.
+  https://github.com/ruby/ruby/pull/1291
+
+---

New:

  0001-GC-Use-__builtin_ppc_get_timebase-for-POWER-arch.patch



Other differences:
--
++ ruby2.2.spec ++
--- /var/tmp/diff_new_pack.rAYKgX/_old  2016-04-03 23:06:31.0 +0200
+++ /var/tmp/diff_new_pack.rAYKgX/_new  2016-04-03 23:06:31.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ruby2.2
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -120,6 +120,7 @@
 
 Patch0: ruby-1.9.2p290_tcl_no_stupid_rpaths.patch
 Patch1: make-gem-build-reproducible.patch
+Patch2: 0001-GC-Use-__builtin_ppc_get_timebase-for-POWER-arch.patch 
 #
 Summary:An Interpreted Object-Oriented Scripting Language
 License:BSD-2-Clause or Ruby
@@ -298,6 +299,7 @@
 %setup -q -n ruby-%{pkg_version}
 %patch0
 %patch1 -p1
+%patch2 -p1
 find sample -type f -print0 | xargs -r0 chmod a-x
 grep -Erl '^#! */' benchmark bootstraptest ext lib sample test \
   | xargs -r perl -p -i -e 
's|^#!\s*\S+(\s+.*)?$|#!/usr/bin/ruby%{rb_binary_suffix} $1|'

++ 0001-GC-Use-__builtin_ppc_get_timebase-for-POWER-arch.patch ++
>From 391bc3ee3f0e27bf586dfeb5f30d2379676d5558 Mon Sep 17 00:00:00 2001
From: Dinar Valeev 
Date: Tue, 15 Mar 2016 00:03:48 +0100
Subject: [PATCH] GC: Use __builtin_ppc_get_timebase for POWER arch

This gives a little performance improvement

user system  totalreal
Before: 20.87   0.00  20.87 ( 20.893959)
After:  20.72   0.00  20.72 ( 20.733970)

Signed-off-by: Dinar Valeev 
---
 gc.c | 12 
 1 file changed, 12 insertions(+)

diff --git a/gc.c b/gc.c
index 221752a..31a0530 100644
--- a/gc.c
+++ b/gc.c
@@ -933,6 +933,18 @@ tick(void)
 return ((unsigned long long)lo)|( ((unsigned long long)hi)<<32);
 }
 
+#elif defined(__powerpc64__) && \
+   ( __GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 8))
+typedef unsigned long long tick_t;
+#define PRItick "llu"
+
+static __inline__ tick_t
+tick(void)
+{
+unsigned long long val = __builtin_ppc_get_timebase();
+return val;
+}
+
 #elif defined(_WIN32) && defined(_MSC_VER)
 #include 
 typedef unsigned __int64 tick_t;
-- 
2.1.4




commit python3-Cython for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package python3-Cython for openSUSE:Factory 
checked in at 2016-04-03 23:05:40

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


Package is "python3-Cython"

Changes:

--- /work/SRC/openSUSE:Factory/python3-Cython/python3-Cython.changes
2016-02-23 16:54:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-Cython.new/python3-Cython.changes   
2016-04-03 23:05:41.0 +0200
@@ -1,0 +2,23 @@
+Sun Mar 27 05:54:43 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * removed python3-Cython-prevent_swallowing_StopIteration_return.patch
+included upstream
+
+- update to version 0.23.5:
+  * Compile errors and warnings in integer type conversion code. This
+fixes ticket 877. Patches by Christian Neukirchen, Nikolaus Rath,
+Ian Henriksen.
+  * Reference leak when "*args" argument was reassigned in closures.
+  * Truth-testing Unicode strings could waste time and memory in
+Py3.3+.
+  * Return values of async functions could be ignored and replaced by
+None.
+  * Compiler crash in CPython 3.6.
+  * Fix prange() to behave identically to range(). The end condition
+was miscalculated when the range was not exactly divisible by the
+step.
+  * Optimised all(genexpr)/any(genexpr) calls could warn about unused
+code. This fixes ticket 876.
+
+---

Old:

  Cython-0.23.4.tar.gz
  python3-Cython-prevent_swallowing_StopIteration_return.patch

New:

  Cython-0.23.5.tar.gz



Other differences:
--
++ python3-Cython.spec ++
--- /var/tmp/diff_new_pack.6nT0ur/_old  2016-04-03 23:05:42.0 +0200
+++ /var/tmp/diff_new_pack.6nT0ur/_new  2016-04-03 23:05:42.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-Cython
-Version:0.23.4
+Version:0.23.5
 Release:0
 Url:http://www.cython.org
 Summary:The Cython compiler for writing C extensions for the Python 
language
@@ -26,8 +26,6 @@
 Source: 
http://pypi.python.org/packages/source/C/Cython/Cython-%{version}.tar.gz
 Source1:python3-Cython-rpmlintrc
 Patch1: python3-Cython-c++11.patch
-# PATCH-FIX-UPSTREAM 
python3-Cython-prevent_swallowing_StopIteration_return.patch - fix await 
compatibility for python 3.5.1
-Patch2: python3-Cython-prevent_swallowing_StopIteration_return.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
@@ -56,7 +54,6 @@
 %prep
 %setup -q -n Cython-%{version}
 %patch1
-%patch2 -p1
 sed -i "s|^#!.*||" Cython/Debugger/{libpython,Cygdb}.py cython.py # Fix 
non-executable scripts
 # Fix EOL encoding
 sed -i "s|\r||" Demos/callback/{README.txt,cheesefinder.h} 
Demos/embed/Makefile.{unix,msc.static} Doc/primes.c # Fix EOL encoding

++ Cython-0.23.4.tar.gz -> Cython-0.23.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Cython-0.23.4/.gitrev new/Cython-0.23.5/.gitrev
--- old/Cython-0.23.4/.gitrev   2015-10-10 14:31:40.0 +0200
+++ new/Cython-0.23.5/.gitrev   2016-03-25 05:28:54.0 +0100
@@ -1 +1 @@
-dc00a176d896f0df892aad8b305d946d3ed632a0
+55b55a393c6c7defb2b6e7544065eb0531f974cc
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Cython-0.23.4/CHANGES.rst 
new/Cython-0.23.5/CHANGES.rst
--- old/Cython-0.23.4/CHANGES.rst   2015-10-10 14:31:38.0 +0200
+++ new/Cython-0.23.5/CHANGES.rst   2016-03-25 05:28:52.0 +0100
@@ -2,6 +2,30 @@
 Cython Changelog
 
 
+0.23.5 (2016-03-26)
+===
+
+Bugs fixed
+--
+
+* Compile errors and warnings in integer type conversion code.  This fixes
+  ticket 877.  Patches by Christian Neukirchen, Nikolaus Rath, Ian Henriksen.
+
+* Reference leak when "*args" argument was reassigned in closures.
+
+* Truth-testing Unicode strings could waste time and memory in Py3.3+.
+
+* Return values of async functions could be ignored and replaced by ``None``.
+
+* Compiler crash in CPython 3.6.
+
+* Fix prange() to behave identically to range().  The end condition was
+  miscalculated when the range was not exactly divisible by the step.
+
+* Optimised ``all(genexpr)``/``any(genexpr)`` calls could warn about unused
+  code.  This fixes ticket 876.
+
+
 0.23.4 (2015-10-10)
 ===
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Cython-0.23.4/Cython/Compiler/ExprNodes.py 
new/Cython-0.23.5/Cython/Compiler/ExprNodes.py
--- old/Cython-0.23.4/Cython/Compiler/ExprNodes.py  2015-10-10 
14:31:38.0 

commit yast2-sound for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package yast2-sound for openSUSE:Factory 
checked in at 2016-04-03 23:05:47

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


Package is "yast2-sound"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-sound/yast2-sound.changes  2015-10-20 
16:20:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-sound.new/yast2-sound.changes 
2016-04-03 23:05:49.0 +0200
@@ -1,0 +2,8 @@
+Wed Mar 23 16:47:36 UTC 2016 - c...@suse.com
+
+- Fixed dependency on yast2 version that contains .proc.modules
+  agent (bsc#972310)
+- Fixed regexp to respect changed output of modprobe (bsc#972315)
+- 3.1.9
+
+---

Old:

  yast2-sound-3.1.8.tar.bz2

New:

  yast2-sound-3.1.9.tar.bz2



Other differences:
--
++ yast2-sound.spec ++
--- /var/tmp/diff_new_pack.Xl5iXk/_old  2016-04-03 23:05:50.0 +0200
+++ /var/tmp/diff_new_pack.Xl5iXk/_new  2016-04-03 23:05:50.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package yast2-sound
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-sound
-Version:3.1.8
+Version:3.1.9
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -44,7 +44,8 @@
 
 # Fixed handling of Kernel modules loaded on boot
 Requires:   alsa
-Requires:   yast2 >= 3.1.3
+# For proc_modules.scr
+Requires:   yast2 >= 3.1.180
 
 Provides:   yast2-agent-audio
 Provides:   yast2-agent-audio-devel

++ yast2-sound-3.1.8.tar.bz2 -> yast2-sound-3.1.9.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-sound-3.1.8/package/yast2-sound.changes 
new/yast2-sound-3.1.9/package/yast2-sound.changes
--- old/yast2-sound-3.1.8/package/yast2-sound.changes   2015-10-07 
15:54:11.0 +0200
+++ new/yast2-sound-3.1.9/package/yast2-sound.changes   2016-03-29 
10:18:20.0 +0200
@@ -1,4 +1,12 @@
 ---
+Wed Mar 23 16:47:36 UTC 2016 - c...@suse.com
+
+- Fixed dependency on yast2 version that contains .proc.modules
+  agent (bsc#972310)
+- Fixed regexp to respect changed output of modprobe (bsc#972315)
+- 3.1.9
+
+---
 Wed Oct  7 09:41:12 UTC 2015 - lsle...@suse.cz
 
 - do not check for %suse_version == 1315, the existing check for
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-sound-3.1.8/package/yast2-sound.spec 
new/yast2-sound-3.1.9/package/yast2-sound.spec
--- old/yast2-sound-3.1.8/package/yast2-sound.spec  2015-10-07 
15:54:11.0 +0200
+++ new/yast2-sound-3.1.9/package/yast2-sound.spec  2016-03-29 
10:18:20.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-sound
-Version:3.1.8
+Version:3.1.9
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -44,7 +44,8 @@
 
 # Fixed handling of Kernel modules loaded on boot
 Requires:   alsa
-Requires:   yast2 >= 3.1.3
+# For proc_modules.scr
+Requires:   yast2 >= 3.1.180
 
 Provides:   yast2-agent-audio
 Provides:   yast2-agent-audio-devel
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-sound-3.1.8/src/bin/alsadrivers 
new/yast2-sound-3.1.9/src/bin/alsadrivers
--- old/yast2-sound-3.1.8/src/bin/alsadrivers   2015-10-07 15:54:11.0 
+0200
+++ new/yast2-sound-3.1.9/src/bin/alsadrivers   2016-03-29 10:18:20.0 
+0200
@@ -54,7 +54,7 @@
 
 get_drivers() {
   /sbin/modprobe -c | \
-grep -E "^[[:space:]]*alias[[:space:]]+snd-card-[[:digit:]]" | sort -u | \
+grep -E "^[[:space:]]*alias[[:space:]]+snd[-_]card[-_][[:digit:]]" | sort 
-u | \
 while read a b card; do
echo $card
 done




commit gnome-session for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package gnome-session for openSUSE:Factory 
checked in at 2016-04-03 23:05:20

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


Package is "gnome-session"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-session/gnome-session.changes  
2016-03-29 14:46:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-session.new/gnome-session.changes 
2016-04-03 23:05:21.0 +0200
@@ -1,0 +2,13 @@
+Thu Mar 31 13:31:10 UTC 2016 - fcro...@suse.com
+
+- Add main-fix-starting-gnome-session-via-startx.patch: fix
+  starting GNOME when using startx or old display managers
+  (bgo#764379).
+
+---
+Sat Mar 26 23:31:16 UTC 2016 - zai...@opensuse.org
+
+- Add missing xorg-x11-server-wayland Requires for
+  subpackage gnome-session-wayland.
+
+---

New:

  main-fix-starting-gnome-session-via-startx.patch



Other differences:
--
++ gnome-session.spec ++
--- /var/tmp/diff_new_pack.Tgq6Q8/_old  2016-04-03 23:05:22.0 +0200
+++ /var/tmp/diff_new_pack.Tgq6Q8/_new  2016-04-03 23:05:22.0 +0200
@@ -28,6 +28,8 @@
 Source2:gnome.desktop
 # PATCH-FIX-UPSTREAM gnome-session-ice-auth-for-suid.patch h...@novell.com -- 
Carries ICE auth over to other UIDs in this session using an env var.
 Patch0: gnome-session-ice-auth-for-suid.patch
+# PATCH-FIX-UPSTREAM main-fix-starting-gnome-session-via-startx.patch 
bgo#764379 fcro...@suse.com -- Fix starting gnome-session with old DM or startx
+Patch1: main-fix-starting-gnome-session-via-startx.patch
 BuildRequires:  fdupes
 BuildRequires:  gnome-common
 BuildRequires:  hicolor-icon-theme
@@ -88,6 +90,7 @@
 Group:  System/GUI/GNOME
 Requires:   %{name} = %{version}
 Requires:   gnome-settings-daemon
+Requires:   xorg-x11-server-wayland
 
 %description wayland
 This package contains the definition of the default GNOME session on Wayland.
@@ -112,6 +115,7 @@
 # Disabled, as it fails
 #translation-update-upstream
 %patch0 -p1
+%patch1 -p1
 
 %build
 NOCONFIGURE=1 gnome-autogen.sh

++ main-fix-starting-gnome-session-via-startx.patch ++
>From 2d2dcf3354701aa663d08e8337c608e245a9f2c1 Mon Sep 17 00:00:00 2001
From: Andreas Henriksson 
Date: Wed, 30 Mar 2016 18:49:15 +0200
Subject: [PATCH] main: fix starting gnome session via startx

The changes related to gsm_util_setenv during 3.19.x seems to have
broken starting a gnome desktop the old fashioned way, eg. via startx.

The gnome.session required components has OnlyShowIn=GNOME; which
disqualifies them from being started unless XDG_CURRENT_DESKTOP is also
set to GNOME (by the gio utility function used to look up info).

Currently gnome-session already carries code to catch the case of
XDG_CURRENT_DESKTOP being unset and set it to GNOME as a fallback.
Unfortunately the changes to gsm_util_setenv seems to have made it only
set the values in the (dbus activated) child environment, rather than
the current environment which g_desktop_app_info_get_show_in is looking
at.

Make the fallback code set XDG_CURRENT_DESKTOP in both current
and child environment fixes it.
Also move the entire hunk of code before initializing gio to
prevent potential thread issues, now that is uses g_setenv.

https://bugzilla.gnome.org/show_bug.cgi?id=764379
---
 gnome-session/main.c | 16 +---
 1 file changed, 9 insertions(+), 7 deletions(-)

diff --git a/gnome-session/main.c b/gnome-session/main.c
index 14b201b..9f3ca0f 100644
--- a/gnome-session/main.c
+++ b/gnome-session/main.c
@@ -292,6 +292,15 @@ main (int argc, char **argv)
 gsm_util_init_error (TRUE, "%s", error->message);
 }
 
+/* From 3.14 GDM sets XDG_CURRENT_DESKTOP. For compatibility with
+ * older versions of GDM,  other display managers, and startx,
+ * set a fallback value if we don't find it set.
+ */
+if (g_getenv ("XDG_CURRENT_DESKTOP") == NULL) {
+g_setenv("XDG_CURRENT_DESKTOP", "GNOME", TRUE);
+gsm_util_setenv ("XDG_CURRENT_DESKTOP", "GNOME");
+}
+
 /* Make sure we initialize gio in a way that does not autostart any 
daemon */
 initialize_gio ();
 
@@ -375,13 +384,6 @@ main (int argc, char **argv)
 exit (1);
 }
 
-/* From 3.14 GDM sets XDG_CURRENT_DESKTOP. For compatibility with
- * older versions of GDM,  other display managers, and startx,
- * set a fallback value if we don't find it set.
- */
-if (g_getenv ("XDG_CURRENT_DESKTOP") == NULL)
-

commit bluez for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package bluez for openSUSE:Factory checked 
in at 2016-04-03 23:05:03

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


Package is "bluez"

Changes:

--- /work/SRC/openSUSE:Factory/bluez/bluez.changes  2016-01-05 
09:40:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.bluez.new/bluez.changes 2016-04-03 
23:05:04.0 +0200
@@ -1,0 +2,27 @@
+Fri Mar 18 14:22:39 UTC 2016 - seife+...@b1-systems.com
+
+- update to version 5.38:
+  This release has lots of updates and fixes to the GATT D-Bus API.
+  It should be working considerably better now. A key change to the
+  GATT D-Bus API is that it is now fully conforming to the word of
+  the D-Bus Object Manager specification. Instead of registering
+  each service individually with an Object Manager interface per
+  service path, all application services are now grouped together
+  through a single RegisterApplication call. The details can be
+  found in gatt-api.txt. Besides the D-Bus API change there are
+  also numerous fixes to GATT functionality in general.
+  Other areas that received fixes in this release are OBEX, AVRCP
+  and 128-bit UUID handling. Feature-wise there isn’t anything
+  groundbreaking, but a notable update is support for the Start
+  Limited Discovery command in the btmgmt tool (this feature
+  debuted with the 4.5 kernel release).
+  * Fix issue with stack overflow and UUID handling.
+  * Fix issue with ObjectManager interface and GATT.
+  * Fix issue with GATT database and error handling.
+  * Fix issue with GATT client notifications.
+  * Fix issue with GATT object ordering.
+  * Fix issue with GATT default MTU exchange.
+  * Fix issue with device attribute clearing.
+  * Fix issue with AVRCP capabilities request.
+
+---

Old:

  bluez-5.37.tar.xz

New:

  bluez-5.38.tar.xz



Other differences:
--
++ bluez.spec ++
--- /var/tmp/diff_new_pack.udGHOA/_old  2016-04-03 23:05:05.0 +0200
+++ /var/tmp/diff_new_pack.udGHOA/_new  2016-04-03 23:05:05.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package bluez
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2010-2014 B1 Systems GmbH, Vohburg, Germany
 #
 # All modifications and additions to the file contributed by third parties
@@ -24,7 +24,7 @@
 BuildRequires:  systemd-devel
 BuildRequires:  pkgconfig(dbus-1) >= 1.6
 %{?systemd_requires}
-Version:5.37
+Version:5.38
 Release:0
 Summary:Bluetooth Stack for Linux
 License:GPL-2.0+

++ bluez-5.37.tar.xz -> bluez-5.38.tar.xz ++
 4438 lines of diff (skipped)




commit rpcbind for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package rpcbind for openSUSE:Factory checked 
in at 2016-04-03 23:05:08

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


Package is "rpcbind"

Changes:

--- /work/SRC/openSUSE:Factory/rpcbind/rpcbind.changes  2016-02-25 
21:43:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpcbind.new/rpcbind.changes 2016-04-03 
23:05:09.0 +0200
@@ -1,0 +2,5 @@
+Mon Mar 14 14:48:36 CET 2016 - ku...@suse.de
+
+- pmap_set: use tirpc header files and link against libtirpc
+
+---



Other differences:
--
++ rpcbind.spec ++
--- /var/tmp/diff_new_pack.cQtLtf/_old  2016-04-03 23:05:10.0 +0200
+++ /var/tmp/diff_new_pack.cQtLtf/_new  2016-04-03 23:05:10.0 +0200
@@ -90,7 +90,7 @@
--with-rpcuser=rpc
 
 %{__make} %{?jobs:-j%jobs}
-%{__cc} -pie -fpie -fwhole-program -Wl,-z,relro,-z,now %{optflags} pmap_set.c 
-o pmap_set
+%{__cc} -I/usr/include/tirpc -pie -fpie -fwhole-program -Wl,-z,relro,-z,now 
%{optflags} pmap_set.c -o pmap_set -ltirpc
 
 %install
 make install DESTDIR=$RPM_BUILD_ROOT





commit ghostscript for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package ghostscript for openSUSE:Factory 
checked in at 2016-04-03 23:05:13

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


Package is "ghostscript"

Changes:

--- /work/SRC/openSUSE:Factory/ghostscript/ghostscript-mini.changes 
2015-12-17 15:52:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghostscript.new/ghostscript-mini.changes
2016-04-03 23:05:16.0 +0200
@@ -1,0 +2,60 @@
+Wed Mar 23 15:43:27 CET 2016 - jsm...@suse.de
+
+- Version upgrade to 9.19. Mainly a maintenance release.
+  For details see the News.htm and History9.htm files.
+  Highlights in this release include:
+  * Metadata pdfmark is now implemented. This allows the user
+to specify an XMP stream which will be written to the
+Catalog of the PDF file. A new pdfmark 'Ext_Metadata' has
+been defined. This takes a string parameter which contains
+XML to be add to the XMP normally created by pdfwrite.
+See "pdfwrite pdfmark extensions" for more information.
+  * An experimental, rudimentary raster trapping implementation
+has been added to the Ghostscript graphics library.
+See "Trapping" for details.
+  Incompatible changes:
+  * (Minor) API change: copy_alpha now supports 8 bit depth
+(as well as the previous 2 and 4).
+  * The gs man pages are woefully out of date and basically
+unmaintained. With the release following 9.19, we intend
+to replace their contents with a very limited summary
+of (unlikely to ever change aspects of) calling
+Ghostscript, and a pointer to the (maintained) HTML
+documentation. That is, unless a volunteer is willing
+to update, and commit to maintaining the man pages.
+  * ijs-config is no longer provided
+  Planned incompatible changes:
+  * We plan (ideally for the release following 9.19) to somewhat
+tidy up the device API. We plan to remove deprecated device
+procs (methods/function pointers). We also intend to merge
+the imager state and graphics state (thus eliminating the
+imager state), and change the device API so every device proc
+takes a graphics state parameter (rather than the current
+scheme where only a very few procs take an imager state
+parameter). This should serve as notice to anyone maintaining
+a Ghostscript device outside the canonical source tree that
+you may (probably will) need to update your device(s) when
+these changes happen. Devices using only the non-deprecated
+procs should be trivial to update.
+- fix_make_install.patch fixes and
+  add_brackets_for_old_autoconf.patch are no longer needed
+  because both issues are fixed in the upstream sources.
+
+---
+Fri Mar 18 10:13:23 CET 2016 - jsm...@suse.de
+
+- Version upgrade to 9.19rc1 (first release candidate for 9.19).
+  For details see the News.htm and History9.htm files.
+  Regarding installing packages (in particular release candidates)
+  from the openSUSE build service development project "Printing"
+  see https://build.opensuse.org/project/show/Printing
+- ijs-config is no longer provided
+- fix_make_install.patch fixes an install error and
+  add_brackets_for_old_autoconf.patch fixes an autoconf error
+  see http://bugs.ghostscript.com/show_bug.cgi?id=696665
+- fix_ijs_and_x11_for_FirstPage_and_LastPage.patch is no longer
+  needed because it is fixed in the upstream sources.
+- install_gserrors.h.patch is no longer needed because it is fixed
+  in the upstream sources.
+
+---
ghostscript.changes: same change

Old:

  fix_ijs_and_x11_for_FirstPage_and_LastPage.patch
  ghostscript-9.18.tar.gz
  install_gserrors.h.patch

New:

  ghostscript-9.19.tar.gz



Other differences:
--
++ ghostscript-mini.spec ++
--- /var/tmp/diff_new_pack.w3JI65/_old  2016-04-03 23:05:17.0 +0200
+++ /var/tmp/diff_new_pack.w3JI65/_new  2016-04-03 23:05:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghostscript-mini
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -36,20 +36,20 @@
 # But only with the alphabetic prefix "9.pre15rc1" would be older than the 
previous version number "9.14"
 # because rpmvercmp would treat 9.pre15rc1 as 9.pre.15.rc1 and letters are 
older than numbers
 # so that we keep additionally the previous version number to upgrade from the 
previous version:
-#Version:  

commit btrfsprogs for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package btrfsprogs for openSUSE:Factory 
checked in at 2016-04-03 23:05:27

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


Package is "btrfsprogs"

Changes:

--- /work/SRC/openSUSE:Factory/btrfsprogs/btrfsprogs.changes2016-03-11 
09:37:47.0 +0100
+++ /work/SRC/openSUSE:Factory/.btrfsprogs.new/btrfsprogs.changes   
2016-04-03 23:05:29.0 +0200
@@ -1,0 +2,39 @@
+Thu Mar 31 00:00:00 CEST 2016 - dste...@suse.cz
+
+- update to 4.5.1
+  * mkfs: allow DUP on multidev fs
+  * fix static build
+- update to 4.5
+  * new/moved commands
+* btrfs-show-super -> btrfs inspect-internal dump-super
+* btrfs-debug-tree -> btrfs inspect-internal dump-tree
+  * new commands
+* btrfs fi du - calculate disk usage, including shared extents
+  * enhancements
+*  device delete - delete by id (needs kernel support, not merged to 4.6)
+*  check - new option to specify chunk root
+*  debug-tree/dump-tree - option -t understands human readable name of the
+   tree (along numerical ids)
+*  btrfs-debugfs - can dump block group information
+  * bugfixes
+* all commands should accept the option separator "--"
+* several fixes in device scan
+* restore works on filesystems with sectorsize > 4k
+* debug-tree/dump-tree - print compression type as string
+* subvol sync: fix crash, memory corruption
+* argument parsing fixes: subvol get-default, qgroup create/destroy/assign,
+  inspect subvolid-resolve
+* check for block device or regular file in several commands
+  * other
+* documentation updates
+* manual pages for the moved tools now point to btrfs-filesystem
+* testsuite updates
+- Removed patch (upstream):
+  0001-btrfs-progs-libbtrfs-remove-max-min-macros-from-API.patch
+
+---
+Fri Mar 18 20:29:22 UTC 2016 - mgo...@suse.com
+
+- Recommend btrfsmaintenance 
+
+---

Old:

  0001-btrfs-progs-libbtrfs-remove-max-min-macros-from-API.patch
  btrfs-progs-v4.4.1.tar.gz

New:

  btrfs-progs-v4.5.1.tar.gz



Other differences:
--
++ btrfsprogs.spec ++
--- /var/tmp/diff_new_pack.DRHVQZ/_old  2016-04-03 23:05:30.0 +0200
+++ /var/tmp/diff_new_pack.DRHVQZ/_new  2016-04-03 23:05:30.0 +0200
@@ -24,7 +24,7 @@
 %endif
 
 Name:   btrfsprogs
-Version:4.4.1
+Version:4.5.1
 Release:0
 Summary:Utilities for the Btrfs filesystem
 License:GPL-2.0
@@ -37,8 +37,6 @@
 Source1:boot-btrfs.sh
 Source4:setup-btrfs.sh
 
-Patch1: 0001-btrfs-progs-libbtrfs-remove-max-min-macros-from-API.patch
-
 Patch163:   0163-btrfs-progs-fsck-fix-segfault.patch
 Patch167:   0167-Btrfs-progs-make-find_and_setup_root-return-an-error.patch
 Patch168:   0168-Btrfs-progs-don-t-bug-out-if-we-can-t-find-the-last-.patch
@@ -66,6 +64,7 @@
 Requires(postun): coreutils
 %endif
 Supplements:filesystem(btrfs)
+Recommends: btrfsmaintenance
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -111,7 +110,6 @@
 
 %prep
 %setup -q -n btrfs-progs-v%{version}
-%patch1 -p1
 %patch163 -p1
 %patch167 -p1
 %patch168 -p1

++ btrfs-progs-v4.4.1.tar.gz -> btrfs-progs-v4.5.1.tar.gz ++
 7181 lines of diff (skipped)

++ local-version-override.patch ++
--- /var/tmp/diff_new_pack.DRHVQZ/_old  2016-04-03 23:05:30.0 +0200
+++ /var/tmp/diff_new_pack.DRHVQZ/_new  2016-04-03 23:05:30.0 +0200
@@ -6,8 +6,8 @@
  # Copyright 2008, Oracle
  # Released under the GNU GPLv2
  
--v="v4.4.1"
-+v="v4.4.1+20160307"
+-v="v4.5.1"
++v="v4.5.1+20160331"
  
  opt=$1
  




commit mercurial for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package mercurial for openSUSE:Factory 
checked in at 2016-04-03 23:04:58

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


Package is "mercurial"

Changes:

--- /work/SRC/openSUSE:Factory/mercurial/mercurial.changes  2016-03-18 
21:36:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.mercurial.new/mercurial.changes 2016-04-03 
23:04:59.0 +0200
@@ -1,0 +2,33 @@
+Wed Mar 30 13:18:23 UTC 2016 - devel...@develop7.info
+
+- update to v3.7.3
+  This is an out of cycle release to address three security issues:
+  * CVE-2016-3630 Mercurial: remote code execution in binary delta decoding
+Mercurial prior to 3.7.3 contained two bounds-checking errors in its 
binary 
+delta decoder that may be exploitable via clone, push, or pull.
+  * CVE-2016-3068 Mercurial: arbitrary code execution with Git subrepos
+Mercurial prior to 3.7.3 allowed URLs for Git subrepos that could result 
in 
+arbitrary code execution on clone. This is a further side-effect of Git 
+CVE-2015-7545. Reported by Blake Burkhart.
+  * CVE-2016-3069 Mercurial: arbitrary code execution when converting Git repos
+Mercurial prior to 3.7.3 allowed arbitrary code execution when converting 
+Git repos with hostile names. This could affect automated conversion 
+services. Reported by Blake Burkhart.
+
+  + bdiff: (pure) support array.array arrays (issue5130)
+  + convert: add new, non-clowny interface for shelling out to git (SEC)
+  + convert: dead code removal - old git calling functions (SEC)
+  + convert: rewrite calls to Git to use the new shelling mechanism (SEC)
+  + convert: rewrite gitpipe to use common.commandline (SEC)
+  + convert: test for shell injection in git calls (SEC)
+  + files: don't recurse into subrepos without a path or -S (issue5127)
+  + hg: perform update after pulling during clone with share (issue5103)
+  + mq: restrict generated patch name to 75 characters (issue5117)
+  + obsolete: fix n^2 marker computation behavior
+  + parsers: detect short records (SEC)
+  + parsers: fix list sizing rounding error (SEC)
+  + streamclone: fix error when store files grow while stream cloning
+  + subrepo: adapt to git's recent renames-by-default
+  + subrepo: set GIT_ALLOW_PROTOCOL to limit git clone protocols (SEC)
+
+---

Old:

  mercurial-3.7.2.tar.gz

New:

  mercurial-3.7.3.tar.gz



Other differences:
--
++ mercurial.spec ++
--- /var/tmp/diff_new_pack.EKpNvL/_old  2016-04-03 23:05:00.0 +0200
+++ /var/tmp/diff_new_pack.EKpNvL/_new  2016-04-03 23:05:00.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   mercurial
-Version:3.7.2
+Version:3.7.3
 Release:0
 Summary:Scalable Distributed SCM
 License:GPL-2.0+

++ mercurial-3.7.2.tar.gz -> mercurial-3.7.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mercurial-3.7.2/.hgsigs new/mercurial-3.7.3/.hgsigs
--- old/mercurial-3.7.2/.hgsigs 2016-03-02 01:03:50.0 +0100
+++ new/mercurial-3.7.3/.hgsigs 2016-03-29 18:54:47.0 +0200
@@ -121,3 +121,4 @@
 158bdc8965720ca4061f8f8d806563cfc7cdb62e 0 
iQIVAwUAVqBhFyBXgaxoKi1yAQLJpQ//S8kdgmVlS+CI0d2hQVGYWB/eK+tcntG+bZKLto4bvVy5d0ymlDL0x7VrJMOkwzkU1u/GaYo3L6CVEiM/JGCgB32bllrpx+KwQ0AyHswMZruo/6xrjDIYymLMEJ9yonXBZsG7pf2saYTHm3C5/ZIPkrDZSlssJHJDdeWqd75hUnx3nX8dZ4jIIxYDhtdB5/EmuEGOVlbeBHVpwfDXidSJUHJRwJvDqezUlN003sQdUvOHHtRqBrhsYEhHqPMOxDidAgCvjSfWZQKOTKaPE/gQo/BP3GU++Fg55jBz+SBXpdfQJI2Gd8FZfjLkhFa9vTTTcd10YCd4CZbYLpj/4R2xWj1U4oTVEFa6d+AA5Yyu8xG53XSCCPyzfagyuyfLqsaq5r1qDZO/Mh5KZCTvc9xSF5KXj57mKvzMDpiNeQcamGmsV4yXxymKJKGMQvbnzqp+ItIdbnfk38Nuac8rqNnGmFYwMIPa50680vSZT/NhrlPJ8FVTJlfHtSUZbdjPpsqw7BgjFWaVUdwgCKIGERiK7zfR0innj9rF5oVwT8EbKiaR1uVxOKnTwZzPCbdO1euNg/HutZLVQmugiLAv5Z38L3YZf5bH7zJdUydhiTI4mGn/mgncsKXoSarnnduhoYu9OsQZc9pndhxjAEuAslEIyBsLy81fR2HOhUzw5FGNgdY=
 2408645de650d8a29a6ce9e7dce601d8dd0d1474 0 

commit tcpdump for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package tcpdump for openSUSE:Factory checked 
in at 2016-04-03 23:04:33

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


Package is "tcpdump"

Changes:

--- /work/SRC/openSUSE:Factory/tcpdump/tcpdump.changes  2015-04-30 
11:49:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.tcpdump.new/tcpdump.changes 2016-04-03 
23:04:48.0 +0200
@@ -1,0 +2,5 @@
+Wed Mar 30 07:43:04 UTC 2016 - b...@suse.com
+
+- correctly reference SOURCE1 during installation for s390x
+
+---



Other differences:
--
++ tcpdump.spec ++
--- /var/tmp/diff_new_pack.Jexre0/_old  2016-04-03 23:04:49.0 +0200
+++ /var/tmp/diff_new_pack.Jexre0/_new  2016-04-03 23:04:49.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package tcpdump
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -52,7 +52,7 @@
 %install
 make DESTDIR=%{buildroot} install %{?_smp_mflags}
 %ifarch s390 s390x
-  install -D -m 755 ${SOURCE1} %{buildroot}%{_sbindir}
+  install -D -m 755 %{SOURCE1} %{buildroot}%{_sbindir}
 %endif
 rm %{buildroot}/%{_sbindir}/tcpdump.%{version}
 






commit sqlite3 for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package sqlite3 for openSUSE:Factory checked 
in at 2016-04-03 23:04:27

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


Package is "sqlite3"

Changes:

--- /work/SRC/openSUSE:Factory/sqlite3/sqlite3.changes  2016-03-29 
09:51:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.sqlite3.new/sqlite3.changes 2016-04-03 
23:04:46.0 +0200
@@ -1,0 +2,31 @@
+Wed Mar 30 07:47:34 UTC 2016 - idon...@suse.com
+
+- SQLite 3.12.0:
+  * The SQLITE_DEFAULT_PAGE_SIZE is increased from 1024 to 4096.
+The SQLITE_DEFAULT_CACHE_SIZE is changed from 2000 to -2000
+so the same amount of cache memory is used by default.
+  * Enhancements to the Lemon parser generator so that it creates
+a smaller and faster SQL parser.
+  * Only create master journal files if two or more attached databases
+are all modified, do not have PRAGMA synchronous set to OFF,
+and do not have the journal_mode set to OFF, MEMORY, or WAL.
+  * Added the SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER option to
+sqlite3_db_config() which allows the two-argument version of the
+fts3_tokenizer() SQL function to be enabled or disabled at run-time.
+  * Added the sqlite3rbu_bp_progress() interface to the RBU extension.
+  * The PRAGMA defer_foreign_keys=ON statement now also disables RESTRICT
+actions on foreign key.
+  * Added the sqlite3_system_errno() interface.
+  * Added the SQLITE_DEFAULT_SYNCHRONOUS and SQLITE_DEFAULT_WAL_SYNCHRONOUS
+compile-time options. The SQLITE_DEFAULT_SYNCHRONOUS compile-time option
+replaces the SQLITE_EXTRA_DURABLE option, which is no longer supported.
+  * Enhanced the ".stats" command in the command-line shell to show more
+information about I/O performance obtained from /proc, when available.
+  * Make sure the sqlite3_set_auxdata() values from multiple triggers within
+a single statement do not interfere with one another. Ticket dc9b1c91.
+  * Fix the code generator for expressions of the form "x IN (SELECT...)"
+where the SELECT statement on the RHS is a correlated subquery.
+- Remove sqlite3-link-binary-with-libsqlite3.patch: replaced with configure
+  option --disable-static-shell
+
+---

Old:

  sqlite-autoconf-3110100.tar.gz
  sqlite-doc-3110100.zip
  sqlite3-link-binary-with-libsqlite3.patch

New:

  sqlite-autoconf-312.tar.gz
  sqlite-doc-312.zip



Other differences:
--
++ sqlite3.spec ++
--- /var/tmp/diff_new_pack.obS4S5/_old  2016-04-03 23:04:47.0 +0200
+++ /var/tmp/diff_new_pack.obS4S5/_new  2016-04-03 23:04:47.0 +0200
@@ -19,9 +19,9 @@
 # Simplify building on RH for Application:Geo (SR#212812).
 %define pname sqlite3
 %define oname sqlite
-%define tarversion 3110100
+%define tarversion 312
 Name:   %{pname}
-Version:3.11.1
+Version:3.12.0
 Release:0
 Summary:Embeddable SQL Database Engine
 License:SUSE-Public-Domain
@@ -30,7 +30,6 @@
 Source0:http://www.sqlite.org/2016/sqlite-autoconf-%{tarversion}.tar.gz
 Source1:baselibs.conf
 Source2:http://www.sqlite.org/2016/sqlite-doc-%{tarversion}.zip
-Patch0: sqlite3-link-binary-with-libsqlite3.patch
 Patch1: sqlite-fts5-link.patch
 BuildRequires:  autoconf
 BuildRequires:  automake
@@ -119,7 +118,6 @@
 
 %prep
 %setup -q -n sqlite-autoconf-%{tarversion} -a2
-%patch0 -p1
 %patch1 -p1
 rm -v sqlite-doc-%{tarversion}/releaselog/current.html
 ln -sv `echo %{version} | sed "s/\./_/g"`.html 
sqlite-doc-%{tarversion}/releaselog/current.html
@@ -141,6 +139,7 @@
-DSQLITE_SECURE_DELETE \
"
 %configure --disable-static \
+   --disable-static-shell \
--enable-readline
 make %{?_smp_mflags}
 

++ sqlite-autoconf-3110100.tar.gz -> sqlite-autoconf-312.tar.gz ++
 16410 lines of diff (skipped)




commit bzip2 for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package bzip2 for openSUSE:Factory checked 
in at 2016-04-03 23:04:53

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


Package is "bzip2"

Changes:

--- /work/SRC/openSUSE:Factory/bzip2/bzip2.changes  2016-01-21 
23:40:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.bzip2.new/bzip2.changes 2016-04-03 
23:04:54.0 +0200
@@ -1,0 +2,7 @@
+Thu Mar 24 15:44:52 UTC 2016 - kstreit...@suse.com
+
+- add bzip2-1.0.6-bzgrep_return_value.patch to fix bzgrep wrapper
+  that always returns 0 as an exit code when grepping multiple
+  archives [bsc#970260]
+
+---

New:

  bzip2-1.0.6-bzgrep_return_value.patch



Other differences:
--
++ bzip2.spec ++
--- /var/tmp/diff_new_pack.ymrmD9/_old  2016-04-03 23:04:55.0 +0200
+++ /var/tmp/diff_new_pack.ymrmD9/_new  2016-04-03 23:04:55.0 +0200
@@ -35,6 +35,8 @@
 Patch2: bzip2-unsafe_strcpy.patch
 Patch3: bzip2-point-to-doc-pkg.patch
 Patch4: bzip2-ocloexec.patch
+# PATCH-FIX-UPSTREAM bnc#970260 kstreit...@suse.com -- fix a wrong exit code 
when grepping multiple archives
+Patch5: bzip2-1.0.6-bzgrep_return_value.patch
 BuildRequires:  autoconf >= 2.57
 BuildRequires:  libtool
 BuildRequires:  pkg-config
@@ -80,6 +82,7 @@
 %patch2
 %patch3 -p1
 %patch4
+%patch5 -p1
 autoreconf -fiv
 
 %build

++ bzip2-1.0.6-bzgrep_return_value.patch ++
Index: bzip2-1.0.6/bzgrep
===
--- bzip2-1.0.6.orig/bzgrep
+++ bzip2-1.0.6/bzgrep
@@ -65,8 +65,20 @@ for i do
   else
 j=$(echo "$i" | sed 's/\\/&&/g;s/|/\\&/g;s/&/\\&/g')
 j=`printf "%s" "$j" | tr '\n' ' '`
-bzip2 -cdfq "$i" | $grep $opt "$pat" | sed "s|^|${j}:|"
-r=$?
+# A trick adapted from
+# 
https://groups.google.com/forum/#!original/comp.unix.shell/x1345iu10eg/Nn1n-1r1uU0J
+# that has the same effect as the following bash code:
+# bzip2 -cdfq "$i" | $grep $opt "$pat" | sed "s|^|${j}:|"
+# r=${PIPESTATUS[1]}
+exec 3>&1
+eval `
+  exec 4>&1 >&3 3>&-
+  {
+bzip2 -cdfq "$i" 4>&-
+  } | {
+$grep $opt "$pat" 4>&-; echo "r=$?;" >&4
+  } | sed "s|^|${j}:|"
+`
   fi
   test "$r" -ne 0 && res="$r"
 done





commit java-1_8_0-openjdk for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package java-1_8_0-openjdk for 
openSUSE:Factory checked in at 2016-04-03 23:04:22

Comparing /work/SRC/openSUSE:Factory/java-1_8_0-openjdk (Old)
 and  /work/SRC/openSUSE:Factory/.java-1_8_0-openjdk.new (New)


Package is "java-1_8_0-openjdk"

Changes:

--- /work/SRC/openSUSE:Factory/java-1_8_0-openjdk/java-1_8_0-openjdk.changes
2016-03-05 13:05:14.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.java-1_8_0-openjdk.new/java-1_8_0-openjdk.changes   
2016-04-03 23:04:27.0 +0200
@@ -1,0 +2,6 @@
+Wed Mar 30 06:17:02 UTC 2016 - fst...@suse.com
+
+- Update to upstream tag jdk8u77-b03 (bsc#972468)
+  *  CVE-2016-0636: Improve MethodHandle consistency
+
+---

Old:

  1bcc41894340.tar.bz2
  2f840ac0adf0.tar.bz2
  48d0c20256a3.tar.bz2
  769b21d1b85c.tar.bz2
  8d2e1dabe378.tar.bz2
  91e3b8e2e006.tar.bz2
  d6670c5d49ba.tar.bz2
  f3e86cc60726.tar.bz2
  fff0c11d2811.tar.bz2

New:

  094308b2ca1c.tar.bz2
  1c71899e8566.tar.bz2
  223b64a19e94.tar.bz2
  3fbef9f4cddf.tar.bz2
  43c11664317a.tar.bz2
  b6ee21a35619.tar.bz2
  c44179bce874.tar.bz2
  c6f67bea4466.tar.bz2
  e8dc6eb11c76.tar.bz2



Other differences:
--
++ java-1_8_0-openjdk.spec ++
--- /var/tmp/diff_new_pack.vEi10o/_old  2016-04-03 23:04:29.0 +0200
+++ /var/tmp/diff_new_pack.vEi10o/_new  2016-04-03 23:04:29.0 +0200
@@ -29,21 +29,21 @@
 %global syslibdir   %{_libdir}
 %global archname%{name}
 # Standard JPackage naming and versioning defines.
-%global updatever   72
-%global buildverb15
+%global updatever   77
+%global buildverb03
 %global root_projectjdk8u
 %global root_repository jdk8u
-%global root_revision   fff0c11d2811
-%global corba_revision  91e3b8e2e006
-%global hotspot_revision d6670c5d49ba
-%global jaxp_revision   1bcc41894340
-%global jaxws_revision  2f840ac0adf0
-%global jdk_revisionf3e86cc60726
-%global langtools_revision 48d0c20256a3
-%global nashorn_revision 769b21d1b85c
+%global root_revision   3fbef9f4cddf
+%global corba_revision  e8dc6eb11c76
+%global hotspot_revision 223b64a19e94
+%global jaxp_revision   1c71899e8566
+%global jaxws_revision  c6f67bea4466
+%global jdk_revisionc44179bce874
+%global langtools_revision 094308b2ca1c
+%global nashorn_revision b6ee21a35619
 %global aarch64_project aarch64-port
 %global aarch64_repository jdk8u
-%global aarch64_hotspot_revision 8d2e1dabe378
+%global aarch64_hotspot_revision 43c11664317a
 %global icedtea_sound_version 1.0.1
 # priority must be 6 digits in total
 %global priority1805
@@ -172,7 +172,7 @@
 Release:0
 Summary:OpenJDK 8 Runtime Environment
 License:Apache-1.1 and Apache-2.0 and GPL-1.0+ and GPL-2.0 and 
GPL-2.0-with-classpath-exception and LGPL-2.0 and MPL-1.0 and MPL-1.1 and 
SUSE-Public-Domain and W3C
-Group:  Development/Languages
+Group:  Development/Languages/Java
 Url:http://openjdk.java.net/
 # Sources from upstream OpenJDK8 project.
 Source0:
http://hg.openjdk.java.net/%{root_project}/%{root_repository}/archive/%{root_revision}.tar.bz2
@@ -338,7 +338,7 @@
 
 %package headless
 Summary:OpenJDK 8 Runtime Environment
-Group:  Development/Languages
+Group:  Development/Languages/Java
 # Require jpackage-utils for ownership of /usr/lib/jvm/
 Requires:   jpackage-utils
 # Post requires update-alternatives to install tool update-alternatives.
@@ -374,7 +374,7 @@
 
 %package devel
 Summary:OpenJDK 8 Development Environment
-Group:  Development/Tools
+Group:  Development/Languages/Java
 # Require base package.
 Requires:   %{name} = %{version}-%{release}
 # Post requires update-alternatives to install tool update-alternatives.
@@ -395,7 +395,7 @@
 
 %package demo
 Summary:OpenJDK 8 Demos
-Group:  Development/Languages
+Group:  Development/Languages/Java
 Requires:   %{name} = %{version}-%{release}
 
 %description demo
@@ -403,7 +403,7 @@
 
 %package src
 Summary:OpenJDK 8 Source Bundle
-Group:  Development/Languages
+Group:  Development/Languages/Java
 Requires:   %{name} = %{version}-%{release}
 
 %description src
@@ -411,7 +411,7 @@
 
 %package javadoc
 Summary:OpenJDK 8 API Documentation
-Group:  Documentation
+Group:  Development/Languages/Java
 Requires:   jpackage-utils
 # Post requires update-alternatives to install javadoc alternative.
 Requires(post): update-alternatives
@@ -429,7 +429,7 @@
 
 %package accessibility
 Summary:OpenJDK 8 accessibility connector
-Group:  Development/Languages
+Group:  

commit rpmlint for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package rpmlint for openSUSE:Factory checked 
in at 2016-04-03 23:04:47

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


Package is "rpmlint"

Changes:

--- /work/SRC/openSUSE:Factory/rpmlint/rpmlint.changes  2016-03-18 
21:31:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.rpmlint.new/rpmlint.changes 2016-04-03 
23:04:52.0 +0200
@@ -1,0 +2,11 @@
+Wed Mar 30 12:10:04 UTC 2016 - krah...@suse.com
+
+- whitelisting openattic (bsc#972478) 
+
+---
+Thu Mar 24 18:51:51 UTC 2016 - mp...@suse.com
+
+- Updated config file to add user chrony and group chrony
+  (Fate#319508)
+
+---



Other differences:
--
rpmlint.spec: same change
++ config ++
--- /var/tmp/diff_new_pack.hsp8IF/_old  2016-04-03 23:04:54.0 +0200
+++ /var/tmp/diff_new_pack.hsp8IF/_new  2016-04-03 23:04:54.0 +0200
@@ -90,6 +90,7 @@
 'cdrom',
 'ceph',
 'chef',
+'chrony',
 'citadel',
 'colord',
 'console',
@@ -261,6 +262,7 @@
 'casaauth',
 'ceph',
 'chef',
+'chrony',
 'citadel',
 'cntlm',
 'colord',
@@ -698,7 +700,10 @@
 "org.drbd.drbdmanaged.service",
 # iio-sensor-proxy (bsc#939191)
 "net.hadess.SensorProxy.conf",
-"net.hadess.SensorProxy.service"
+"net.hadess.SensorProxy.service",
+# openattic (bsc#972478)
+"openattic.conf",
+"openattic.service"
 ))
 
 setOption("PAMModules.WhiteList", (




commit boost for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package boost for openSUSE:Factory checked 
in at 2016-04-03 23:04:40

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


Package is "boost"

Changes:

--- /work/SRC/openSUSE:Factory/boost/boost.changes  2016-03-01 
09:38:23.0 +0100
+++ /work/SRC/openSUSE:Factory/.boost.new/boost.changes 2016-04-03 
23:04:49.0 +0200
@@ -1,0 +2,5 @@
+Tue Mar 29 20:06:05 UTC 2016 - dmitr...@opensuse.org
+
+- Fix build on systems with GCC4
+
+---



Other differences:
--
++ boost.spec ++
--- /var/tmp/diff_new_pack.R8GGRz/_old  2016-04-03 23:04:51.0 +0200
+++ /var/tmp/diff_new_pack.R8GGRz/_new  2016-04-03 23:04:51.0 +0200
@@ -93,6 +93,10 @@
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
+%if 0%{?suse_version} <= 1320
+# boost requires quadmath.h
+BuildRequires:  gcc-fortran
+%endif
 BuildRequires:  libbz2-devel
 BuildRequires:  libexpat-devel
 BuildRequires:  libicu-devel >= 4.4





commit powerpc-utils for openSUSE:Factory

2016-04-03 Thread h_root
Hello community,

here is the log from the commit of package powerpc-utils for openSUSE:Factory 
checked in at 2016-04-03 23:04:17

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


Package is "powerpc-utils"

Changes:

--- /work/SRC/openSUSE:Factory/powerpc-utils/powerpc-utils.changes  
2016-03-26 15:22:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.powerpc-utils.new/powerpc-utils.changes 
2016-04-03 23:04:18.0 +0200
@@ -1,0 +2,6 @@
+Tue Mar 29 22:27:52 UTC 2016 - dval...@suse.com
+
+- Fix nvram 0001-nvram-Correct-valid-partition-name-checking.patch
+  bsc#970463 
+
+---

New:

  0001-nvram-Correct-valid-partition-name-checking.patch



Other differences:
--
++ powerpc-utils.spec ++
--- /var/tmp/diff_new_pack.PpwJdC/_old  2016-04-03 23:04:19.0 +0200
+++ /var/tmp/diff_new_pack.PpwJdC/_new  2016-04-03 23:04:19.0 +0200
@@ -43,6 +43,7 @@
 Source1:nvsetenv
 Patch1: powerpc-utils-lsprop.patch
 Patch2: ofpathname_powernv.patch
+Patch3: 0001-nvram-Correct-valid-partition-name-checking.patch
 ExclusiveArch:  ppc ppc64 ppc64le
 
 %description
@@ -53,6 +54,7 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 
 %build
 ./autogen.sh

++ 0001-nvram-Correct-valid-partition-name-checking.patch ++
>From bd7e19a9ff5aebe741b0520906660dac1ecf4a2a Mon Sep 17 00:00:00 2001
From: Nathan Fontenot 
Date: Fri, 25 Mar 2016 07:27:58 -0400
Subject: [PATCH] nvram: Correct valid partition name checking

A recent update to not allow long names had a bug in that it did
not correctly check the return value when verifying a partition name.

Fixes: b15b0a7f9ffc (nvram: don't allow long names)
Signed-off-by: Nathan Fontenot 
CC: Joel Stanley 
---
 src/nvram.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nvram.c b/src/nvram.c
index 3c20b76..0bb5250 100644
--- a/src/nvram.c
+++ b/src/nvram.c
@@ -491,7 +491,7 @@ nvram_find_fd_partition(struct nvram *nvram, char *name)
 intlen;
 intfound = 0;
 
-if (part_name_valid(name))
+if (!part_name_valid(name))
return -1;
 
 if (lseek(nvram->fd, SEEK_SET, 0) == -1) {
-- 
2.1.4