commit ghc-http-client for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-http-client for openSUSE:Factory 
checked in at 2016-04-22 16:25:02

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


Package is "ghc-http-client"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-http-client/ghc-http-client.changes  
2016-01-28 17:24:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-http-client.new/ghc-http-client.changes 
2016-04-22 16:25:22.0 +0200
@@ -1,0 +2,14 @@
+Sat Apr 16 07:00:55 UTC 2016 - mimi...@gmail.com
+
+- update to 0.4.28
+* Add support for including request method in URL
+* requestManagerOverride
+* RequestBodyIO
+
+---
+Tue Apr 12 09:50:06 UTC 2016 - mimi...@gmail.com
+
+- update to 0.4.27.1
+* Incorrect idle connection count in HTTP manager
+
+---

Old:

  http-client-0.4.27.tar.gz

New:

  http-client-0.4.28.tar.gz



Other differences:
--
++ ghc-http-client.spec ++
--- /var/tmp/diff_new_pack.UcPg8e/_old  2016-04-22 16:25:23.0 +0200
+++ /var/tmp/diff_new_pack.UcPg8e/_new  2016-04-22 16:25:23.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-http-client
-Version:0.4.27
+Version:0.4.28
 Release:0
 Summary:HTTP client engine, intended as a base layer 
 License:MIT

++ http-client-0.4.27.tar.gz -> http-client-0.4.28.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-client-0.4.27/ChangeLog.md 
new/http-client-0.4.28/ChangeLog.md
--- old/http-client-0.4.27/ChangeLog.md 2016-01-21 08:59:31.0 +0100
+++ new/http-client-0.4.28/ChangeLog.md 2016-04-15 10:51:33.0 +0200
@@ -1,3 +1,13 @@
+## 0.4.28
+
+* Add support for including request method in URL
+* `requestManagerOverride`
+* `RequestBodyIO`
+
+## 0.4.27.1
+
+* Incorrect idle connection count in HTTP manager 
[#185](https://github.com/snoyberg/http-client/issues/185)
+
 ## 0.4.27
 
 * Enable managerModifyRequest to modify checkStatus 
[#179](https://github.com/snoyberg/http-client/pull/179)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-client-0.4.27/Network/HTTP/Client/Core.hs 
new/http-client-0.4.28/Network/HTTP/Client/Core.hs
--- old/http-client-0.4.27/Network/HTTP/Client/Core.hs  2016-01-21 
08:59:31.0 +0100
+++ new/http-client-0.4.28/Network/HTTP/Client/Core.hs  2016-04-15 
10:51:33.0 +0200
@@ -163,13 +163,15 @@
 --
 -- Since 0.1.0
 responseOpen :: Request -> Manager -> IO (Response BodyReader)
-responseOpen req0 manager = handle addTlsHostPort $ mWrapIOException manager $ 
do
+responseOpen req0 manager' = handle addTlsHostPort $ mWrapIOException manager 
$ do
 (req, res) <-
 if redirectCount req0 == 0
 then httpRaw' req0 manager
 else go (redirectCount req0) req0
 maybe (return res) throwIO =<< applyCheckStatus req (checkStatus req) res
   where
+manager = fromMaybe manager' (requestManagerOverride req0)
+
 addTlsHostPort (TlsException e) = throwIO $ TlsExceptionHostPort e (host 
req0) (port req0)
 addTlsHostPort e = throwIO e
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-client-0.4.27/Network/HTTP/Client/Manager.hs 
new/http-client-0.4.28/Network/HTTP/Client/Manager.hs
--- old/http-client-0.4.27/Network/HTTP/Client/Manager.hs   2016-01-21 
08:59:31.0 +0100
+++ new/http-client-0.4.28/Network/HTTP/Client/Manager.hs   2016-04-15 
10:51:33.0 +0200
@@ -61,7 +61,7 @@
 import Network.HTTP.Client.Types
 import Network.HTTP.Client.Connection
 import Network.HTTP.Client.Headers (parseStatusHeaders)
-import Network.HTTP.Client.Request (username, password, applyBasicProxyAuth)
+import Network.HTTP.Client.Request (applyBasicProxyAuth, extractBasicAuthInfo)
 import Control.Concurrent.MVar (MVar, takeMVar, tryPutMVar, newEmptyMVar)
 import System.Environment (getEnvironment)
 import qualified Network.URI as U
@@ -153,7 +153,7 @@
  in m' `seq` (m', return ())
 Just l ->
 let (l', mx) = addToList now (mMaxConns man) ci l
-cnt' = idleCount + maybe 0 (const 1) mx
+cnt' = idleCount + maybe 1 (const 0) mx
 m' = ManagerOpen cnt' (Map.insert key l' m)
  in m' `seq` (m', maybe (return ()) connectionClose mx)
 
@@ -528,14 +528,6 @@
 guard $ null $ U.uriFragment uri
 
 auth <- U.uriAuthority uri
-let muse

commit ghc-optional-args for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-optional-args for 
openSUSE:Factory checked in at 2016-04-22 16:25:10

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


Package is "ghc-optional-args"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-optional-args/ghc-optional-args.changes  
2016-02-09 13:32:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-optional-args.new/ghc-optional-args.changes 
2016-04-22 16:25:28.0 +0200
@@ -1,0 +2,5 @@
+Sun Apr 17 15:11:40 UTC 2016 - mimi...@gmail.com
+
+- update to 1.0.1
+
+---

Old:

  optional-args-1.0.0.tar.gz

New:

  optional-args-1.0.1.tar.gz



Other differences:
--
++ ghc-optional-args.spec ++
--- /var/tmp/diff_new_pack.olEcl6/_old  2016-04-22 16:25:28.0 +0200
+++ /var/tmp/diff_new_pack.olEcl6/_new  2016-04-22 16:25:28.0 +0200
@@ -18,7 +18,7 @@
 %global pkg_name optional-args
 
 Name:   ghc-optional-args
-Version:1.0.0
+Version:1.0.1
 Release:0
 Summary:Optional function arguments
 Group:  System/Libraries

++ optional-args-1.0.0.tar.gz -> optional-args-1.0.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/optional-args-1.0.0/optional-args.cabal 
new/optional-args-1.0.1/optional-args.cabal
--- old/optional-args-1.0.0/optional-args.cabal 2015-06-15 04:24:32.0 
+0200
+++ new/optional-args-1.0.1/optional-args.cabal 2016-04-16 06:11:46.0 
+0200
@@ -1,5 +1,5 @@
 Name: optional-args
-Version: 1.0.0
+Version: 1.0.1
 Cabal-Version: >=1.10
 Build-Type: Simple
 License: BSD3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/optional-args-1.0.0/src/Data/Optional.hs 
new/optional-args-1.0.1/src/Data/Optional.hs
--- old/optional-args-1.0.0/src/Data/Optional.hs2015-06-15 
04:24:32.0 +0200
+++ new/optional-args-1.0.1/src/Data/Optional.hs2016-04-16 
06:11:21.0 +0200
@@ -3,78 +3,78 @@
 {-# LANGUAGE DeriveTraversable #-}
 
 -- | Use the `Optional` type for optional function arguments.  For example:
--- 
+--
 -- > import Data.Optional
 -- >
 -- > greet :: Optional String -> String
 -- > greet (Specific name) = "Hello, " ++ name
 -- > greet  Default= "Hello"
--- 
+--
 -- >>> greet (Specific "John")
 -- "Hello, John"
 -- >>> greet Default
 -- "Hello"
--- 
+--
 -- The `Optional` type overloads as many Haskell literals as possible so
 -- that you do not need to wrap values in `Specific`.  For example, if you
 -- enable the `OverloadedStrings` extension you can use a naked string
 -- literal instead:
--- 
+--
 -- >>> :set -XOverloadedStrings
 -- >>> greet "John"
 -- "Hello, John"
--- 
+--
 -- The `Optional` type also implements `Num` and `Fractional`, so you can
 -- use numeric literals in place of `Optional` values:
--- 
+--
 -- > birthday :: Optional Int -> String
 -- > birthday (Specific age) = "You are " ++ show age ++ " years old!"
 -- > birthday  Default   = "You are one year older!"
--- 
+--
 -- >>> birthday 20
 -- "You are 20 years old!"
 -- >>> birthday Default
 -- "You are one year older!"
--- 
+--
 -- The `IsString`, `Num`, and `Fractional` instances are recursive, so you
 -- can wrap your types in a more descriptive newtype and derive `IsString`,
 -- `Num` or `Fractional`:
--- 
+--
 -- > {-# LANGUAGE GeneralizedNewtypeDeriving #-}
--- > 
+-- >
 -- > import Data.Optional
 -- > import Data.String (IsString)
--- > 
+-- >
 -- > newtype Name = Name { getName :: String } deriving (IsString)
--- > 
+-- >
 -- > greet :: Optional Name -> String
 -- > greet (Specific name) = "Hello, " ++ getName name
 -- > greet  Default= "Hello"
--- > 
+-- >
 -- > newtype Age = Age { getAge :: Int } deriving (Num)
--- > 
+-- >
 -- > birthday :: Optional Age -> String
 -- > birthday (Specific age) = "You are " ++ show (getAge age) ++ " years old!"
 -- > birthday  Default   = "You are one year older!"
--- 
+--
 -- ... and you would still be able to provide naked numeric or string
 -- literals:
--- 
+--
 -- >>> :set -XOverloadedStrings
 -- >>> greet "John"
 -- "Hello, John"
 -- >>> birthday 20
 -- "You are 20 years old!"
--- 
+--
 -- You can use `empty` as a short-hand for a `Default` argument:
--- 
+--
 -- >>> greet empty
 -- "Hello"
 -- >>> birthday empty
 -- "You are one year older!"
--- 
+--
 -- You can also use `pure` as a short-hand for a `Specific` argument:
--- 
+--
 -- >>> greet (pure "John")
 -- "Hello, John"
 -- >>> birthday (pure 20)
@@ -83,6 +83,9 @@
 module Data.Optional 

commit cfengine for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package cfengine for openSUSE:Factory 
checked in at 2016-04-22 16:25:57

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


Package is "cfengine"

Changes:

--- /work/SRC/openSUSE:Factory/cfengine/cfengine.changes2016-02-22 
08:57:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.cfengine.new/cfengine.changes   2016-04-22 
16:26:05.0 +0200
@@ -1,0 +2,49 @@
+Fri Apr 15 07:00:50 UTC 2016 - kkae...@suse.com
+
+- Update to 3.8.2
+  Fixes:
+  - Reduce verbosity of apt_get package module (Redmine #7485)
+  - Reduce verbosity of yum package module (Redmine #7485)
+  - The isvariable() function call now correctly accepts all
+array variables when specified inline. Previously it would not accept
+certain special characters, even though they could be specified
+indirectly by using a variable to hold it. (Redmine #7088)
+  - Don't follow symbolic links when copying extended attributes.
+  - Fix a bug which sometimes caused package promises to be
+skipped with "XX Another cf-agent seems to have done this
+since I started" messages in the log, most notably in long running cf-agent
+runs (longer than one minute). (Redmine #7933)
+  - Fix bug which could render host unable to recover from a
+syntax error, even if failsafe.cf was utilized. This could
+happen if the file containing the syntax error was specified in the 
def.json
+special file. (Redmine #7961)
+  - Change: Policy files specified in the "inputs" section of
+def.json will no longer be auto-loaded. One has to refer to the
+$(def.augments_inputs) variable in the policy (the standard
+masterfiles policies include this by default). This only affects
+installations which are not based on the standard masterfiles, and
+which are using the "inputs" field inside def.json. (Redmine #7961)
+  - Fix file descriptor leak when there are network errors.
+  - Fix cf-serverd error messages with classic protocol clients
+(Redmine #7818)
+  - Installing packages containing version numbers using yum
+now works correctly. (Redmine #7825)
+  - Fix ps options for FreeBSD to check processes only in
+current host and not in jails
+  - fix build failure on FreeBSD 7.1 (Redmine #7415)
+  - Show errors regarding failure to copy extended attributes
+when doing a local file copy. Errors could happen when copying
+across two different mount points where the support for extended
+attributes is different between the mount points.
+  - Fix classes being set because of hash collision in the implementation.
+(Redmine #7912)
+  - Allow def.json up to 5MB instead of 4K.
+  - Fix a regression which would sometimes cause "Permission
+denied" errors on files inside directories with very restricted
+permissions. (Redmine #7808)
+  - Change: Suppress standard services noise on SUSE (Redmine #6968)
+  
+  Changes:
+  - Change: classesmatching(): order of classes changed
+
+---

Old:

  cfengine-3.8.1.tar.gz

New:

  cfengine-3.8.2.tar.gz



Other differences:
--
++ cfengine.spec ++
--- /var/tmp/diff_new_pack.oCQ43h/_old  2016-04-22 16:26:07.0 +0200
+++ /var/tmp/diff_new_pack.oCQ43h/_new  2016-04-22 16:26:07.0 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define srcversion 3.8.1
+%define srcversion 3.8.2
 %define srcname %{name}-%{srcversion}
 %define libname   libpromises
 %define libsoname %{libname}3
@@ -34,7 +34,7 @@
 %bcond_with postgresql
 %bcond_with libvirt
 Name:   cfengine
-Version:3.8.0
+Version:%{srcversion}
 Release:0
 # This is the place where workdir should be
 #define basedir   /var/lib/%{name}

++ cfengine-3.8.1.tar.gz -> cfengine-3.8.2.tar.gz ++
 3340 lines of diff (skipped)




commit ubuntu-mate-artwork for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ubuntu-mate-artwork for 
openSUSE:Factory checked in at 2016-04-22 16:25:40

Comparing /work/SRC/openSUSE:Factory/ubuntu-mate-artwork (Old)
 and  /work/SRC/openSUSE:Factory/.ubuntu-mate-artwork.new (New)


Package is "ubuntu-mate-artwork"

Changes:

--- /work/SRC/openSUSE:Factory/ubuntu-mate-artwork/ubuntu-mate-artwork.changes  
2016-03-26 15:27:43.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.ubuntu-mate-artwork.new/ubuntu-mate-artwork.changes 
2016-04-22 16:25:46.0 +0200
@@ -1,0 +2,15 @@
+Mon Apr 11 10:02:03 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 16.04.6:
+  * Ambiance, Radiance: use inverted gradient in headerbar when in
+toolbar-mode (lp#1515810).
+  * Reduce the padding on flat entries, that's needed with Gtk 3.18
+otherwise the entry is displayed over new rows in listview when
+editing, that's also what the Gtk upstream themes are doing.
+  * Show the cursor index better in Totem videos (lp#1545026).
+  * Override box shadow and border settings for linked dialog
+buttons so they don't looked mashed together. Extra border
+radius is required to stop the button background bleeding
+through the border (lp#1513856).
+
+---

Old:

  ubuntu-mate-artwork_16.04.5.tar.xz

New:

  ubuntu-mate-artwork_16.04.6.tar.xz



Other differences:
--
++ ubuntu-mate-artwork.spec ++
--- /var/tmp/diff_new_pack.NmTua0/_old  2016-04-22 16:25:50.0 +0200
+++ /var/tmp/diff_new_pack.NmTua0/_new  2016-04-22 16:25:50.0 +0200
@@ -17,9 +17,9 @@
 
 
 %define _name   ubuntu-mate
-%define _version 16.04.5~xenial1.0
+%define _version 16.04.5
 Name:   ubuntu-mate-artwork
-Version:16.04.5
+Version:16.04.6
 Release:0
 Summary:Ubuntu MATE themes and artwork
 License:GPL-3.0+ and CC-BY-SA-4.0 and CC-BY-SA-3.0

++ ubuntu-mate-artwork_16.04.5.tar.xz -> ubuntu-mate-artwork_16.04.6.tar.xz 
++
/work/SRC/openSUSE:Factory/ubuntu-mate-artwork/ubuntu-mate-artwork_16.04.5.tar.xz
 
/work/SRC/openSUSE:Factory/.ubuntu-mate-artwork.new/ubuntu-mate-artwork_16.04.6.tar.xz
 differ: char 25, line 1




commit ghc-mono-traversable for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-mono-traversable for 
openSUSE:Factory checked in at 2016-04-22 16:25:07

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


Package is "ghc-mono-traversable"

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-mono-traversable/ghc-mono-traversable.changes
2016-02-23 16:59:33.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-mono-traversable.new/ghc-mono-traversable.changes
   2016-04-22 16:25:26.0 +0200
@@ -1,0 +2,6 @@
+Wed Apr 13 10:06:06 UTC 2016 - mimi...@gmail.com
+
+- update to 0.10.2
+* Add delete and deleteBy methods to EqSequence
+
+---

Old:

  mono-traversable-0.10.1.1.tar.gz

New:

  mono-traversable-0.10.2.tar.gz



Other differences:
--
++ ghc-mono-traversable.spec ++
--- /var/tmp/diff_new_pack.uIoYo2/_old  2016-04-22 16:25:26.0 +0200
+++ /var/tmp/diff_new_pack.uIoYo2/_new  2016-04-22 16:25:26.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-mono-traversable
-Version:0.10.1.1
+Version:0.10.2
 Release:0
 Summary:Type classes for mapping, folding, and traversing monomorphic 
containers
 Group:  System/Libraries

++ mono-traversable-0.10.1.1.tar.gz -> mono-traversable-0.10.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mono-traversable-0.10.1.1/ChangeLog.md 
new/mono-traversable-0.10.2/ChangeLog.md
--- old/mono-traversable-0.10.1.1/ChangeLog.md  2016-02-15 12:36:18.0 
+0100
+++ new/mono-traversable-0.10.2/ChangeLog.md2016-04-11 08:16:17.0 
+0200
@@ -1,3 +1,7 @@
+## 0.10.2
+
+* Add `delete` and `deleteBy` methods to EqSequence 
[#94](https://github.com/snoyberg/mono-traversable/pull/94)
+
 ## 0.10.1.1
 
 * Remove unneeded INLINEs 
[#90](https://github.com/snoyberg/mono-traversable/issues/90)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mono-traversable-0.10.1.1/mono-traversable.cabal 
new/mono-traversable-0.10.2/mono-traversable.cabal
--- old/mono-traversable-0.10.1.1/mono-traversable.cabal2016-02-15 
12:36:18.0 +0100
+++ new/mono-traversable-0.10.2/mono-traversable.cabal  2016-04-11 
08:16:17.0 +0200
@@ -1,5 +1,5 @@
 name:mono-traversable
-version: 0.10.1.1
+version: 0.10.2
 synopsis:Type classes for mapping, folding, and traversing 
monomorphic containers
 description: Monomorphic variants of the Functor, Foldable, and 
Traversable typeclasses. If you understand Haskell's basic typeclasses, you 
understand mono-traversable. In addition to what you are used to, it adds on an 
IsSequence typeclass and has code for marking data structures as non-empty.
 homepage:https://github.com/snoyberg/mono-traversable
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mono-traversable-0.10.1.1/src/Data/GrowingAppend.hs 
new/mono-traversable-0.10.2/src/Data/GrowingAppend.hs
--- old/mono-traversable-0.10.1.1/src/Data/GrowingAppend.hs 2016-02-15 
12:36:18.0 +0100
+++ new/mono-traversable-0.10.2/src/Data/GrowingAppend.hs   2016-04-11 
08:16:17.0 +0200
@@ -22,7 +22,7 @@
 import qualified Data.DList as DList
 import Data.DList.Instances ()
 
--- | olength (x <> y) >= olength x + olength y
+-- | olength (x <> y) >= max (olength x) (olength y)
 class (Semigroup mono, MonoFoldable mono) => GrowingAppend mono
 
 instance GrowingAppend (Seq.Seq a)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/mono-traversable-0.10.1.1/src/Data/Sequences.hs 
new/mono-traversable-0.10.2/src/Data/Sequences.hs
--- old/mono-traversable-0.10.1.1/src/Data/Sequences.hs 2016-02-15 
12:36:18.0 +0100
+++ new/mono-traversable-0.10.2/src/Data/Sequences.hs   2016-04-11 
08:16:17.0 +0200
@@ -1262,6 +1262,18 @@
 -- Equivalent to @'groupAllOn' id@
 groupAll :: seq -> [seq]
 groupAll = groupAllOn id
+
+-- |
+--
+-- @since 0.10.2
+delete :: Element seq -> seq -> seq
+delete = deleteBy (==)
+
+-- |
+--
+-- @since 0.10.2
+deleteBy :: (Element seq -> Element seq -> Bool) -> Element seq -> seq -> 
seq
+deleteBy eq x = fromList . List.deleteBy eq x . otoList
 {-# INLINE splitElem #-}
 {-# INLINE splitSeq #-}
 {-# INLINE isPrefixOf #-}
@@ -1271,6 +1283,8 @@
 {-# INLINE stripSuffix #-}
 {-# INLINE group #-}
 {-# INLINE groupAll #-}
+{-# INLINE delete #-}
+{-# INLINE deleteBy #

commit ovmf for openSUSE:Factory:NonFree

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ovmf for openSUSE:Factory:NonFree 
checked in at 2016-04-22 16:26:03

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


Package is "ovmf"

Changes:

--- /work/SRC/openSUSE:Factory:NonFree/ovmf/ovmf.changes2016-03-27 
10:11:20.0 +0200
+++ /work/SRC/openSUSE:Factory:NonFree/.ovmf.new/ovmf.changes   2016-04-22 
16:26:08.0 +0200
@@ -1,0 +2,284 @@
+Fri Apr 15 01:58:59 UTC 2016 - g...@suse.com
+
+- Change the fat driver license to the BSD license in FatPkg
+  instead of the proprietary license in FatBinPkg since OvmfPkg and
+  ArmVirtPkg now use FatPkg (bsc#973038)
+
+---
+Thu Apr 14 03:39:34 UTC 2016 - g...@suse.com
+
+- Update to 2015+git1460599637.f70cfe7
+  + MdeModulePkg S3SaveStateDxe: Add protocol usage for gEfiLockBoxProtocolGuid
+  + ArmVirtPkg/VirtFdtDxe: remove Xenio handling and rename to VirtioFdtDxe
+  + ArmVirtPkg/ArmVirtXen: move from VirtFdtDxe to new XenioFdtDxe driver
+  + OvmfPkg/XenIoMmioLib: add missing MemoryAllocationLib dependency to INF
+  + ArmVirtPkg/VirtFdtDxe: move FDT config table installation to FdtClientDxe
+  + ArmVirtPkg/VirtFdtDxe: remove unused PL011 DT node type
+  + ArmVirtPkg: get rid of A PRIORI DXE declarations for VirtFdtDxe
+  + ArmVirtPkg/VirtFdtDxe: drop RTC handling
+  + ArmVirtPkg: move QEMU based platforms to ArmVirtPL031FdtClientLib
+  + ArmVirtPkg: implement ArmVirtPL031FdtClientLib
+  + ArmVirtPkg/RelocatableVirtHelper: use correct FindMemNode argument order
+  + IntelFrameworkModulePkg: Remove unused PCD/Protocol
+  + IntelFrameworkModulePkg/KeyboardDxe: Use PCD defined in MdeModulePkg
+  + IntelFrameworkModulePkg/Ps2Mouse: Use PCD defined in MdeModulePkg
+  + IntelFrameworkModulePkg/Ps2AbsPointer: Use PCD defined in MdeModulePkg
+  + IntelFrameworkModulePkg/Ps2Kbd: use PCD/Protocol in MdeModulePkg
+  + MdeModulePkg/MdeModulePkg.uni: Add PS2 related PCD description
+  + MdeModulePkg/Ps2MouseDxe: Use a different FILE_GUID
+  + MdeModulePkg/Ps2KeyboardDxe: Use a different FILE_GUID
+  + MdeModulePkg/Ps2Mouse: Fix potential buffer overflow issue.
+  + MdeModulePkg: Update Guid/Protocol usages in INF files.
+  + ShellPkg: Update Guid/Protocol usages in INF files.
+  + SecurityPkg: Update protocol usage in module INF files.
+  + MdePkg: Add EFI Erase Block Protocol definitions
+  + MdeModulePkg/Ps2MouseDxe: Fix build failure of GCC tool chain
+  + ArmVirtPkg/VirtFdtDxe: drop PCI host bridge handling
+  + ArmVirtPkg/PciHostBridgeDxe: move to FDT client protocol
+  + ArmVirtPkg/BaseCachingPciExpressLib: depend on PciPcdProducerLib
+  + ArmVirtPkg: implement FdtPciPcdProducerLib
+  + ArmVirtPkg/VirtFdtDxe: remove handling of fw_cfg DT node
+  + ArmVirtPkg/QemuFwCfgLib: move to FDT client protocol
+  + BaseTools: use unsigned chars on ARM architectures
+  + BaseTools: generate hash value in build report for each output EFI image
+  + BaseTools/VolInfo: generate HASH value for each PE image
+  + ArmVirtPkg/VirtFdtDxe: remove timer DT node handling
+  + ArmVirtPkg: move TimerDxe to FDT client library
+  + ArmVirtPkg: implement ArmVirtTimerFdtClientLib
+  + ArmVirtPkg/VirtFdtDxe: drop detection of PSCI method
+  + ArmVirtPkg/ArmVirtPsciResetSystemLib: move to FDT client protocol
+  + ArmVirtPkg/VirtFdtDxe: remove GIC discovery
+  + ArmVirtPkg/ArmGicArchLib: move to FdtClient protocol
+  + ArmVirtPkg: add FdtClientDxe to the ArmVirtPkg platforms
+  + ArmVirtPkg/FdtClientDxe: implement new driver
+  + ArmVirtPkg: introduce FdtClientProtocol
+  + UefiCpuPkg: CpuIo2Dxe: optimize FIFO reads and writes of IO ports
+  + MdeModulePkg: Update PerformanceLib instances not to check Identifier.
+  + MdePkg: Update PerformanceLib comments not to check Identifier.
+  + Update edksetup.bat to check EDK_TOOLS_PATH before set it.
+  + MdeModulePkg/Ps2Keyboard: Add missing PCD and protocol to DEC file
+  + UefiCpuPkg/CpuMpPei: Fix potential AP mwait wakeup issue
+  + NetworkPkg: Add RAM disk boot support to HTTP Boot driver.
+  + ShellPkg: Fix Shell ASSERT when mv file with cwd is NULL.
+  + MdeModulePkg BootScriptExecutorDxe: Consume PcdAcpiS3Enable to control the 
code
+  + MdeModulePkg SmmS3SaveStateDxe: Consume PcdAcpiS3Enable to control the code
+  + MdeModulePkg: Add new macros and refine codes
+  + NetworkPkg: Add new macros and refine codes
+  + MdeModulePkg: Add Ps2MouseDxe driver
+  + MdeModulePkg: Add Ps2KeyboardDxe driver.
+  + MdeModulePkg/UefiBootManagerLib: API BmIsValidLoadOptionVariableName
+  + SecurityPkg OpalPasswordDxe: Clean up debug message in OpalHii.c
+  + SecurityPkg TcgStorageOpalLib: Fix wrong condition judgment.
+  + SecurityPkg OpalPasswordDxe: Suppress option for special device.
+  + OvmfPkg: rem

commit libyui-bindings for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package libyui-bindings for openSUSE:Factory 
checked in at 2016-04-22 16:25:45

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


Package is "libyui-bindings"

Changes:

--- /work/SRC/openSUSE:Factory/libyui-bindings/libyui-bindings.changes  
2015-01-21 21:52:08.0 +0100
+++ /work/SRC/openSUSE:Factory/.libyui-bindings.new/libyui-bindings.changes 
2016-04-22 16:25:54.0 +0200
@@ -1,0 +2,9 @@
+Tue Jan 19 15:52:09 UTC 2016 - mvid...@suse.com
+
+- CSharp: fix a System.EntryPointNotFoundException
+  (gh#libyui/libyui-bindings#18, M. Pasotti)
+- Perl, Python, Ruby: Fixed item identity comparison
+  (gh#libyui/libyui-bindings#15, A. Naselli)
+- 1.1.1
+
+---

Old:

  libyui-bindings-1.1.0.tar.bz2

New:

  libyui-bindings-1.1.1.tar.bz2



Other differences:
--
++ libyui-bindings.spec ++
--- /var/tmp/diff_new_pack.hpdWPh/_old  2016-04-22 16:25:55.0 +0200
+++ /var/tmp/diff_new_pack.hpdWPh/_new  2016-04-22 16:25:55.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package libyui-bindings
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -18,7 +18,7 @@
 
 
 Name:   libyui-bindings
-Version:1.1.0
+Version:1.1.1
 Release:0
 Summary:Bindings for libyui
 License:LGPL-2.1 or LGPL-3.0

++ libyui-bindings-1.1.0.tar.bz2 -> libyui-bindings-1.1.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-bindings-1.1.0/CMakeLists.txt 
new/libyui-bindings-1.1.1/CMakeLists.txt
--- old/libyui-bindings-1.1.0/CMakeLists.txt2015-01-20 15:38:09.0 
+0100
+++ new/libyui-bindings-1.1.1/CMakeLists.txt2016-04-19 17:13:09.0 
+0200
@@ -38,7 +38,24 @@
 SET(CPACK_PACKAGE_VERSION_MINOR ${VERSION_MINOR})
 SET(CPACK_PACKAGE_VERSION_PATCH ${VERSION_PATCH})
 
-SET( CPACK_GENERATOR "TBZ2")
+if (GENERATE)
+SET(CPACK_PACKAGE_CONTACT "SUSE")
+# rpm
+SET(CPACK_RPM_PACKAGE_LICENSE LGPL)
+SET(CPACK_RPM_PACKAGE_VERSION 
"${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${VERSION_PATCH}")
+SET(CPACK_RPM_PACKAGE_RELEASE 1)
+
+SET(CPACK_PACKAGE_FILE_NAME 
"${PACKAGE}-${CPACK_RPM_PACKAGE_VERSION}-${CPACK_RPM_PACKAGE_RELEASE}")
+# deb
+SET(CPACK_DEBIAN_PACKAGE_NAME "${CPACK_PACKAGE_FILE_NAME}")
+SET(CPACK_DEBIAN_PACKAGE_VERSION 
"${CPACK_RPM_PACKAGE_VERSION}-${CPACK_RPM_PACKAGE_RELEASE}")
+SET(CPACK_GENERATOR ${GENERATE})
+else (GENERATE)
+# tbz2
+SET(CPACK_PACKAGE_FILE_NAME "${PACKAGE}-bin-${PACKAGE_FILE_VERSION}")
+SET( CPACK_GENERATOR "TBZ2" )
+endif (GENERATE)
+
 SET( CPACK_SOURCE_GENERATOR "TBZ2")
 SET( CPACK_SOURCE_PACKAGE_FILE_NAME "${PACKAGE}-${VERSION}" )
 
@@ -96,4 +113,3 @@
 )
 
 MESSAGE(STATUS "Writing spec file...")
-CONFIGURE_FILE(${CMAKE_SOURCE_DIR}/libyui-bindings.spec.cmake 
${CMAKE_BINARY_DIR}/package/libyui-bindings.spec @ONLY)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-bindings-1.1.0/Rakefile 
new/libyui-bindings-1.1.1/Rakefile
--- old/libyui-bindings-1.1.0/Rakefile  1970-01-01 01:00:00.0 +0100
+++ new/libyui-bindings-1.1.1/Rakefile  2016-04-19 17:13:09.0 +0200
@@ -0,0 +1,12 @@
+# -*- coding: utf-8 -*-
+# make continuous integration using rubygem-packaging_rake_tasks and
+# rubygem-libyui-rake.
+# Copyright © 2014 SUSE LLC
+# MIT license
+
+require "libyui/rake"
+
+Libyui::Tasks.configuration do |conf|
+  # lets ignore license check for now
+  conf.skip_license_check << /.*/
+end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-bindings-1.1.0/VERSION.cmake 
new/libyui-bindings-1.1.1/VERSION.cmake
--- old/libyui-bindings-1.1.0/VERSION.cmake 2015-01-19 16:03:11.0 
+0100
+++ new/libyui-bindings-1.1.1/VERSION.cmake 2016-01-29 14:52:12.0 
+0100
@@ -1,3 +1,3 @@
 SET(VERSION_MAJOR "1")
 SET(VERSION_MINOR "1")
-SET(VERSION_PATCH "0")
+SET(VERSION_PATCH "1")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libyui-bindings-1.1.0/libyui-bindings.spec.cmake 
new/libyui-bindings-1.1.1/libyui-bindings.spec.cmake
--- old/libyui-bindings-1.1.0/libyui-bindings.spec.cmake2015-01-15 
16:38:09.0 +0100
+++ new/libyui-bindings-1.1.1/libyui-bindings.spec.cmake 

commit libsigrok for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package libsigrok for openSUSE:Factory 
checked in at 2016-04-22 16:25:19

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


Package is "libsigrok"

Changes:

--- /work/SRC/openSUSE:Factory/libsigrok/libsigrok.changes  2016-02-17 
12:14:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.libsigrok.new/libsigrok.changes 2016-04-22 
16:25:32.0 +0200
@@ -1,0 +2,5 @@
+Sun Apr 17 17:36:03 UTC 2016 - stefan.bru...@rwth-aachen.de
+
+- Add MM_DEVICE_IGNORE udev flag for all devices supported by libsigrok
+
+---



Other differences:
--
++ libsigrok.spec ++
--- /var/tmp/diff_new_pack.i3mxHO/_old  2016-04-22 16:25:33.0 +0200
+++ /var/tmp/diff_new_pack.i3mxHO/_new  2016-04-22 16:25:33.0 +0200
@@ -133,8 +133,9 @@
 find %{buildroot} -type f -name "*.la" -delete -print
 
 %define action TAG+="uaccess"
+%define mm_ignore ENV{ID_MM_DEVICE_IGNORE}="1"
 install -d -m 755 %{buildroot}%{_udevrulesdir}
-sed 's/MODE="664".*/%{action}/' contrib/z60_libsigrok.rules \
+sed 's/MODE="664".*/%{action}, %{mm_ignore}/' contrib/z60_libsigrok.rules \
 > %{buildroot}%{_udevrulesdir}/50-libsigrok.rules
 
 %post -n %{libname} -p /sbin/ldconfig




commit ghc-io-choice for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-io-choice for openSUSE:Factory 
checked in at 2016-04-22 16:25:06

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


Package is "ghc-io-choice"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-io-choice/ghc-io-choice.changes  
2015-05-21 08:37:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-io-choice.new/ghc-io-choice.changes 
2016-04-22 16:25:25.0 +0200
@@ -1,0 +2,5 @@
+Wed Apr 13 10:01:27 UTC 2016 - mimi...@gmail.com
+
+- update to 0.0.6 
+
+---

Old:

  io-choice-0.0.5.tar.gz

New:

  io-choice-0.0.6.tar.gz



Other differences:
--
++ ghc-io-choice.spec ++
--- /var/tmp/diff_new_pack.UuLTZ6/_old  2016-04-22 16:25:25.0 +0200
+++ /var/tmp/diff_new_pack.UuLTZ6/_new  2016-04-22 16:25:25.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-%{pkg_name}
-Version:0.0.5
+Version:0.0.6
 Release:0
 Summary:Choice for IO and lifted IO
 Group:  System/Libraries

++ io-choice-0.0.5.tar.gz -> io-choice-0.0.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/io-choice-0.0.5/Control/Exception/IOChoice/THUtil.hs 
new/io-choice-0.0.6/Control/Exception/IOChoice/THUtil.hs
--- old/io-choice-0.0.5/Control/Exception/IOChoice/THUtil.hs2013-06-24 
06:16:31.0 +0200
+++ new/io-choice-0.0.6/Control/Exception/IOChoice/THUtil.hs2016-04-12 
08:27:06.0 +0200
@@ -21,11 +21,18 @@
   case info of
 TyConI dec   -> do
   case dec of
+#if __GLASGOW_HASKELL__ >= 800
+DataD _ name [] _ _ _ -> conT name
+NewtypeD _ name [] _ _ _ -> conT name
+DataInstD _ name args _ _ _ -> foldl1 appT (conT name:map return args)
+NewtypeInstD _ name args _ _ _ -> foldl1 appT (conT name:map return 
args)
+#else
 DataD _ name [] _ _ -> conT name
 NewtypeD _ name [] _ _ -> conT name
-TySynD name [] _ -> conT name
 DataInstD _ name args _ _ -> foldl1 appT (conT name:map return args)
 NewtypeInstD _ name args _ _ -> foldl1 appT (conT name:map return args)
+#endif
+TySynD name [] _ -> conT name
 #if __GLASGOW_HASKELL__ >= 707
 TySynInstD name (TySynEqn _ t) -> foldl1 appT (conT name:[return t])
 #else
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/io-choice-0.0.5/io-choice.cabal 
new/io-choice-0.0.6/io-choice.cabal
--- old/io-choice-0.0.5/io-choice.cabal 2013-06-24 06:16:31.0 +0200
+++ new/io-choice-0.0.6/io-choice.cabal 2016-04-12 08:27:06.0 +0200
@@ -1,5 +1,5 @@
 Name:   io-choice
-Version:0.0.5
+Version:0.0.6
 Author: Kazu Yamamoto 
 Maintainer: Kazu Yamamoto 
 License:BSD3




commit docker-bench-security for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package docker-bench-security for 
openSUSE:Factory checked in at 2016-04-22 16:25:41

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


Package is "docker-bench-security"

Changes:

--- 
/work/SRC/openSUSE:Factory/docker-bench-security/docker-bench-security.changes  
2016-02-18 12:36:45.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.docker-bench-security.new/docker-bench-security.changes
 2016-04-22 16:25:51.0 +0200
@@ -1,0 +2,9 @@
+Mon Apr 18 15:11:24 UTC 2016 - astie...@suse.com
+
+- checks implementing CIS Docker 1.11.0 Benchmark 
+  
https://benchmarks.cisecurity.org/downloads/show-single/index.cfm?file=docker16.110
+- checks for docker 1.11.0
+- use stat to verify permissions
+- fixes for process detection
+
+---

Old:

  docker-bench-security-1.0.0~git20160215.zip

New:

  docker-bench-security-1.0.0~git20160415.zip



Other differences:
--
++ docker-bench-security.spec ++
--- /var/tmp/diff_new_pack.PdfwPo/_old  2016-04-22 16:25:52.0 +0200
+++ /var/tmp/diff_new_pack.PdfwPo/_new  2016-04-22 16:25:52.0 +0200
@@ -16,9 +16,9 @@
 #
 
 
-%define commit f81bc4d6d2e23f28b01624c4070dad62f650780c
+%define commit 797b002942bd8b3ddfb824cf0aa88d878fd2c737
 Name:   docker-bench-security
-Version:1.0.0~git20160215
+Version:1.0.0~git20160415
 Release:0
 Summary:Docker Bench for Security
 License:Apache-2.0
@@ -38,8 +38,8 @@
 The Docker Bench for Security is a script that checks for dozens of common
 best-practices around deploying Docker containers in production.
 
-The tests are all automated, and are inspired by the CIS Docker 1.6 Benchmark.
-( 
https://benchmarks.cisecurity.org/tools2/docker/CIS_Docker_1.6_Benchmark_v1.0.0.pdf
 )
+The tests are all automated, and are inspired by the CIS Docker 1.11.0 
Benchmark.
+( 
https://benchmarks.cisecurity.org/tools2/docker/CIS_Docker_1.11.0_Benchmark_v1.0.0.pdf
 )
 
 %prep
 %setup -q -n %{name}-%{commit}




commit xapian-bindings for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package xapian-bindings for openSUSE:Factory 
checked in at 2016-04-22 16:25:52

Comparing /work/SRC/openSUSE:Factory/xapian-bindings (Old)
 and  /work/SRC/openSUSE:Factory/.xapian-bindings.new (New)


Package is "xapian-bindings"

Changes:

--- /work/SRC/openSUSE:Factory/xapian-bindings/xapian-bindings.changes  
2015-07-22 09:19:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.xapian-bindings.new/xapian-bindings.changes 
2016-04-22 16:25:59.0 +0200
@@ -1,0 +2,6 @@
+Wed Apr 13 07:09:20 UTC 2016 - tittiatc...@gmail.com
+
+- Update to 1.2.23
+  * see http://xapian.org/docs/xapian-bindings-1.2.23/NEWS
+
+---

Old:

  xapian-bindings-1.2.21.tar.xz
  xapian-bindings-1.2.21.tar.xz.asc

New:

  xapian-bindings-1.2.23.tar.xz
  xapian-bindings-1.2.23.tar.xz.asc



Other differences:
--
++ xapian-bindings.spec ++
--- /var/tmp/diff_new_pack.GNToQX/_old  2016-04-22 16:26:00.0 +0200
+++ /var/tmp/diff_new_pack.GNToQX/_new  2016-04-22 16:26:00.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xapian-bindings
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %bcond_with mono
 
 Name:   xapian-bindings
-Version:1.2.21
+Version:1.2.23
 Release:0
 Summary:Bindings for xapian
 License:GPL-2.0

++ xapian-bindings-1.2.21.tar.xz -> xapian-bindings-1.2.23.tar.xz ++
 51188 lines of diff (skipped)





commit klatexformula for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package klatexformula for openSUSE:Factory 
checked in at 2016-04-22 16:25:37

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


Package is "klatexformula"

Changes:

--- /work/SRC/openSUSE:Factory/klatexformula/klatexformula.changes  
2014-02-02 07:50:43.0 +0100
+++ /work/SRC/openSUSE:Factory/.klatexformula.new/klatexformula.changes 
2016-04-22 16:25:43.0 +0200
@@ -1,0 +2,6 @@
+Sat Mar 12 18:44:45 UTC 2016 - antoine.belv...@laposte.net
+
+- Fix build on Tumbleweed (CMake error):
+  * Add klatexformula-3.2.8-remove-uninstall-target.patch
+
+---

New:

  klatexformula-3.2.8-remove-uninstall-target.patch



Other differences:
--
++ klatexformula.spec ++
--- /var/tmp/diff_new_pack.nVhCIW/_old  2016-04-22 16:25:44.0 +0200
+++ /var/tmp/diff_new_pack.nVhCIW/_new  2016-04-22 16:25:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package klatexformula
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -86,6 +86,8 @@
 Provides:   KLatexFormula = %{version}
 Provides:   klatexformula-plugins = %{version}
 Patch0: klatexformula-3.2.5-add-needed.patch
+# PATCH-FIX-UPSTREAM klatexformula-3.2.8-remove-uninstall-target.patch -- fix 
CMake build error (picked from Debian)
+Patch1: klatexformula-3.2.8-remove-uninstall-target.patch
 
 %description
 KLatexFormula is an easy-to-use graphical user interface for generating images
@@ -273,6 +275,7 @@
 %prep
 %setup -q
 %patch0 -p1
+%patch1 -p1
 
 %build
 

++ klatexformula-3.2.8-remove-uninstall-target.patch ++
Description: Remove the uninstall target 
Last-Update: 2015-12-17

--- a/cmake/klfinstallpaths.cmake
+++ b/cmake/klfinstallpaths.cmake
@@ -544,17 +544,3 @@
 \")
 endif(NOT \"\$ENV{DESTDIR}\" STREQUAL \"\" AND CMAKE_INSTALL_PREFIX MATCHES 
\"^[A-Za-z]:\")
 ")
-
-
-
-# Uninstall target
-# 
-
-configure_file(
-  "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in"
-  "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall_script.cmake"
-  IMMEDIATE @ONLY)
-add_custom_target(uninstall
-  "${CMAKE_COMMAND}" -P 
"${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall_script.cmake")
-
-



commit python3-setuptools_scm for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python3-setuptools_scm for 
openSUSE:Factory checked in at 2016-04-22 16:25:17

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


Package is "python3-setuptools_scm"

Changes:

--- 
/work/SRC/openSUSE:Factory/python3-setuptools_scm/python3-setuptools_scm.changes
2015-12-14 10:15:28.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python3-setuptools_scm.new/python3-setuptools_scm.changes
   2016-04-22 16:25:31.0 +0200
@@ -1,0 +2,15 @@
+Fri Apr  8 06:05:04 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * tar.bz2 -> tar.gz
+
+- update to version 1.11.0:
+  * always run tag_to_version so in order to handle prefixes on old
+setuptools (thanks to Brian May)
+  * drop support for python 3.2
+  * extend the error message on missing scm metadata (thanks Markus
+Unterwaditzer)
+  * fix bug when using callable version_scheme (thanks Esben
+Haabendal)
+
+---

Old:

  setuptools_scm-1.10.1.tar.bz2

New:

  setuptools_scm-1.11.0.tar.gz



Other differences:
--
++ python3-setuptools_scm.spec ++
--- /var/tmp/diff_new_pack.TLCmD2/_old  2016-04-22 16:25:32.0 +0200
+++ /var/tmp/diff_new_pack.TLCmD2/_new  2016-04-22 16:25:32.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-setuptools_scm
 #
-# 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,13 +17,13 @@
 
 
 Name:   python3-setuptools_scm
-Version:1.10.1
+Version:1.11.0
 Release:0
-Summary:the blessed package to manage your versions by scm tags
+Summary:The blessed package to manage your versions by scm tags
 License:MIT
 Group:  Development/Languages/Python
 Url:https://github.com/pypa/setuptools_scm
-Source0:
https://pypi.python.org/packages/source/s/setuptools_scm/setuptools_scm-%{version}.tar.bz2
+Source0:
https://pypi.python.org/packages/source/s/setuptools_scm/setuptools_scm-%{version}.tar.gz
 BuildRequires:  python3-devel
 BuildRequires:  python3-setuptools
 # Testing requirements
@@ -37,7 +37,9 @@
 BuildArch:  noarch
 
 %description
-the blessed package to manage your versions by scm tags
+Setuptools_scm handles managing your python package versions in scm metadata 
instead of declaring them as the version argument or in a scm managed file.
+
+It also handles file finders for the supported scm’s.
 
 %prep
 %setup -q -n setuptools_scm-%{version}




commit vm-install for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package vm-install for openSUSE:Factory 
checked in at 2016-04-22 16:25:53

Comparing /work/SRC/openSUSE:Factory/vm-install (Old)
 and  /work/SRC/openSUSE:Factory/.vm-install.new (New)


Package is "vm-install"

Changes:

--- /work/SRC/openSUSE:Factory/vm-install/vm-install.changes2015-11-05 
11:36:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.vm-install.new/vm-install.changes   
2016-04-22 16:26:01.0 +0200
@@ -1,0 +2,19 @@
+Tue Apr 12 14:30:12 MDT 2016 - carn...@suse.com
+
+- bsc#974470 - The PV SLES-12-SP2 guest installation on xen(host
+  SLES-11-SP4) can not boot
+- Version 0.8.50
+
+---
+Wed Mar 16 14:14:49 MDT 2016 - carn...@suse.com
+
+- Add support for Windows Server 2016
+- Version 0.8.49
+
+---
+Thu Feb  4 16:37:55 MST 2016 - carn...@suse.com
+
+- Fix call to brctl on Tumbleweed
+- Version 0.8.48
+
+---

Old:

  vm-install-0.8.47.tar.bz2

New:

  vm-install-0.8.50.tar.bz2



Other differences:
--
++ vm-install.spec ++
--- /var/tmp/diff_new_pack.eaYVeH/_old  2016-04-22 16:26:02.0 +0200
+++ /var/tmp/diff_new_pack.eaYVeH/_new  2016-04-22 16:26:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package vm-install
 #
-# Copyright (c) 2015 SUSE LINUX Products 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
@@ -15,6 +15,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   vm-install
 %if %suse_version <= 1230
 %define with_vminstall_as_default_installer 1
@@ -26,12 +27,12 @@
 %endif
 # For directory ownership:
 BuildRequires:  yast2
-Version:0.8.47
+Version:0.8.50
 Release:0
 Summary:Tool to Define a Virtual Machine and Install Its Operating 
System
 License:GPL-2.0
 Group:  System/Emulators/PC
-Source0:%{name}-0.8.47.tar.bz2
+Source0:%{name}-0.8.50.tar.bz2
 Source1:vm-install.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   dbus-1-python

++ vm-install-0.8.47.tar.bz2 -> vm-install-0.8.50.tar.bz2 ++
 156394 lines of diff (skipped)




commit ghc-http-client-tls for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-http-client-tls for 
openSUSE:Factory checked in at 2016-04-22 16:25:03

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


Package is "ghc-http-client-tls"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-http-client-tls/ghc-http-client-tls.changes  
2015-05-21 08:37:06.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-http-client-tls.new/ghc-http-client-tls.changes 
2016-04-22 16:25:23.0 +0200
@@ -1,0 +2,12 @@
+Sat Apr 16 07:13:00 UTC 2016 - mimi...@gmail.com
+
+- update to 0.2.4
+* Global manager
+
+---
+Tue Apr 12 10:02:46 UTC 2016 - mimi...@gmail.com
+
+- update to 0.2.3
+* Exception catching cleanup
+
+---

Old:

  http-client-tls-0.2.2.tar.gz

New:

  http-client-tls-0.2.4.tar.gz



Other differences:
--
++ ghc-http-client-tls.spec ++
--- /var/tmp/diff_new_pack.jKMSiy/_old  2016-04-22 16:25:23.0 +0200
+++ /var/tmp/diff_new_pack.jKMSiy/_new  2016-04-22 16:25:23.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-http-client-tls
 #
-# 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,9 +19,9 @@
 
 %bcond_with tests
 
-Name:   ghc-%{pkg_name}
-Version:0.2.2
-Release:1
+Name:   ghc-http-client-tls
+Version:0.2.4
+Release:0
 Summary:Http-client backend using the connection package and tls 
library
 Group:  System/Libraries
 

++ http-client-tls-0.2.2.tar.gz -> http-client-tls-0.2.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-client-tls-0.2.2/ChangeLog.md 
new/http-client-tls-0.2.4/ChangeLog.md
--- old/http-client-tls-0.2.2/ChangeLog.md  1970-01-01 01:00:00.0 
+0100
+++ new/http-client-tls-0.2.4/ChangeLog.md  2016-04-15 10:51:33.0 
+0200
@@ -0,0 +1,7 @@
+## 0.2.4
+
+* Global manager
+
+## 0.2.3
+
+* Exception catching cleanup
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-client-tls-0.2.2/Network/HTTP/Client/TLS.hs 
new/http-client-tls-0.2.4/Network/HTTP/Client/TLS.hs
--- old/http-client-tls-0.2.2/Network/HTTP/Client/TLS.hs2014-07-15 
07:01:15.0 +0200
+++ new/http-client-tls-0.2.4/Network/HTTP/Client/TLS.hs2016-04-15 
10:51:33.0 +0200
@@ -1,9 +1,16 @@
 {-# LANGUAGE ScopedTypeVariables #-}
 -- | Support for making connections via the connection package and, in turn,
 -- the tls package suite.
+--
+-- Recommended reading: 

 module Network.HTTP.Client.TLS
-( tlsManagerSettings
+( -- * Settings
+  tlsManagerSettings
 , mkManagerSettings
+  -- * Global manager
+, getGlobalManager
+, setGlobalManager
+  -- * Internal
 , getTlsConnection
 ) where
 
@@ -15,7 +22,11 @@
 import Network.Socket (HostAddress)
 import qualified Network.TLS as TLS
 import qualified Data.ByteString as S
+import Data.IORef (IORef, newIORef, readIORef, writeIORef)
+import System.IO.Unsafe (unsafePerformIO)
 
+-- | Create a TLS-enabled 'ManagerSettings' with the given 'NC.TLSSettings' and
+-- 'NC.SockSettings'
 mkManagerSettings :: NC.TLSSettings
   -> Maybe NC.SockSettings
   -> ManagerSettings
@@ -42,23 +53,19 @@
 Just NoResponseDataReceived -> True
 Just IncompleteHeaders -> True
 _ -> False
-, managerWrapIOException =
+, managerWrapIOException = 
 let wrapper se =
 case fromException se of
 Just e -> toException $ InternalIOException e
-Nothing ->
-case fromException se of
-Just TLS.Terminated{} -> toException $ 
TlsException se
-_ ->
-case fromException se of
-Just TLS.HandshakeFailed{} -> toException 
$ TlsException se
-_ ->
-case fromException se of
-Just TLS.ConnectionNotEstablished 
-> toException $ TlsException se
-   

commit ghc-StateVar for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-StateVar for openSUSE:Factory 
checked in at 2016-04-22 16:25:14

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


Package is "ghc-StateVar"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-StateVar/ghc-StateVar.changes
2016-01-20 09:54:59.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-StateVar.new/ghc-StateVar.changes   
2016-04-22 16:25:29.0 +0200
@@ -1,0 +2,6 @@
+Thu Apr 14 08:24:43 UTC 2016 - mimi...@gmail.com
+
+- update to 1.1.0.4 
+* Corrected HasUpdate's superclass constraint.
+
+---

Old:

  StateVar-1.1.0.3.tar.gz

New:

  StateVar-1.1.0.4.tar.gz



Other differences:
--
++ ghc-StateVar.spec ++
--- /var/tmp/diff_new_pack.JFMTqr/_old  2016-04-22 16:25:30.0 +0200
+++ /var/tmp/diff_new_pack.JFMTqr/_new  2016-04-22 16:25:30.0 +0200
@@ -18,7 +18,7 @@
 %global pkg_name StateVar
 
 Name:   ghc-StateVar
-Version:1.1.0.3
+Version:1.1.0.4
 Release:0
 Summary:State variables
 Group:  System/Libraries

++ StateVar-1.1.0.3.tar.gz -> StateVar-1.1.0.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.1.0.3/CHANGELOG.md 
new/StateVar-1.1.0.4/CHANGELOG.md
--- old/StateVar-1.1.0.3/CHANGELOG.md   2016-01-17 01:35:24.0 +0100
+++ new/StateVar-1.1.0.4/CHANGELOG.md   2016-04-13 08:21:12.0 +0200
@@ -1,3 +1,7 @@
+1.1.0.4
+---
+* Corrected HasUpdate's superclass constraint.
+
 1.1.0.3
 ---
 * Removed a couple of redundant typeclass constraints.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.1.0.3/LICENSE new/StateVar-1.1.0.4/LICENSE
--- old/StateVar-1.1.0.3/LICENSE2016-01-17 01:35:24.0 +0100
+++ new/StateVar-1.1.0.4/LICENSE2016-04-12 08:09:47.0 +0200
@@ -1,5 +1,5 @@
 Copyright (c) 2014-2015, Edward Kmett
-Copyright (c) 2009-2014, Sven Panne
+Copyright (c) 2009-2016, Sven Panne
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.1.0.3/StateVar.cabal 
new/StateVar-1.1.0.4/StateVar.cabal
--- old/StateVar-1.1.0.3/StateVar.cabal 2016-01-17 01:35:24.0 +0100
+++ new/StateVar-1.1.0.4/StateVar.cabal 2016-04-12 08:09:29.0 +0200
@@ -1,20 +1,31 @@
 name: StateVar
-version: 1.1.0.3
+version: 1.1.0.4
 synopsis: State variables
 description:
   This package contains state variables, which are references in the IO monad,
   like IORefs or parts of the OpenGL state.
 homepage: https://github.com/haskell-opengl/StateVar
 bug-reports: https://github.com/haskell-opengl/StateVar/issues
-copyright: Copyright (C) 2014-2015 Edward A. Kmett, 2009-2015 Sven Panne
+copyright: Copyright (C) 2014-2015 Edward A. Kmett, 2009-2016 Sven Panne
 license: BSD3
 license-file: LICENSE
 author: Sven Panne and Edward Kmett
 maintainer: Sven Panne 
 category: Data
 build-type: Simple
-cabal-version: >=1.10
-extra-source-files: README.md CHANGELOG.md
+tested-with:
+  GHC == 7.0.4
+  GHC == 7.2.2
+  GHC == 7.4.2
+  GHC == 7.6.3
+  GHC == 7.8.4
+  GHC == 7.10.3
+  GHC == 8.0.1
+  GHC == 8.1
+cabal-version: >= 1.10
+extra-source-files:
+  README.md
+  CHANGELOG.md
 
 library
   exposed-modules:
@@ -36,7 +47,8 @@
 
   hs-source-dirs: src
   ghc-options: -Wall
-
+  if impl(ghc > 8)
+ghc-options: -Wcompat
   if impl(ghc>=7.4)
 -- other-extensions: DefaultSignatures
 cpp-options: -DUSE_DEFAULT_SIGNATURES=1
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/StateVar-1.1.0.3/src/Data/StateVar.hs 
new/StateVar-1.1.0.4/src/Data/StateVar.hs
--- old/StateVar-1.1.0.3/src/Data/StateVar.hs   2016-01-17 01:35:24.0 
+0100
+++ new/StateVar-1.1.0.4/src/Data/StateVar.hs   2016-04-12 08:25:40.0 
+0200
@@ -10,7 +10,7 @@
 

 -- |
 -- Module  :  Data.StateVar
--- Copyright   :  (c) Edward Kmett 2014-2015, Sven Panne 2009-2014
+-- Copyright   :  (c) Edward Kmett 2014-2015, Sven Panne 2009-2016
 -- License :  BSD3
 -- 
 -- Maintainer  :  Sven Panne 
@@ -193,7 +193,7 @@
 infixr 2 $~, $~!
 
 -- | This is the class of all updatable state variables.
-class HasSetter t a => HasUpdate t a b | t -> a b where
+class HasSetter t b => HasUpdate t a b | t -> a b where
   -- | Transform the contents of a state variable with a given funtion.
   ($~) :: MonadIO m => t -> (a -> b)

commit rednotebook for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package rednotebook for openSUSE:Factory 
checked in at 2016-04-22 16:25:38

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


Package is "rednotebook"

Changes:

--- /work/SRC/openSUSE:Factory/rednotebook/rednotebook.changes  2016-01-05 
21:56:11.0 +0100
+++ /work/SRC/openSUSE:Factory/.rednotebook.new/rednotebook.changes 
2016-04-22 16:25:44.0 +0200
@@ -1,0 +2,8 @@
+Mon Apr 18 04:28:32 UTC 2016 - usha...@linux.com
+
+- Update to version 1.12:
+  + Add option to hide right-hand tags pane.
+  + Never overwrite externally changed month files.
+  + Remove support for Python 2.6.
+
+---

Old:

  rednotebook-1.11.tar.gz

New:

  rednotebook-1.12.tar.gz



Other differences:
--
++ rednotebook.spec ++
--- /var/tmp/diff_new_pack.wU8rae/_old  2016-04-22 16:25:45.0 +0200
+++ /var/tmp/diff_new_pack.wU8rae/_new  2016-04-22 16:25:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rednotebook
 #
-# 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:   rednotebook
-Version:1.11
+Version:1.12
 Release:0
 Summary:Graphical diary and journal
 License:GPL-3.0+

++ rednotebook-1.11.tar.gz -> rednotebook-1.12.tar.gz ++
 6326 lines of diff (skipped)




commit gtkwave for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package gtkwave for openSUSE:Factory checked 
in at 2016-04-22 16:25:42

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


Package is "gtkwave"

Changes:

--- /work/SRC/openSUSE:Factory/gtkwave/gtkwave.changes  2016-02-24 
18:43:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.gtkwave.new/gtkwave.changes 2016-04-22 
16:25:52.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 19 08:21:07 UTC 2016 - dmitr...@opensuse.org
+
+- Update to version 3.3.72
+  * bugfix release, see included ChangeLog file for details
+
+---

Old:

  gtkwave-3.3.70.tar.gz

New:

  gtkwave-3.3.72.tar.gz



Other differences:
--
++ gtkwave.spec ++
--- /var/tmp/diff_new_pack.xR2NXM/_old  2016-04-22 16:25:53.0 +0200
+++ /var/tmp/diff_new_pack.xR2NXM/_new  2016-04-22 16:25:53.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gtkwave
-Version:3.3.70
+Version:3.3.72
 Release:0
 Summary:Waveform viewer for Ditital Signals
 License:GPL-2.0+
@@ -112,7 +112,7 @@
 %dir %{_datadir}/icons/gnome/*/mimetypes/
 %{_datadir}/icons/gnome/*/mimetypes/*.png
 %{_datadir}/icons/gtkwave*
-%{_datadir}/icons/hicolor/*/apps/%{name}.png
+%{_datadir}/icons/hicolor/*/apps/%{name}.*
 %{_datadir}/mime/packages/x-gtkwave-extension*.xml
 
 %files doc

++ gtkwave-3.3.70.tar.gz -> gtkwave-3.3.72.tar.gz ++
 2920 lines of diff (skipped)
retrying with extended exclude list
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gtkwave-3.3.70/ChangeLog new/gtkwave-3.3.72/ChangeLog
--- old/gtkwave-3.3.70/ChangeLog2016-02-15 23:36:59.0 +0100
+++ new/gtkwave-3.3.72/ChangeLog2016-04-13 18:30:29.0 +0200
@@ -1531,3 +1531,23 @@
 3.3.70 14feb16 Various warnings fixes from new version of scan-build.
Crash fix in Windows for transaction traces (broken since
VCD/TIM export in 3.3.61).
+3.3.71 06apr16 Printf format warnings fixes in lxt2_write.c.
+   Added SVG gtkwave icon in
+   share/icons/hicolor/scalable/apps/gtkwave.svg directory.
+   Make gtkwave interpret values as double precision FP for
+   plotting when BitsToReal is enabled. Also keeps analog mode
+   enabled when selecting numerical formats (which allows 
+   enabling/disabling BitsToReal without going out of analog 
+   mode). Disabling analog mode can be done using the
+   existing Analog->Off menu option.
+   Fix broken non-canonical bit ordering (IBM) single bit
+   extraction in process_tcl_list().
+   Fixed gtkwave::gtkwave::addSignalsFromList so it can handle
+   subset and forward/reverse extractions on signals.
+   Remove FST_WRITER_PARALLEL from MinGW CFLAGS as some recent
+   versions of MinGW have issues with struct timespec when 
+   pthread.h is included.
+   Added /Edit/Delete to destroy traces without affecting the
+   existing cut buffer.
+3.3.72 Revert to old gtkwave.appdata.xml as the new one is causing
+   problems with appstream-util validation.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclocal.m4 
--exclude config.sub --exclude depcomp --exclude install-sh --exclude ltmain.sh 
old/gtkwave-3.3.70/LICENSE.TXT new/gtkwave-3.3.72/LICENSE.TXT
--- old/gtkwave-3.3.70/LICENSE.TXT  2015-11-05 01:53:59.0 +0100
+++ new/gtkwave-3.3.72/LICENSE.TXT  2016-04-13 18:30:29.0 +0200
@@ -1,6 +1,6 @@
 ##
 
-GTKWave 3.3.68 Wave Viewer is Copyright (C) 1999-2016 Tony Bybell.  
+GTKWave 3.3.72 Wave Viewer is Copyright (C) 1999-2016 Tony Bybell.  
 Portions of GTKWave are Copyright (C) 1999-2016 Udi Finkelstein. 
 Context support is Copyright (C) 2007-2016 Kermin Elliott Fleming.
 Trace group support is  Copyright (C) 2009-2016 Donald Baltus.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' --exclude Makefile.in --exclude configure --exclude 
config.guess --exclude '*.pot' --exclude mkinstalldirs --exclude aclo

commit python-greenlet for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python-greenlet for openSUSE:Factory 
checked in at 2016-04-22 16:25:34

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


Package is "python-greenlet"

Changes:

--- /work/SRC/openSUSE:Factory/python-greenlet/python-greenlet.changes  
2015-06-24 20:50:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-greenlet.new/python-greenlet.changes 
2016-04-22 16:25:41.0 +0200
@@ -1,0 +2,6 @@
+Sat Apr 16 21:29:08 UTC 2016 - t.gru...@katodev.de
+
+- update to 0.4.9
+- remove ppc64le-support.patch (is part of this version now)
+
+---

Old:

  greenlet-0.4.7.zip
  ppc64le-support.patch

New:

  greenlet-0.4.9.tar.gz



Other differences:
--
++ python-greenlet.spec ++
--- /var/tmp/diff_new_pack.R6VTdb/_old  2016-04-22 16:25:42.0 +0200
+++ /var/tmp/diff_new_pack.R6VTdb/_new  2016-04-22 16:25:42.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-greenlet
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2010 B1 Systems GmbH, Vohburg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
@@ -18,20 +18,18 @@
 
 
 Name:   python-greenlet
-Version:0.4.7
+Version:0.4.9
 Release:0
 Url:http://pypi.python.org/pypi/greenlet
 Summary:Lightweight in-process concurrent programming
 License:MIT
 Group:  Development/Libraries/Python
-Source0:
http://pypi.python.org/packages/source/g/greenlet/greenlet-%{version}.zip
-Patch1: ppc64le-support.patch
+Source0:
http://pypi.python.org/packages/source/g/greenlet/greenlet-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  gcc-c++
 BuildRequires:  python-Sphinx
 BuildRequires:  python-devel
 BuildRequires:  python-setuptools
-BuildRequires:  unzip
 %if 0%{?suse_version} && 0%{?suse_version} <= 1110
 %{!?python_sitearch: %global python_sitearch %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
 %endif
@@ -55,7 +53,6 @@
 
 %prep
 %setup -q -n greenlet-%{version}
-%patch1 -p1
 
 %build
 CFLAGS="%{optflags} -fno-tree-dominator-opts -fno-strict-aliasing" python 
setup.py build




commit pcsc-ccid for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package pcsc-ccid for openSUSE:Factory 
checked in at 2016-04-22 16:25:55

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


Package is "pcsc-ccid"

Changes:

--- /work/SRC/openSUSE:Factory/pcsc-ccid/pcsc-ccid.changes  2015-10-26 
12:49:16.0 +0100
+++ /work/SRC/openSUSE:Factory/.pcsc-ccid.new/pcsc-ccid.changes 2016-04-22 
16:26:04.0 +0200
@@ -1,0 +2,55 @@
+Thu Apr 21 07:26:49 UTC 2016 - w...@rosenauer.org
+
+- Updated to version 1.4.23
+  * Add support of
+ACS ACR3901U ICC Reader
+Alcor Micro AU9560
+Cherry SmartTerminal XX44
+HID Global OMNIKEY 3x21 Smart Card Reader
+HID Global OMNIKEY 5022 Smart Card Reader
+HID Global OMNIKEY 6121 Smart Card Reader
+IonIDe Smartcard Reader reader
+KACST HSID Reader
+KACST HSID Reader Dual Storage
+KACST HSID Reader Single Storage
+  * Remove support of
+VMware Virtual USB CCID
+  * Fix a busy loop consuming 100% of CPU for some composite USB devices
+impacted readers: Yubico Yubikey NEO U2F+CCID and Broadcom BCM5880
+  * Remove support of (unused) option DRIVER_OPTION_RESET_ON_CLOSE
+  * log libusb error name instead of decimal value
+  * Some minor improvements
+
+---
+Sun Jan 10 19:43:54 UTC 2016 - w...@rosenauer.org
+
+- Updated to version 1.4.22
+  * Add support of
+Aktiv Rutoken PINPad 2
+Aladdin R.D. JC-WebPass (JC600)
+Aladdin R.D. JCR-770
+Aladdin R.D. JaCarta
+Aladdin R.D. JaCarta Flash
+Aladdin R.D. JaCarta LT
+Aladdin R.D. JaCarta U2F (JC602)
+Athena ASEDrive IIIe Combo Bio PIV
+Athena ASEDrive IIIe KB Bio PIV
+GEMALTO CT1100
+GEMALTO K1100
+Hitachi, Ltd. Hitachi Biometric Reader
+Hitachi, Ltd. Hitachi Portable Biometric Reader
+Nitrokey Nitrokey Storage
+THURSBY SOFTWARE TSS-PK1
+Thursby Software Systems, Inc. TSS-PK7
+Thursby Software Systems, Inc. TSS-PK8
+  * Patch for Microchip SEC1110 reader on Mac OS X (card events notification)
+  * Patch for Cherry KC 1000 SC (problem was with a T=1 card and case 2 APDU)
+  * Fix support of FEATURE_MCT_READER_DIRECT for the Kobil mIDentity visual 
reader
+  * Set timeout to 90 sec for PPDU (Pseudo APDU) commands. This
+change allows the use of a Secure Verify command sent as a PPDU
+through SCardTransmit().
+  * Fix a crash when reader reader initialization failed
+  * Fix initialization bug with Gemalto Pinpad reader on Mac OS X
+  * Some minor bugs fixed
+
+---

Old:

  ccid-1.4.21.tar.bz2
  ccid-1.4.21.tar.bz2.asc

New:

  ccid-1.4.23.tar.bz2
  ccid-1.4.23.tar.bz2.asc



Other differences:
--
++ pcsc-ccid.spec ++
--- /var/tmp/diff_new_pack.eEw803/_old  2016-04-22 16:26:05.0 +0200
+++ /var/tmp/diff_new_pack.eEw803/_new  2016-04-22 16:26:05.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package pcsc-ccid
 #
-# 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
@@ -24,7 +24,7 @@
 
 Name:   pcsc-ccid
 %define _name ccid
-Version:1.4.21
+Version:1.4.23
 Release:0
 Summary:PCSC Driver for CCID Based Smart Card Readers and GemPC Twin 
Serial Reader
 License:LGPL-2.1+

++ ccid-1.4.21.tar.bz2 -> ccid-1.4.23.tar.bz2 ++
 23374 lines of diff (skipped)




commit tmate for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package tmate for openSUSE:Factory checked 
in at 2016-04-22 16:25:49

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


Package is "tmate"

Changes:

--- /work/SRC/openSUSE:Factory/tmate/tmate.changes  2016-04-12 
19:31:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.tmate.new/tmate.changes 2016-04-22 
16:25:56.0 +0200
@@ -1,0 +2,13 @@
+Wed Mar 30 08:57:57 UTC 2016 - a...@cryptomilk.org
+
+- Update to 2.2.1
+  * Reconnection implemented
+  * Bug fixes in synchronizing the key bindings
+  * webhooks support added: https://github.com/tmate-io/tmate/wiki/Webhooks
+
+---
+Thu Mar  3 09:38:15 UTC 2016 - a...@cryptomilk.org
+
+- At least msgpack 1.1.0 is requried
+
+---

Old:

  2.2.0.tar.gz

New:

  2.2.1.tar.gz



Other differences:
--
++ tmate.spec ++
--- /var/tmp/diff_new_pack.J1YIOz/_old  2016-04-22 16:25:57.0 +0200
+++ /var/tmp/diff_new_pack.J1YIOz/_new  2016-04-22 16:25:57.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   tmate
-Version:2.2.0
+Version:2.2.1
 Release:0
 Summary:Instant terminal sharing
 License:MIT
@@ -27,8 +27,8 @@
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libevent-devel
-BuildRequires:  libmsgpack-devel >= 0.5.8
-BuildRequires:  libmsgpackc-devel >= 0.5.8
+BuildRequires:  libmsgpack-devel >= 1.1.0
+BuildRequires:  libmsgpackc-devel >= 1.1.0
 BuildRequires:  libopenssl-devel
 BuildRequires:  libssh-devel >= 0.6.1
 BuildRequires:  ncurses-devel

++ 2.2.0.tar.gz -> 2.2.1.tar.gz ++
 6173 lines of diff (skipped)




commit armadillo for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package armadillo for openSUSE:Factory 
checked in at 2016-04-22 16:25:50

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


Package is "armadillo"

Changes:

--- /work/SRC/openSUSE:Factory/armadillo/armadillo.changes  2016-04-06 
11:53:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.armadillo.new/armadillo.changes 2016-04-22 
16:25:57.0 +0200
@@ -1,0 +2,6 @@
+Wed Apr 20 01:38:35 UTC 2016 - badshah...@gmail.com
+
+- Update to version 6.700.4:
+  + Undocumented bug fixes.
+
+---

Old:

  armadillo-6.700.3.tar.gz

New:

  armadillo-6.700.4.tar.gz



Other differences:
--
++ armadillo.spec ++
--- /var/tmp/diff_new_pack.FB4gcU/_old  2016-04-22 16:25:58.0 +0200
+++ /var/tmp/diff_new_pack.FB4gcU/_new  2016-04-22 16:25:58.0 +0200
@@ -19,7 +19,7 @@
 %define soname libarmadillo6
 
 Name:   armadillo
-Version:6.700.3
+Version:6.700.4
 Release:0
 Summary:Fast C++ matrix library with interfaces to LAPACK and ATLAS
 License:MPL-2.0

++ armadillo-6.700.3.tar.gz -> armadillo-6.700.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/armadillo-6.700.3/CMakeLists.txt 
new/armadillo-6.700.4/CMakeLists.txt
--- old/armadillo-6.700.3/CMakeLists.txt2016-04-05 05:20:49.0 
+0200
+++ new/armadillo-6.700.4/CMakeLists.txt2016-04-11 04:46:29.0 
+0200
@@ -16,7 +16,7 @@
 
 set(ARMA_MAJOR 6)
 set(ARMA_MINOR 700)
-set(ARMA_PATCH 3)
+set(ARMA_PATCH 4)
 set(ARMADILLO_VERSION ${ARMA_MAJOR}.${ARMA_MINOR}.${ARMA_PATCH})
 
 message(STATUS "Configuring Armadillo ${ARMADILLO_VERSION}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/armadillo-6.700.3/README.txt 
new/armadillo-6.700.4/README.txt
--- old/armadillo-6.700.3/README.txt2016-04-05 05:20:49.0 +0200
+++ new/armadillo-6.700.4/README.txt2016-04-12 05:35:39.0 +0200
@@ -9,7 +9,7 @@
  1: Introduction
  2: Citation Details
 
- 3: Licenses
+ 3: Open Source and Commercial Licenses
  4: Technical Support
 
  5: Requirements
@@ -43,15 +43,16 @@
 The syntax (API) is deliberately similar to Matlab.
 
 The library provides efficient classes for vectors, matrices and cubes,
-as well as 150+ associated functions (eg. contiguous and non-contiguous
+as well as 200+ associated functions (eg. contiguous and non-contiguous
 submatrix views).  Various matrix decompositions are provided through
 integration with LAPACK, or one of its high performance drop-in replacements
 (eg. OpenBLAS, Intel MKL, AMD ACML, Apple Accelerate framework, etc).
 
-An automatic expression evaluator (via C++ template meta-programming)
-combines several operations (at compile time) to increase efficiency.
+A sophisticated expression evaluator (via C++ template meta-programming)
+automatically combines several operations (at compile time) to increase speed
+and efficiency.
 
-The library can be used for machine learning, pattern recognition,
+The library can be used for machine learning, pattern recognition, computer 
vision,
 signal processing, bioinformatics, statistics, econometrics, etc.
 
 Armadillo is primarily developed at Data61 / NICTA (Australia).
@@ -77,24 +78,46 @@
 
 
 
-3: Licenses
-===
+3: Open Source and Commercial Licenses
+==
 
 Armadillo is available under 2 licenses:
 
-- Open source, using the Mozilla Public License (MPL) 2.0.
-  See the "LICENSE.txt" file for details.
+(a) Open source, under the restrictions of the Mozilla Public License (MPL) 
2.0.
+The file "LICENSE.txt" contains a copy of the MPL.
+
+(b) Commercial license (not open source), available for purchase.
+Please contact Conrad Sanderson for more information:
+http://conradsanderson.id.au
+
+
+The main restrictions of the open source license (MPL) are:
+  
+  - any derived works, modifications and extensions of Armadillo
+are automatically licensed under the MPL
+  
+  - if you distribute any part of Armadillo in executable form
+(in software or hardware products), then you must also provide
+the source code of Armadillo and all derived works, modifications
+or extensions
+
+
+The commercial license has the following terms:
+  
+  - valid in perpetuity and royalty-free
+  
+  - Armadillo and derived works can be integrated into products
+(software & hardware), without releasing the source code
   
-- Non-open source (commercial) license, available for purchase.
-  Please contact Conrad Sanderson for more infor

commit golang-packaging for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package golang-packaging for 
openSUSE:Factory checked in at 2016-04-22 16:25:36

Comparing /work/SRC/openSUSE:Factory/golang-packaging (Old)
 and  /work/SRC/openSUSE:Factory/.golang-packaging.new (New)


Package is "golang-packaging"

Changes:

--- /work/SRC/openSUSE:Factory/golang-packaging/golang-packaging.changes
2016-04-06 11:52:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.golang-packaging.new/golang-packaging.changes   
2016-04-22 16:25:42.0 +0200
@@ -1,0 +2,22 @@
+Sun Apr 17 14:38:04 UTC 2016 - mplus...@suse.com
+
+- Update service
+  * use xz for compression
+  * change from disabled to localonly
+- Update spec file to actually use tarball generated by _service
+- Drop useless _servicedata
+
+---
+Fri Apr 15 09:02:35 UTC 2016 - tboer...@suse.com
+
+- Switched to service based package updates
+- Update to version 14.9.0:
+  * do not hardcode go version
+  * fix encoding problem in rpmsysinfo.rb
+  * [SLE11]some commands need time to finish, immediate close will get wrong 
status, so use timeout 30s
+  * [SLE]ditch named group in regexp in golang.req, the oniguruma in ruby 
1.8.7 doesn't support named group
+  * fix a typo in cli.rb
+  * increate timeout to 300s or go install can't finish
+  * Remove runtime dependency for Go API
+
+---

Old:

  golang-packaging-14.8.1.tar.gz

New:

  _service
  golang-packaging-14.9.0.tar.xz



Other differences:
--
++ golang-packaging.spec ++
--- /var/tmp/diff_new_pack.pVyW33/_old  2016-04-22 16:25:43.0 +0200
+++ /var/tmp/diff_new_pack.pVyW33/_new  2016-04-22 16:25:43.0 +0200
@@ -17,15 +17,16 @@
 
 
 Name:   golang-packaging
-Version:14.8.1
+Version:14.9.0
 Release:0
 Summary:A toolchain to help packaging golang
 License:GPL-3.0
 Group:  Development/Languages/Golang
 Url:https://github.com/marguerite/%{name}
-Source: 
https://github.com/marguerite/%{name}/archive/v%{version}/%{name}-%{version}.tar.gz
+Source: %{name}-%{version}.tar.xz
 BuildRequires:  rpm
 BuildRequires:  ruby
+BuildRequires:  xz
 Requires:   go
 Requires:   ruby
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ _service ++

  
https://github.com/openSUSE/golang-packaging
git
golang-packaging
.git
14.9.0
v14.9.0
enable
  
  
*.tar
xz
  
  
  




commit xfce4-panel-plugin-whiskermenu for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package xfce4-panel-plugin-whiskermenu for 
openSUSE:Factory checked in at 2016-04-22 16:25:47

Comparing /work/SRC/openSUSE:Factory/xfce4-panel-plugin-whiskermenu (Old)
 and  /work/SRC/openSUSE:Factory/.xfce4-panel-plugin-whiskermenu.new (New)


Package is "xfce4-panel-plugin-whiskermenu"

Changes:

--- 
/work/SRC/openSUSE:Factory/xfce4-panel-plugin-whiskermenu/xfce4-panel-plugin-whiskermenu.changes
2016-01-08 15:23:54.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.xfce4-panel-plugin-whiskermenu.new/xfce4-panel-plugin-whiskermenu.changes
   2016-04-22 16:25:55.0 +0200
@@ -1,0 +2,9 @@
+Sun Apr 17 09:17:41 UTC 2016 - lazy.k...@opensuse.org
+
+- Update to 1.5.3.
+  * Fix stuck button highlight.
+  * Fix losing categories.
+  * Fix warning about infinite recursion.
+  * Translation updates: Basque, Dutch, Hebrew, Icelandic.
+
+---

Old:

  v1.5.2.tar.gz

New:

  xfce4-panel-plugin-whiskermenu-1.5.3.tar.gz



Other differences:
--
++ xfce4-panel-plugin-whiskermenu.spec ++
--- /var/tmp/diff_new_pack.jVIMXi/_old  2016-04-22 16:25:56.0 +0200
+++ /var/tmp/diff_new_pack.jVIMXi/_new  2016-04-22 16:25:56.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   xfce4-panel-plugin-whiskermenu
-Version:1.5.2
+Version:1.5.3
 Release:0
 Summary:Alternate Xfce Menu
 License:GPL-2.0+
 Group:  System/GUI/XFCE
 Url:http://gottcode.org/xfce4-whiskermenu-plugin/
-Source0:
https://github.com/gottcode/xfce4-whiskermenu-plugin/archive/v%{version}.tar.gz
+Source0:
https://github.com/gottcode/xfce4-whiskermenu-plugin/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  pkgconfig(exo-1)




commit yast2-drbd for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package yast2-drbd for openSUSE:Factory 
checked in at 2016-04-22 16:25:54

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


Package is "yast2-drbd"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-drbd/yast2-drbd.changes2016-03-17 
16:49:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.yast2-drbd.new/yast2-drbd.changes   
2016-04-22 16:26:02.0 +0200
@@ -1,0 +2,20 @@
+Thu Apr 21 09:05:07 UTC 2016 - nw...@suse.com
+
+- bsc#976562, fix error when using hyphen in node name.
+
+---
+Fri Mar 25 02:57:08 UTC 2016 - nw...@suse.com
+
+- fate#320398, add require to drbd9.0 for fate#315096.
+
+---
+Fri Mar 25 02:36:28 UTC 2016 - nw...@suse.com
+
+- fate#320398, support drbd9 to extend to multiple node
+- Syntax change: support read/write automatically node-id.
+- Syntax change: support connection-mesh and net section in it.
+- Syntax compatible: won't pop up error for connection section.
+ not support write connection section.
+- Version 3.1.21
+
+---

Old:

  yast2-drbd-3.1.20.tar.bz2

New:

  yast2-drbd-3.1.21.tar.bz2



Other differences:
--
++ yast2-drbd.spec ++
--- /var/tmp/diff_new_pack.HJuUm3/_old  2016-04-22 16:26:03.0 +0200
+++ /var/tmp/diff_new_pack.HJuUm3/_new  2016-04-22 16:26:03.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-drbd
-Version:3.1.20
+Version:3.1.21
 Release:0
 
 %define _fwdefdir /etc/sysconfig/SuSEfirewall2.d/services
@@ -32,6 +32,7 @@
 BuildRequires:  yast2-devtools
 BuildRequires:  yast2-devtools >= 3.1.10
 BuildRequires:  yast2-testsuite
+Requires:   drbd >= 9.0
 Requires:   yast2
 BuildArch:  noarch
 Requires:   yast2-ruby-bindings >= 1.0.0

++ yast2-drbd-3.1.20.tar.bz2 -> yast2-drbd-3.1.21.tar.bz2 ++
 2449 lines of diff (skipped)




commit ghc-GLUT for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-GLUT for openSUSE:Factory 
checked in at 2016-04-22 16:24:59

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


Package is "ghc-GLUT"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-GLUT/ghc-GLUT.changes2016-01-22 
01:08:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-GLUT.new/ghc-GLUT.changes   2016-04-22 
16:25:21.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 12 09:41:53 UTC 2016 - mimi...@gmail.com
+
+- update to 2.7.0.7
+* remove redudant constraints
+
+---

Old:

  GLUT-2.7.0.6.tar.gz

New:

  GLUT-2.7.0.7.tar.gz



Other differences:
--
++ ghc-GLUT.spec ++
--- /var/tmp/diff_new_pack.ZE1phJ/_old  2016-04-22 16:25:22.0 +0200
+++ /var/tmp/diff_new_pack.ZE1phJ/_new  2016-04-22 16:25:22.0 +0200
@@ -18,7 +18,7 @@
 
 %global pkg_name GLUT
 Name:   ghc-GLUT
-Version:2.7.0.6
+Version:2.7.0.7
 Release:0
 Summary:A binding for the OpenGL Utility Toolkit
 License:BSD-3-Clause

++ GLUT-2.7.0.6.tar.gz -> GLUT-2.7.0.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/GLUT-2.7.0.6/CHANGELOG.md 
new/GLUT-2.7.0.7/CHANGELOG.md
--- old/GLUT-2.7.0.6/CHANGELOG.md   2016-01-10 20:03:01.0 +0100
+++ new/GLUT-2.7.0.7/CHANGELOG.md   2016-04-11 09:26:25.0 +0200
@@ -1,3 +1,7 @@
+2.7.0.7
+---
+* Removed redundant constraints.
+
 2.7.0.6
 
 * Relaxed upper version bound for `OpenGLRaw`.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/GLUT-2.7.0.6/GLUT.cabal new/GLUT-2.7.0.7/GLUT.cabal
--- old/GLUT-2.7.0.6/GLUT.cabal 2016-01-10 20:03:01.0 +0100
+++ new/GLUT-2.7.0.7/GLUT.cabal 2016-04-11 09:26:30.0 +0200
@@ -1,5 +1,5 @@
 name: GLUT
-version: 2.7.0.6
+version: 2.7.0.7
 synopsis: A binding for the OpenGL Utility Toolkit
 description:
   A Haskell binding for the OpenGL Utility Toolkit, a window system independent
@@ -15,7 +15,16 @@
 maintainer: Sven Panne , Jason Dagit 
 category: Graphics
 build-type: Simple
-cabal-version: >=1.10
+tested-with:
+  GHC == 7.0.4
+  GHC == 7.2.2
+  GHC == 7.4.2
+  GHC == 7.6.3
+  GHC == 7.8.4
+  GHC == 7.10.3
+  GHC == 8.0.1
+  GHC == 8.1
+cabal-version: >= 1.10
 extra-source-files:
CHANGELOG.md
README.md
@@ -83,6 +92,8 @@
   default-language: Haskell2010
   other-extensions: CPP
   ghc-options: -Wall
+  if impl(ghc > 8)
+ghc-options: -Wcompat
   if os(windows) && flag(UseNativeWindowsLibraries)
 if arch(i386)
   cpp-options: "-DCALLCONV=stdcall"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/GLUT-2.7.0.6/src/Graphics/UI/GLUT/Fonts.hs 
new/GLUT-2.7.0.7/src/Graphics/UI/GLUT/Fonts.hs
--- old/GLUT-2.7.0.6/src/Graphics/UI/GLUT/Fonts.hs  2016-01-10 
20:03:00.0 +0100
+++ new/GLUT-2.7.0.7/src/Graphics/UI/GLUT/Fonts.hs  2016-04-11 
09:25:29.0 +0200
@@ -79,7 +79,7 @@
i <- marshalBitmapFont f
mapM_ (\c -> withChar c (glutBitmapCharacter i)) s
 
-withChar :: MonadIO m => Char -> (CInt -> m a) -> m a
+withChar :: Char -> (CInt -> m a) -> m a
 withChar c f = f . fromIntegral . ord $ c
 
 





commit ghc-shakespeare for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-shakespeare for openSUSE:Factory 
checked in at 2016-04-22 16:25:13

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


Package is "ghc-shakespeare"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-shakespeare/ghc-shakespeare.changes  
2016-03-31 13:02:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-shakespeare.new/ghc-shakespeare.changes 
2016-04-22 16:25:29.0 +0200
@@ -1,0 +2,6 @@
+Sat Apr 16 07:38:54 UTC 2016 - mimi...@gmail.com
+
+- update to 2.0.8.1 
+* Make it work with GHC-8.0
+
+---

Old:

  shakespeare-2.0.8.tar.gz

New:

  shakespeare-2.0.8.1.tar.gz



Other differences:
--
++ ghc-shakespeare.spec ++
--- /var/tmp/diff_new_pack.YR4GEK/_old  2016-04-22 16:25:29.0 +0200
+++ /var/tmp/diff_new_pack.YR4GEK/_new  2016-04-22 16:25:29.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-shakespeare
-Version:2.0.8
+Version:2.0.8.1
 Release:0
 Summary:A toolkit for making compile-time interpolated templates
 Group:  System/Libraries

++ shakespeare-2.0.8.tar.gz -> shakespeare-2.0.8.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shakespeare-2.0.8/ChangeLog.md 
new/shakespeare-2.0.8.1/ChangeLog.md
--- old/shakespeare-2.0.8/ChangeLog.md  2016-03-27 13:00:15.0 +0200
+++ new/shakespeare-2.0.8.1/ChangeLog.md2016-04-15 11:13:43.0 
+0200
@@ -1,3 +1,7 @@
+### 2.0.8.1
+
+* Make it work with ghc-8.0 
[#181](https://github.com/yesodweb/shakespeare/pull/181)
+
 ### 2.0.8
 
 * Improve docs in Text.Hamlet 
[#180](https://github.com/yesodweb/shakespeare/pull/180)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shakespeare-2.0.8/Text/Hamlet.hs 
new/shakespeare-2.0.8.1/Text/Hamlet.hs
--- old/shakespeare-2.0.8/Text/Hamlet.hs2016-03-27 13:00:15.0 
+0200
+++ new/shakespeare-2.0.8.1/Text/Hamlet.hs  2016-04-15 11:13:43.0 
+0200
@@ -181,8 +181,13 @@
   -- use 'lookupValueName' instead of just using 'mkName' so we reify the
   -- data constructor and not the type constructor if their names match.
   Just conName<- lookupValueName $ conToStr conStr
+#if MIN_VERSION_template_haskell(2,11,0)
+  DataConI _ _ typeName <- reify conName
+  TyConI (DataD _ _ _ _ cons _) <- reify typeName
+#else
   DataConI _ _ typeName _ <- reify conName
   TyConI (DataD _ _ _ cons _) <- reify typeName
+#endif
   [fields] <- return [fields | RecC name fields <- cons, name == conName]
   return [fieldName | (fieldName, _, _) <- fields]
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/shakespeare-2.0.8/Text/MkSizeType.hs 
new/shakespeare-2.0.8.1/Text/MkSizeType.hs
--- old/shakespeare-2.0.8/Text/MkSizeType.hs2016-03-27 13:00:15.0 
+0200
+++ new/shakespeare-2.0.8.1/Text/MkSizeType.hs  2016-04-15 11:13:43.0 
+0200
@@ -1,21 +1,33 @@
+{-# LANGUAGE CPP #-}
+
 -- | Internal functions to generate CSS size wrapper types.
 module Text.MkSizeType (mkSizeType) where
 
+#if MIN_VERSION_template_haskell(2,11,0)
+import Language.Haskell.TH (conT)
+#endif
 import Language.Haskell.TH.Syntax
 import Data.Text.Lazy.Builder (fromLazyText)
 import qualified Data.Text.Lazy as TL
 
 mkSizeType :: String -> String -> Q [Dec]
-mkSizeType name' unit = return [ dataDec name
-   , showInstanceDec name unit
-   , numInstanceDec name
-   , fractionalInstanceDec name
-   , toCssInstanceDec name ]
+mkSizeType name' unit = do
+ddn <- dataDec name
+return  [ ddn
+, showInstanceDec name unit
+, numInstanceDec name
+, fractionalInstanceDec name
+, toCssInstanceDec name ]
   where name = mkName $ name'
 
-dataDec :: Name -> Dec
-dataDec name = DataD [] name [] [constructor] derives
-  where constructor = NormalC name [(NotStrict, ConT $ mkName "Rational")]
+dataDec :: Name -> Q Dec
+dataDec name =
+#if MIN_VERSION_template_haskell(2,11,0)
+ DataD [] name [] Nothing [constructor] <$> mapM conT derives
+#else
+return $ DataD [] name [] [constructor] derives
+#endif
+  where constructor = NormalC name [(notStrict, ConT $ mkName "Rational")]
 derives = map mkName ["Eq", "Ord"]
 
 showInstanceDec :: Name -> String -> Dec
@@ -72,3 +84,11 @@
 body = NormalB $ AppE (ConE name) (AppE (VarE fun) (VarE x))
 fun = mkNam

commit bundle-lang-common for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package bundle-lang-common for 
openSUSE:Factory checked in at 2016-04-22 16:24:41

Comparing /work/SRC/openSUSE:Factory/bundle-lang-common (Old)
 and  /work/SRC/openSUSE:Factory/.bundle-lang-common.new (New)


Package is "bundle-lang-common"

Changes:

--- /work/SRC/openSUSE:Factory/bundle-lang-common/bundle-lang-common.changes
2016-04-07 18:08:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.bundle-lang-common.new/bundle-lang-common.changes   
2016-04-22 16:24:41.0 +0200
@@ -1,0 +2,7 @@
+Thu Apr  7 17:33:08 UTC 2016 - dims...@opensuse.org
+
+- Update bundle.sh: do not run in an endless loop when encountering
+  an inexisting package. This can happen when a -lang package
+  disappears from the distribution.
+
+---
bundle-lang-kde.changes: same change
bundle-lang-other.changes: same change



Other differences:
--
bundle-lang-gnome.spec: same change
bundle-lang-kde.spec: same change
bundle-lang-other.spec: same change
++ bundle.sh ++
--- /var/tmp/diff_new_pack.jc76AR/_old  2016-04-22 16:24:43.0 +0200
+++ /var/tmp/diff_new_pack.jc76AR/_new  2016-04-22 16:24:43.0 +0200
@@ -33,6 +33,11 @@
  rpm -q --qf 
"[%{RPMTAG_FILEFLAGS:fflags}^%{FILEMODES:perms}^%{FILELANGS}^%{FILENAMES}\n]" 
$package | sed '/share\/man/d' | \
   while read flag perm lang file; do
 
+if test -z "$file"; then
+   echo "WARNING: package %{package} does not exist - skipping"
+   break
+fi
+
 if test -z "$lang"; then
lang="en"
 fi




commit ghc-OpenGL for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-OpenGL for openSUSE:Factory 
checked in at 2016-04-22 16:25:09

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


Package is "ghc-OpenGL"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-OpenGL/ghc-OpenGL.changes2016-01-22 
01:08:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-OpenGL.new/ghc-OpenGL.changes   
2016-04-22 16:25:27.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 12 10:04:36 UTC 2016 - mimi...@gmail.com
+
+- update to 3.0.0.2
+* Removed redundant constraints.
+
+---

Old:

  OpenGL-3.0.0.1.tar.gz

New:

  OpenGL-3.0.0.2.tar.gz



Other differences:
--
++ ghc-OpenGL.spec ++
--- /var/tmp/diff_new_pack.GI9xLk/_old  2016-04-22 16:25:27.0 +0200
+++ /var/tmp/diff_new_pack.GI9xLk/_new  2016-04-22 16:25:27.0 +0200
@@ -19,7 +19,7 @@
 %global pkg_name OpenGL
 
 Name:   ghc-OpenGL
-Version:3.0.0.1
+Version:3.0.0.2
 Release:0
 Summary:A binding for the OpenGL graphics system
 License:BSD-3-Clause

++ OpenGL-3.0.0.1.tar.gz -> OpenGL-3.0.0.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/OpenGL-3.0.0.1/CHANGELOG.md 
new/OpenGL-3.0.0.2/CHANGELOG.md
--- old/OpenGL-3.0.0.1/CHANGELOG.md 2016-01-10 19:50:54.0 +0100
+++ new/OpenGL-3.0.0.2/CHANGELOG.md 2016-04-11 08:30:08.0 +0200
@@ -1,3 +1,7 @@
+3.0.0.2
+---
+* Removed redundant constraints.
+
 3.0.0.1
 ---
 * Relaxed upper version bound for `OpenGLRaw`.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/OpenGL-3.0.0.1/OpenGL.cabal 
new/OpenGL-3.0.0.2/OpenGL.cabal
--- old/OpenGL-3.0.0.1/OpenGL.cabal 2016-01-10 19:50:54.0 +0100
+++ new/OpenGL-3.0.0.2/OpenGL.cabal 2016-04-11 08:30:36.0 +0200
@@ -1,5 +1,5 @@
 name: OpenGL
-version: 3.0.0.1
+version: 3.0.0.2
 synopsis: A binding for the OpenGL graphics system
 description:
   A Haskell binding for the OpenGL graphics system (GL, version 4.5) and its
@@ -20,6 +20,11 @@
 maintainer: Sven Panne , Jason Dagit 
 category: Graphics
 build-type: Simple
+tested-with:
+  GHC == 7.8.4
+  GHC == 7.10.3
+  GHC == 8.0.1
+  GHC == 8.1
 cabal-version: >= 1.10
 extra-source-files:
CHANGELOG.md
@@ -147,6 +152,8 @@
 Graphics.Rendering.OpenGL.GLU.ErrorsInternal
   hs-source-dirs: src
   ghc-options: -Wall
+  if impl(ghc > 8)
+ghc-options: -Wcompat
   build-depends:
 base >= 3   && < 5,
 bytestring   >= 0.9 && < 0.11,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/OpenGL-3.0.0.1/src/Graphics/Rendering/OpenGL/GL/Evaluators.hs 
new/OpenGL-3.0.0.2/src/Graphics/Rendering/OpenGL/GL/Evaluators.hs
--- old/OpenGL-3.0.0.1/src/Graphics/Rendering/OpenGL/GL/Evaluators.hs   
2016-01-10 19:50:54.0 +0100
+++ new/OpenGL-3.0.0.2/src/Graphics/Rendering/OpenGL/GL/Evaluators.hs   
2016-04-11 08:55:18.0 +0200
@@ -74,11 +74,11 @@
MapDescriptor (d, d) Stride Order NumComponents
deriving ( Eq, Ord, Show )
 
-totalComponents1 :: Domain d => MapDescriptor d -> Int
+totalComponents1 :: MapDescriptor d -> Int
 totalComponents1 (MapDescriptor _ stride order numComp) =
fromIntegral stride * (fromIntegral order - 1) + fromIntegral numComp
 
-totalComponents2 :: Domain d => MapDescriptor d -> MapDescriptor d -> Int
+totalComponents2 :: MapDescriptor d -> MapDescriptor d -> Int
 totalComponents2 uDescriptor vDescriptor@(MapDescriptor _ _ _ numComp) =
totalComponents1 uDescriptor + totalComponents1 vDescriptor - fromIntegral 
numComp
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/OpenGL-3.0.0.1/src/Graphics/Rendering/OpenGL/GL/QueryUtils/PName.hs 
new/OpenGL-3.0.0.2/src/Graphics/Rendering/OpenGL/GL/QueryUtils/PName.hs
--- old/OpenGL-3.0.0.1/src/Graphics/Rendering/OpenGL/GL/QueryUtils/PName.hs 
2016-01-10 19:50:54.0 +0100
+++ new/OpenGL-3.0.0.2/src/Graphics/Rendering/OpenGL/GL/QueryUtils/PName.hs 
2016-04-11 08:25:47.0 +0200
@@ -113,7 +113,7 @@
 getClampd1 = get1 getDoublev
 
 -- | Helper function for the get*1 functions.
-get1 :: (Storable b, Storable c, GetPName p)
+get1 :: (Storable b, Storable c)
 => (p -> Ptr c -> IO ())
 -> (b -> a) -- ^ Conversion from the casted value to the return value
 -> p -> IO a
@@ -138,7 +138,7 @@
 getInteger641i = get1i getInteger64iv
 
 -- Indexed helper
-get1i :: (Storable b, Storable c, GetPName p)
+get1i :: (Storable b, Storable c)
 => (p -> GLuint -> Ptr c -> IO

commit extreme-tuxracer for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package extreme-tuxracer for 
openSUSE:Factory checked in at 2016-04-22 16:24:43

Comparing /work/SRC/openSUSE:Factory/extreme-tuxracer (Old)
 and  /work/SRC/openSUSE:Factory/.extreme-tuxracer.new (New)


Package is "extreme-tuxracer"

Changes:

--- /work/SRC/openSUSE:Factory/extreme-tuxracer/extreme-tuxracer.changes
2016-02-18 12:35:51.0 +0100
+++ /work/SRC/openSUSE:Factory/.extreme-tuxracer.new/extreme-tuxracer.changes   
2016-04-22 16:24:46.0 +0200
@@ -1,0 +2,7 @@
+Fri Apr 15 07:50:53 UTC 2016 - nemy...@opensuse.org
+
+- Update to 0.7.2, please see
+
+  /usr/share/doc/packages/extreme-tuxracer/NEWS
+
+---

Old:

  etr-0.7.1.tar.xz

New:

  etr-0.7.2.tar.xz



Other differences:
--
++ extreme-tuxracer.spec ++
--- /var/tmp/diff_new_pack.kly4HL/_old  2016-04-22 16:24:48.0 +0200
+++ /var/tmp/diff_new_pack.kly4HL/_new  2016-04-22 16:24:48.0 +0200
@@ -19,7 +19,7 @@
 %define oname   etr
 
 Name:   extreme-tuxracer
-Version:0.7.1
+Version:0.7.2
 Release:0
 Summary:Open source racing game featuring Tux the Linux Penguin
 License:GPL-2.0+

++ etr-0.7.1.tar.xz -> etr-0.7.2.tar.xz ++
/work/SRC/openSUSE:Factory/extreme-tuxracer/etr-0.7.1.tar.xz 
/work/SRC/openSUSE:Factory/.extreme-tuxracer.new/etr-0.7.2.tar.xz differ: char 
27, line 1




commit ghc-cmark for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-cmark for openSUSE:Factory 
checked in at 2016-04-22 16:24:50

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


Package is "ghc-cmark"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-cmark/ghc-cmark.changes  2016-03-31 
13:02:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-cmark.new/ghc-cmark.changes 2016-04-22 
16:25:16.0 +0200
@@ -1,0 +2,5 @@
+Fri Apr 15 20:01:43 UTC 2016 - mimi...@gmail.com
+
+- use system libcmark on openSUSE:Tumbleweed 
+
+---



Other differences:
--
++ ghc-cmark.spec ++
--- /var/tmp/diff_new_pack.ujXkKO/_old  2016-04-22 16:25:17.0 +0200
+++ /var/tmp/diff_new_pack.ujXkKO/_new  2016-04-22 16:25:17.0 +0200
@@ -36,6 +36,10 @@
 # Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-text-devel
+%if 0%{?suse_version} >= 1330
+BuildRequires:  pkg-config
+BuildRequires:  pkgconfig(libcmark)
+%endif
 %if %{with tests}
 BuildRequires:  ghc-HUnit-devel
 %endif
@@ -104,6 +108,9 @@
 Requires(post): ghc-compiler = %{ghc_version}
 Requires(postun): ghc-compiler = %{ghc_version}
 Requires:   %{name} = %{version}-%{release}
+%if 0%{?suse_version} >=1330
+Requires:   pkgconfig(libcmark)
+%endif
 
 %description devel
 This package provides the Haskell %{pkg_name} library development files.
@@ -111,6 +118,9 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
+%if 0%{?suse_version} >= 1330
+cabal-tweak-flagpkgconfig   True
+%endif
 
 %build
 %ghc_lib_build




commit ghc-wai for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-wai for openSUSE:Factory checked 
in at 2016-04-22 16:25:15

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-04-03 
23:07:47.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-wai.new/ghc-wai.changes 2016-04-22 
16:25:30.0 +0200
@@ -1,0 +2,6 @@
+Sat Apr 16 07:45:49 UTC 2016 - mimi...@gmail.com
+
+- update to 3.2.1
+* add mapResponseStatus
+
+---

Old:

  wai-3.2.0.1.tar.gz

New:

  wai-3.2.1.tar.gz



Other differences:
--
++ ghc-wai.spec ++
--- /var/tmp/diff_new_pack.GXw03A/_old  2016-04-22 16:25:31.0 +0200
+++ /var/tmp/diff_new_pack.GXw03A/_new  2016-04-22 16:25:31.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-wai
-Version:3.2.0.1
+Version:3.2.1
 Release:0
 Summary:Web Application Interface
 License:MIT

++ wai-3.2.0.1.tar.gz -> wai-3.2.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-3.2.0.1/ChangeLog.md new/wai-3.2.1/ChangeLog.md
--- old/wai-3.2.0.1/ChangeLog.md2016-03-29 08:31:37.0 +0200
+++ new/wai-3.2.1/ChangeLog.md  2016-04-15 10:55:29.0 +0200
@@ -1,3 +1,7 @@
+## 3.2.1
+
+* add mapResponseStatus [#532](https://github.com/yesodweb/wai/pull/532)
+
 ## 3.2.0.1
 
 * Add missing changelog entry
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-3.2.0.1/Network/Wai.hs 
new/wai-3.2.1/Network/Wai.hs
--- old/wai-3.2.0.1/Network/Wai.hs  2016-03-29 08:31:37.0 +0200
+++ new/wai-3.2.1/Network/Wai.hs2016-04-15 10:55:29.0 +0200
@@ -79,6 +79,7 @@
   -- ** Response modifiers
 , responseToStream
 , mapResponseHeaders
+, mapResponseStatus
   -- * Middleware composition
 , ifRequest
 , modifyResponse
@@ -239,6 +240,13 @@
 mapResponseHeaders f (ResponseStream s h b) = ResponseStream s (f h) b
 mapResponseHeaders _ r@(ResponseRaw _ _) = r
 
+-- | Apply the provided function to the response status of the Response.
+mapResponseStatus :: (H.Status -> H.Status) -> Response -> Response
+mapResponseStatus f (ResponseFile s h b1 b2) = ResponseFile (f s) h b1 b2
+mapResponseStatus f (ResponseBuilder s h b) = ResponseBuilder (f s) h b
+mapResponseStatus f (ResponseStream s h b) = ResponseStream (f s) h b
+mapResponseStatus _ r@(ResponseRaw _ _) = r
+
 
 
 -- | The WAI application.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/wai-3.2.0.1/wai.cabal new/wai-3.2.1/wai.cabal
--- old/wai-3.2.0.1/wai.cabal   2016-03-29 08:31:37.0 +0200
+++ new/wai-3.2.1/wai.cabal 2016-04-15 10:55:29.0 +0200
@@ -1,5 +1,5 @@
 Name:wai
-Version: 3.2.0.1
+Version: 3.2.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 chromium for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package chromium for openSUSE:Factory 
checked in at 2016-04-22 16:24:44

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-04-11 
10:26:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.chromium.new/chromium.changes   2016-04-22 
16:24:59.0 +0200
@@ -1,0 +2,19 @@
+Thu Apr 14 07:39:40 UTC 2016 - tittiatc...@gmail.com
+
+- Update to Chromium 50.0.2661.75 (boo#975572)
+  * Security Fixes:
+- CVE-2016-1652: Universal XSS in extension bindings
+- CVE-2016-1653: Out-of-bounds write in V8
+- CVE-2016-1651: Out-of-bounds read in Pdfium JPEG2000 decoding
+- CVE-2016-1654: Uninitialized memory read in media
+- CVE-2016-1655: Use-after-free related to extensions
+- CVE-2016-1656: Android downloaded file path restriction bypass
+- CVE-2016-1657: Address bar spoofing
+- CVE-2016-1658: Potential leak of sensitive information to 
+ malicious extensions
+- CVE-2016-1659: Various fixes from internal audits, fuzzing 
+ and other initiatives 
+- add patch to fix GCC builds with component=shared_library: 
+  
chromium-50.0.2661.75-export_blink_Platform_symbols_in_shared_library_builds.patch
+
+---

Old:

  chromium-49.0.2623.112.tar.xz

New:

  
chromium-50.0.2661.75-export_blink_Platform_symbols_in_shared_library_builds.patch
  chromium-50.0.2661.75.tar.xz



Other differences:
--
++ chromium.spec ++
--- /var/tmp/diff_new_pack.FMk9cC/_old  2016-04-22 16:25:13.0 +0200
+++ /var/tmp/diff_new_pack.FMk9cC/_new  2016-04-22 16:25:13.0 +0200
@@ -18,7 +18,7 @@
 
 %define chromium_no_dlopen 1
 Name:   chromium
-Version:49.0.2623.112
+Version:50.0.2661.75
 Release:0
 Summary:Google's opens source browser project
 License:BSD-3-Clause and LGPL-2.1+
@@ -58,6 +58,7 @@
 Patch12:fix_building_widevinecdm_with_chromium.patch
 # PATCH-FIX-OPENSUSE fix_network_api_crash.patch - Fix crash in network API, 
e.g. when using chromecast extension
 Patch14:fix_network_api_crash.patch
+Patch15:
chromium-50.0.2661.75-export_blink_Platform_symbols_in_shared_library_builds.patch
 # archlinux arm enhancement patches
 Patch100:   arm-webrtc-fix.patch
 Patch101:   chromium-arm-r0.patch
@@ -252,6 +253,7 @@
 %patch11 -p1
 %patch12 -p1
 %patch14
+%patch15 -p1
 
 #Upstream fixes
 


++ 
chromium-50.0.2661.75-export_blink_Platform_symbols_in_shared_library_builds.patch
 ++
commit e9f54102f094afa87dd22bdcbc26a5aec911e882
Author: mostynb 
Date: Mon Mar 07 17:38:39 2016
Upstream: committed

export blink::Platform symbols in shared_library builds

This unbreaks GCC component=shared_library builds, which fail to link
libblink_platform.so due to missing vtable, since CL 1660383002 landed.

BUG=548254

Review URL: https://codereview.chromium.org/1770693002

Cr-Commit-Position: refs/heads/master@{#379577}

[modify] 
https://crrev.com/e9f54102f094afa87dd22bdcbc26a5aec911e882/third_party/WebKit/public/platform/Platform.h

https://bugs.chromium.org/p/chromium/issues/detail?id=548254
https://chromium.googlesource.com/chromium/src.git/+/e9f54102f094afa87dd22bdcbc26a5aec911e882%5E!/

diff --git a/third_party/WebKit/public/platform/Platform.h 
b/third_party/WebKit/public/platform/Platform.h
index 7ae10de..f48574d 100644
--- a/third_party/WebKit/public/platform/Platform.h
+++ b/third_party/WebKit/public/platform/Platform.h
@@ -123,7 +123,7 @@
 struct WebLocalizedString;
 struct WebSize;
 
-class Platform {
+class BLINK_PLATFORM_EXPORT Platform {
 public:
 // HTML5 Database --
 
@@ -133,9 +133,9 @@
 typedef int FileHandle;
 #endif
 
-BLINK_PLATFORM_EXPORT static void initialize(Platform*);
-BLINK_PLATFORM_EXPORT static void shutdown();
-BLINK_PLATFORM_EXPORT static Platform* current();
+static void initialize(Platform*);
+static void shutdown();
+static Platform* current();
 
 // May return null.
 virtual WebCookieJar* cookieJar() { return nullptr; }
@@ -387,7 +387,7 @@
 virtual WebString defaultLocale() { return WebString(); }
 
 // Returns an interface to the main thread. Can be null if blink was 
initialized on a thread without a message loop.
-BLINK_PLATFORM_EXPORT WebThread* mainThread() const;
+WebThread* mainThread() const;
 
 // Returns an interface to the compositor thread. This can be null if the
 // renderer was created with threaded rendering

commit numix-gtk-theme for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package numix-gtk-theme for openSUSE:Factory 
checked in at 2016-04-22 16:24:48

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


Package is "numix-gtk-theme"

Changes:

--- /work/SRC/openSUSE:Factory/numix-gtk-theme/numix-gtk-theme.changes  
2016-04-12 19:38:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.numix-gtk-theme.new/numix-gtk-theme.changes 
2016-04-22 16:25:14.0 +0200
@@ -1,0 +2,5 @@
+Sun Apr 17 06:01:14 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 2.5.1+git20160414.
+
+---

Old:

  numix-gtk-theme-2.5.1+git20160410.tar.gz

New:

  numix-gtk-theme-2.5.1+git20160414.tar.gz



Other differences:
--
++ numix-gtk-theme.spec ++
--- /var/tmp/diff_new_pack.W6uXEF/_old  2016-04-22 16:25:15.0 +0200
+++ /var/tmp/diff_new_pack.W6uXEF/_new  2016-04-22 16:25:15.0 +0200
@@ -19,7 +19,7 @@
 %define _theme  Numix
 %define _name   numix
 Name:   numix-gtk-theme
-Version:2.5.1+git20160410
+Version:2.5.1+git20160414
 Release:0
 Summary:Numix GTK+ theme for MATE, GNOME, and Xfce
 License:GPL-3.0+

++ numix-gtk-theme-2.5.1+git20160410.tar.gz -> 
numix-gtk-theme-2.5.1+git20160414.tar.gz ++
 1668 lines of diff (skipped)




commit perl-SQL-Statement for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-SQL-Statement for 
openSUSE:Factory checked in at 2016-04-22 16:24:22

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


Package is "perl-SQL-Statement"

Changes:

--- /work/SRC/openSUSE:Factory/perl-SQL-Statement/perl-SQL-Statement.changes
2016-04-12 19:35:10.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-SQL-Statement.new/perl-SQL-Statement.changes   
2016-04-22 16:24:26.0 +0200
@@ -1,0 +2,13 @@
+Tue Apr 12 14:08:38 UTC 2016 - co...@suse.com
+
+- updated to 1.410
+   see /usr/share/doc/packages/perl-SQL-Statement/Changes
+
+  1.410 2016-04-11
+  [Bug fixes]
+  * Fix RT#113625 - Unnecessary x-bits (Kent Fredric)
+  
+  [Documentation]
+  * pod2markdown README.md from lib/SQL/Statement.pm
+
+---

Old:

  SQL-Statement-1.409.tar.gz

New:

  SQL-Statement-1.410.tar.gz



Other differences:
--
++ perl-SQL-Statement.spec ++
--- /var/tmp/diff_new_pack.iBzCzo/_old  2016-04-22 16:24:26.0 +0200
+++ /var/tmp/diff_new_pack.iBzCzo/_new  2016-04-22 16:24:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-SQL-Statement
-Version:1.409
+Version:1.410
 Release:0
 %define cpan_name SQL-Statement
 Summary:SQL parsing and processing engine

++ SQL-Statement-1.409.tar.gz -> SQL-Statement-1.410.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQL-Statement-1.409/Changes 
new/SQL-Statement-1.410/Changes
--- old/SQL-Statement-1.409/Changes 2016-04-06 15:33:01.0 +0200
+++ new/SQL-Statement-1.410/Changes 2016-04-11 14:50:15.0 +0200
@@ -1,5 +1,13 @@
 Changes log for Perl extension SQL::Statement
 
+1.410 2016-04-11
+[Bug fixes]
+* Fix RT#113625 - Unnecessary x-bits (Kent Fredric)
+
+[Documentation]
+* pod2markdown README.md from lib/SQL/Statement.pm
+
+
 1.409 2016-04-06
 * Release 1.408_001 without further changes as 1.409
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQL-Statement-1.409/META.json 
new/SQL-Statement-1.410/META.json
--- old/SQL-Statement-1.409/META.json   2016-04-06 15:36:11.0 +0200
+++ new/SQL-Statement-1.410/META.json   2016-04-11 15:06:22.0 +0200
@@ -97,6 +97,6 @@
   "x_IRC" : "irc://irc.perl.org/#dbi",
   "x_MailingList" : "mailto:dbi-...@perl.org'"
},
-   "version" : "1.409",
+   "version" : "1.410",
"x_serialization_backend" : "JSON::PP version 2.27300"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQL-Statement-1.409/META.yml 
new/SQL-Statement-1.410/META.yml
--- old/SQL-Statement-1.409/META.yml2016-04-06 15:36:11.0 +0200
+++ new/SQL-Statement-1.410/META.yml2016-04-11 15:06:22.0 +0200
@@ -46,5 +46,5 @@
   homepage: https://metacpan.org/release/SQL-Statement
   license: http://dev.perl.org/licenses/
   repository: https://github.com:perl5-utils/SQL-Statement.git
-version: '1.409'
+version: '1.410'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/SQL-Statement-1.409/README.md 
new/SQL-Statement-1.410/README.md
--- old/SQL-Statement-1.409/README.md   2013-04-20 10:51:09.0 +0200
+++ new/SQL-Statement-1.410/README.md   2016-04-11 14:33:40.0 +0200
@@ -1,4 +1,348 @@
-SQL-Statement
-=
+# NAME
 
-SQL parsing and processing engine
\ No newline at end of file
+SQL::Statement - SQL parsing and processing engine
+
+# SYNOPSIS
+
+# ... depends on what you want to do, see below
+
+# DESCRIPTION
+
+The SQL::Statement module implements a pure Perl SQL parsing and execution
+engine. While it by no means implements full ANSI standard, it does support
+many features including column and table aliases, built-in and user-defined
+functions, implicit and explicit joins, complex nested search conditions,
+and other features.
+
+SQL::Statement is a small embeddable Database Management System
+(DBMS). This means that it provides all of the services of a simple
+DBMS except that instead of a persistent storage mechanism, it has two
+things: 1) an in-memory storage mechanism that allows you to prepare,
+execute, and fetch from SQL statements using temporary tables and 2) a
+set of software sockets where any author can plug in any storage
+mechanism.
+
+There are three main uses for SQL::Statement. One or another (hopefully not
+all) may be irrelevant for your needs: 1) to access and manipulat

commit armagetron for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package armagetron for openSUSE:Factory 
checked in at 2016-04-22 16:24:39

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


Package is "armagetron"

Changes:

--- /work/SRC/openSUSE:Factory/armagetron/armagetron.changes2015-03-30 
19:34:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.armagetron.new/armagetron.changes   
2016-04-22 16:24:40.0 +0200
@@ -1,0 +2,5 @@
+Wed Apr  6 06:52:47 UTC 2016 - bwiedem...@suse.com
+
+- Add reproducible.patch to fix build-compare
+
+---

New:

  reproducible.patch



Other differences:
--
++ armagetron.spec ++
--- /var/tmp/diff_new_pack.v0JCRv/_old  2016-04-22 16:24:41.0 +0200
+++ /var/tmp/diff_new_pack.v0JCRv/_new  2016-04-22 16:24:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package armagetron
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,6 +30,8 @@
 Url:http://armagetronad.sourceforge.net
 Source: 
http://sourceforge.net/projects/armagetronad/files/stable/%{version}/armagetronad-%{version}.src.tar.bz2
 Source1:armagetron_add.tar.gz
+# PATCH-FIX-OPENSUSE bmwiedemann -- fix build-compare
+Patch0: reproducible.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -44,6 +46,7 @@
 
 %prep
 %setup -q -a 1 -n armagetronad-%version
+%patch0 -p1
 
 %build
 autoreconf -fi

++ reproducible.patch ++
Index: armagetronad-0.2.8.3.3/src/doc/html.m4.in
===
--- armagetronad-0.2.8.3.3.orig/src/doc/html.m4.in
+++ armagetronad-0.2.8.3.3/src/doc/html.m4.in
@@ -6,7 +6,7 @@ define(HEADSTART,dnl
 

 changequote([,])dnl
-   
+   
 

$1)dnl
Index: armagetronad-0.2.8.3.3/src/doc/net/sig.m4
===
--- armagetronad-0.2.8.3.3.orig/src/doc/net/sig.m4
+++ armagetronad-0.2.8.3.3/src/doc/net/sig.m4
@@ -3,7 +3,7 @@
 Manuel Moos(MAILMANGLE( z-man, users, sf.net )).
 
 
-Last modification: esyscmd(date)
+Last modification: esyscmd(date -r index.html.m4)
 
 
 



commit ghc-binary-tagged for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-binary-tagged for 
openSUSE:Factory checked in at 2016-04-22 16:24:54

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


Package is "ghc-binary-tagged"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-binary-tagged/ghc-binary-tagged.changes  
2016-02-17 12:11:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-binary-tagged.new/ghc-binary-tagged.changes 
2016-04-22 16:25:19.0 +0200
@@ -1,0 +2,8 @@
+Wed Apr 13 09:42:52 UTC 2016 - mimi...@gmail.com
+
+- update to 0.1.4.0
+- add remove_nats.patch
+* Add semigroups types
+* Add Naturals
+
+---

Old:

  binary-tagged-0.1.3.1.tar.gz

New:

  binary-tagged-0.1.4.0.tar.gz
  remove_nats.patch



Other differences:
--
++ ghc-binary-tagged.spec ++
--- /var/tmp/diff_new_pack.OBfZ0r/_old  2016-04-22 16:25:19.0 +0200
+++ /var/tmp/diff_new_pack.OBfZ0r/_new  2016-04-22 16:25:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-binary-tagged
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-binary-tagged
-Version:0.1.3.1
+Version:0.1.4.0
 Release:0
 Summary:Tagged binary serialisation
 Group:  System/Libraries
@@ -28,6 +28,8 @@
 License:BSD-3-Clause
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
+# PATCH-FIX-OPENSUSE: remove_nats.patch -- mimi...@gmail.com
+Patch0: remove_nats.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 BuildRequires:  ghc-Cabal-devel
@@ -42,6 +44,7 @@
 BuildRequires:  ghc-generics-sop-devel
 BuildRequires:  ghc-hashable-devel
 BuildRequires:  ghc-scientific-devel
+BuildRequires:  ghc-semigroups-devel
 BuildRequires:  ghc-tagged-devel
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-time-devel
@@ -74,7 +77,7 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-
+%patch0 -p1
 
 %build
 %ghc_lib_build

++ binary-tagged-0.1.3.1.tar.gz -> binary-tagged-0.1.4.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/binary-tagged-0.1.3.1/CHANGELOG.md 
new/binary-tagged-0.1.4.0/CHANGELOG.md
--- old/binary-tagged-0.1.3.1/CHANGELOG.md  2016-02-10 06:48:26.0 
+0100
+++ new/binary-tagged-0.1.4.0/CHANGELOG.md  2016-04-12 09:16:53.0 
+0200
@@ -1,3 +1,6 @@
+- 0.1.4.0 (2016-04-12)
+- Add semigroups types
+- Add Natural
 - 0.1.3.1 (2016-02-10)
 - Support GHC 8.0
 - 0.1.3.0 (2015-10-24)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/binary-tagged-0.1.3.1/binary-tagged.cabal 
new/binary-tagged-0.1.4.0/binary-tagged.cabal
--- old/binary-tagged-0.1.3.1/binary-tagged.cabal   2016-02-10 
06:49:03.0 +0100
+++ new/binary-tagged-0.1.4.0/binary-tagged.cabal   2016-04-12 
09:16:53.0 +0200
@@ -1,9 +1,9 @@
--- This file has been generated from package.yaml by hpack version 0.8.0.
+-- This file has been generated from package.yaml by hpack version 0.11.2.
 --
 -- see: https://github.com/sol/hpack
 
 name:   binary-tagged
-version:0.1.3.1
+version:0.1.4.0
 synopsis:   Tagged binary serialisation.
 description:Check 
 category:   Web
@@ -38,8 +38,10 @@
 , containers   >=0.5  && <0.6
 , generics-sop >=0.1  && <0.3
 , hashable >=1.2  && <1.3
+, nats >=1&& <1.2
 , scientific   >=0.3  && <0.4
 , SHA  >=1.6  && <1.7
+, semigroups   >=0.16 && <0.19
 , tagged   >=0.7  && <0.9
 , text >=1.2  && <1.3
 , time >=1.4  && <1.7
@@ -64,8 +66,10 @@
 , containers   >=0.5  && <0.6
 , generics-sop >=0.1  && <0.3
 , hashable >=1.2  && <1.3
+, nats >=1&& <1.2
 , scientific   >=0.3  && <0.4
 , SHA  >=1.6  && <1.7
+, semigroups   >=0.16 && <0.19
 , tagged   >=0.7  && <0.9
 , text >=1.2  && <1.3
 , time   

commit perl-Log-Contextual for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-Log-Contextual for 
openSUSE:Factory checked in at 2016-04-22 16:24:26

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


Package is "perl-Log-Contextual"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Log-Contextual/perl-Log-Contextual.changes  
2015-04-15 16:26:02.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Log-Contextual.new/perl-Log-Contextual.changes 
2016-04-22 16:24:28.0 +0200
@@ -1,0 +2,10 @@
+Tue Apr 12 13:45:29 UTC 2016 - co...@suse.com
+
+- updated to 0.007000
+   see /usr/share/doc/packages/perl-Log-Contextual/Changes
+
+  0.007000  2016-04-11 21:35:41-07:00 America/Los_Angeles
+   - Add `has_logger` predicate to avoid setting logger twice
+ (Thanks Wes Malone!  Thwes!)
+
+---

Old:

  Log-Contextual-0.006005.tar.gz

New:

  Log-Contextual-0.007000.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Log-Contextual.spec ++
--- /var/tmp/diff_new_pack.NAmrJW/_old  2016-04-22 16:24:28.0 +0200
+++ /var/tmp/diff_new_pack.NAmrJW/_new  2016-04-22 16:24:28.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Log-Contextual
 #
-# 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,14 +17,15 @@
 
 
 Name:   perl-Log-Contextual
-Version:0.006005
+Version:0.007000
 Release:0
 %define cpan_name Log-Contextual
 Summary:Simple logging interface with a contextual log
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Log-Contextual/
-Source: 
http://www.cpan.org/authors/id/F/FR/FREW/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/F/FR/FREW/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -43,49 +44,47 @@
 
 * * Efficient
 
-  The logging functions take blocks, so if a log level is disabled, the
-  block will not run:
+The logging functions take blocks, so if a log level is disabled, the block
+will not run:
 
# the following won't run if debug is off
log_debug { "the new count in the database is " . $rs->count };
 
-  Similarly, the 'D' prefixed methods only 'Dumper' the input if the level
-  is enabled.
+Similarly, the 'D' prefixed methods only 'Dumper' the input if the level is
+enabled.
 
 * * Handy
 
-  The logging functions return their arguments, so you can stick them in
-  the middle of expressions:
+The logging functions return their arguments, so you can stick them in the
+middle of expressions:
 
for (log_debug { "downloading:\n" . join qq(\n), @_ } @urls) { ... }
 
 * * Generic
 
-  'Log::Contextual' is an interface for all major loggers. If you log
-  through 'Log::Contextual' you will be able to swap underlying loggers
-  later.
+'Log::Contextual' is an interface for all major loggers. If you log through
+'Log::Contextual' you will be able to swap underlying loggers later.
 
 * * Powerful
 
-  'Log::Contextual' chooses which logger to use based on /LOGGER CODEREF.
-  Normally you don't need to know this, but you can take advantage of it
-  when you need to later.
+'Log::Contextual' chooses which logger to use based on user defined
+'CodeRef's. Normally you don't need to know this, but you can take
+advantage of it when you need to later.
 
 * * Scalable
 
-  If you just want to add logging to your basic application, start with the
-  Log::Contextual::SimpleLogger manpage and then as your needs grow you can
-  switch to the Log::Dispatchouli manpage or the Log::Dispatch manpage or
-  the Log::Log4perl manpage or whatever else.
+If you just want to add logging to your basic application, start with
+Log::Contextual::SimpleLogger and then as your needs grow you can switch to
+Log::Dispatchouli or Log::Dispatch or Log::Log4perl or whatever else.
 
 This module is a simple interface to extensible logging. It exists to
 abstract your logging interface so that logging is as painless as possible,
 while still allowing you to switch from one logger to another.
 
-It is bundled with a really basic logger, the Log::Contextual::SimpleLogger
-manpage, but in general you should use a real logger instead. For something
-more serious but not overly complicated, try the Log::Dispatchouli manpage
-(see the /S

commit rubygem-web-console for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package rubygem-web-console for 
openSUSE:Factory checked in at 2016-04-22 16:24:24

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


Package is "rubygem-web-console"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-web-console/rubygem-web-console.changes  
2016-03-17 16:49:24.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.rubygem-web-console.new/rubygem-web-console.changes 
2016-04-22 16:24:27.0 +0200
@@ -1,0 +2,16 @@
+Tue Apr 12 04:33:31 UTC 2016 - co...@suse.com
+
+- updated to version 3.1.1
+ see installed CHANGELOG.markdown
+
+  ## 3.1.1
+  
+  * [#185](https://github.com/rails/web-console/pull/185) Fix `rails console` 
startup ([@gsamokovarov])
+  
+  ## 3.1.0
+  
+  * [#182](https://github.com/rails/web-console/pull/182) Let `#console` live 
in `Kernel` ([@schneems])
+  * [#181](https://github.com/rails/web-console/pull/181) Log internal Web 
Console errors ([@gsamokovarov])
+  * [#180](https://github.com/rails/web-console/pull/180) Autoload Web Console 
constants for faster Rails boot time ([@herminiotorres])
+
+---

Old:

  web-console-3.0.0.gem

New:

  web-console-3.1.1.gem



Other differences:
--
++ rubygem-web-console.spec ++
--- /var/tmp/diff_new_pack.UV1Ceu/_old  2016-04-22 16:24:27.0 +0200
+++ /var/tmp/diff_new_pack.UV1Ceu/_new  2016-04-22 16:24:27.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-web-console
-Version:3.0.0
+Version:3.1.1
 Release:0
 %define mod_name web-console
 %define mod_full_name %{mod_name}-%{version}
@@ -52,7 +52,7 @@
 
 %install
 %gem_install \
-  --doc-files="MIT-LICENSE" \
+  --doc-files="CHANGELOG.markdown MIT-LICENSE README.markdown" \
   -f
 
 %gem_packages

++ web-console-3.0.0.gem -> web-console-3.1.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.markdown new/CHANGELOG.markdown
--- old/CHANGELOG.markdown  2015-12-13 17:58:49.0 +0100
+++ new/CHANGELOG.markdown  2016-01-28 10:20:38.0 +0100
@@ -2,6 +2,16 @@
 
 ## master (unreleased)
 
+## 3.1.1
+
+* [#185](https://github.com/rails/web-console/pull/185) Fix `rails console` 
startup ([@gsamokovarov])
+
+## 3.1.0
+
+* [#182](https://github.com/rails/web-console/pull/182) Let `#console` live in 
`Kernel` ([@schneems])
+* [#181](https://github.com/rails/web-console/pull/181) Log internal Web 
Console errors ([@gsamokovarov])
+* [#180](https://github.com/rails/web-console/pull/180) Autoload Web Console 
constants for faster Rails boot time ([@herminiotorres])
+
 ## 3.0.0
 
 * [#173](https://github.com/rails/web-console/pull/173) Revert "Change 
config.development_only default until 4.2.4 is released" ([@gsamokovarov])
@@ -55,3 +65,5 @@
 [@parterburn]: https://github.com/parterburn
 [@sh19910711]: https://github.com/sh19910711
 [@frenesim]: https://github.com/frenesim
+[@herminiotorres]: https://github.com/herminiotorres
+[@schneems]: https://github.com/schneems
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MIT-LICENSE new/MIT-LICENSE
--- old/MIT-LICENSE 2015-12-13 17:58:49.0 +0100
+++ new/MIT-LICENSE 2016-01-28 10:20:38.0 +0100
@@ -1,4 +1,4 @@
-Copyright 2014 Charlie Somerville, Genadi Samokovarov, Guillermo Iguaran and 
Ryan Dao
+Copyright 2014-2016 Charlie Somerville, Genadi Samokovarov, Guillermo Iguaran 
and Ryan Dao
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.markdown new/README.markdown
--- old/README.markdown 2015-12-13 17:58:49.0 +0100
+++ new/README.markdown 2016-01-28 10:20:38.0 +0100
@@ -1,7 +1,8 @@
 
   Documentation for:
   https://github.com/rails/web-console/tree/v1.0.4>v1.0.4
-  https://github.com/rails/web-console/tree/v2.1.3>v2.1.3
+  https://github.com/rails/web-console/tree/v2.2.1>v2.2.1
+  https://github.com/rails/web-console/tree/v3.0.0>v3.0.0
 
 
 # Web Console [![Build 
Status](https://travis-ci.org/rails/web-console.svg?branch=master)](https://travis-ci.org/rails/web-console)
@@ -67,8 +68,10 @@
 end
 ```
 
-Only one `console` invocation is allowed per request. If you happen to have
-multiple ones, a `WebConsole::DoubleRenderError` is raised.
+The method is defined in `Kernel` and you can invoke it any application code.
+
+Only one `console` invocation is allowed once per request. If you happen to
+have multiple 

commit ghc-fast-logger for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-fast-logger for openSUSE:Factory 
checked in at 2016-04-22 16:24:56

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


Package is "ghc-fast-logger"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-fast-logger/ghc-fast-logger.changes  
2016-04-12 19:38:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-fast-logger.new/ghc-fast-logger.changes 
2016-04-22 16:25:20.0 +0200
@@ -2 +2 @@
-Thu Apr  7 11:33:42 UTC 2016 - mimi...@gmail.com
+Wed Apr 13 09:49:04 UTC 2016 - mimi...@gmail.com
@@ -4 +4 @@
-- update to 2.4.2
+- update to 2.4.3

Old:

  fast-logger-2.4.2.tar.gz

New:

  fast-logger-2.4.3.tar.gz



Other differences:
--
++ ghc-fast-logger.spec ++
--- /var/tmp/diff_new_pack.Heih3h/_old  2016-04-22 16:25:21.0 +0200
+++ /var/tmp/diff_new_pack.Heih3h/_new  2016-04-22 16:25:21.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-fast-logger
-Version:2.4.2
+Version:2.4.3
 Release:0
 Summary:A fast logging system
 Group:  System/Libraries

++ fast-logger-2.4.2.tar.gz -> fast-logger-2.4.3.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fast-logger-2.4.2/ChangeLog.md 
new/fast-logger-2.4.3/ChangeLog.md
--- old/fast-logger-2.4.2/ChangeLog.md  2016-04-05 04:07:56.0 +0200
+++ new/fast-logger-2.4.3/ChangeLog.md  2016-04-12 06:20:01.0 +0200
@@ -1,3 +1,7 @@
+## 2.4.3
+
+* Opening files in the append mode on Windows.
+
 ## 2.4.2
 
 * Fixing a buf of long log messages 
[#80](https://github.com/kazu-yamamoto/logger/pull/80)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fast-logger-2.4.2/System/Log/FastLogger/FileIO.hs 
new/fast-logger-2.4.3/System/Log/FastLogger/FileIO.hs
--- old/fast-logger-2.4.2/System/Log/FastLogger/FileIO.hs   2016-04-05 
04:07:56.0 +0200
+++ new/fast-logger-2.4.3/System/Log/FastLogger/FileIO.hs   2016-04-12 
06:20:01.0 +0200
@@ -6,19 +6,23 @@
 import Data.Word (Word8)
 
 #ifdef mingw32_HOST_OS
-import System.Win32.Types (HANDLE)
+import System.Win32.Types (HANDLE, UINT)
 import System.Win32.File
 import Graphics.Win32.Misc (getStdHandle, sTD_OUTPUT_HANDLE, sTD_ERROR_HANDLE)
 import Data.Bits ((.|.))
 
 type FD = HANDLE
 
+-- This flag is not defined in System.Win32.File
+fILE_APPEND_DATA :: UINT
+fILE_APPEND_DATA = 0x0004
+
 closeFD :: FD -> IO ()
 closeFD = closeHandle
 
 openFileFD :: FilePath -> IO FD
 openFileFD f = createFile f
- (gENERIC_READ .|. gENERIC_WRITE)
+ fILE_APPEND_DATA
  (fILE_SHARE_READ .|. fILE_SHARE_DELETE)
  Nothing
  oPEN_ALWAYS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fast-logger-2.4.2/fast-logger.cabal 
new/fast-logger-2.4.3/fast-logger.cabal
--- old/fast-logger-2.4.2/fast-logger.cabal 2016-04-05 04:07:56.0 
+0200
+++ new/fast-logger-2.4.3/fast-logger.cabal 2016-04-12 06:20:01.0 
+0200
@@ -1,5 +1,5 @@
 Name:   fast-logger
-Version:2.4.2
+Version:2.4.3
 Author: Kazu Yamamoto 
 Maintainer: Kazu Yamamoto 
 License:BSD3




commit ghc-base-orphans for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-base-orphans for 
openSUSE:Factory checked in at 2016-04-22 16:24:53

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


Package is "ghc-base-orphans"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-base-orphans/ghc-base-orphans.changes
2016-03-16 10:33:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-base-orphans.new/ghc-base-orphans.changes   
2016-04-22 16:25:18.0 +0200
@@ -1,0 +2,7 @@
+Tue Apr 12 09:39:38 UTC 2016 - mimi...@gmail.com
+
+- update to 0.5.4
+* Backported Bits, FiniteBits, Floating, Fractional, Integral, IsString, Num, 
Real,
+RealFloat, and RealFrac instances for Identity and Const
+
+---

Old:

  base-orphans-0.5.3.tar.gz

New:

  base-orphans-0.5.4.tar.gz



Other differences:
--
++ ghc-base-orphans.spec ++
--- /var/tmp/diff_new_pack.xRrCZg/_old  2016-04-22 16:25:19.0 +0200
+++ /var/tmp/diff_new_pack.xRrCZg/_new  2016-04-22 16:25:19.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-base-orphans
-Version:0.5.3
+Version:0.5.4
 Release:0
 Summary:Backwards-compatible orphan instances for base
 Group:  System/Libraries

++ base-orphans-0.5.3.tar.gz -> base-orphans-0.5.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-orphans-0.5.3/CHANGES.markdown 
new/base-orphans-0.5.4/CHANGES.markdown
--- old/base-orphans-0.5.3/CHANGES.markdown 2016-02-29 16:32:10.0 
+0100
+++ new/base-orphans-0.5.4/CHANGES.markdown 2016-04-11 16:06:11.0 
+0200
@@ -1,3 +1,8 @@
+## Changes in 0.5.4
+ - Backported `Bits`, `FiniteBits`, `Floating`, `Fractional`, `Integral`,
+   `IsString`, `Num`, `Real`, `RealFloat`, and `RealFrac` instances for
+   `Identity` and `Const` (introduced in `base-4.9`)
+
 ## Changes in 0.5.3
  - Backported `Alternative`, `MonadPlus` and `MonadZip` instances for `U1` and
`Proxy`, and made the `Functor`, `Foldable`, `Traversable`, `Alternative`,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-orphans-0.5.3/README.markdown 
new/base-orphans-0.5.4/README.markdown
--- old/base-orphans-0.5.3/README.markdown  2016-02-29 16:32:10.0 
+0100
+++ new/base-orphans-0.5.4/README.markdown  2016-04-11 16:06:11.0 
+0200
@@ -31,13 +31,15 @@
 
 ## What is covered
 
+ * `Alternative`, `MonadPlus`, and `MonadZip` instances for `Proxy`
+ * `Alternative`, `Applicative`, `Bounded`, `Data`, `Enum`, `Foldable`, 
`Functor`, `Ix`, `Monad`, `MonadFix`, `MonadPlus`, `MonadZip`, and 
`Traversable` instances for data types in `GHC.Generics`
  * `Applicative` and `Alternative` instances for `ReadP` and `ReadPrec`
  * `Applicative` instance for strict and lazy `ST`
  * `Applicative`, `Foldable`, `Functor`, `Monad`, and `Traversable` instances 
for `Complex`,
`Dual`, `First`, `Last`, `Product`, and `Sum`
  * `Bits` instance for `Bool`
  * `Bits`, `Bounded`, and `Integral` instances for `CDev`
- * `Bounded`, `Enum`, `Ix`, and `Storable` instances for `Const` and `Identity`
+ * `Bits`, `Bounded`, `Enum`, `FiniteBits`, `Floating`, `Fractional`, 
`Integral`, `IsString`, `Ix`, `Num`, `Real`, `RealFloat`, `RealFrac`, and 
`Storable` instances for `Const` and `Identity`
  * `Data` instances for `All` and `Any`
  * `Data`, `MonadFix` and `MonadZip` instances for `Alt`, `Dual`, `First`, 
`Last`,
`Product`, and `Sum`
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-orphans-0.5.3/base-orphans.cabal 
new/base-orphans-0.5.4/base-orphans.cabal
--- old/base-orphans-0.5.3/base-orphans.cabal   2016-02-29 16:32:10.0 
+0100
+++ new/base-orphans-0.5.4/base-orphans.cabal   2016-04-11 16:06:11.0 
+0200
@@ -1,9 +1,9 @@
--- This file has been generated from package.yaml by hpack version 0.10.0.
+-- This file has been generated from package.yaml by hpack version 0.12.0.
 --
 -- see: https://github.com/sol/hpack
 
 name:base-orphans
-version: 0.5.3
+version: 0.5.4
 synopsis:Backwards-compatible orphan instances for base
 description: @base-orphans@ defines orphan instances that mimic 
instances available in later versions of @base@ to a wider (older) range of 
compilers. @base-orphans@ does not export anything except the orphan instances 
themselves and complements @@.
  See the README for what instances are covered: 


commit ghc-base-compat for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-base-compat for openSUSE:Factory 
checked in at 2016-04-22 16:24:52

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


Package is "ghc-base-compat"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-base-compat/ghc-base-compat.changes  
2016-01-28 17:24:29.0 +0100
+++ /work/SRC/openSUSE:Factory/.ghc-base-compat.new/ghc-base-compat.changes 
2016-04-22 16:25:17.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 12 09:31:17 UTC 2016 - mimi...@gmail.com
+
+- update to 0.9.1
+* Use the more efficient version of replicateM and replicateM_ introduced in 
base-4.9
+
+---

Old:

  base-compat-0.9.0.tar.gz

New:

  base-compat-0.9.1.tar.gz



Other differences:
--
++ ghc-base-compat.spec ++
--- /var/tmp/diff_new_pack.EGGUhS/_old  2016-04-22 16:25:17.0 +0200
+++ /var/tmp/diff_new_pack.EGGUhS/_new  2016-04-22 16:25:17.0 +0200
@@ -20,7 +20,7 @@
 %bcond_with tests
 
 Name:   ghc-base-compat
-Version:0.9.0
+Version:0.9.1
 Release:0
 Summary:A compatibility layer for base
 Group:  System/Libraries

++ base-compat-0.9.0.tar.gz -> base-compat-0.9.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-compat-0.9.0/CHANGES.markdown 
new/base-compat-0.9.1/CHANGES.markdown
--- old/base-compat-0.9.0/CHANGES.markdown  2016-01-15 03:45:49.0 
+0100
+++ new/base-compat-0.9.1/CHANGES.markdown  2016-04-11 16:06:42.0 
+0200
@@ -1,3 +1,7 @@
+## Changes in 0.9.1
+ - Use the more efficient version of `replicateM` and `replicateM_` introduced
+   in `base-4.9`
+
 ## Changes in 0.9.0
  - Sync with `base-4.9`/GHC 8.0
  - Weakened `RealFloat` constraints on `realPart`, `imagPart`, `conjugate`,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-compat-0.9.0/LICENSE 
new/base-compat-0.9.1/LICENSE
--- old/base-compat-0.9.0/LICENSE   2016-01-15 03:45:49.0 +0100
+++ new/base-compat-0.9.1/LICENSE   2016-04-11 16:06:42.0 +0200
@@ -1,4 +1,4 @@
-Copyright (c) 2012-2015 Simon Hengel  and Ryan Scott 

+Copyright (c) 2012-2016 Simon Hengel  and Ryan Scott 

 
 Permission is hereby granted, free of charge, to any person obtaining a copy
 of this software and associated documentation files (the "Software"), to deal
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-compat-0.9.0/README.markdown 
new/base-compat-0.9.1/README.markdown
--- old/base-compat-0.9.0/README.markdown   2016-01-15 03:45:49.0 
+0100
+++ new/base-compat-0.9.1/README.markdown   2016-04-11 16:06:42.0 
+0200
@@ -194,6 +194,9 @@
 * [`bifunctors`](http://hackage.haskell.org/package/bifunctors)
   for the 
[`Bifunctor`](http://hackage.haskell.org/package/base-4.8.0.0/docs/Data-Bifunctor.html#t:Bifunctor)
   type class, introduced in `base-4.8.0.0`
+* [`fail`](http://hackage.haskell.org/package/fail)
+  for the 
[`MonadFail`](http://hackage.haskell.org/package/base-4.9.0.0/docs/Control-Monad-Fail.html#t:MonadFail)
+  type class, introduced in `base-4.9.0.0`
 * [`generic-deriving`](http://hackage.haskell.org/package/generic-deriving)
   for everything in the 
[`GHC.Generics`](http://hackage.haskell.org/package/base-4.8.0.0/docs/GHC-Generics.html)
   module, introduced to `ghc-prim` in GHC 7.2 (and later moved to 
`base-4.6.0.0`)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/base-compat-0.9.0/base-compat.cabal 
new/base-compat-0.9.1/base-compat.cabal
--- old/base-compat-0.9.0/base-compat.cabal 2016-01-15 03:45:49.0 
+0100
+++ new/base-compat-0.9.1/base-compat.cabal 2016-04-11 16:06:42.0 
+0200
@@ -1,10 +1,10 @@
 name: base-compat
-version:  0.9.0
+version:  0.9.1
 license:  MIT
 license-file: LICENSE
-copyright:(c) 2012-2015 Simon Hengel,
-  (c) 2014 João Cristóvão,
-  (c) 2015 Ryan Scott
+copyright:(c) 2012-2016 Simon Hengel,
+  (c) 2014-2016 João Cristóvão,
+  (c) 2015-2016 Ryan Scott
 author:   Simon Hengel ,
   João Cristóvão ,
   Ryan Scott 
@@ -38,6 +38,7 @@
   , GHC == 7.6.1,  GHC == 7.6.2,  GHC == 7.6.3
   , GHC == 7.8.1,  GHC == 7.8.2,  GHC == 7.8.3,  GHC == 7.8.4
   , GHC == 7.10.1, GHC == 7.10.2, GHC == 7.10.3
+  , GHC == 8.0.1
 extra-source-files: CHANGES

commit libvirt for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package libvirt for openSUSE:Factory checked 
in at 2016-04-22 16:24:19

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


Package is "libvirt"

Changes:

--- /work/SRC/openSUSE:Factory/libvirt/libvirt.changes  2016-04-08 
09:39:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.libvirt.new/libvirt.changes 2016-04-22 
16:24:21.0 +0200
@@ -2 +2 @@
-Mon Apr  4 15:26:41 UTC 2016 - oher...@suse.de
+Tue Apr 12 22:01:50 UTC 2016 - jfeh...@suse.com
@@ -4 +4,10 @@
-- Force LIBXL_API_VERSION=0x040500 to fix build with xen-4.7
+- Update to libvirt 1.3.3
+  - perf events
+  - post-copy migration support
+  - NSS module
+  - Many incremental improvements and bug fixes, see
+http://libvirt.org/news.html
+  - Add rpmlintrc file to filter shlib-policy-name-error for
+new libnss_libvirt plugin
+- Fix build with Xen4.7
+  216650f1-libxl-build-fix.patch

Old:

  libvirt-1.3.2.tar.gz
  libvirt-1.3.2.tar.gz.asc

New:

  216650f1-libxl-build-fix.patch
  libvirt-1.3.3.tar.gz
  libvirt-1.3.3.tar.gz.asc
  libvirt-rpmlintrc



Other differences:
--
++ libvirt.spec ++
--- /var/tmp/diff_new_pack.UzwQPl/_old  2016-04-22 16:24:24.0 +0200
+++ /var/tmp/diff_new_pack.UzwQPl/_new  2016-04-22 16:24:24.0 +0200
@@ -99,6 +99,7 @@
 
 # Non-server/HV driver defaults which are always enabled
 %define with_sasl  0%{!?_without_sasl:1}
+%define with_nss_plugin0%{!?_without_nss_plugin:1}
 
 # Set the OS / architecture specific special cases
 
@@ -245,7 +246,7 @@
 
 Name:   libvirt
 Url:http://libvirt.org/
-Version:1.3.2
+Version:1.3.3
 Release:0
 Summary:Library providing a simple virtualization API
 License:LGPL-2.1+
@@ -457,7 +458,9 @@
 Source3:libvirtd.init
 Source4:libvirtd-relocation-server.fw
 Source99:   baselibs.conf
+Source100:  %{name}-rpmlintrc
 # Upstream patches
+Patch0: 216650f1-libxl-build-fix.patch
 # Patches pending upstream review
 # Need to go upstream
 Patch150:   xen-pv-cdrom.patch
@@ -974,8 +977,19 @@
 Wireshark dissector plugin for better analysis of libvirt RPC traffic.
 %endif
 
+%if %{with_nss_plugin}
+%package nss
+Summary:Libvirt plugin for Name Service Switch
+Group:  Development/Libraries/C and C++
+Requires:   libvirt-daemon-driver-network = %{version}-%{release}
+
+%description nss
+libvirt plugin for NSS for translating domain names into IP addresses.
+%endif
+
 %prep
 %setup -q
+%patch0 -p1
 %patch150 -p1
 %patch151 -p1
 %patch152 -p1
@@ -1146,14 +1160,15 @@
 %if ! %{with_systemd_daemon}
 %define _without_systemd_daemon --without-systemd-daemon
 %endif
-
+%if ! %{with_nss_plugin}
+%define _without_nss_plugin --without-nss-plugin
+%endif
 %if %{with_selinux}
 %define with_selinux_mount --with-selinux-mount="/sys/fs/selinux"
 %endif
 
 autoreconf -f -i
 export CFLAGS="$RPM_OPT_FLAGS"
-export CFLAGS="$CFLAGS -DLIBXL_API_VERSION=0x040500"
 %configure --disable-static --with-pic \
%{?_without_xen} \
%{?_without_qemu} \
@@ -1203,6 +1218,7 @@
%{?_with_firewalld} \
%{?_without_wireshark} \
%{?_without_systemd_daemon} \
+   %{?_without_nss_plugin} \
--libexecdir=%{_libdir}/%{name} \
--with-qemu-user=%{qemu_user} \
--with-qemu-group=%{qemu_group} \
@@ -1521,6 +1537,14 @@
 %endif
 %insserv_cleanup
 
+%if %{with_nss_plugin}
+%post nss
+/sbin/ldconfig
+
+%postun nss
+/sbin/ldconfig
+%endif
+
 %files
 %defattr(-, root, root)
 %doc %{_docdir}/%{name}/libvirt.README
@@ -1954,4 +1978,10 @@
 %{_libdir}/wireshark/plugins/libvirt.so
 %endif
 
+%if %{with_nss_plugin}
+
+%files nss
+%{_libdir}/libnss_libvirt.so.2
+%endif
+
 %changelog

++ 216650f1-libxl-build-fix.patch ++
commit 216650f14b35ad11a45505405347f8027bc294d7
Author: Wei Liu 
Date:   Tue Apr 5 15:20:12 2016 +0100

libxl: libxl_domain_create_restore has an extra argument

In the latest libxenlight code, libxl_domain_create_restore accepts a
new argument. Update libvirt's libxl driver for that. Use the macro
provided by libxenlight to detect which version should be used.

The new parameter (send_back_fd) is set to -1 because libvirt provides
no such fd.

Signed-off-by: Wei Liu 
Message-id: 1459866012-27081-1-git-send-email-wei.l...@citrix.com

Index: libvirt-1.3.3/src/libxl/libxl_domain.c
===
--- libvirt-1.3.3.orig/src/libxl/libxl_domain.c
+++ libvirt-1.3.3/src/libxl/libxl_domain.c
@@ -1070,7 +1070,12 @@ libxlDomainStart(libxlDriv

commit ghc-http-conduit for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ghc-http-conduit for 
openSUSE:Factory checked in at 2016-04-22 16:25:04

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


Package is "ghc-http-conduit"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-http-conduit/ghc-http-conduit.changes
2015-08-27 08:55:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-http-conduit.new/ghc-http-conduit.changes   
2016-04-22 16:25:24.0 +0200
@@ -1,0 +2,12 @@
+Sat Apr 16 07:06:12 UTC 2016 - mimi...@gmail.com
+
+- update to 2.1.10
+* Add the Network.HTTP.Simple module
+
+---
+Tue Apr 12 09:59:34 UTC 2016 - mimi...@gmail.com
+
+- update to 2.1.9
+* cleanup
+
+---

Old:

  http-conduit-2.1.8.tar.gz

New:

  http-conduit-2.1.10.tar.gz



Other differences:
--
++ ghc-http-conduit.spec ++
--- /var/tmp/diff_new_pack.pyGY4O/_old  2016-04-22 16:25:25.0 +0200
+++ /var/tmp/diff_new_pack.pyGY4O/_new  2016-04-22 16:25:25.0 +0200
@@ -21,7 +21,7 @@
 %bcond_with tests
 
 Name:   ghc-http-conduit
-Version:2.1.8
+Version:2.1.10
 Release:0
 Summary:HTTP client package with conduit interface and HTTPS support
 License:BSD-2-Clause
@@ -34,8 +34,12 @@
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-rpm-macros
 # Begin cabal-rpm deps:
+BuildRequires:  ghc-aeson-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-conduit-devel
+BuildRequires:  ghc-conduit-extra-devel
+BuildRequires:  ghc-data-default-class-devel
+BuildRequires:  ghc-exceptions-devel
 BuildRequires:  ghc-http-client-devel
 BuildRequires:  ghc-http-client-tls-devel
 BuildRequires:  ghc-http-types-devel
@@ -48,13 +52,12 @@
 BuildRequires:  ghc-HUnit-devel
 BuildRequires:  ghc-blaze-builder-devel
 BuildRequires:  ghc-case-insensitive-devel
-BuildRequires:  ghc-conduit-extra-devel
 BuildRequires:  ghc-connection-devel
 BuildRequires:  ghc-cookie-devel
-BuildRequires:  ghc-data-default-class-devel
 BuildRequires:  ghc-hspec-devel
 BuildRequires:  ghc-network-devel
 BuildRequires:  ghc-streaming-commons-devel
+BuildRequires:  ghc-temporary-devel
 BuildRequires:  ghc-text-devel
 BuildRequires:  ghc-time-devel
 BuildRequires:  ghc-utf8-string-devel
@@ -113,5 +116,6 @@
 
 %files devel -f %{name}-devel.files
 %defattr(-,root,root,-)
+%doc README.md
 
 %changelog

++ http-conduit-2.1.8.tar.gz -> http-conduit-2.1.10.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-conduit-2.1.8/ChangeLog.md 
new/http-conduit-2.1.10/ChangeLog.md
--- old/http-conduit-2.1.8/ChangeLog.md 2015-08-10 18:05:04.0 +0200
+++ new/http-conduit-2.1.10/ChangeLog.md2016-04-15 10:51:33.0 
+0200
@@ -1,3 +1,11 @@
+## 2.1.10
+
+* Add the `Network.HTTP.Simple` module
+
+## 2.1.9
+
+* cabal file cleanup
+
 ## 2.1.8
 
 * Move HasHttpManager from http-conduit to http-client 
[#147](https://github.com/snoyberg/http-client/pull/147)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-conduit-2.1.8/Network/HTTP/Client/Conduit.hs 
new/http-conduit-2.1.10/Network/HTTP/Client/Conduit.hs
--- old/http-conduit-2.1.8/Network/HTTP/Client/Conduit.hs   2015-08-10 
18:05:04.0 +0200
+++ new/http-conduit-2.1.10/Network/HTTP/Client/Conduit.hs  2016-04-15 
10:51:33.0 +0200
@@ -3,8 +3,13 @@
 {-# LANGUAGE RankNTypes#-}
 -- | A new, experimental API to replace "Network.HTTP.Conduit".
 --
--- For more information, please be sure to read the documentation in the
--- "Network.HTTP.Client" module.
+-- For most users, "Network.HTTP.Simple" is probably a better choice. For more
+-- information, see:
+--
+-- .
+--
+-- For more information on using this module, please be sure to read the
+-- documentation in the "Network.HTTP.Client" module.
 module Network.HTTP.Client.Conduit
 ( -- * Conduit-specific interface
   withResponse
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/http-conduit-2.1.8/Network/HTTP/Conduit.hs 
new/http-conduit-2.1.10/Network/HTTP/Conduit.hs
--- old/http-conduit-2.1.8/Network/HTTP/Conduit.hs  2015-08-10 
18:05:04.0 +0200
+++ new/http-conduit-2.1.10/Network/HTTP/Conduit.hs 2016-04-15 
10:51:33.0 +0200
@@ -2,7 +2,20 @@
 {-# LANGUAGE FlexibleContexts  #-}
 {-# LANGUAGE MultiParamTypeClasses #-}
 {-# LANGUAGE OverloadedStrings #-}
--- | This module c

commit perl-Test-Memory-Cycle for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-Memory-Cycle for 
openSUSE:Factory checked in at 2016-04-22 16:24:33

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


Package is "perl-Test-Memory-Cycle"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Test-Memory-Cycle/perl-Test-Memory-Cycle.changes
2016-02-26 00:40:06.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Test-Memory-Cycle.new/perl-Test-Memory-Cycle.changes
   2016-04-22 16:24:35.0 +0200
@@ -1,0 +2,5 @@
+Wed Apr 13 13:35:02 UTC 2016 - co...@suse.com
+
+- add the license also to cpanspec.yml
+
+---



Other differences:
--
++ cpanspec.yml ++
--- /var/tmp/diff_new_pack.A0RJce/_old  2016-04-22 16:24:35.0 +0200
+++ /var/tmp/diff_new_pack.A0RJce/_new  2016-04-22 16:24:35.0 +0200
@@ -19,7 +19,7 @@
 # rm unused.files
 #post_install: |-
 # sed on %{name}.files
-#license: SUSE-NonFree
+license: Artistic-2.0
 #skip_noarch: 1
 #custom_build: |-
 #./Build build flags=%{?_smp_mflags} --myflag




commit rubygem-net-ssh for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package rubygem-net-ssh for openSUSE:Factory 
checked in at 2016-04-22 16:24:21

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


Package is "rubygem-net-ssh"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-net-ssh/rubygem-net-ssh.changes  
2016-03-29 10:39:50.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-net-ssh.new/rubygem-net-ssh.changes 
2016-04-22 16:24:24.0 +0200
@@ -1,0 +2,10 @@
+Wed Apr  6 06:27:05 UTC 2016 - co...@suse.com
+
+- updated to version 3.1.1
+ see installed CHANGES.txt
+
+  === 3.1.1
+  
+  * added missing etc require
+
+---

Old:

  net-ssh-3.1.0.gem

New:

  net-ssh-3.1.1.gem



Other differences:
--
++ rubygem-net-ssh.spec ++
--- /var/tmp/diff_new_pack.JmeH1j/_old  2016-04-22 16:24:25.0 +0200
+++ /var/tmp/diff_new_pack.JmeH1j/_new  2016-04-22 16:24:25.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-net-ssh
-Version:3.1.0
+Version:3.1.1
 Release:0
 %define mod_name net-ssh
 %define mod_full_name %{mod_name}-%{version}

++ net-ssh-3.1.0.gem -> net-ssh-3.1.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGES.txt new/CHANGES.txt
--- old/CHANGES.txt 2016-03-18 19:59:03.0 +0100
+++ new/CHANGES.txt 2016-03-23 13:28:21.0 +0100
@@ -1,3 +1,7 @@
+=== 3.1.1
+
+* added missing etc require
+
 === 3.1.0
 === 3.1.0.rc1
 
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
Files old/checksums.yaml.gz.sig and new/checksums.yaml.gz.sig differ
Files old/data.tar.gz.sig and new/data.tar.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/net/ssh/version.rb new/lib/net/ssh/version.rb
--- old/lib/net/ssh/version.rb  2016-03-18 19:59:03.0 +0100
+++ new/lib/net/ssh/version.rb  2016-03-23 13:28:21.0 +0100
@@ -51,7 +51,7 @@
 MINOR = 1
 
 # The tiny component of this version of the Net::SSH library
-TINY  = 0
+TINY  = 1
 
 # The prerelease component of this version of the Net::SSH library 
 # nil allowed
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/net/ssh.rb new/lib/net/ssh.rb
--- old/lib/net/ssh.rb  2016-03-18 19:59:03.0 +0100
+++ new/lib/net/ssh.rb  2016-03-23 13:28:21.0 +0100
@@ -3,6 +3,7 @@
 ENV['HOME'] ||= ENV['HOMEPATH'] ? "#{ENV['HOMEDRIVE']}#{ENV['HOMEPATH']}" : 
Dir.pwd
 
 require 'logger'
+require 'etc'
 
 require 'net/ssh/config'
 require 'net/ssh/errors'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-03-18 19:59:03.0 +0100
+++ new/metadata2016-03-23 13:28:21.0 +0100
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: net-ssh
 version: !ruby/object:Gem::Version
-  version: 3.1.0
+  version: 3.1.1
 platform: ruby
 authors:
 - Jamis Buck
@@ -31,7 +31,7 @@
   s/ZUKye79ELwFYKJOhjW5g725OL3hy+llhEleytwKRwgXFQBPTC4f5UkdxZVVWGH
   e2C9M1m/2odPZo8h
   -END CERTIFICATE-
-date: 2016-03-18 00:00:00.0 Z
+date: 2016-03-23 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: test-unit
Files old/metadata.gz.sig and new/metadata.gz.sig differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/net-ssh.gemspec new/net-ssh.gemspec
--- old/net-ssh.gemspec 2016-03-18 19:59:03.0 +0100
+++ new/net-ssh.gemspec 2016-03-23 13:28:21.0 +0100
@@ -2,17 +2,17 @@
 # DO NOT EDIT THIS FILE DIRECTLY
 # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
 # -*- encoding: utf-8 -*-
-# stub: net-ssh 3.1.0 ruby lib
+# stub: net-ssh 3.1.1 ruby lib
 
 Gem::Specification.new do |s|
   s.name = "net-ssh"
-  s.version = "3.1.0"
+  s.version = "3.1.1"
 
   s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? 
:required_rubygems_version=
   s.require_paths = ["lib"]
   s.authors = ["Jamis Buck", "Delano Mandelbaum", "Mikl\u{f3}s Fazekas"]
   s.cert_chain = ["net-ssh-public_cert.pem"]
-  s.date = "2016-03-18"
+  s.date = "2016-03-23"
   s.description = "Net::SSH: a pure-Ruby implementation of the SSH2 client 
protocol. It allows you to write programs that invoke and interact with 
processes on remote servers, via SSH2."
   s.email = "net-...@solutious.com"
   s.extra_rdoc_files = [




commit pure-ftpd for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package pure-ftpd for openSUSE:Factory 
checked in at 2016-04-22 16:24:38

Comparing /work/SRC/openSUSE:Factory/pure-ftpd (Old)
 and  /work/SRC/openSUSE:Factory/.pure-ftpd.new (New)


Package is "pure-ftpd"

Changes:

--- /work/SRC/openSUSE:Factory/pure-ftpd/pure-ftpd.changes  2016-01-22 
01:07:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.pure-ftpd.new/pure-ftpd.changes 2016-04-22 
16:24:39.0 +0200
@@ -1,0 +2,5 @@
+Thu Apr 14 12:41:54 UTC 2016 - tchva...@suse.com
+
+- Add -fvisibility=hidden for bnc#971980
+
+---



Other differences:
--
++ pure-ftpd.spec ++
--- /var/tmp/diff_new_pack.A4Q3K4/_old  2016-04-22 16:24:40.0 +0200
+++ /var/tmp/diff_new_pack.A4Q3K4/_new  2016-04-22 16:24:40.0 +0200
@@ -83,7 +83,7 @@
 %patch9 -p1
 
 %build
-CFLAGS="%{optflags} -DLDAP_DEPRECATED -fstack-protector"
+CFLAGS="%{optflags} -DLDAP_DEPRECATED -fstack-protector -fvisibility=hidden"
 %configure \
--with-rfc2640 \
--sysconfdir=%{_sysconfdir}/%{name} \







commit drbd for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package drbd for openSUSE:Factory checked in 
at 2016-04-22 16:24:35

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


Package is "drbd"

Changes:

--- /work/SRC/openSUSE:Factory/drbd/drbd.changes2016-03-16 
10:35:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.drbd.new/drbd.changes   2016-04-22 
16:24:36.0 +0200
@@ -1,0 +2,6 @@
+Fri Apr  8 14:44:21 UTC 2016 - nw...@suse.com
+
+- Compat with kernel 4.5 
+- Add patch kernel-4.5-compat.patch
+
+---
@@ -5,0 +12,15 @@
+
+---
+Mon Mar  7 08:42:41 UTC 2016 - nw...@suse.com
+
+- Update to release drbd-9.0.1
+- Depend on drbd-utils >= 8.9.6
+
+---
+Mon Nov 30 14:31:22 UTC 2015 - nw...@suse.com
+
+- Update to released drbd-9.0.0
+- Remove patch 0001-Support-zeroout-device-in-initial-sync.patch
+- Remove patch update-to-8.4.6-5.patch
+- Remove patch rename-GFP_WAIT-to-GFP_RECLAIM.patch
+- Remove patch new-bio-struct.patch

Old:

  0001-Support-zeroout-device-in-initial-sync.patch
  drbd-8.4.6.tar.gz
  new-bio-struct.patch
  rename-GFP_WAIT-to-GFP_RECLAIM.patch
  update-to-8.4.6-5.patch

New:

  _service
  drbd-9.0.1+git.86e4439.tar.bz2
  drbd_git_revision
  kernel-4.5-compat.patch



Other differences:
--
++ drbd.spec ++
--- /var/tmp/diff_new_pack.uidvpR/_old  2016-04-22 16:24:37.0 +0200
+++ /var/tmp/diff_new_pack.uidvpR/_new  2016-04-22 16:24:37.0 +0200
@@ -21,38 +21,32 @@
 %ifarch x86_64
 %define buildrt 0
 %endif
+
 Name:   drbd
-Version:8.4.6
+Version:9.0.1+git.86e4439
 Release:0
-Summary:Distributed Replicated Block Device
-License:GPL-2.0+
+Summary:DRBD driver for Linux
+License:GPL-2.0
 Group:  Productivity/Clustering/HA
-Url:http://www.drbd.org/
-Source: http://oss.linbit.com/drbd/8.4/%{name}-%{version}.tar.gz
+Url:http://drbd.linbit.com/
+Source: %{name}-%{version}.tar.bz2
 Source1:preamble
 #In kernel is: kernel/drivers/block/drbd/drbd.ko
 Source2:Module.supported
-
-Patch1: update-to-8.4.6-5.patch
-#Patch for supporting drbd KMP after kernel4.3
-#This patch can be removed when using in-tree 4.3
-Patch2: new-bio-struct.patch
-#Patch for fate: https://fate.suse.com/317940
-#Whether can merge into linbit is under discussion
-Patch3: 0001-Support-zeroout-device-in-initial-sync.patch
-Patch4: rename-GFP_WAIT-to-GFP_RECLAIM.patch
-Patch5: drbd-buildcompare.patch
-
+Source3:drbd_git_revision
+Patch0: kernel-4.5-compat.patch
+Patch1: drbd-buildcompare.patch
 BuildRequires:  kernel-source
 BuildRequires:  kernel-syms
 BuildRequires:  module-init-tools
+
 %if 0%{?buildrt} == 1
 BuildRequires:  kernel-source-rt
 BuildRequires:  kernel-syms-rt
 %endif
 
-Requires:   drbd-utils >= 8.9.0
-Supplements:drbd-utils >= 8.9.0
+Requires:   drbd-utils >= 8.9.6
+Supplements:drbd-utils >= 8.9.6
 Obsoletes:  drbd-kmp < %{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExcludeArch:i586 s390
@@ -75,33 +69,34 @@
 
 %prep
 %setup -q -n drbd-%{version}
+%patch0 -p1
 %patch1 -p1
-%patch2 -p1
-%patch3 -p1
-%patch4 -p1
-%patch5 -p1
+
+mkdir source
+cp -a drbd/. source/. || :
+cp $RPM_SOURCE_DIR/drbd_git_revision source/.drbd_git_revision
 
 %build
 rm -rf obj
 mkdir obj
 ln -s ../scripts obj/
 
-for flavor in %{flavors_to_build}; do
-cp -r drbd obj/$flavor
-cp %_sourcedir/Module.supported obj/$flavor
-#make -C %{kernel_source $flavor} modules M=$PWD/obj/$flavor
-make -C obj/$flavor %{_smp_mflags} all KDIR=%{kernel_source $flavor}
+export CONFIG_BLK_DEV_DRBD=m
+export EXTRA_CFLAGS='-DVERSION=\"%{version}\"'
+
+for flavor in %flavors_to_build; do
+rm -rf $flavor
+cp -r source $flavor
+cp %_sourcedir/Module.supported $flavor
+export DRBDSRC="$PWD/obj/$flavor"
+make -C %{kernel_source $flavor} modules M=$PWD/$flavor
 done
 
 %install
 export INSTALL_MOD_PATH=%{buildroot}
 export INSTALL_MOD_DIR=updates
-
-for flavor in %{flavors_to_build} ; do
-make -C %{kernel_source $flavor} modules_install M=$PWD/obj/$flavor
-#From upstream file: drbd-kernel.spec
-#kernelrelease=$(cat %{kernel_source 
$flavor}/include/config/kernel.release || make -s -C %{kernel_source $flavor} 
kernelrelease)
-#mv obj/$flavor/.kernel.config.gz obj/k-config-$kernelrelease.gz
+for flavor in %{flavors_to_build}; do
+make -C %{kernel_source $flavor} modules_instal

commit lightdm for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package lightdm for openSUSE:Factory checked 
in at 2016-04-22 16:24:13

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


Package is "lightdm"

Changes:

--- /work/SRC/openSUSE:Factory/lightdm/lightdm.changes  2016-03-07 
13:29:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.lightdm.new/lightdm.changes 2016-04-22 
16:24:14.0 +0200
@@ -1,0 +2,13 @@
+Mon Apr 11 06:39:25 UTC 2016 - mimi...@gmail.com
+
+- fix config file to use new Seat:* sematics 
+
+---
+Sun Apr 10 22:01:11 UTC 2016 - mimi...@gmail.com
+
+- update to 1.18.1
+* Use /dev/tty0 instead of /dev/console for VT operations
+* Small documentation fixes
+* Don't write $DISPLAY into tty line in utmp/btmp.
+
+---

Old:

  lightdm-1.17.5.tar.xz

New:

  lightdm-1.18.1.tar.xz



Other differences:
--
++ lightdm.spec ++
--- /var/tmp/diff_new_pack.45mQRn/_old  2016-04-22 16:24:15.0 +0200
+++ /var/tmp/diff_new_pack.45mQRn/_new  2016-04-22 16:24:15.0 +0200
@@ -16,7 +16,7 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-
+%define ver_master  1.18
 %define gobject_libname lightdm-gobject-1
 %define gobject_lib lib%{gobject_libname}-0
 %define qt_libname  lightdm-qt-3
@@ -26,13 +26,13 @@
 %define typelibname typelib-1_0-LightDM-1
 %define rundir  /run
 Name:   lightdm
-Version:1.17.5
+Version:1.18.1
 Release:0
 Summary:Lightweight, Cross-desktop Display Manager
 License:GPL-3.0+
 Group:  System/X11/Displaymanagers
 Url:http://www.freedesktop.org/wiki/Software/LightDM
-Source0:
https://launchpad.net/lightdm/1.17/%{version}/+download/%{name}-%{version}.tar.xz
+Source0:
https://launchpad.net/lightdm/%{ver_master}/%{version}/+download/%{name}-%{version}.tar.xz
 Source1:%{name}-greeter.pamd
 Source2:X11-displaymanagers-%{name}
 Source3:gdmflexiserver

++ 50-suse-defaults.conf ++
--- /var/tmp/diff_new_pack.45mQRn/_old  2016-04-22 16:24:15.0 +0200
+++ /var/tmp/diff_new_pack.45mQRn/_new  2016-04-22 16:24:15.0 +0200
@@ -1,7 +1,7 @@
 [LightDM]
 user-authority-in-system-dir=true
 
-[SeatDefaults]
+[Seat:*]
 pam-service = lightdm
 pam-autologin-service = lightdm-autologin
 pam-greeter-service = lightdm-greeter

++ lightdm-1.17.5.tar.xz -> lightdm-1.18.1.tar.xz ++
 23793 lines of diff (skipped)




commit perl-WWW-Shorten for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-WWW-Shorten for 
openSUSE:Factory checked in at 2016-04-22 16:24:04

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


Package is "perl-WWW-Shorten"

Changes:

--- /work/SRC/openSUSE:Factory/perl-WWW-Shorten/perl-WWW-Shorten.changes
2015-12-17 15:55:00.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-WWW-Shorten.new/perl-WWW-Shorten.changes   
2016-04-22 16:24:05.0 +0200
@@ -1,0 +2,12 @@
+Mon Apr  4 10:39:13 UTC 2016 - co...@suse.com
+
+- updated to 3.093
+   see /usr/share/doc/packages/perl-WWW-Shorten/Changes
+
+---
+Mon Mar 21 12:13:54 UTC 2016 - co...@suse.com
+
+- updated to 3.092
+   see /usr/share/doc/packages/perl-WWW-Shorten/Changes
+
+---

Old:

  WWW-Shorten-3.08.tar.gz

New:

  WWW-Shorten-3.093.tar.gz



Other differences:
--
++ perl-WWW-Shorten.spec ++
--- /var/tmp/diff_new_pack.ytKIxx/_old  2016-04-22 16:24:06.0 +0200
+++ /var/tmp/diff_new_pack.ytKIxx/_new  2016-04-22 16:24:06.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-WWW-Shorten
 #
-# 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,56 +17,74 @@
 
 
 Name:   perl-WWW-Shorten
-Version:3.08
+Version:3.093
 Release:0
 %define cpan_name WWW-Shorten
 Summary:Interface to URL shortening sites
-License:Artistic-2.0
+License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/WWW-Shorten/
-Source0:
http://www.cpan.org/authors/id/D/DA/DAVECROSS/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/C/CA/CAPOEIRAB/%{cpan_name}-%{version}.tar.gz
 Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
-BuildRequires:  perl(Config::Auto)
-BuildRequires:  perl(LWP) >= 5.75
-BuildRequires:  perl(LWP::UserAgent) >= 2.023
-BuildRequires:  perl(Module::Build) >= 0.42
-BuildRequires:  perl(URI) >= 1.27
-Requires:   perl(Config::Auto)
-Requires:   perl(LWP) >= 5.75
-Requires:   perl(LWP::UserAgent) >= 2.023
-Requires:   perl(URI) >= 1.27
+BuildRequires:  perl(Getopt::Long) >= 2.4
+BuildRequires:  perl(LWP::UserAgent) >= 5.835
+BuildRequires:  perl(Test::More) >= 0.88
+BuildRequires:  perl(Try::Tiny) >= 0.24
+Requires:   perl(Getopt::Long) >= 2.4
+Requires:   perl(LWP::UserAgent) >= 5.835
+Requires:   perl(Try::Tiny) >= 0.24
 %{perl_requires}
 
 %description
-The function 'makeashorterlink' will call the relevant web site passing it
-your long URL and will return the shorter version.
+A Perl interface to various services that shorten URLs. These sites
+maintain databases of long URLs, each of which has a unique identifier.
 
-The function 'makealongerlink' does the reverse. 'makealongerlink' will
-accept as an argument either the full shortened URL or just the identifier.
+# DEPRECATION NOTICE
 
-If anything goes wrong, then either function will return 'undef'.
+The following shorten services have been deprecated as the endpoints no
+longer exist or function:
+
+  * WWW::Shorten::LinkToolbot
+
+  * WWW::Shorten::Linkz
+
+  * WWW::Shorten::MakeAShorterLink
+
+  * WWW::Shorten::Metamark
+
+  * WWW::Shorten::TinyClick
+
+  * WWW::Shorten::Tinylink
+
+  * WWW::Shorten::Qurl
+
+  * WWW::Shorten::Qwer
+
+When version '3.100' is released, these deprecated services will not be
+part of the distribution.
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
 
 %build
-%{__perl} Build.PL installdirs=vendor
-./Build build flags=%{?_smp_mflags}
+%{__perl} Makefile.PL INSTALLDIRS=vendor
+%{__make} %{?_smp_mflags}
 
 %check
 # MANUAL no testing (needs network)
-#./Build test
+#%{__make} test
 
 %install
-./Build install destdir=%{buildroot} create_packlist=0
+%perl_make_install
+%perl_process_packlist
 %perl_gen_filelist
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Artistic AUTHORS ChangeLog.SPOON Changes CREDITS LICENCE README TODO
+%doc Changes LICENSE README.md
 
 %changelog

++ WWW-Shorten-3.08.tar.gz -> WWW-Shorten-3.093.tar.gz ++
 5640 lines of diff (skipped)




commit lsvpd for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package lsvpd for openSUSE:Factory checked 
in at 2016-04-22 16:24:17

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


Package is "lsvpd"

Changes:

--- /work/SRC/openSUSE:Factory/lsvpd/lsvpd.changes  2015-11-12 
19:40:22.0 +0100
+++ /work/SRC/openSUSE:Factory/.lsvpd.new/lsvpd.changes 2016-04-22 
16:24:19.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 12 13:45:37 UTC 2016 - jloe...@suse.com
+
+- version update to 1.7.7 (FATE#319553)
+  - for changes see lsvpd-1.7.7/ChangeLog
+
+---

Old:

  lsvpd-1.7.6.tar.gz

New:

  lsvpd-1.7.7.tar.gz



Other differences:
--
++ lsvpd.spec ++
--- /var/tmp/diff_new_pack.hE03A8/_old  2016-04-22 16:24:20.0 +0200
+++ /var/tmp/diff_new_pack.hE03A8/_new  2016-04-22 16:24:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package lsvpd
 #
-# 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,13 +17,13 @@
 
 
 Name:   lsvpd
-Version:1.7.6
+Version:1.7.7
 Release:0
 Summary:VPD Hardware Inventory Utilities for Linux
 License:GPL-2.0+
 Group:  System/Monitoring
 Url:http://sourceforge.net/projects/linux-diag/
-Source0:
http://sourceforge.net/projects/linux-diag/files/lsvpd-new/%{version}/%{name}-%{version}.tar.gz
+Source0:
http://sourceforge.net/projects/linux-diag/files/lsvpd-new/v%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  gcc-c++
 BuildRequires:  librtas-devel
 BuildRequires:  libvpd2-devel

++ lsvpd-1.7.6.tar.gz -> lsvpd-1.7.7.tar.gz ++
 20569 lines of diff (skipped)




commit perl-DateTime-Format-Strptime for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-DateTime-Format-Strptime for 
openSUSE:Factory checked in at 2016-04-22 16:24:03

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


Package is "perl-DateTime-Format-Strptime"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-DateTime-Format-Strptime/perl-DateTime-Format-Strptime.changes
  2016-03-16 10:34:17.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-DateTime-Format-Strptime.new/perl-DateTime-Format-Strptime.changes
 2016-04-22 16:24:04.0 +0200
@@ -1,0 +2,32 @@
+Mon Apr  4 09:33:20 UTC 2016 - co...@suse.com
+
+- updated to 1.67
+   see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
+
+  1.67 2016-03-31
+  
+  - Fixed a regression introduced in 1.60. Older versions of this library would
+match dates pretty match anywhere in a string, so "%Y-%m-%d" would match a
+string like "abcd1234-12-30efgh". This is probably _too_ permissive, but we
+definitely want to match on word boundaries so that we match
+"log.2016-03-31". Based on a PR from YASUTAKE Kiyoshi. GitHub #3.
+  
+  
+  1.66 2016-03-27
+  
+  - Added a zone_map constructor argument. This lets you supply a mapping for
+ambiguous time zone abbreviations. Based on a patch from Douglas Wilson. RT
+#74762.
+
+---
+Tue Mar 22 10:06:45 UTC 2016 - co...@suse.com
+
+- updated to 1.65
+   see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
+
+  1.65 2016-03-15
+  
+  - Updated zone short name parsing to handle names like "+07", which were
+introduced in the latest IANA time zone database release.
+
+---

Old:

  DateTime-Format-Strptime-1.64.tar.gz

New:

  DateTime-Format-Strptime-1.67.tar.gz



Other differences:
--
++ perl-DateTime-Format-Strptime.spec ++
--- /var/tmp/diff_new_pack.WqWGp0/_old  2016-04-22 16:24:05.0 +0200
+++ /var/tmp/diff_new_pack.WqWGp0/_new  2016-04-22 16:24:05.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-DateTime-Format-Strptime
-Version:1.64
+Version:1.67
 Release:0
 %define cpan_name DateTime-Format-Strptime
 Summary:Parse and format strp and strf time patterns
@@ -70,6 +70,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc bench Changes LICENSE README.md
+%doc bench Changes CONTRIBUTING.md LICENSE README.md
 
 %changelog

++ DateTime-Format-Strptime-1.64.tar.gz -> 
DateTime-Format-Strptime-1.67.tar.gz ++
 174854 lines of diff (skipped)




commit rubygem-puppet for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package rubygem-puppet for openSUSE:Factory 
checked in at 2016-04-22 16:24:37

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


Package is "rubygem-puppet"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-puppet/rubygem-puppet.changes
2016-01-28 17:23:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-puppet.new/rubygem-puppet.changes   
2016-04-22 16:24:38.0 +0200
@@ -1,0 +2,6 @@
+Mon Apr 11 15:28:34 UTC 2016 - kstreit...@suse.com
+
+- add puppet-non_ASCII_user_comment.patch to fix non-ASCII 
+  user comment with ruby >= 2.1 [bnc#971223]
+
+---

New:

  puppet-non_ASCII_user_comment.patch



Other differences:
--
++ rubygem-puppet.spec ++
--- /var/tmp/diff_new_pack.LfLzym/_old  2016-04-22 16:24:39.0 +0200
+++ /var/tmp/diff_new_pack.LfLzym/_new  2016-04-22 16:24:39.0 +0200
@@ -68,6 +68,7 @@
 Patch1:  %{mod_name}-systemd-default.patch
 Patch2:  %{mod_name}-ruby-2_2.patch
 Patch3:  %{mod_name}-systemd-default-on-new-suse.patch
+Patch4:  %{mod_name}-non_ASCII_user_comment.patch
 # /MANUAL
 Summary:A network tool for managing many disparate systems
 License:Apache-2.0
@@ -86,6 +87,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 %gem_build
 
 %build

++ puppet-non_ASCII_user_comment.patch ++
>From 302369f4c335ffb87983506dcac6679de22878cc Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?C=C3=A9dric=20Barboiron?= 
Date: Thu, 28 May 2015 14:30:05 +0200
Subject: [PATCH] (PUP-4633) fix non-ASCII user comment with ruby >= 2.1

---
 lib/puppet/type/user.rb |  6 --
 spec/unit/type/user_spec.rb | 21 ++---
 2 files changed, 18 insertions(+), 9 deletions(-)

Index: puppet-3.8.5/lib/puppet/type/user.rb
===
--- puppet-3.8.5.orig/lib/puppet/type/user.rb
+++ puppet-3.8.5/lib/puppet/type/user.rb
@@ -167,8 +167,10 @@ module Puppet
 
 newproperty(:comment) do
   desc "A description of the user.  Generally the user's full name."
-  munge do |v|
-v.respond_to?(:force_encoding) ? 
v.force_encoding(Encoding::ASCII_8BIT) : v
+  if RUBY_VERSION < "2.1.0"
+munge do |v|
+  v.respond_to?(:force_encoding) ? 
v.force_encoding(Encoding::ASCII_8BIT) : v
+end
   end
 end
 
Index: puppet-3.8.5/spec/unit/type/user_spec.rb
===
--- puppet-3.8.5.orig/spec/unit/type/user_spec.rb
+++ puppet-3.8.5/spec/unit/type/user_spec.rb
@@ -344,13 +344,20 @@ describe Puppet::Type.type(:user) do
 end
   end
 
-  describe "when managing comment on Ruby 1.9", :if => 
String.method_defined?(:encode) do
-it "should force value encoding to ASCII-8BIT" do
-  value = 'abcd™'
-  value.encoding.should == Encoding::UTF_8
-  user = described_class.new(:name => 'foo', :comment => value)
-  user[:comment].encoding.should == Encoding::ASCII_8BIT
-  user[:comment].should == value.force_encoding(Encoding::ASCII_8BIT)
+  describe "when managing comment" do
+before :each do
+  @value = 'abcd™'
+  expect(@value.encoding).to eq(Encoding::UTF_8)
+  @user = described_class.new(:name => 'foo', :comment => @value)
+end
+
+it "should be converted to ASCII_8BIT for ruby 1.9 / 2.0", :if => 
RUBY_VERSION < "2.1.0" && String.method_defined?(:encode) do
+  expect(@user[:comment].encoding).to eq(Encoding::ASCII_8BIT)
+  expect(@user[:comment]).to 
eq(@value.force_encoding(Encoding::ASCII_8BIT))
+end
+
+it "must not be converted for ruby >= 2.1", :if => RUBY_VERSION >= "2.1.0" 
do
+  expect(@user[:comment].encoding).to eq(Encoding::UTF_8)
 end
   end
 



commit scintilla for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package scintilla for openSUSE:Factory 
checked in at 2016-04-22 16:24:11

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


Package is "scintilla"

Changes:

--- /work/SRC/openSUSE:Factory/scintilla/scintilla.changes  2016-02-01 
19:57:02.0 +0100
+++ /work/SRC/openSUSE:Factory/.scintilla.new/scintilla.changes 2016-04-22 
16:24:13.0 +0200
@@ -1,0 +2,7 @@
+Sun Apr 10 09:38:49 UTC 2016 - mplus...@suse.com
+
+- Update to 3.6.4
+  * avoids some folding bugs by automatically unfolding and 
+improves clipboard robustness on Win32.
+
+---

Old:

  scintilla363.tgz

New:

  scintilla364.tgz



Other differences:
--
++ scintilla.spec ++
--- /var/tmp/diff_new_pack.vwaMJX/_old  2016-04-22 16:24:14.0 +0200
+++ /var/tmp/diff_new_pack.vwaMJX/_new  2016-04-22 16:24:14.0 +0200
@@ -16,10 +16,10 @@
 #
 
 
-%define tar_ver 363
+%define tar_ver 364
 %define so_ver 3.0
 Name:   scintilla
-Version:3.6.3
+Version:3.6.4
 Release:0
 Summary:A free source code editing component
 License:MIT

++ scintilla-shared.patch ++
--- /var/tmp/diff_new_pack.vwaMJX/_old  2016-04-22 16:24:14.0 +0200
+++ /var/tmp/diff_new_pack.vwaMJX/_new  2016-04-22 16:24:14.0 +0200
@@ -2,7 +2,7 @@
 ===
 --- gtk/makefile.orig
 +++ gtk/makefile
-@@ -41,7 +41,7 @@ DEL = del /q
+@@ -42,7 +42,7 @@ DEL = del /q
  COMPLIB=..\bin\scintilla.a
  else
  DEL = rm -f
@@ -11,16 +11,16 @@
  endif
  
  vpath %.h ../src ../include ../lexlib
-@@ -76,7 +76,7 @@ endif
+@@ -77,7 +77,7 @@ endif
  CFLAGS:=$(CTFLAGS)
- CXXTFLAGS:=--std=c++0x $(CTFLAGS) $(REFLAGS)
+ CXXTFLAGS:=--std=gnu++0x $(CTFLAGS) $(REFLAGS)
  
 -CONFIGFLAGS:=$(shell pkg-config --cflags $(GTKVERSION))
 +CONFIGFLAGS:=$(shell pkg-config --cflags --libs $(GTKVERSION))
  MARSHALLER=scintilla-marshal.o
  
  .cxx.o:
-@@ -104,8 +104,7 @@ $(COMPLIB): Accessor.o CharacterSet.o Le
+@@ -105,8 +105,7 @@ $(COMPLIB): Accessor.o CharacterSet.o Le
KeyMap.o LineMarker.o PositionCache.o ScintillaGTK.o CellBuffer.o 
CharacterCategory.o ViewStyle.o \
RESearch.o RunStyles.o Selection.o Style.o Indicator.o AutoComplete.o 
UniConversion.o XPM.o \
$(MARSHALLER) $(LEXOBJS)

++ scintilla363.tgz -> scintilla364.tgz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scintilla/cocoa/ScintillaFramework/Info.plist 
new/scintilla/cocoa/ScintillaFramework/Info.plist
--- old/scintilla/cocoa/ScintillaFramework/Info.plist   2016-01-17 
23:34:04.0 +0100
+++ new/scintilla/cocoa/ScintillaFramework/Info.plist   2016-03-13 
05:16:34.0 +0100
@@ -17,11 +17,11 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
-   3.6.3
+   3.6.4
CFBundleSignature

CFBundleVersion
-   3.6.3
+   3.6.4
NSPrincipalClass

 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/scintilla/doc/ScintillaDownload.html 
new/scintilla/doc/ScintillaDownload.html
--- old/scintilla/doc/ScintillaDownload.html2016-01-17 23:34:04.0 
+0100
+++ new/scintilla/doc/ScintillaDownload.html2016-03-13 05:16:34.0 
+0100
@@ -26,9 +26,9 @@
 
   
 
-   http://www.scintilla.org/scintilla363.zip";>
+   http://www.scintilla.org/scintilla364.zip";>
Windows  
-   http://www.scintilla.org/scintilla363.tgz";>
+   http://www.scintilla.org/scintilla364.tgz";>
   GTK+/Linux  

 
@@ -42,7 +42,7 @@
   containing very few restrictions.
 
 
-   Release 3.6.3
+   Release 3.6.4
 
 
Source Code
@@ -50,8 +50,8 @@
The source code package contains all of the source code for Scintilla 
but no binary
executable code and is available in

-   http://www.scintilla.org/scintilla363.zip";>zip format 
(1500K) commonly used on Windows
-   http://www.scintilla.org/scintilla363.tgz";>tgz format 
(1400K) commonly used on Linux and compatible operating systems
+   http://www.scintilla.org/scintilla364.zip";>zip format 
(1500K) commonly used on Windows
+   http://www.scintilla.org/scintilla364.tgz";>tgz format 
(1400K) commonly used on Linux and compatible operating systems

Instructions for building on both Windows and Linux are included in the 
readme file.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--

commit python3-numexpr for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python3-numexpr for openSUSE:Factory 
checked in at 2016-04-22 16:24:08

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-04-03 23:07:30.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-numexpr.new/python3-numexpr.changes 
2016-04-22 16:24:09.0 +0200
@@ -1,0 +2,8 @@
+Fri Apr  8 06:03:57 UTC 2016 - a...@gmx.de
+
+- update to version 2.5.2:
+  * conj() and abs() actually added as VML-powered functions,
+preventing the same problems than log10() before (PR #212). Thanks
+to Tom Kooij for the fix!
+
+---

Old:

  numexpr-2.5.1.tar.gz

New:

  numexpr-2.5.2.tar.gz



Other differences:
--
++ python3-numexpr.spec ++
--- /var/tmp/diff_new_pack.xyZEKd/_old  2016-04-22 16:24:10.0 +0200
+++ /var/tmp/diff_new_pack.xyZEKd/_new  2016-04-22 16:24:10.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-numexpr
-Version:2.5.1
+Version:2.5.2
 Release:0
 Url:https://github.com/pydata/numexpr
 Summary:Fast numerical expression evaluator for NumPy

++ numexpr-2.5.1.tar.gz -> numexpr-2.5.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/numexpr-2.5.1/ANNOUNCE.rst 
new/numexpr-2.5.2/ANNOUNCE.rst
--- old/numexpr-2.5.1/ANNOUNCE.rst  2016-03-31 09:22:51.0 +0200
+++ new/numexpr-2.5.2/ANNOUNCE.rst  2016-04-07 11:35:39.0 +0200
@@ -1,5 +1,5 @@
 =
- Announcing Numexpr 2.5.1
+ Announcing Numexpr 2.5.2
 =
 
 Numexpr is a fast numerical expression evaluator for NumPy.  With it,
@@ -21,12 +21,11 @@
 What's new
 ==
 
-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.
+This is a maintenance release shaking some remaining problems with VML
+(it is nice to see how Anaconda VML's support helps raising hidden
+issues).  Now conj() and abs() are actually added as VML-powered
+functions, preventing the same problems than log10() before (PR #212);
+thanks to Tom Kooij.  Upgrading to this release is highly recommended.
 
 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.1/PKG-INFO new/numexpr-2.5.2/PKG-INFO
--- old/numexpr-2.5.1/PKG-INFO  2016-03-31 09:37:44.0 +0200
+++ new/numexpr-2.5.2/PKG-INFO  2016-04-07 11:41:55.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: numexpr
-Version: 2.5.1
+Version: 2.5.2
 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.1/README.rst new/numexpr-2.5.2/README.rst
--- old/numexpr-2.5.1/README.rst2016-03-22 22:17:02.0 +0100
+++ new/numexpr-2.5.2/README.rst2016-04-07 11:40:55.0 +0200
@@ -11,9 +11,11 @@
 
 .. |travis| image:: https://travis-ci.org/pydata/numexpr.png?branch=master
 :target: https://travis-ci.org/pydata/numexpr
-.. |appveyor| image:: 
https://ci.appveyor.com/api/projects/status/github/FrancescAlted/numexpr
-:target: https://ci.appveyor.com/project/FrancescAlted/numexpr
-.. |pypi| image:: https://pypip.in/d/numexpr/badge.png
+.. |appveyor| image:: 
https://ci.appveyor.com/api/projects/status/github/pydata/numexpr
+:target: https://ci.appveyor.com/project/pydata/numexpr
+.. |pypi| image:: https://img.shields.io/pypi/dm/numexpr.png
+:target: https://pypi.python.org/pypi/numexpr
+.. |version| image:: https://img.shields.io/pypi/v/numexpr.png
 :target: https://pypi.python.org/pypi/numexpr
 
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/numexpr-2.5.1/RELEASE_NOTES.rst 
new/numexpr-2.5.2/RELEASE_NOTES.rst
--- old/numexpr-2.5.1/RELEASE_NOTES.rst 2016-03-31 09:34:43.0 +0200
+++ new/numexpr-2.5.2/RELEASE_NOTES.rst 2016-04-03 18:35:07.0 +0200
@@ -2,6 +2,13 @@
  Release notes for Numexpr 2.5 serie

commit python-pecan for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python-pecan for openSUSE:Factory 
checked in at 2016-04-22 16:23:36

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


Package is "python-pecan"

Changes:

--- /work/SRC/openSUSE:Factory/python-pecan/python-pecan.changes
2015-09-30 05:50:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-pecan.new/python-pecan.changes   
2016-04-22 16:23:37.0 +0200
@@ -1,0 +2,9 @@
+Fri Mar 18 10:24:38 UTC 2016 - tbecht...@suse.com
+
+- update to 1.0.5:
+  * Fix a bug in controller argspec detection when class-based decorators are 
used
+  * Removed an open file handle leak when pecan renders errors for Jinja2 and 
Genshi templates
+  * Resolved a bug which caused log output to be duplicated in projects 
created with pecan create
+  * Fixed a bug in pecan.hooks.HookController for newer versions of Python3.4
+
+---

Old:

  pecan-1.0.2.tar.gz

New:

  pecan-1.0.5.tar.gz



Other differences:
--
++ python-pecan.spec ++
--- /var/tmp/diff_new_pack.HdKS4t/_old  2016-04-22 16:23:38.0 +0200
+++ /var/tmp/diff_new_pack.HdKS4t/_new  2016-04-22 16:23:38.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-pecan
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-pecan
-Version:1.0.2
+Version:1.0.5
 Release:0
 Summary:A WSGI object-dispatching web framework, designed to be lean 
and fast
 License:BSD-3-Clause

++ pecan-1.0.2.tar.gz -> pecan-1.0.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pecan-1.0.2/PKG-INFO new/pecan-1.0.5/PKG-INFO
--- old/pecan-1.0.2/PKG-INFO2015-08-21 20:53:28.0 +0200
+++ new/pecan-1.0.5/PKG-INFO2016-03-16 17:52:22.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: pecan
-Version: 1.0.2
+Version: 1.0.5
 Summary: A WSGI object-dispatching web framework, designed to be lean and 
fast, with few dependencies.
 Home-page: http://github.com/pecan/pecan
 Author: Jonathan LaCour
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pecan-1.0.2/pecan/hooks.py 
new/pecan-1.0.5/pecan/hooks.py
--- old/pecan-1.0.2/pecan/hooks.py  2015-07-31 20:30:09.0 +0200
+++ new/pecan-1.0.5/pecan/hooks.py  2016-03-16 17:50:58.0 +0100
@@ -48,7 +48,7 @@
 if (
 isinstance(value, types.MethodType) and
 any(filter(lambda c: value.__func__ in c.__dict__.values(),
-   value.im_class.mro()[1:]))
+   value.__self__.__class__.mro()[1:]))
 ):
 continue
 walk_controller(root_class, value, hooks, seen)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pecan-1.0.2/pecan/scaffolds/base/config.py_tmpl 
new/pecan-1.0.5/pecan/scaffolds/base/config.py_tmpl
--- old/pecan-1.0.2/pecan/scaffolds/base/config.py_tmpl 2015-07-31 
20:30:09.0 +0200
+++ new/pecan-1.0.5/pecan/scaffolds/base/config.py_tmpl 2016-03-16 
17:50:58.0 +0100
@@ -20,8 +20,8 @@
 logging = {
 'root': {'level': 'INFO', 'handlers': ['console']},
 'loggers': {
-'${package}': {'level': 'DEBUG', 'handlers': ['console']},
-'pecan': {'level': 'DEBUG', 'handlers': ['console']},
+'${package}': {'level': 'DEBUG', 'handlers': ['console'], 'propagate': 
False},
+'pecan': {'level': 'DEBUG', 'handlers': ['console'], 'propagate': 
False},
 'py.warnings': {'handlers': ['console']},
 '__force_dict__': True
 },
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pecan-1.0.2/pecan/scaffolds/rest-api/config.py_tmpl 
new/pecan-1.0.5/pecan/scaffolds/rest-api/config.py_tmpl
--- old/pecan-1.0.2/pecan/scaffolds/rest-api/config.py_tmpl 2015-07-31 
20:30:09.0 +0200
+++ new/pecan-1.0.5/pecan/scaffolds/rest-api/config.py_tmpl 2016-03-16 
17:50:58.0 +0100
@@ -14,8 +14,8 @@
 logging = {
 'root': {'level': 'INFO', 'handlers': ['console']},
 'loggers': {
-'${package}': {'level': 'DEBUG', 'handlers': ['console']},
-'pecan': {'level': 'DEBUG', 'handlers': ['console']},
+'${package}': {'level': 'DEBUG', 'handlers'

commit docker-compose for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package docker-compose for openSUSE:Factory 
checked in at 2016-04-22 16:23:22

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


Package is "docker-compose"

Changes:

--- /work/SRC/openSUSE:Factory/docker-compose/docker-compose.changes
2015-12-29 13:00:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.docker-compose.new/docker-compose.changes   
2016-04-22 16:23:23.0 +0200
@@ -1,0 +2,22 @@
+Thu Mar 17 16:48:03 UTC 2016 - opensuse-packag...@opensuse.org
+
+- Update to version 1.6.2:
+  + Add failing test for --abort-on-container-exit
+  + Stop other containers if the flag is set.
+  + Revert "Change special case from '_', None to ()"
+  + Make environment variables without a value the same as docker-cli.
+  + Updating Dockerfile
+  + Bump 1.6.1
+  + Update docker-py version in requirements to 1.7.2
+  + Bump 1.6.2
+- add cached-property requirement 
+- review version requirements so we don't have surprises if python
+  packages are updated 
+
+- fix fix-requirements.patch based on versions in Factory
+
+
+This fixes bsc#954145, docker-compose provided by tumbleweed does not run
+
+
+---

Old:

  compose-1.5.2.tar.xz

New:

  compose-1.6.2.tar.xz



Other differences:
--
++ docker-compose.spec ++
--- /var/tmp/diff_new_pack.vIdAta/_old  2016-04-22 16:23:24.0 +0200
+++ /var/tmp/diff_new_pack.vIdAta/_new  2016-04-22 16:23:24.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package docker-compose
 #
-# 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 mod_name compose
 
 Name:   docker-compose
-Version:1.5.2
+Version:1.6.2
 Release:0
 Summary:Define and run complex applications using Docker
 License:Apache-2.0
@@ -30,16 +30,28 @@
 Patch0: fix-requirements.patch
 Requires:   docker
 Requires:   python-PyYAML   >= 3.11
-Requires:   python-docker-py>= 1.5.0
-Requires:   python-dockerpty>= 0.3.4
+Conflicts:  python-PyYAML   >= 4
+Requires:   python-docker-py>= 1.7.0
+Conflicts:  python-docker-py>= 2
+Requires:   python-dockerpty>= 0.4.1
+Conflicts:  python-dockerpty>= 0.5
 Requires:   python-docopt   >= 0.6.1
+Conflicts:  python-docopt   >= 0.7
 Requires:   python-enum34   >= 1.0
+Conflicts:  python-enum34   >= 2
 Requires:   python-jsonschema   >= 2.5.1
+Conflicts:  python-jsonschema   >= 3
 Requires:   python-requests >= 2.7.0
+Conflicts:  python-requests >= 2.10
 Requires:   python-setuptools
 Requires:   python-six  >= 1.7.3
+Conflicts:  python-six  >= 2
 Requires:   python-texttable>= 0.8.2
+Conflicts:  python-texttable>= 0.9
 Requires:   python-websocket-client >= 0.32.0
+Conflicts:  python-websocket-client >= 1.0
+Requires:   python-cached-property  >= 1.2.0
+Conflicts:  python-cached-property  >= 2
 BuildRequires:  python-setuptools
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 

++ _service ++
--- /var/tmp/diff_new_pack.vIdAta/_old  2016-04-22 16:23:24.0 +0200
+++ /var/tmp/diff_new_pack.vIdAta/_new  2016-04-22 16:23:24.0 +0200
@@ -4,8 +4,8 @@
 g...@github.com:docker/compose.git
 .git
 compose
-1.5.2
-1.5.2
+1.6.2
+1.6.2
 enable
   
   

++ compose-1.5.2.tar.xz -> compose-1.6.2.tar.xz ++
 16720 lines of diff (skipped)

++ fix-requirements.patch ++
--- /var/tmp/diff_new_pack.vIdAta/_old  2016-04-22 16:23:24.0 +0200
+++ /var/tmp/diff_new_pack.vIdAta/_new  2016-04-22 16:23:24.0 +0200
@@ -1,35 +1,22 @@
-diff --git a/requirements.txt b/requirements.txt
-index 60327d7..65169a6 100644
 a/requirements.txt
-+++ b/requirements.txt
-@@ -2,7 +2,7 @@ PyYAML==3.11
- docker-py==1.5.0
- dockerpty==0.3.4
- docopt==0.6.1
--enum34==1.0.4
-+enum34>=1.0
- jsonschema==2.5.1
- requests==2.7.0
- six==1.7.3
 diff --git a/setup.py b/setup.py
-index 4020122..6f43d2a 100644
+index df4172c..dd9a00e 100644
 --- a/setup.py
 +++ b/setup.py
-@@ -30,7 +30,7 @@ def find_version(*file_paths):
- install_requires = [
+@@ -31,7 +31,7 @@ install_requires = [
+ 'cached-property >= 1.2.0, < 2',
  'docopt >= 0.6.1, < 0

commit python3-WebOb for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python3-WebOb for openSUSE:Factory 
checked in at 2016-04-22 16:23:28

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


Package is "python3-WebOb"

Changes:

--- /work/SRC/openSUSE:Factory/python3-WebOb/python3-WebOb.changes  
2015-11-02 12:55:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-WebOb.new/python3-WebOb.changes 
2016-04-22 16:23:30.0 +0200
@@ -1,0 +2,42 @@
+Sat Mar 26 03:59:28 UTC 2016 - a...@gmx.de
+
+- specfile:
+  * update copyright year
+
+- update to version 1.6.0:
+  * Compatibility
++ Python 3.2 is no longer supported by WebOb
+  * Bugfix
++ Request.decode attempted to read from the an already consumed
+  stream, it has now been redirected to another stream to read
+  from. See https://github.com/Pylons/webob/pull/183
++ The application/json media type does not allow for a charset as
+  discovery of the encoding is done at the JSON layer. Upon
+  initialization of a Response WebOb will no longer add a charset
+  if the content-type is set to JSON. See
+  https://github.com/Pylons/webob/pull/197 and
+  https://github.com/Pylons/pyramid/issues/1611
+  * Features
++ Lazily HTML escapes environment keys in HTTP Exceptions so that
+  those keys in the environ that are not used in the output of the
+  page don’t raise an exception due to inability to be properly
+  escaped. See https://github.com/Pylons/webob/pull/139
++ MIMEAccept now accepts comparisons against wildcards, this
+  allows one to match on just the media type or sub-type, without
+  having to explicitly match on both the media type and sub-type
+  at the same time. See https://github.com/Pylons/webob/pull/185
++ Add the ability to return a JSON body from an exception. Using
+  the Accept information in the request, the exceptions will now
+  automatically return a JSON version of the exception instead of
+  just HTML or text. See https://github.com/Pylons/webob/pull/230
+  and https://github.com/Pylons/webob/issues/209
+  * Security
++ exc._HTTPMove and any subclasses will now raise a ValueError if
+  the location field contains a line feed or carriage
+  return. These values may lead to possible HTTP Response
+  Splitting. The header_getter descriptor has also been modified
+  to no longer accept headers with a line feed or carriage
+  return. See: https://github.com/Pylons/webob/pull/229 and
+  https://github.com/Pylons/webob/issues/217
+
+---

Old:

  WebOb-1.5.1.tar.gz

New:

  WebOb-1.6.0.tar.gz



Other differences:
--
++ python3-WebOb.spec ++
--- /var/tmp/diff_new_pack.ArJLAW/_old  2016-04-22 16:23:31.0 +0200
+++ /var/tmp/diff_new_pack.ArJLAW/_new  2016-04-22 16:23:31.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python3-WebOb
 #
-# 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-WebOb
-Version:1.5.1
+Version:1.6.0
 Release:0
 Summary:WSGI request and response object
 License:MIT

++ WebOb-1.5.1.tar.gz -> WebOb-1.6.0.tar.gz ++
 1858 lines of diff (skipped)




commit python-icalendar for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python-icalendar for 
openSUSE:Factory checked in at 2016-04-22 16:23:42

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


Package is "python-icalendar"

Changes:

--- /work/SRC/openSUSE:Factory/python-icalendar/python-icalendar.changes
2015-10-30 13:43:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-icalendar.new/python-icalendar.changes   
2016-04-22 16:23:44.0 +0200
@@ -1,0 +2,5 @@
+Tue Mar 29 22:32:54 UTC 2016 - dmuel...@suse.com
+
+- adjust to python-python-dateutil renaming 
+
+---



Other differences:
--
++ python-icalendar.spec ++
--- /var/tmp/diff_new_pack.FOBjjo/_old  2016-04-22 16:23:45.0 +0200
+++ /var/tmp/diff_new_pack.FOBjjo/_new  2016-04-22 16:23:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-icalendar
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 7/2011 - now  open-slx GmbH 
 # Copyright (c) 2009 - 7/2011 Sascha Manns  
 #
@@ -30,12 +30,12 @@
 Source0:
https://pypi.python.org/packages/source/i/icalendar/%{modname}-%{version}.tar.gz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  fdupes
-BuildRequires:  python-dateutil
 BuildRequires:  python-devel
 BuildRequires:  python-pytest
+BuildRequires:  python-python-dateutil
 BuildRequires:  python-pytz
 BuildRequires:  python-setuptools
-Requires:   python-dateutil
+Requires:   python-python-dateutil
 Requires:   python-pytz
 %{py_requires}
 %if 0%{?suse_version} <= 1110




commit python3-astroid for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python3-astroid for openSUSE:Factory 
checked in at 2016-04-22 16:23:30

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


Package is "python3-astroid"

Changes:

--- /work/SRC/openSUSE:Factory/python3-astroid/python3-astroid.changes  
2016-02-01 19:57:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-astroid.new/python3-astroid.changes 
2016-04-22 16:23:31.0 +0200
@@ -1,0 +2,16 @@
+Sat Mar 26 04:30:01 UTC 2016 - a...@gmx.de
+
+- update to version 1.4.5:
+  * decoratornames() does not leak InferenceError anymore.
+  * wildcard_imported_names() got replaced by _public_names()
+Our understanding of wildcard imports through __all__ was
+half baked to say at least, since we couldn't account for
+modifications of the list, which results in tons of false positives.
+Instead, we replaced it with _public_names(), a method which returns
+all the names that are publicly available in a module, that is that
+don't start with an underscore, even though this means that there
+is a possibility for other names to be leaked out even though
+they are not present in the __all__ variable.
+The method is private in 1.4.X.
+
+---

Old:

  astroid-1.4.4.tar.gz

New:

  astroid-1.4.5.tar.gz



Other differences:
--
++ python3-astroid.spec ++
--- /var/tmp/diff_new_pack.pKZOHR/_old  2016-04-22 16:23:32.0 +0200
+++ /var/tmp/diff_new_pack.pKZOHR/_new  2016-04-22 16:23:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-astroid
-Version:1.4.4
+Version:1.4.5
 Release:0
 Url:https://github.com/pycqa/astroid
 Summary:Rebuild a new abstract syntax tree from Python's ast

++ astroid-1.4.4.tar.gz -> astroid-1.4.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/astroid-1.4.4/ChangeLog new/astroid-1.4.5/ChangeLog
--- old/astroid-1.4.4/ChangeLog 2016-01-15 18:00:46.0 +0100
+++ new/astroid-1.4.5/ChangeLog 2016-03-21 19:18:08.0 +0100
@@ -1,6 +1,24 @@
 Change log for the astroid package (used to be astng)
 =
 
+2016-03-21 -- 1.4.5
+
+* decoratornames() does not leak InferenceError anymore.
+
+* wildcard_imported_names() got replaced by _public_names()
+
+  Our understanding of wildcard imports through __all__ was
+  half baked to say at least, since we couldn't account for
+  modifications of the list, which results in tons of false positives.
+  Instead, we replaced it with _public_names(), a method which returns
+  all the names that are publicly available in a module, that is that
+  don't start with an underscore, even though this means that there
+  is a possibility for other names to be leaked out even though
+  they are not present in the __all__ variable.
+
+  The method is private in 1.4.X.
+
+
 2016-01-15 -- 1.4.4
 
 * unpack_infer raises InferenceError if it can't operate
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/astroid-1.4.4/PKG-INFO new/astroid-1.4.5/PKG-INFO
--- old/astroid-1.4.4/PKG-INFO  2016-01-15 18:12:28.0 +0100
+++ new/astroid-1.4.5/PKG-INFO  2016-03-21 19:31:24.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: astroid
-Version: 1.4.4
+Version: 1.4.5
 Summary: A abstract syntax tree for Python with inference support.
 Home-page: http://bitbucket.org/logilab/astroid
 Author: Logilab
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/astroid-1.4.4/astroid/__pkginfo__.py 
new/astroid-1.4.5/astroid/__pkginfo__.py
--- old/astroid-1.4.4/astroid/__pkginfo__.py2016-01-15 18:00:51.0 
+0100
+++ new/astroid-1.4.5/astroid/__pkginfo__.py2016-03-21 19:17:54.0 
+0100
@@ -20,7 +20,7 @@
 
 modname = 'astroid'
 
-numversion = (1, 4, 4)
+numversion = (1, 4, 5)
 version = '.'.join([str(num) for num in numversion])
 
 install_requires = ['six', 'lazy_object_proxy', 'wrapt']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/astroid-1.4.4/astroid/builder.py 
new/astroid-1.4.5/astroid/builder.py
--- old/astroid-1.4.4/astroid/builder.py2016-01-15 18:00:20.0 
+0100
+++ new/astroid-1.4.5/astroid/builder.py2016-03-21 19:05:16.0 
+0100
@@ -202,7 +202,7 @@
 imported = node.do_import_module()
 except exceptions.InferenceError:
 continue
-

commit python-reportlab for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python-reportlab for 
openSUSE:Factory checked in at 2016-04-22 16:23:38

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


Package is "python-reportlab"

Changes:

--- /work/SRC/openSUSE:Factory/python-reportlab/python-reportlab.changes
2013-11-25 16:03:36.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-reportlab.new/python-reportlab.changes   
2016-04-22 16:23:40.0 +0200
@@ -1,0 +2,85 @@
+Tue Mar 29 22:22:27 UTC 2016 - dmuel...@suse.com
+
+- install LICENSE.txt
+
+---
+Sat Nov  7 10:47:45 UTC 2015 - frei...@opensuse.org
+
+- Fixed source download link.
+
+---
+Fri Jun  5 07:15:04 UTC 2015 - kkae...@suse.com
+
+- Update to 3.2.0
+  * Added proportional underlining specific to font sizes, set via
+the `underlineProportion` attribute of ParagraphStyles. 
+  * TrueType fonts: added support for cmaps 10 & 13
+  * DocTemplate class now supports a boolean `displayDocTitle` argument.
+  * TableofContents now supports a formatter argument to allow
+formatting of the displayed page numbers (eg for appendices etc).
+  * Table `repeatRows` can now be a tuple of row numbers to allow
+incomplete ranges of rows to be repeated. 
+  * Tables now do pass instance.`spaceBefore` & `spaceAfter` to
+their split children when split 
+  * Several strangenesses were fixed in the pdfbase.pdfform module;
+Multiple usage is now allowed.
+  * Error message fixes
+  * Various environment fixes for Google Application Environment
+  * Resource fixes
+  * PDFDoc can now set the `Lang` attribute
+  * canvas.drawString and similar now allow the character spacing
+to be set 
+  * Index of accented stuff has been improved
+  * RTL code was improved
+  * fix Propertyset.clone
+  * `flowables.py`: fix ImageAndFlowables so it avoids testing
+negative availableWidth 
+
+---
+Fri Jun  5 07:15:03 UTC 2015 - kkae...@suse.com
+
+- Update to 3.1
+  * support for emoji
+  * improved pip-based installers
+
+---
+Fri Jun  5 07:15:02 UTC 2015 - kkae...@suse.com
+
+- Update to 3.0
+  * ReportLab 3.0 now supports Python 2.7, 3.3 and higher.  
+  * There has been a substantial internal rewrite to ensure
+consistent use of unicode strings for natural-language text,
+and of bytes for all file format internals.
+  * Python 3.x compatibility
+  * New features
+- Add ability to output greyscale and 1-bit PIL images without
+  conversion to RGB. (contributed by Matthew Duggan)
+- highlight annotation (contributed by Ben Echols)
+  * Other
+- numerous very minor fixes, visible through BitBucket.
+
+---
+Sun Nov 24 18:38:52 UTC 2013 - kkae...@suse.com
+
+- Update to version 2.7
+  * Charts / graphics enhancements
+- Added SimpleTimeSeriesPlot
+- added _computeMaxSpace
+- added in lineStyle (for bars)
+- improved SVG rendering
+- Pie Chart now has an `innerRadiusFraction` to allow doughnut-like
+  appearance for 2d charts
+  * Charts/graphics bug fixes
+- piecharts.py: fix Pie3d __init__ to call its superclass
+- linecharts.py: fix swatch creation
+- fixed `y` axis in the simple time series plot
+  * PDF
+- Fixes to testshapes & pdfform resetting
+- colors.py
+- various minor fixes
+  * Platypus
+- Defined a small bullet rather than a big circle as the default for 
unordered lists
+- fixed attribute spelling bug
+- fixed CJK + endDots
+
+---

Old:

  reportlab-2.7.tar.gz

New:

  reportlab-3.2.0.tar.gz



Other differences:
--
++ python-reportlab.spec ++
--- /var/tmp/diff_new_pack.9NjElD/_old  2016-04-22 16:23:41.0 +0200
+++ /var/tmp/diff_new_pack.9NjElD/_new  2016-04-22 16:23:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-reportlab
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -15,15 +15,16 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define modname reportlab
 Name:   python-%{modname}
-Version:2.7
+Version:3.2.0
 Release:0
 Url:

commit python3-aiohttp for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python3-aiohttp for openSUSE:Factory 
checked in at 2016-04-22 16:23:24

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


Package is "python3-aiohttp"

Changes:

--- /work/SRC/openSUSE:Factory/python3-aiohttp/python3-aiohttp.changes  
2016-03-17 16:48:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-aiohttp.new/python3-aiohttp.changes 
2016-04-22 16:23:24.0 +0200
@@ -1,0 +2,6 @@
+Sat Mar 26 03:52:52 UTC 2016 - a...@gmx.de
+
+- update to version 0.21.5:
+  * Fix command line arg parsing #797
+
+---

Old:

  aiohttp-0.21.4.tar.gz

New:

  aiohttp-0.21.5.tar.gz



Other differences:
--
++ python3-aiohttp.spec ++
--- /var/tmp/diff_new_pack.rLkJC5/_old  2016-04-22 16:23:25.0 +0200
+++ /var/tmp/diff_new_pack.rLkJC5/_new  2016-04-22 16:23:25.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-aiohttp
-Version:0.21.4
+Version:0.21.5
 Release:0
 Url:https://pypi.python.org/pypi/aiohttp
 Summary:Http client/server for asyncio

++ aiohttp-0.21.4.tar.gz -> aiohttp-0.21.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiohttp-0.21.4/CHANGES.txt 
new/aiohttp-0.21.5/CHANGES.txt
--- old/aiohttp-0.21.4/CHANGES.txt  2016-03-13 12:17:25.0 +0100
+++ new/aiohttp-0.21.5/CHANGES.txt  2016-03-22 06:47:06.0 +0100
@@ -1,6 +1,11 @@
 CHANGES
 ===
 
+0.21.5 (04-22-2016)
+---
+
+- Fix command line arg parsing #797
+
 0.21.4 (03-12-2016)
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiohttp-0.21.4/PKG-INFO new/aiohttp-0.21.5/PKG-INFO
--- old/aiohttp-0.21.4/PKG-INFO 2016-03-13 12:18:42.0 +0100
+++ new/aiohttp-0.21.5/PKG-INFO 2016-03-22 06:48:38.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: aiohttp
-Version: 0.21.4
+Version: 0.21.5
 Summary: http client/server for asyncio
 Home-page: https://github.com/KeepSafe/aiohttp/
 Author: Andrew Svetlov
@@ -150,6 +150,11 @@
 CHANGES
 ===
 
+0.21.5 (04-22-2016)
+---
+
+- Fix command line arg parsing #797
+
 0.21.4 (03-12-2016)
 ---
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiohttp-0.21.4/aiohttp/__init__.py 
new/aiohttp-0.21.5/aiohttp/__init__.py
--- old/aiohttp-0.21.4/aiohttp/__init__.py  2016-03-13 12:17:25.0 
+0100
+++ new/aiohttp-0.21.5/aiohttp/__init__.py  2016-03-22 06:47:06.0 
+0100
@@ -1,6 +1,6 @@
 # This relies on each of the submodules having an __all__ variable.
 
-__version__ = '0.21.4'
+__version__ = '0.21.5'
 
 
 from . import hdrs  # noqa
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiohttp-0.21.4/aiohttp/web.py 
new/aiohttp-0.21.5/aiohttp/web.py
--- old/aiohttp-0.21.4/aiohttp/web.py   2016-03-13 12:17:25.0 +0100
+++ new/aiohttp-0.21.5/aiohttp/web.py   2016-03-22 06:47:06.0 +0100
@@ -349,7 +349,7 @@
 type=int,
 default="8080"
 )
-args, extra_args = arg_parser.parse_known_args(argv)
+args, extra_argv = arg_parser.parse_known_args(argv)
 
 # Import logic
 mod_str, _, func_str = args.entry_func.partition(":")
@@ -368,9 +368,9 @@
 except AttributeError:
 arg_parser.error("module %r has no attribute %r" % (mod_str, func_str))
 
-app = func(extra_args)
+app = func(extra_argv)
 run_app(app, host=args.hostname, port=args.port)
 arg_parser.exit(message="Stopped\n")
 
 if __name__ == "__main__":
-main(sys.argv)
+main(sys.argv[1:])
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/aiohttp-0.21.4/aiohttp.egg-info/PKG-INFO 
new/aiohttp-0.21.5/aiohttp.egg-info/PKG-INFO
--- old/aiohttp-0.21.4/aiohttp.egg-info/PKG-INFO2016-03-13 
12:18:42.0 +0100
+++ new/aiohttp-0.21.5/aiohttp.egg-info/PKG-INFO2016-03-22 
06:48:37.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: aiohttp
-Version: 0.21.4
+Version: 0.21.5
 Summary: http client/server for asyncio
 Home-page: https://github.com/KeepSafe/aiohttp/
 Author: Andrew Svetlov
@@ -150,6 +150,11 @@
 CHANGES
 ===
 
+0.21.5 (04-22-2016)
+---
+
+- Fix command line arg parsing #797
+
 0.21.4 (03-12-2016)
 ---

commit python-d2to1 for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python-d2to1 for openSUSE:Factory 
checked in at 2016-04-22 16:23:37

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


Package is "python-d2to1"

Changes:

--- /work/SRC/openSUSE:Factory/python-d2to1/python-d2to1.changes
2013-11-15 16:56:44.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-d2to1.new/python-d2to1.changes   
2016-04-22 16:23:38.0 +0200
@@ -1,0 +2,26 @@
+Wed Mar 16 21:22:46 UTC 2016 - antoine.belv...@laposte.net
+
+- Update to 0.2.12:
+  + Fixed a corner case where depending on the order of events when
+installing multiple packages (i.e. when installing packages
+with dependencies, some of which might also use d2to1) would
+end up calling the incorrect Distribution class (the patched
+version from setuptools, where d2to1 needs to get to the
+unpatched version from distutils for some cases).
+  + Upgraded bundled copy of the six module to the current version
+(1.9.0). This fixes incompatibility between d2to1 and other
+packages that import different versions of six during their
+setup (the older version of six had a habit of fighting with
+other six instances over sys.modules, which is fixed in newer
+versions).
+  + Upgraded to latest ez_setup.py so that the most up to date
+version of setuptools will be correctly bootstrapped in the
+rare cases that it is needed.
+  + Included some miscellaneous hacks to keep d2to1 working,
+nominally, with Python 2.5 despite the broad move away from
+Python 2.5 support in the Python community. The d2to1 v0.2.x
+releases will be the last to continue Python 2.5 support,
+given that testing it has become more difficult (and the
+overhead is probably no longer worth it).
+
+---

Old:

  d2to1-0.2.11.tar.gz

New:

  d2to1-0.2.12.tar.gz



Other differences:
--
++ python-d2to1.spec ++
--- /var/tmp/diff_new_pack.vbQdqf/_old  2016-04-22 16:23:38.0 +0200
+++ /var/tmp/diff_new_pack.vbQdqf/_new  2016-04-22 16:23:38.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-d2to1
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,7 +17,7 @@
 
 
 Name:   python-d2to1
-Version:0.2.11
+Version:0.2.12
 Release:0
 Url:http://pypi.python.org/pypi/d2to1
 Summary:Allows using distutils2-like setup.cfg with a 
distribute/setuptools

++ d2to1-0.2.11.tar.gz -> d2to1-0.2.12.tar.gz ++
 2440 lines of diff (skipped)




commit perl-Date-Holidays-CZ for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-Date-Holidays-CZ for 
openSUSE:Factory checked in at 2016-04-22 16:23:18

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


Package is "perl-Date-Holidays-CZ"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Date-Holidays-CZ/perl-Date-Holidays-CZ.changes  
2016-01-28 17:25:35.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Date-Holidays-CZ.new/perl-Date-Holidays-CZ.changes
 2016-04-22 16:23:19.0 +0200
@@ -1,0 +2,8 @@
+Wed Mar 23 10:35:23 UTC 2016 - ncut...@suse.com
+
+- added a version 0.09 for the changes since 0.08 
+- updated to latest upstream version (0.11). The only significant
+  change is:
+  + CZ.pm: support Good Friday (new holiday as of 2016)
+
+---

Old:

  Date-Holidays-CZ-0.08.tar.gz

New:

  Date-Holidays-CZ-0.11.tar.gz



Other differences:
--
++ perl-Date-Holidays-CZ.spec ++
--- /var/tmp/diff_new_pack.yMWQW5/_old  2016-04-22 16:23:20.0 +0200
+++ /var/tmp/diff_new_pack.yMWQW5/_new  2016-04-22 16:23:20.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Date-Holidays-CZ
 #
-# 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-Date-Holidays-CZ
-Version:0.08
+Version:0.11
 Release:0
 %define cpan_name Date-Holidays-CZ
 Summary:Determine Czech holidays

++ Date-Holidays-CZ-0.08.tar.gz -> Date-Holidays-CZ-0.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Date-Holidays-CZ-0.08/Changes 
new/Date-Holidays-CZ-0.11/Changes
--- old/Date-Holidays-CZ-0.08/Changes   2015-09-12 11:13:23.0 +0200
+++ new/Date-Holidays-CZ-0.11/Changes   2016-03-23 11:24:41.0 +0100
@@ -11,6 +11,24 @@
distribution
 0.07 Removed auto-added docu-cruft from CZ.pm
 
-0.08  TBA
+0.08
 - complete rewrite based on Date::Holidays::DE
 
+0.09
+- Add release and pre-release scripts
+- Build.PL: do not auto-generate README
+- CZ.pm: POD cleanup
+- Require perl 5.010 and later, instead of 5.012
+- Build.PL: do not require a particular version of Module::Build
+- t/00-load.t: use done_testing() instead of bareword
+- t/00-load.t: support SLE_11_SP3
+
+0.10 2016-03-23
+- CZ.pm: support Good Friday
+- META.{json,yml}: add META files to git repo
+- release.sh: fix brokenness in release script
+
+0.11 2016-03-23 11:23 CET
+- Update prerelease and release scripts to latest upstream
+- prerelease.sh: adapt to two significant digits in version number
+
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Date-Holidays-CZ-0.08/META.json 
new/Date-Holidays-CZ-0.11/META.json
--- old/Date-Holidays-CZ-0.08/META.json 2015-09-12 11:13:23.0 +0200
+++ new/Date-Holidays-CZ-0.11/META.json 2016-03-23 11:24:41.0 +0100
@@ -35,7 +35,7 @@
"provides" : {
   "Date::Holidays::CZ" : {
  "file" : "lib/Date/Holidays/CZ.pm",
- "version" : "0.08"
+ "version" : "0.11"
   }
},
"release_status" : "stable",
@@ -44,11 +44,12 @@
  "web" : "https://github.com/smithfarm/date-holidays-cz/issues";
   },
   "license" : [
- "http://opensource.org/licenses/BSD-3-Clause";
+ "http://opensource.org/licenses/bsd-license.php";
   ],
   "repository" : {
  "url" : "https://github.com/smithfarm/date-holidays-cz.git";
   }
},
-   "version" : "0.08"
+   "version" : "0.11",
+   "x_serialization_backend" : "JSON::PP version 2.27203"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Date-Holidays-CZ-0.08/META.yml 
new/Date-Holidays-CZ-0.11/META.yml
--- old/Date-Holidays-CZ-0.08/META.yml  2015-09-12 11:13:23.0 +0200
+++ new/Date-Holidays-CZ-0.11/META.yml  2016-03-23 11:24:41.0 +0100
@@ -8,7 +8,7 @@
   Module::Build: '0'
   Software::License: '0'
 dynamic_config: 1
-generated_by: 'Module::Build version 0.4205, CPAN::Meta::Converter version 
2.142060'
+generated_by: 'Module::Build version 0.4205, CPAN::Meta::Converter version 
2.150005'
 license: bsd
 meta-spec:
   url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -17,12 +17,13 @@
 provides:
   Date::Holidays::CZ:
 file: lib/Date/Holidays/CZ.pm
-version: '0.08'
+version: '0.11'
 requires:
   Date::Calc: '5'
   perl: '5.01'
 resou

commit python3-pylint for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python3-pylint for openSUSE:Factory 
checked in at 2016-04-22 16:23:25

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


Package is "python3-pylint"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pylint/python3-pylint.changes
2016-01-26 10:15:20.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pylint.new/python3-pylint.changes   
2016-04-22 16:23:26.0 +0200
@@ -1,0 +2,23 @@
+Sat Mar 26 03:55:09 UTC 2016 - a...@gmx.de
+
+- update to version 1.5.5:
+  * Let visit_importfrom from Python 3 porting checker be called when
+everything is disabled Because the visit method was filtering the
+patterns it was expecting to be activated, it didn't run when
+everything but one pattern was disabled, leading to spurious false
+positives.  Close #852
+  * Don't emit unsubscriptable-value for classes with unknown base
+classes.  Close #776.
+  * Use an OrderedDict for storing the configuration elements This
+fixes an issue related to impredictible order of the disable /
+enable elements from a config file. In certain cases, the disable
+was coming before the enable which resulted in classes of errors
+to be enabled, even though the intention was to disable them. The
+best example for this was in the context of running multiple
+processes, each one of it having different enables / disables that
+affected the output.  Close #815
+  * Don't consider bare and broad except handlers as ignoring
+NameError, AttributeError and similar exceptions, in the context
+of checkers for these issues.  Closes issue #826
+
+---

Old:

  pylint-1.5.4.tar.gz

New:

  pylint-1.5.5.tar.gz



Other differences:
--
++ python3-pylint.spec ++
--- /var/tmp/diff_new_pack.FVrfYE/_old  2016-04-22 16:23:27.0 +0200
+++ /var/tmp/diff_new_pack.FVrfYE/_new  2016-04-22 16:23:27.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pylint
-Version:1.5.4
+Version:1.5.5
 Release:0
 Summary:Syntax and style checker for Python code
 License:GPL-2.0+

++ pylint-1.5.4.tar.gz -> pylint-1.5.5.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylint-1.5.4/ChangeLog new/pylint-1.5.5/ChangeLog
--- old/pylint-1.5.4/ChangeLog  2016-01-15 21:26:34.0 +0100
+++ new/pylint-1.5.5/ChangeLog  2016-03-21 19:33:22.0 +0100
@@ -1,9 +1,41 @@
 ChangeLog for Pylint
 
 
+2016-03-21 -- 1.5.5
+
+* Let visit_importfrom from Python 3 porting checker be called when 
everything is disabled
+
+  Because the visit method was filtering the patterns it was expecting to 
be activated,
+  it didn't run when everything but one pattern was disabled, leading to 
spurious false 
+  positives
+
+  Close #852
+
+* Don't emit unsubscriptable-value for classes with unknown
+  base classes.
+
+  Close #776.
+
+* Use an OrderedDict for storing the configuration elements
+
+  This fixes an issue related to impredictible order of the disable / 
enable
+  elements from a config file. In certain cases, the disable was coming 
before
+  the enable which resulted in classes of errors to be enabled, even 
though the intention
+  was to disable them. The best example for this was in the context of 
running multiple
+  processes, each one of it having different enables / disables that 
affected the output.
+
+  Close #815
+
+* Don't consider bare and broad except handlers as ignoring NameError,
+  AttributeError and similar exceptions, in the context of checkers for
+  these issues.
+
+  Closes issue #826
+
 
 2016-01-15 -- 1.5.4
 
+
 * Merge StringMethodChecker with StringFormatChecker. This fixes a
   bug where disabling all the messages and enabling only a handful of
   messages from the StringFormatChecker would have resulted in no
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylint-1.5.4/DEPENDS new/pylint-1.5.5/DEPENDS
--- old/pylint-1.5.4/DEPENDS2016-01-15 16:54:20.0 +0100
+++ new/pylint-1.5.5/DEPENDS2016-03-21 19:33:03.0 +0100
@@ -1,2 +1,2 @@
-python-astroid (>= 1.4.0)
+python-astroid (>= 1.4.5)
 python-tk
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pylint-1.5.4/PKG-INFO new/pylint-1.5.5/PKG-INFO
--- old/pylint-1.5.4/PKG-INFO   2016-01-15 21:32:52.0 +0100
+++ new/pylint-1.5.5/PKG-INFO   2016-03-21 19:42:21.0 +

commit python3-pyparsing for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python3-pyparsing for 
openSUSE:Factory checked in at 2016-04-22 16:23:26

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


Package is "python3-pyparsing"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pyparsing/python3-pyparsing.changes  
2016-02-09 13:33:07.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-pyparsing.new/python3-pyparsing.changes 
2016-04-22 16:23:27.0 +0200
@@ -1,0 +2,19 @@
+Sat Mar 26 03:53:31 UTC 2016 - a...@gmx.de
+
+- update to version 2.1.1:
+  * Added support for assigning to ParseResults using slices.
+  * Fixed bug in ParseResults.toDict(), in which dict values were
+always converted to dicts, even if they were just unkeyed lists of
+tokens.  Reported on SO by Gerald Thibault, thanks Gerald!
+  * Fixed bug in SkipTo when using failOn, reported by robyschek,
+thanks!
+  * Fixed bug in Each introduced in 2.1.0, reported by AND patch and
+unit test submitted by robyschek, well done!
+  * Removed use of functools.partial in replaceWith, as this creates
+an ambiguous signature for the generated parse action, which fails
+in PyPy. Reported by Evan Hubinger, thanks Evan!
+  * Added default behavior to QuotedString to convert embedded '\t',
+'\n', etc. characters to their whitespace counterparts. Found
+during Q&A exchange on SO with Maxim.
+
+---

Old:

  pyparsing-2.1.0.tar.gz

New:

  pyparsing-2.1.1.tar.gz



Other differences:
--
++ python3-pyparsing.spec ++
--- /var/tmp/diff_new_pack.vzsrX7/_old  2016-04-22 16:23:28.0 +0200
+++ /var/tmp/diff_new_pack.vzsrX7/_new  2016-04-22 16:23:28.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pyparsing
-Version:2.1.0
+Version:2.1.1
 Release:0
 Url:http://pyparsing.wikispaces.com/
 Summary:Grammar Parser Library for Python

++ pyparsing-2.1.0.tar.gz -> pyparsing-2.1.1.tar.gz ++
 8725 lines of diff (skipped)




commit perl-Prima for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-Prima for openSUSE:Factory 
checked in at 2016-04-22 16:23:14

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


Package is "perl-Prima"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Prima/perl-Prima.changes2015-09-30 
05:50:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Prima.new/perl-Prima.changes   
2016-04-22 16:23:15.0 +0200
@@ -1,0 +2,15 @@
+Mon Mar 21 11:49:55 UTC 2016 - co...@suse.com
+
+- updated to 1.46
+   see /usr/share/doc/packages/perl-Prima/Changes
+
+  1.46 2016-03-16
+   - Use pkg_config, when available
+   - Require perl version 5.10
+   - Add prelighting and gradients to widgets
+  
+  1.45 2015-11-05
+   - Add Image .clone,.bar,.mirror,.rotate
+   - Support bidirectional texts with Text::Bidi
+
+---

Old:

  Prima-1.44.tar.gz

New:

  Prima-1.46.tar.gz



Other differences:
--
++ perl-Prima.spec ++
--- /var/tmp/diff_new_pack.4QlPCL/_old  2016-04-22 16:23:16.0 +0200
+++ /var/tmp/diff_new_pack.4QlPCL/_new  2016-04-22 16:23:16.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Prima
 #
-# 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-Prima
-Version:1.44
+Version:1.46
 Release:0
 #Upstream: SUSE-Public-Domain
 %define cpan_name Prima
@@ -55,7 +55,7 @@
 
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -type f ! -name \*.pl -print0 | xargs -0 chmod 644
 %patch0 -p1
 %patch1 
 
@@ -80,6 +80,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc AbstractMenu.cls AccelTable.cls Application.cls Changes Clipboard.cls 
Component.cls Copying DeviceBitmap.cls Drawable.cls examples File.cls Icon.cls 
Image.cls Menu.cls Object.cls Popup.cls Printer.cls README Timer.cls Types.cls 
Utils.cls Widget.cls Window.cls
+%doc Changes Copying examples LICENSE README
 
 %changelog

++ Prima-1.44.tar.gz -> Prima-1.46.tar.gz ++
 49072 lines of diff (skipped)




commit python3-kombu for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python3-kombu for openSUSE:Factory 
checked in at 2016-04-22 16:23:31

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


Package is "python3-kombu"

Changes:

--- /work/SRC/openSUSE:Factory/python3-kombu/python3-kombu.changes  
2016-03-17 16:48:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.python3-kombu.new/python3-kombu.changes 
2016-04-22 16:23:32.0 +0200
@@ -1,0 +2,13 @@
+Sat Mar 26 04:11:29 UTC 2016 - a...@gmx.de
+
+- update to version 3.0.35:
+  * msgpack: msgpack support now requires msgpack-python > 0.4.7.
+  * Redis: TimeoutError was no longer handled as a recoverable error.
+  * Redis: Adds the ability to set more Redis connection options using
+"Connection(transport_options={...})".
++ "socket_connect_timeout"
++ "socket_keepalive" (requires :mod:`redis-py` > 2.10)
++ "socket_keepalive_options" (requires :mod:`redis-py` > 2.10)
+  * msgpack: Fixes support for binary/unicode data
+
+---

Old:

  kombu-3.0.34.tar.gz

New:

  kombu-3.0.35.tar.gz



Other differences:
--
++ python3-kombu.spec ++
--- /var/tmp/diff_new_pack.xlzfiZ/_old  2016-04-22 16:23:33.0 +0200
+++ /var/tmp/diff_new_pack.xlzfiZ/_new  2016-04-22 16:23:33.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-kombu
-Version:3.0.34
+Version:3.0.35
 Release:0
 Summary:AMQP Messaging Framework for Python
 License:BSD-3-Clause

++ kombu-3.0.34.tar.gz -> kombu-3.0.35.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kombu-3.0.34/Changelog new/kombu-3.0.35/Changelog
--- old/kombu-3.0.34/Changelog  2016-03-04 02:29:37.0 +0100
+++ new/kombu-3.0.35/Changelog  2016-03-22 20:09:59.0 +0100
@@ -4,6 +4,26 @@
  Change history
 
 
+.. _version-3.0.35:
+
+3.0.35
+==
+:release-date: 2016-03-22 11:22 P.M PST
+:release-by: Ask Solem
+
+- msgpack: msgpack support now requires msgpack-python > 0.4.7.
+
+- Redis: TimeoutError was no longer handled as a recoverable error.
+
+- Redis: Adds the ability to set more Redis connection options
+  using ``Connection(transport_options={...})``.
+
+- ``socket_connect_timeout``
+- ``socket_keepalive`` (requires :mod:`redis-py` > 2.10)
+- ``socket_keepalive_options`` (requires :mod:`redis-py` > 2.10)
+
+- msgpack: Fixes support for binary/unicode data
+
 .. _version-3.0.34:
 
 3.0.34
@@ -235,7 +255,8 @@
 
 Contributed by Joshua Harlow.
 
-- Redis: Now properly handles ``TimeoutError raised by py-redis.
+- Redis: Now properly handles :exc:`redis.exceptions.TimeoutError`
+  raised by :mod:`redis`.
 
 Contributed by markow.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kombu-3.0.34/PKG-INFO new/kombu-3.0.35/PKG-INFO
--- old/kombu-3.0.34/PKG-INFO   2016-03-04 02:56:23.0 +0100
+++ new/kombu-3.0.35/PKG-INFO   2016-03-22 20:15:13.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: kombu
-Version: 3.0.34
+Version: 3.0.35
 Summary: Messaging library for Python
 Home-page: http://kombu.readthedocs.org
 Author: Ask Solem
@@ -12,7 +12,7 @@
  kombu - Messaging library for Python
 
 
-:Version: 3.0.34
+:Version: 3.0.35
 
 `Kombu` is a messaging library for Python.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kombu-3.0.34/README.rst new/kombu-3.0.35/README.rst
--- old/kombu-3.0.34/README.rst 2016-03-04 02:30:07.0 +0100
+++ new/kombu-3.0.35/README.rst 2016-03-22 20:09:59.0 +0100
@@ -4,7 +4,7 @@
  kombu - Messaging library for Python
 
 
-:Version: 3.0.34
+:Version: 3.0.35
 
 `Kombu` is a messaging library for Python.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/kombu-3.0.34/docs/changelog.rst 
new/kombu-3.0.35/docs/changelog.rst
--- old/kombu-3.0.34/docs/changelog.rst 2016-03-04 02:29:37.0 +0100
+++ new/kombu-3.0.35/docs/changelog.rst 2016-03-22 20:09:59.0 +0100
@@ -4,6 +4,26 @@
  Change history
 
 
+.. _version-3.0.35:
+
+3.0.35
+==
+:release-date: 2016-03-22 11:22 P.M PST
+:release-by: Ask Solem
+
+- msgpack: msgpack support now requires msgpack-python > 0.4.7.
+
+- Redis: TimeoutError was no longer handled as a recoverable error.
+
+- Redis: Adds the ability to set more Redis connection options
+  using ``Connection(transport_o

commit brise for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

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

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


Package is "brise"

Changes:

--- /work/SRC/openSUSE:Factory/brise/brise.changes  2016-03-08 
10:18:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.brise.new/brise.changes 2016-04-22 
16:23:09.0 +0200
@@ -1,0 +2,5 @@
+Wed Mar 14 19:55:18 2016 - qz...@suse.com
+
+- Make sure source code's LICENSE file install by default.
+
+---



Other differences:
--
++ brise.spec ++
--- /var/tmp/diff_new_pack.jRYk3d/_old  2016-04-22 16:23:10.0 +0200
+++ /var/tmp/diff_new_pack.jRYk3d/_new  2016-04-22 16:23:10.0 +0200
@@ -47,5 +47,6 @@
 %files
 %defattr(-,root,root)
 %{_datadir}/rime-data/
+%doc LICENSE
 
 %changelog




commit google-glog for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package google-glog for openSUSE:Factory 
checked in at 2016-04-22 16:23:17

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


Package is "google-glog"

Changes:

--- /work/SRC/openSUSE:Factory/google-glog/google-glog.changes  2013-07-02 
12:24:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.google-glog.new/google-glog.changes 
2016-04-22 16:23:17.0 +0200
@@ -1,0 +2,13 @@
+Wed Mar 16 08:14:42 UTC 2016 - mplus...@suse.com
+
+- Install documentation in default location with correct 
+  permissions
+- Use macro for configure
+- Cleanup spec file with spec-cleaner
+
+---
+Mon Feb 29 20:01:48 UTC 2016 - qz...@suse.com
+
+- Make sure source code's COPYING file install by default.
+
+---



Other differences:
--
++ google-glog.spec ++
--- /var/tmp/diff_new_pack.sSbT4F/_old  2016-04-22 16:23:18.0 +0200
+++ /var/tmp/diff_new_pack.sSbT4F/_new  2016-04-22 16:23:18.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package google-glog
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -58,30 +58,26 @@
 %setup -q -n glog-%{version}
 
 %build
-./configure --prefix=%{_prefix} --libdir=%{_libdir} --docdir=%{_docdir}
+%configure
 make %{?_smp_mflags}
 
 %install
-make DESTDIR=%{buildroot} install
-
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
 rm -rf %{buildroot}%{_libdir}/*.{a,la}
-
-mkdir -p %{buildroot}%{_docdir}/%{name}
-mv %{buildroot}%{_datadir}/doc/glog-%{version}/* 
%{buildroot}%{_docdir}/%{name}/
-rm -rf %{buildroot}%{_docdir}/%{name}/INSTALL
+rm -rf %{buildroot}%{_datadir}/doc/glog-*
 
 %post -n libglog0 -p /sbin/ldconfig
-
 %postun -n libglog0 -p /sbin/ldconfig
 
 %files -n libglog0
 %defattr(-,root,root)
+%doc COPYING
 %{_libdir}/libglog.so.0
 %{_libdir}/libglog.so.0.0.0
-%doc %{_docdir}/%{name}
 
 %files -n glog-devel
 %defattr(-,root,root)
+%doc COPYING AUTHORS ChangeLog README
 %{_includedir}/glog/
 %{_libdir}/libglog.so
 %{_libdir}/pkgconfig/libglog.pc




commit perl-Sub-Name for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-Sub-Name for openSUSE:Factory 
checked in at 2016-04-22 16:23:16

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


Package is "perl-Sub-Name"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Sub-Name/perl-Sub-Name.changes  
2015-04-25 11:26:28.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Sub-Name.new/perl-Sub-Name.changes 
2016-04-22 16:23:16.0 +0200
@@ -1,0 +2,11 @@
+Mon Mar 21 11:59:53 UTC 2016 - co...@suse.com
+
+- updated to 0.15
+   see /usr/share/doc/packages/perl-Sub-Name/Changes
+
+  0.15  2016-03-15 22:17:38Z
+  - fix uninitialized warning in test on perls < 5.8.6 (RT#104510)
+  - repository moved to the github p5sagit organization (the primary is on
+shadowcat, mirrored to github)
+
+---

Old:

  Sub-Name-0.14.tar.gz

New:

  Sub-Name-0.15.tar.gz



Other differences:
--
++ perl-Sub-Name.spec ++
--- /var/tmp/diff_new_pack.GFOXow/_old  2016-04-22 16:23:17.0 +0200
+++ /var/tmp/diff_new_pack.GFOXow/_new  2016-04-22 16:23:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Sub-Name
 #
-# 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-Sub-Name
-Version:0.14
+Version:0.15
 Release:0
 %define cpan_name Sub-Name
 Summary:(re)name a sub
@@ -29,6 +29,7 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
 BuildRequires:  perl-macros
+BuildRequires:  perl(Module::Metadata)
 BuildRequires:  perl(Test::More) >= 0.88
 %{perl_requires}
 # MANUAL BEGIN
@@ -55,6 +56,6 @@
 
 %files -f %{name}.files
 %defattr(-,root,root,755)
-%doc Changes CONTRIBUTING LICENSE README
+%doc Changes CONTRIBUTING LICENCE README
 
 %changelog

++ Sub-Name-0.14.tar.gz -> Sub-Name-0.15.tar.gz ++
 3605 lines of diff (skipped)




commit perl-DBIx-Connector for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-DBIx-Connector for 
openSUSE:Factory checked in at 2016-04-22 16:23:08

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


Package is "perl-DBIx-Connector"

Changes:

--- /work/SRC/openSUSE:Factory/perl-DBIx-Connector/perl-DBIx-Connector.changes  
2016-02-25 22:48:52.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-DBIx-Connector.new/perl-DBIx-Connector.changes 
2016-04-22 16:23:10.0 +0200
@@ -1,0 +2,13 @@
+Tue Mar 22 10:02:36 UTC 2016 - co...@suse.com
+
+- updated to 0.56
+   see /usr/share/doc/packages/perl-DBIx-Connector/Changes
+
+  0.56  2016-03-16T17:07:05Z
+- Added Firebird support, thanks to Stefan Suciu.
+- Fixed SQLite savepoint support to properly detect SQlite versions 3.9
+  and higher.
+- Restored MySQL savepoint testing when the DBICTEST_* environment
+  variables are set.
+
+---

Old:

  DBIx-Connector-0.55.tar.gz

New:

  DBIx-Connector-0.56.tar.gz



Other differences:
--
++ perl-DBIx-Connector.spec ++
--- /var/tmp/diff_new_pack.Fwva3J/_old  2016-04-22 16:23:11.0 +0200
+++ /var/tmp/diff_new_pack.Fwva3J/_new  2016-04-22 16:23:11.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-DBIx-Connector
-Version:0.55
+Version:0.56
 Release:0
 %define cpan_name DBIx-Connector
 Summary:Fast, safe DBI connection and transaction management

++ DBIx-Connector-0.55.tar.gz -> DBIx-Connector-0.56.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBIx-Connector-0.55/Changes 
new/DBIx-Connector-0.56/Changes
--- old/DBIx-Connector-0.55/Changes 2016-02-05 19:58:48.0 +0100
+++ new/DBIx-Connector-0.56/Changes 2016-03-16 18:06:31.0 +0100
@@ -1,5 +1,12 @@
 Revision history for Perl extension DBIx::Connector.
 
+0.56  2016-03-16T17:07:05Z
+  - Added Firebird support, thanks to Stefan Suciu.
+  - Fixed SQLite savepoint support to properly detect SQlite versions 3.9
+and higher.
+  - Restored MySQL savepoint testing when the DBICTEST_* environment
+variables are set.
+
 0.55  2016-02-05T18:59:24Z
   - Added versions to the RollbackError exception classes to make PAUSE
 happy.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBIx-Connector-0.55/MANIFEST 
new/DBIx-Connector-0.56/MANIFEST
--- old/DBIx-Connector-0.55/MANIFEST2016-02-05 19:58:48.0 +0100
+++ new/DBIx-Connector-0.56/MANIFEST2016-03-16 18:06:31.0 +0100
@@ -2,12 +2,15 @@
 Changes
 lib/DBIx/Connector.pm
 lib/DBIx/Connector/Driver.pm
+lib/DBIx/Connector/Driver/Firebird.pm
 lib/DBIx/Connector/Driver/MSSQL.pm
 lib/DBIx/Connector/Driver/mysql.pm
 lib/DBIx/Connector/Driver/Oracle.pm
 lib/DBIx/Connector/Driver/Pg.pm
 lib/DBIx/Connector/Driver/SQLite.pm
 MANIFEST   This list of files
+META.json
+META.yml
 README.md
 t/base.t
 t/driver.t
@@ -22,5 +25,3 @@
 t/txn.t
 t/txn_fixup.t
 t/txn_ping.t
-META.yml
-META.json
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/DBIx-Connector-0.55/META.json 
new/DBIx-Connector-0.56/META.json
--- old/DBIx-Connector-0.55/META.json   2016-02-05 19:58:48.0 +0100
+++ new/DBIx-Connector-0.56/META.json   2016-03-16 18:06:31.0 +0100
@@ -39,43 +39,47 @@
"provides" : {
   "DBIx::Connector" : {
  "file" : "lib/DBIx/Connector.pm",
- "version" : "0.55"
+ "version" : "0.56"
   },
   "DBIx::Connector::Driver" : {
  "file" : "lib/DBIx/Connector/Driver.pm",
- "version" : "0.55"
+ "version" : "0.56"
+  },
+  "DBIx::Connector::Driver::Firebird" : {
+ "file" : "lib/DBIx/Connector/Driver/Firebird.pm",
+ "version" : "0.56"
   },
   "DBIx::Connector::Driver::MSSQL" : {
  "file" : "lib/DBIx/Connector/Driver/MSSQL.pm",
- "version" : "0.55"
+ "version" : "0.56"
   },
   "DBIx::Connector::Driver::Oracle" : {
  "file" : "lib/DBIx/Connector/Driver/Oracle.pm",
- "version" : "0.55"
+ "version" : "0.56"
   },
   "DBIx::Connector::Driver::Pg" : {
  "file" : "lib/DBIx/Connector/Driver/Pg.pm",
- "version" : "0.55"
+ "version" : "0.56"
   },
   "DBIx::Connector::Driver::SQLite" : {
  "file" : "lib/DBIx/Connector/Driver/SQLite.pm",
- "version" : "0.55"
+ "version" : "0.56"
   },
   "DBIx::Connector::Driver::mysql" : {

commit texlive-filesystem for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-filesystem for 
openSUSE:Factory checked in at 2016-04-22 16:22:21

Comparing /work/SRC/openSUSE:Factory/texlive-filesystem (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-filesystem.new (New)


Package is "texlive-filesystem"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-filesystem/texlive-filesystem.changes
2016-03-17 16:30:18.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.texlive-filesystem.new/texlive-filesystem.changes   
2016-04-22 16:22:23.0 +0200
@@ -1,0 +2,10 @@
+Wed Apr 13 14:11:56 UTC 2016 - wer...@suse.de
+
+- Correct cut&paste typo with texlua-devel package name 
+
+---
+Mon Mar 21 13:57:38 UTC 2016 - wer...@suse.de
+
+- Really require the devel packages with texlive-devel 
+
+---



Other differences:
--
++ texlive-filesystem.spec ++
--- /var/tmp/diff_new_pack.n0Hpak/_old  2016-04-22 16:22:25.0 +0200
+++ /var/tmp/diff_new_pack.n0Hpak/_new  2016-04-22 16:22:25.0 +0200
@@ -19,7 +19,7 @@
 %define texlive_version  2015
 %define texlive_previous 2014
 %define texlive_release  20150521
-%define texlive_noarch   104
+%define texlive_noarch   105
 %define texlive_source   texlive-20150521-source
 
 %define __perl_requires%{nil}
@@ -4076,9 +4076,15 @@
 License:LGPL-2.1+ and BSD-3-Clause and SUSE-TeX
 Group:  Development/Languages/Other
 Url:http://www.tug.org/texlive/
-Requires:   texlive-cweb >= %{texlive_version}
 Requires:   texlive-kpathsea-devel = 6.2.1
 Requires:   texlive-ptexenc-devel = 1.3.3
+Requires:   texlive-synctex-devel = 1.17
+Requires:   texlive-texlua-devel = 5.2.4
+%if %{with LuaJIT}
+Requires:   texlive-texluajit-devel = 2.0.3
+%endif
+Requires:   texlive-bin-devel >= %{texlive_version}
+Requires:   texlive-cweb >= %{texlive_version}
 Requires:   texlive-web >= %{texlive_version}
 
 %description -n texlive-devel







commit perl-Method-Signatures for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-Method-Signatures for 
openSUSE:Factory checked in at 2016-04-22 16:23:10

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


Package is "perl-Method-Signatures"

Changes:

--- 
/work/SRC/openSUSE:Factory/perl-Method-Signatures/perl-Method-Signatures.changes
2014-11-26 20:55:38.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.perl-Method-Signatures.new/perl-Method-Signatures.changes
   2016-04-22 16:23:11.0 +0200
@@ -1,0 +2,29 @@
+Mon Mar 21 11:35:22 UTC 2016 - co...@suse.com
+
+- updated to 20160315
+   see /usr/share/doc/packages/perl-Method-Signatures/Changes
+
+  20160315Tue Mar 15 16:21:33 PDT 2016
+  Promoted to full release
+  
+  20160310.2049_001   Thu Mar 10 20:49:00 PST 2016
+  Docs
+  * Fix broken link in POD
+[github #120] (thanks Manwar)
+  
+  Distribution Fixes
+  * Generate README from POD
+[github #122/#123/#124] (thanks jluis)
+  * Silence bogus Kwalitee failure
+[github #121] (thanks jluis)
+  
+  20151120.1519_001   Fri Nov 20 15:19:44 PST 2015
+  Bug Fixes
+  * Fix missing semi-colon
+[github #118] (thanks joenio)
+  
+  Distribution Fixes
+  * Bump required version of Lexical::SealRequireHints to fix RT #93759
+[github #119] (thanks chorny)
+
+---

Old:

  Method-Signatures-20141021.tar.gz

New:

  Method-Signatures-20160315.tar.gz
  cpanspec.yml



Other differences:
--
++ perl-Method-Signatures.spec ++
--- /var/tmp/diff_new_pack.ZUtYFH/_old  2016-04-22 16:23:12.0 +0200
+++ /var/tmp/diff_new_pack.ZUtYFH/_new  2016-04-22 16:23:12.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Method-Signatures
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,15 @@
 
 
 Name:   perl-Method-Signatures
-Version:20141021
+Version:20160315
 Release:0
 %define cpan_name Method-Signatures
-Summary:method and function declarations with signatures and no source 
filter
+Summary:Method and Function Declarations with Signatures and No Source 
Filter
 License:Artistic-1.0 or GPL-1.0+
 Group:  Development/Libraries/Perl
 Url:http://search.cpan.org/dist/Method-Signatures/
-Source: 
http://www.cpan.org/authors/id/B/BA/BAREFOOT/%{cpan_name}-%{version}.tar.gz
+Source0:
http://www.cpan.org/authors/id/B/BA/BAREFOOT/%{cpan_name}-%{version}.tar.gz
+Source1:cpanspec.yml
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  perl
@@ -33,20 +34,20 @@
 BuildRequires:  perl(Const::Fast) >= 0.006
 BuildRequires:  perl(Devel::Declare) >= 0.006002
 BuildRequires:  perl(Devel::Declare::MethodInstaller::Simple) >= 0.006002
-BuildRequires:  perl(Lexical::SealRequireHints) >= 0.007
-BuildRequires:  perl(Module::Build) >= 0.26
+BuildRequires:  perl(Lexical::SealRequireHints) >= 0.008
+BuildRequires:  perl(Module::Build) >= 0.31
 BuildRequires:  perl(Mouse) >= 0.64
 BuildRequires:  perl(PPI) >= 1.203
 BuildRequires:  perl(Sub::Name) >= 0.03
 BuildRequires:  perl(Test::Builder) >= 0.82
-BuildRequires:  perl(Test::Exception) >= 0.29
+BuildRequires:  perl(Test::Exception) >= 0.29
 BuildRequires:  perl(Test::More) >= 0.82
 BuildRequires:  perl(Test::Warn) >= 0.10
 Requires:   perl(Any::Moose) >= 0.11
 Requires:   perl(Const::Fast) >= 0.006
 Requires:   perl(Devel::Declare) >= 0.006002
 Requires:   perl(Devel::Declare::MethodInstaller::Simple) >= 0.006002
-Requires:   perl(Lexical::SealRequireHints) >= 0.007
+Requires:   perl(Lexical::SealRequireHints) >= 0.008
 Requires:   perl(Mouse) >= 0.64
 Requires:   perl(PPI) >= 1.203
 Requires:   perl(Sub::Name) >= 0.03
@@ -64,19 +65,12 @@
 lot more.
 
 'method' is like 'func' but specifically for making methods. It will
-automatically provide the invocant as '$self' (/invocant). No more 'my
+automatically provide the invocant as '$self' (by default). No more 'my
 $self = shift'.
 
-Also allows signatures, very similar to Perl 6 signatures.
-
-Also does type checking, understanding all the types that Moose (or Mouse)
-would understand.
-
-And it does all this with *no source filters*.
-
 %prep
 %setup -q -n %{cpan_name}-%{version}
-find . -type f -print0 | xargs -0 chmod 644
+find . -ty

commit texlive-specs-m for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-m for openSUSE:Factory 
checked in at 2016-04-22 16:22:32

Comparing /work/SRC/openSUSE:Factory/texlive-specs-m (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-m.new (New)


Package is "texlive-specs-m"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-m/texlive-specs-m.changes  
2016-03-17 16:46:52.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-m.new/texlive-specs-m.changes 
2016-04-22 16:22:34.0 +0200
@@ -1,0 +2,11 @@
+Mon Apr 11 14:04:41 UTC 2016 - wer...@suse.de
+
+- There is no texlive-misc with null.tex anymore but texlive-knuth-lib
+
+---
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---



Other differences:
--
++ texlive-specs-m.spec ++
--- /var/tmp/diff_new_pack.Y10TS0/_old  2016-04-22 16:22:40.0 +0200
+++ /var/tmp/diff_new_pack.Y10TS0/_new  2016-04-22 16:22:40.0 +0200
@@ -39,7 +39,7 @@
 %define texlive_version  2015
 %define texlive_previous 2014
 %define texlive_release  20150521
-%define texlive_noarch   104
+%define texlive_noarch   105
 
 Name:   texlive-specs-m
 Version:2015
@@ -924,6 +924,7 @@
 License:GPL-2.0+
 Group:  Productivity/Publishing/TeX/Fonts
 Url:http://www.tug.org/texlive/
+Obsoletes:  ctan-junicode-fonts <= 0.7.8
 Requires(post): fontconfig
 Requires(post): ghostscript-fonts-std
 Requires(post): mkfontdir
@@ -3619,6 +3620,8 @@
 License:SUSE-TeX
 Group:  Productivity/Publishing/TeX/Base
 Url:http://www.tug.org/texlive/
+Obsoletes:  texlive-misc <= 2014
+Provides:   texlive-misc = %{texlive_version}
 Requires(pre): texlive >= %{texlive_version}
 Requires(post): coreutils
 Requires(postun): coreutils




commit codelite for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package codelite for openSUSE:Factory 
checked in at 2016-04-22 16:23:02

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


Package is "codelite"

Changes:

--- /work/SRC/openSUSE:Factory/codelite/codelite.changes2014-12-21 
12:04:13.0 +0100
+++ /work/SRC/openSUSE:Factory/.codelite.new/codelite.changes   2016-04-22 
16:23:05.0 +0200
@@ -1,0 +2,25 @@
+Mon Mar 21 12:49:11 UTC 2016 - mplus...@suse.com
+
+- Install COPYING
+
+---
+Sun Oct 11 07:49:26 UTC 2015 - mplus...@suse.com
+
+- Use cmake macros
+- Remove conditonals for unsupported releases
+- Simplify bconds and enable lldb and llvm by default on Factory
+
+---
+Mon Oct  5 14:23:38 UTC 2015 - r...@fthiessen.de
+
+- Update to upstream version 8.1:
+  * Removed upstream merged: codelite-date-time-usage-fix.patch
+  * Cleanup SPEC, new dependencies added and workarounds removed.
+  * Using bundled version of .desktop, removed our codelite.desktop
+  * Added fix-use-system-sqlite3.patch to use system sqlite3
+version instead of the version from codelite. Fixed already
+upstream in git commit: fe554119c772d8579094b2c3315e0bab92cd4afe
+  * Added fix-no-return-in-nonvoid-function.patch to avoid RPMLint
+error, because of non void function without return.
+
+---

Old:

  codelite-5.4-gtk.src.tar.gz
  codelite-date-time-usage-fix.patch
  codelite.desktop

New:

  codelite-8.1.tar.gz
  fix-no-return-in-nonvoid-function.patch
  fix-use-system-sqlite3.patch



Other differences:
--
++ codelite.spec ++
--- /var/tmp/diff_new_pack.oiuoA5/_old  2016-04-22 16:23:07.0 +0200
+++ /var/tmp/diff_new_pack.oiuoA5/_new  2016-04-22 16:23:07.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package codelite
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012-2014 Mariusz Fik .
 #
 # All modifications and additions to the file contributed by third parties
@@ -17,139 +17,118 @@
 #
 
 
+%if 0%{?suse_version} >= 1315
+# Only available on x86_64 and %%arm (see lldb package)
+  %ifarch %arm x86_64
+%bcond_without lldb
+  %endif
+# Not available on ppc
+  %ifnarch ppc
+%bcond_without clang
+  %endif
+%endif
+
 Name:   codelite
-Version:5.4
+Version:8.1
 Release:0
-Summary:Powerful open-source, cross platform code editor for the C/C++
-License:GPL-3.0+
+Summary:Powerful open-source, cross platform code editor for C,C++,PHP 
and Node.js
+License:GPL-3.0
 Group:  Development/Tools/IDE
+# parts of package contain LGPL-3.0 licenced code thus license needs to be
+# GPL-3.0
 Url:http://codelite.org/
-Source0:
https://downloads.sourceforge.net/project/codelite/Mirrors/%{name}-%{version}-gtk.src.tar.gz
-Source1:%{name}.desktop
-Source2:%name-rpmlintrc
-# PATCH-FIX-OPENSUSE codelite-date-time-usage-fix.patch fi...@opensuse.org -- 
It removes usage of __DATE__ and __TIME__
-Patch0: %{name}-date-time-usage-fix.patch
+Source0:
https://github.com/eranif/%{name}/archive/%{version}/%{name}-%{version}.tar.gz
+# Template files are identified by RPMLint as Development-Files --> Ignore 
this errors
+Source1:%{name}-rpmlintrc
 # PATCH-FEATURE-OPENSUSE codelite-disable-new-version-check.patch 
fi...@opensuse.org -- Disable 'new version' check on startup
-Patch1: %{name}-disable-new-version-check.patch
+Patch0: %{name}-disable-new-version-check.patch
+# TODO: Remove following patch next release
+# PATCH-FIX-UPSTREAM fix-use-system-sqlite3.patch -- Use system sqlite3 
version instead of projects own version. Fixed already upstream in git commit: 
fe554119c772d8579094b2c3315e0bab92cd4afe
+Patch1: fix-use-system-sqlite3.patch
+# PATH-FIX-UPSTREAM fix-no-return-in-nonvoid-function.patch -- Fix non void 
function without return to avoid rpmlint error. Reported Upstream: 
https://github.com/eranif/codelite/issues/946
+Patch2: fix-no-return-in-nonvoid-function.patch
 BuildRequires:  cmake
-BuildRequires:  dos2unix
-BuildRequires:  gcc-c++
-%if 0%{?suse_version}
 BuildRequires:  fdupes
+BuildRequires:  gcc-c++
+BuildRequires:  hicolor-icon-theme
+BuildRequires:  pkg-config
 BuildRequires:  update-desktop-files
-%endif
-BuildRequires:  libmysqlclient-devel
-BuildRequires:  llvm-clang-devel
+BuildRequires:  wxWidgets-3_0-devel >= 3.0.0
 BuildRequires:  wxW

commit ibus-table-zhuyin for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ibus-table-zhuyin for 
openSUSE:Factory checked in at 2016-04-22 16:22:58

Comparing /work/SRC/openSUSE:Factory/ibus-table-zhuyin (Old)
 and  /work/SRC/openSUSE:Factory/.ibus-table-zhuyin.new (New)


Package is "ibus-table-zhuyin"

Changes:

--- /work/SRC/openSUSE:Factory/ibus-table-zhuyin/ibus-table-zhuyin.changes  
2014-07-29 16:48:17.0 +0200
+++ /work/SRC/openSUSE:Factory/.ibus-table-zhuyin.new/ibus-table-zhuyin.changes 
2016-04-22 16:23:01.0 +0200
@@ -1,0 +2,5 @@
+Tue Mar  2 14:20:18 UTC 2016 - qz...@suse.com
+
+- Change License name in SPEC file to match with sources.
+
+---



Other differences:
--
++ ibus-table-zhuyin.spec ++
--- /var/tmp/diff_new_pack.ayEAMU/_old  2016-04-22 16:23:02.0 +0200
+++ /var/tmp/diff_new_pack.ayEAMU/_new  2016-04-22 16:23:02.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ibus-table-zhuyin
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -20,7 +20,7 @@
 Version:1.2.0.20090831
 Release:0
 Summary:Zhuyin input method for IBus
-License:GPL-3.0+
+License:GPL-2.0+
 Group:  System/I18n/Chinese
 Url:http://code.google.com/p/ibus/
 Source: http://ibus.googlecode.com/files/%{name}-%{version}.tar.gz




commit python-astroid for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package python-astroid for openSUSE:Factory 
checked in at 2016-04-22 16:22:43

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


Package is "python-astroid"

Changes:

--- /work/SRC/openSUSE:Factory/python-astroid/python-astroid.changes
2016-01-13 22:46:15.0 +0100
+++ /work/SRC/openSUSE:Factory/.python-astroid.new/python-astroid.changes   
2016-04-22 16:22:49.0 +0200
@@ -1,0 +2,11 @@
+Wed Feb 10 12:58:40 UTC 2016 - mich...@stroeder.com
+
+- Added missing dependencies on python-lazy_object_proxy
+  and python-wrapt
+- Update to version 1.4.4
+* unpack_infer raises InferenceError if it can't operate
+  with the given sequences of nodes.
+* Support accessing properties with super().
+* Enforce strong updates per frames.
+
+---

Old:

  astroid-1.4.3.tar.gz

New:

  astroid-1.4.4.tar.gz



Other differences:
--
++ python-astroid.spec ++
--- /var/tmp/diff_new_pack.PPEVrU/_old  2016-04-22 16:22:50.0 +0200
+++ /var/tmp/diff_new_pack.PPEVrU/_new  2016-04-22 16:22:50.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-astroid
-Version:1.4.3
+Version:1.4.4
 Release:0
 Url:https://github.com/pycqa/astroid
 Summary:Rebuild a new abstract syntax tree from Python's ast
@@ -29,6 +29,8 @@
 BuildRequires:  python-setuptools
 BuildRequires:  python-six
 Requires:   python-six
+Requires:   python-lazy_object_proxy
+Requires:   python-wrapt
 %if 0%{?suse_version} <= 1110
 %{!?python_sitelib: %global python_sitelib %(%{__python} -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
 %else

++ astroid-1.4.3.tar.gz -> astroid-1.4.4.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/astroid-1.4.3/ChangeLog new/astroid-1.4.4/ChangeLog
--- old/astroid-1.4.3/ChangeLog 2015-12-24 16:03:30.0 +0100
+++ new/astroid-1.4.4/ChangeLog 2016-01-15 18:00:46.0 +0100
@@ -1,6 +1,25 @@
 Change log for the astroid package (used to be astng)
 =
 
+2016-01-15 -- 1.4.4
+
+* unpack_infer raises InferenceError if it can't operate
+  with the given sequences of nodes.
+
+* Support accessing properties with super().
+
+* Enforce strong updates per frames.
+
+  When looking up a name in a scope, Scope.lookup will return
+  only the values which will be reachable after execution, as seen
+  in the following code:
+  
+   a = 1
+   a = 2
+
+  In this case it doesn't make sense to return two values, but
+  only the last one.
+
 2015-12-24 -- 1.4.3
 
 * pkg_resources brain tips are a bit more specific,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/astroid-1.4.3/PKG-INFO new/astroid-1.4.4/PKG-INFO
--- old/astroid-1.4.3/PKG-INFO  2015-12-24 16:13:30.0 +0100
+++ new/astroid-1.4.4/PKG-INFO  2016-01-15 18:12:28.0 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: astroid
-Version: 1.4.3
+Version: 1.4.4
 Summary: A abstract syntax tree for Python with inference support.
 Home-page: http://bitbucket.org/logilab/astroid
 Author: Logilab
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/astroid-1.4.3/astroid/__pkginfo__.py 
new/astroid-1.4.4/astroid/__pkginfo__.py
--- old/astroid-1.4.3/astroid/__pkginfo__.py2015-12-24 16:03:37.0 
+0100
+++ new/astroid-1.4.4/astroid/__pkginfo__.py2016-01-15 18:00:51.0 
+0100
@@ -20,7 +20,7 @@
 
 modname = 'astroid'
 
-numversion = (1, 4, 3)
+numversion = (1, 4, 4)
 version = '.'.join([str(num) for num in numversion])
 
 install_requires = ['six', 'lazy_object_proxy', 'wrapt']
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/astroid-1.4.3/astroid/brain/brain_stdlib.py 
new/astroid-1.4.4/astroid/brain/brain_stdlib.py
--- old/astroid-1.4.3/astroid/brain/brain_stdlib.py 2015-12-24 
16:02:22.0 +0100
+++ new/astroid-1.4.4/astroid/brain/brain_stdlib.py 2016-01-15 
18:00:20.0 +0100
@@ -156,6 +156,15 @@
 
 def pkg_resources_transform():
 return AstroidBuilder(MANAGER).string_build('''
+def require(*requirements):
+return pkg_resources.working_set.require(*requirements)
+
+def run_script(requires, script_name):
+return pkg_resources.working_set.run_script(requires, script_name)
+
+def iter_entry_points(group, name=None):
+return pkg_resources.working_set.iter_entry_points(

commit ibus-table-ziranma for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ibus-table-ziranma for 
openSUSE:Factory checked in at 2016-04-22 16:23:00

Comparing /work/SRC/openSUSE:Factory/ibus-table-ziranma (Old)
 and  /work/SRC/openSUSE:Factory/.ibus-table-ziranma.new (New)


Package is "ibus-table-ziranma"

Changes:

--- /work/SRC/openSUSE:Factory/ibus-table-ziranma/ibus-table-ziranma.changes
2014-07-29 16:48:18.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ibus-table-ziranma.new/ibus-table-ziranma.changes   
2016-04-22 16:23:02.0 +0200
@@ -1,0 +2,5 @@
+Tue Mar  2 14:20:18 UTC 2016 - qz...@suse.com
+
+- Change License name in SPEC file to match with sources.
+
+---



Other differences:
--
++ ibus-table-ziranma.spec ++
--- /var/tmp/diff_new_pack.EVZYDb/_old  2016-04-22 16:23:03.0 +0200
+++ /var/tmp/diff_new_pack.EVZYDb/_new  2016-04-22 16:23:03.0 +0200
@@ -20,7 +20,7 @@
 Version:1.2.0.20090831
 Release:0
 Summary:Ziranma input method for IBus
-License:GPL-3.0+
+License:GPL-2.0+
 Group:  System/I18n/Chinese
 Url:http://code.google.com/p/ibus/
 Source: %{name}-%{version}.tar.gz




commit perl-version for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-version for openSUSE:Factory 
checked in at 2016-04-22 16:23:13

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


Package is "perl-version"

Changes:

--- /work/SRC/openSUSE:Factory/perl-version/perl-version.changes
2016-03-16 10:33:55.0 +0100
+++ /work/SRC/openSUSE:Factory/.perl-version.new/perl-version.changes   
2016-04-22 16:23:14.0 +0200
@@ -1,0 +2,43 @@
+Mon Mar 21 12:18:11 UTC 2016 - co...@suse.com
+
+- updated to 0.9916
+   see /usr/share/doc/packages/perl-version/Changes
+
+  2016-03-18  John Peacock  
+  
+   * .hgtags:
+   Added tag 0.9916 for changeset 15763a2f6075
+   [3cffe3d1d62a] [tip]
+  
+   * flow: Merged  '0.9916' to  ('default').
+   [15763a2f6075] [0.9916]
+  
+   * flow: Merged  '0.9916' to  ('develop').
+   [8f1e8495674d] 
+  
+   * flow: Closed  '0.9916'.
+   [6bb061a73cc5] 
+  
+   * Makefile.PL, README, lib/version.pm, lib/version/regex.pm, t/00impl-
+   pp.t, t/01base.t, t/02derived.t, t/03require.t, t/05sigdie.t,
+   t/06noop.t, t/07locale.t, t/08_corelist.t, t/09_list_util.t,
+   vperl/vpp.pm, vutil/lib/version/vxs.pm:
+   Prep for release to CPAN
+   [0969e36be548] 
+  
+   * t/07locale.t:
+   Another fix from core Perl
+   [8eb36834cb1c] 
+  
+   * vutil/vutil.c:
+   Remove unused variables
+   [26abf30c5c59] 
+  
+   * vutil/vutil.c:
+   Macros must be on separate lines.
+   [39a531dfece5] 
+  
+   * flow: Created branch 'release/0.9916'.
+   [3f095fd910eb] 
+
+---

Old:

  version-0.9915.tar.gz

New:

  version-0.9916.tar.gz



Other differences:
--
++ perl-version.spec ++
--- /var/tmp/diff_new_pack.3lc0Z7/_old  2016-04-22 16:23:15.0 +0200
+++ /var/tmp/diff_new_pack.3lc0Z7/_new  2016-04-22 16:23:15.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   perl-version
-Version:0.9915
+Version:0.9916
 Release:0
 %define cpan_name version
 Summary:Perl extension for Version Objects

++ version-0.9915.tar.gz -> version-0.9916.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/version-0.9915/Changes new/version-0.9916/Changes
--- old/version-0.9915/Changes  2016-03-06 01:07:52.0 +0100
+++ new/version-0.9916/Changes  2016-03-19 03:13:51.0 +0100
@@ -1,8 +1,45 @@
+2016-03-18  John Peacock  
+
+   * .hgtags:
+   Added tag 0.9916 for changeset 15763a2f6075
+   [3cffe3d1d62a] [tip]
+
+   * flow: Merged  '0.9916' to  ('default').
+   [15763a2f6075] [0.9916]
+
+   * flow: Merged  '0.9916' to  ('develop').
+   [8f1e8495674d] 
+
+   * flow: Closed  '0.9916'.
+   [6bb061a73cc5] 
+
+   * Makefile.PL, README, lib/version.pm, lib/version/regex.pm, t/00impl-
+   pp.t, t/01base.t, t/02derived.t, t/03require.t, t/05sigdie.t,
+   t/06noop.t, t/07locale.t, t/08_corelist.t, t/09_list_util.t,
+   vperl/vpp.pm, vutil/lib/version/vxs.pm:
+   Prep for release to CPAN
+   [0969e36be548] 
+
+   * t/07locale.t:
+   Another fix from core Perl
+   [8eb36834cb1c] 
+
+   * vutil/vutil.c:
+   Remove unused variables
+   [26abf30c5c59] 
+
+   * vutil/vutil.c:
+   Macros must be on separate lines.
+   [39a531dfece5] 
+
+   * flow: Created branch 'release/0.9916'.
+   [3f095fd910eb] 
+
 2016-03-05  John Peacock  
 
* .hgtags:
Added tag 0.9915 for changeset dc1d08d9ee5c
-   [5b2cf3e1882d] [tip]
+   [5b2cf3e1882d]
 
* flow: Merged  '0.9915' to  ('default').
[dc1d08d9ee5c] [0.9915]
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/version-0.9915/META.json new/version-0.9916/META.json
--- old/version-0.9915/META.json2016-03-06 01:07:51.0 +0100
+++ new/version-0.9916/META.json2016-03-19 03:13:50.0 +0100
@@ -54,6 +54,6 @@
  "url" : "https://bitbucket.org/jpeacock/version";
   }
},
-   "version" : "0.9915",
+   "version" : "0.9916",
"x_serialization_backend" : "JSON::PP version 2.27203"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/version-0.9915/META.yml new/version-0.9916/META.yml
--- old/version-0.9915/META.yml 2016-03-06 01:07:51.0 +0100
+++ new/version-0.9916/META.yml 2016-03-19 03:13:50.0 +0100
@@ -28,5 +28,5 @@
 resources:
   bugtracker: https://rt.cpan.org/Public/Dist/Display.html?Name=version
   repository: https://bitbucke

commit librime for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package librime for openSUSE:Factory checked 
in at 2016-04-22 16:23:01

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


Package is "librime"

Changes:

--- /work/SRC/openSUSE:Factory/librime/librime.changes  2016-03-07 
13:26:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.librime.new/librime.changes 2016-04-22 
16:23:03.0 +0200
@@ -1,0 +2,13 @@
+Thu Mar 17 17:50:11 UTC 2016 - mplus...@suse.com
+
+- Use cmake macros
+- Drop useless conditional build dependencies for non-devel
+  packages
+
+
+Mon Mar 14 17:52:10 UTC 2016 - qz...@suse.com
+
+- Change LICENSE from GPL-3.0+ to BSD-3-Clause to keep consistent
+  with upstream.
+
+---



Other differences:
--
++ librime.spec ++
--- /var/tmp/diff_new_pack.GcD4Yy/_old  2016-04-22 16:23:04.0 +0200
+++ /var/tmp/diff_new_pack.GcD4Yy/_new  2016-04-22 16:23:04.0 +0200
@@ -20,7 +20,7 @@
 Version:1.2.9+git20160226.df4192c
 Release:0
 Summary:Rime Input Method Engine
-License:GPL-3.0+
+License:BSD-3-Clause
 Group:  System/I18n/Chinese
 Url:https://github.com/rime/librime
 Source: %{name}-%{version}.tar.xz
@@ -34,30 +34,6 @@
 BuildRequires:  glog-devel
 BuildRequires:  googletest-devel
 BuildRequires:  leveldb-devel
-%if 0%{?suse_version} >= 1220
-BuildRequires:  boost-devel
-%endif
-%if 0%{?suse_version} == 1140
-BuildRequires:  libboost_filesystem1_44_0
-BuildRequires:  libboost_regex1_44_0
-BuildRequires:  libboost_signals1_44_0
-BuildRequires:  libboost_system1_44_0
-BuildRequires:  libboost_thread1_44_0
-%endif
-%if 0%{?suse_version} == 1210
-BuildRequires:  libboost_filesystem1_46_1
-BuildRequires:  libboost_regex1_46_1
-BuildRequires:  libboost_signals1_46_1
-BuildRequires:  libboost_system1_46_1
-BuildRequires:  libboost_thread1_46_1
-%endif
-%if 0%{?sles_version}
-BuildRequires:  libboost_filesystem1_36_0
-BuildRequires:  libboost_regex1_36_0
-BuildRequires:  libboost_signals1_36_0
-BuildRequires:  libboost_system1_36_0
-BuildRequires:  libboost_thread1_36_0
-%endif
 BuildRequires:  libkyotocabinet-devel
 BuildRequires:  marisa-devel
 BuildRequires:  opencc-devel >= 1.0.2
@@ -114,18 +90,14 @@
 sed -i "s/1.46.0/1.36.0/" CMakeLists.txt
 
 %build
-mkdir -pv build
-pushd build
-cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} -DLIB_INSTALL_DIR=%{_libdir} \
-  -DCMAKE_CXX_FLAGS="%{optflags}" ..
+%cmake \
+  -DCMAKE_BUILD_TYPE=RelWithDebInfo
 make %{?_smp_mflags}
 
 %install
-pushd build
-make DESTDIR=%{buildroot} install
+%cmake_install
 
 %post -n librime1 -p /sbin/ldconfig
-
 %postun -n librime1 -p /sbin/ldconfig
 
 %files -n rime




commit ibus-table-extraphrase for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package ibus-table-extraphrase for 
openSUSE:Factory checked in at 2016-04-22 16:23:05

Comparing /work/SRC/openSUSE:Factory/ibus-table-extraphrase (Old)
 and  /work/SRC/openSUSE:Factory/.ibus-table-extraphrase.new (New)


Package is "ibus-table-extraphrase"

Changes:

--- 
/work/SRC/openSUSE:Factory/ibus-table-extraphrase/ibus-table-extraphrase.changes
2012-06-25 12:31:37.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ibus-table-extraphrase.new/ibus-table-extraphrase.changes
   2016-04-22 16:23:08.0 +0200
@@ -1,0 +2,5 @@
+Mon Feb 29 19:28:15 CST 2016 - qz...@suse.com
+
+- Make sure source code's COPYING file install by default.
+
+---



Other differences:
--
++ ibus-table-extraphrase.spec ++
--- /var/tmp/diff_new_pack.lMtRUM/_old  2016-04-22 16:23:09.0 +0200
+++ /var/tmp/diff_new_pack.lMtRUM/_new  2016-04-22 16:23:09.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ibus-table-extraphrase
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -24,7 +24,7 @@
 Url:http://code.google.com/p/ibus/
 Source: %{name}-%{version}.tar.gz
 Summary:Extra phrases for IBus-table based IME
-License:GPL-2.0+
+License:GPL-3.0+
 Group:  System/I18n/Chinese
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildArch:  noarch
@@ -60,6 +60,7 @@
 %files
 %defattr(-,root,root)
 %{_datadir}/ibus-table/data/extra_phrase.txt
+%doc COPYING
 
 %files devel
 %defattr(-,root,root)




commit mozc for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package mozc for openSUSE:Factory checked in 
at 2016-04-22 16:22:57

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


Package is "mozc"

Changes:

--- /work/SRC/openSUSE:Factory/mozc/mozc.changes2015-10-19 
22:49:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.mozc.new/mozc.changes   2016-04-22 
16:22:59.0 +0200
@@ -1,0 +2,12 @@
+Tue Mar  8 14:52:16 UTC 2016 - ft...@geeko.jp
+
+- Upstream update to 2.17.2313.102 
+  * "-j" option is deprecated
+  * Calculator supports inputs starting with "="
+  * ibus-mozc supports "icon_prop_key" and input mode labels are
+shown on tray icon
+  * Minor updates and refactoring
+- Update ibus-provide-layout-variations.patch
+- Update mozc-ninja-verbose-build.patch
+
+---

Old:

  mozc-2.17.2123.102.tar.xz

New:

  mozc-2.17.2313.102.tar.xz
  protobuf.tar.xz



Other differences:
--
++ mozc.spec ++
--- /var/tmp/diff_new_pack.JD1YB0/_old  2016-04-22 16:23:01.0 +0200
+++ /var/tmp/diff_new_pack.JD1YB0/_new  2016-04-22 16:23:01.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package mozc
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -30,14 +30,18 @@
 %define zinnia_model_path %{_datadir}/zinnia/model/tomoe/handwriting-ja.model
 
 Name:   mozc
-Version:2.17.2123.102
+Version:2.17.2313.102
 Release:0
 Summary:Mozc - Japanese Input Method for Chromium OS, Mac and Linux
 License:BSD-3-Clause and SUSE-Public-Domain
 Group:  System/I18n/Japanese
 
-Url:http://code.google.com/p/mozc
-# svn export http://mozc.googlecode.com/svn/trunk/src/@r510 mozc
+Url:https://github.com/google/mozc
+# git clone https://github.com/google/mozc.git
+# cd mozc
+# git archive --prefix=mozc-$version/ 3306d33 | tar xC ../
+# rm mozc-$version/src/third_party/*
+# tar cvJf mozc-$version.tar.xz mozc-$version
 Source0:%{name}-%{version}.tar.xz
 Source1:README.SUSE
 
@@ -52,6 +56,15 @@
 # japanese-usage-dictionary
 # License: BSD-2-Clause
 Source5:japanese_usage_dictionary-r10.tar.xz
+# protobuf
+# License: BSD-3-Clause
+#
+# Use static protobuf lib because of the binary incopatibility problem
+# between GCC5 and LLVM
+#
+# git clone https://github.com/google/protobuf/
+# git archive --prefix protobuf/ v3.0.0-beta-2 | xz > ../protobuf.tar.xz
+Source6:protobuf.tar.xz
 #
 # jigyosyo.zip and ken_all.zip are zip-code--address data provided by
 # Japan Post Co., Ltd.
@@ -161,8 +174,8 @@
 %patch -p2
 %endif
 
-%patch1 -p0
-%patch2 -p1
+%patch1 -p2
+%patch2 -p2
 %ifarch ppc ppc64 ppc64le
 %patch3 -p1
 %endif
@@ -175,6 +188,8 @@
 tar xvf %{SOURCE3}
 # japanese_usage_dictionary
 tar xvf %{SOURCE5}
+# protobuf
+tar xvf %{SOURCE6}
 cd protobuf
 %patch4 -p1
 %patch5 -p1
@@ -207,7 +222,7 @@
 export GYP_DEFINES='ibus_mozc_path=%{ibus_mozc_path} 
ibus_mozc_icon_path=%{ibus_mozc_icon_path} use_libprotobuf=0 use_libzinnia=1 
document_dir=%{document_dir} zinnia_model_file=%{zinnia_model_path} 
release_extra_cflags="'$flags'"'
 
 python build_mozc.py gyp --server_dir=%{_libdir}/mozc
-python build_mozc.py build -c %{target}  %{?_smp_mflags} \
+python build_mozc.py build -c %{target} \
unix/ibus/ibus.gyp:ibus_mozc \
 %if %{with_fcitx}
unix/fcitx/fcitx.gyp:fcitx-mozc \

++ ibus-provide-layout-variations.patch ++
--- /var/tmp/diff_new_pack.JD1YB0/_old  2016-04-22 16:23:01.0 +0200
+++ /var/tmp/diff_new_pack.JD1YB0/_new  2016-04-22 16:23:01.0 +0200
@@ -1,32 +1,36 @@
-diff -ru unix.org/ibus/gen_mozc_xml.py unix/ibus/gen_mozc_xml.py
 unix.org/ibus/gen_mozc_xml.py  2014-01-07 20:05:54.092270180 +0900
-+++ unix/ibus/gen_mozc_xml.py  2014-01-07 20:12:25.162442386 +0900
-@@ -69,7 +69,6 @@
- 'description': '%(product_name)s (Japanese Input Method)',
- 'language': 'ja',
- 'icon': '%(ibus_mozc_icon_path)s',
--'rank': '80',
- 'symbol': 'あ',
- }
+diff --git a/src/unix/ibus/gen_mozc_xml.py b/src/unix/ibus/gen_mozc_xml.py
+index 1e2180c..5cb1e50 100644
+--- a/src/unix/ibus/gen_mozc_xml.py
 b/src/unix/ibus/gen_mozc_xml.py
+@@ -183,14 +183,20 @@ def main():
+   'description': '%(product_name)s (Japanese Input Method)',
+   'language': 'ja',
+   'icon': '%(ibus_mozc_icon_path)s',
+-  'rank': '80',
++  'symbol': 'あ',
+   }
  
-@@ -86,12 +85,17 @@
- },
- # On Linux 

commit perl-Test-TCP for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package perl-Test-TCP for openSUSE:Factory 
checked in at 2016-04-22 16:23:12

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


Package is "perl-Test-TCP"

Changes:

--- /work/SRC/openSUSE:Factory/perl-Test-TCP/perl-Test-TCP.changes  
2015-10-08 08:24:32.0 +0200
+++ /work/SRC/openSUSE:Factory/.perl-Test-TCP.new/perl-Test-TCP.changes 
2016-04-22 16:23:13.0 +0200
@@ -1,0 +2,10 @@
+Mon Mar 21 12:05:39 UTC 2016 - co...@suse.com
+
+- updated to 2.15
+   see /usr/share/doc/packages/perl-Test-TCP/Changes
+
+  2.15 2016-03-15T00:25:52Z
+  
+  - Add listen_socket function and listen option for race-free operation
+
+---

Old:

  Test-TCP-2.14.tar.gz

New:

  Test-TCP-2.15.tar.gz



Other differences:
--
++ perl-Test-TCP.spec ++
--- /var/tmp/diff_new_pack.TMG6Xp/_old  2016-04-22 16:23:13.0 +0200
+++ /var/tmp/diff_new_pack.TMG6Xp/_new  2016-04-22 16:23:13.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package perl-Test-TCP
 #
-# 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-Test-TCP
-Version:2.14
+Version:2.15
 Release:0
 %define cpan_name Test-TCP
 Summary:Testing Tcp Program

++ Test-TCP-2.14.tar.gz -> Test-TCP-2.15.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-TCP-2.14/Changes new/Test-TCP-2.15/Changes
--- old/Test-TCP-2.14/Changes   2015-09-30 00:38:45.0 +0200
+++ new/Test-TCP-2.15/Changes   2016-03-15 01:26:52.0 +0100
@@ -1,5 +1,9 @@
 Revision history for Perl module Test::TCP
 
+2.15 2016-03-15T00:25:52Z
+
+- Add listen_socket function and listen option for race-free operation
+
 2.14 2015-09-29T22:36:44Z
 
 - Fix race condition in t/10_oo.t(exodist)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-TCP-2.14/MANIFEST new/Test-TCP-2.15/MANIFEST
--- old/Test-TCP-2.14/MANIFEST  2015-09-30 00:38:45.0 +0200
+++ new/Test-TCP-2.15/MANIFEST  2016-03-15 01:26:52.0 +0100
@@ -22,6 +22,7 @@
 t/11_net_empty_port.t
 t/12_pass_wait_port_options.t
 t/13_undef_port.t
+t/14_listen.t
 t/Server.pm
 xt/02_perlcritic.t
 xt/04_dependents.t
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-TCP-2.14/META.json new/Test-TCP-2.15/META.json
--- old/Test-TCP-2.14/META.json 2015-09-30 00:38:45.0 +0200
+++ new/Test-TCP-2.15/META.json 2016-03-15 01:26:52.0 +0100
@@ -67,7 +67,7 @@
   },
   "Test::TCP" : {
  "file" : "lib/Test/TCP.pm",
- "version" : "2.14"
+ "version" : "2.15"
   },
   "Test::TCP::CheckPort" : {
  "file" : "lib/Test/TCP/CheckPort.pm"
@@ -84,7 +84,7 @@
  "web" : "https://github.com/tokuhirom/Test-TCP";
   }
},
-   "version" : "2.14",
+   "version" : "2.15",
"x_contributors" : [
   "tokuhirom ",
   "mattn ",
@@ -105,7 +105,8 @@
   "Christian Walde ",
   "Tatsuhiko Miyagawa ",
   "Tatsuhiko Miyagawa ",
-  "Chad Granum "
+  "Chad Granum ",
+  "Dagfinn Ilmari Mannsåker "
],
"x_serialization_backend" : "JSON::PP version 2.27300"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-TCP-2.14/META.yml new/Test-TCP-2.15/META.yml
--- old/Test-TCP-2.14/META.yml  2015-09-30 00:38:45.0 +0200
+++ new/Test-TCP-2.15/META.yml  2016-03-15 01:26:52.0 +0100
@@ -30,7 +30,7 @@
 file: lib/Net/EmptyPort.pm
   Test::TCP:
 file: lib/Test/TCP.pm
-version: '2.14'
+version: '2.15'
   Test::TCP::CheckPort:
 file: lib/Test/TCP/CheckPort.pm
 requires:
@@ -44,7 +44,7 @@
   bugtracker: https://github.com/tokuhirom/Test-TCP/issues
   homepage: https://github.com/tokuhirom/Test-TCP
   repository: git://github.com/tokuhirom/Test-TCP.git
-version: '2.14'
+version: '2.15'
 x_contributors:
   - 'tokuhirom '
   - 'mattn '
@@ -66,4 +66,5 @@
   - 'Tatsuhiko Miyagawa '
   - 'Tatsuhiko Miyagawa '
   - 'Chad Granum '
+  - 'Dagfinn Ilmari Mannsåker '
 x_serialization_backend: 'CPAN::Meta::YAML version 0.017'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Test-TCP-2.14/Makefile.PL 
new/Test-TCP-2.15/Makefile.PL
--- old/Test-TCP-2.14/Makefile.PL   2015-

commit input-pad for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package input-pad for openSUSE:Factory 
checked in at 2016-04-22 16:23:04

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


Package is "input-pad"

Changes:

--- /work/SRC/openSUSE:Factory/input-pad/input-pad.changes  2014-11-14 
09:19:17.0 +0100
+++ /work/SRC/openSUSE:Factory/.input-pad.new/input-pad.changes 2016-04-22 
16:23:07.0 +0200
@@ -1,0 +2,6 @@
+Tue Mar 22 16:58:22 UTC 2016 - fcro...@suse.com
+
+- Remove Requires: gobject-introspection, it is not needed at
+  runtime.
+
+---



Other differences:
--
++ input-pad.spec ++
--- /var/tmp/diff_new_pack.qFY5Mr/_old  2016-04-22 16:23:08.0 +0200
+++ /var/tmp/diff_new_pack.qFY5Mr/_new  2016-04-22 16:23:08.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package input-pad
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -52,7 +52,6 @@
 BuildRequires:  python-devel
 BuildRequires:  swig
 BuildRequires:  pkgconfig(glib-2.0) >= 2.37
-Requires:   gobject-introspection
 Requires:   python3-gobject
 Obsoletes:  python-input-pad
 




commit texlive-specs-y for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-y for openSUSE:Factory 
checked in at 2016-04-22 16:21:44

Comparing /work/SRC/openSUSE:Factory/texlive-specs-y (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-y.new (New)


Package is "texlive-specs-y"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-y/texlive-specs-y.changes  
2016-03-17 16:44:57.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-y.new/texlive-specs-y.changes 
2016-04-22 16:21:49.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-y.spec ++
--- /var/tmp/diff_new_pack.oSYF2R/_old  2016-04-22 16:21:54.0 +0200
+++ /var/tmp/diff_new_pack.oSYF2R/_new  2016-04-22 16:21:54.0 +0200
@@ -15861,18 +15861,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-venndiagram-%{texlive_version}.%{texlive_noarch}.1.0svn28069-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist




commit texlive-specs-z for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-z for openSUSE:Factory 
checked in at 2016-04-22 16:22:16

Comparing /work/SRC/openSUSE:Factory/texlive-specs-z (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-z.new (New)


Package is "texlive-specs-z"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-z/texlive-specs-z.changes  
2016-03-17 16:45:38.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-z.new/texlive-specs-z.changes 
2016-04-22 16:22:17.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-z.spec ++
--- /var/tmp/diff_new_pack.ubMikD/_old  2016-04-22 16:22:18.0 +0200
+++ /var/tmp/diff_new_pack.ubMikD/_new  2016-04-22 16:22:18.0 +0200
@@ -11361,18 +11361,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-york-thesis-%{texlive_version}.%{texlive_noarch}.3.6svn23348-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist




commit texlive-specs-w for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-w for openSUSE:Factory 
checked in at 2016-04-22 16:21:31

Comparing /work/SRC/openSUSE:Factory/texlive-specs-w (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-w.new (New)


Package is "texlive-specs-w"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-w/texlive-specs-w.changes  
2016-03-17 16:40:41.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-w.new/texlive-specs-w.changes 
2016-04-22 16:21:36.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--



commit texlive-specs-x for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-x for openSUSE:Factory 
checked in at 2016-04-22 16:21:37

Comparing /work/SRC/openSUSE:Factory/texlive-specs-x (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-x.new (New)


Package is "texlive-specs-x"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-x/texlive-specs-x.changes  
2016-03-17 16:44:21.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-x.new/texlive-specs-x.changes 
2016-04-22 16:21:42.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-x.spec ++
--- /var/tmp/diff_new_pack.nTFpwk/_old  2016-04-22 16:21:47.0 +0200
+++ /var/tmp/diff_new_pack.nTFpwk/_new  2016-04-22 16:21:47.0 +0200
@@ -18081,18 +18081,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-translation-biblatex-de-%{texlive_version}.%{texlive_noarch}.1.0svn24386-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist




commit texlive for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive for openSUSE:Factory checked 
in at 2016-04-22 16:22:27

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


Package is "texlive"

Changes:

--- /work/SRC/openSUSE:Factory/texlive/texlive.changes  2016-03-17 
16:47:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive.new/texlive.changes 2016-04-22 
16:22:28.0 +0200
@@ -1,0 +2,30 @@
+Wed Apr 13 13:59:41 UTC 2016 - wer...@suse.de
+
+- Use some more system libraries
+- Avoid to prerequire own packages at build time
+
+---
+Wed Apr 13 09:21:49 UTC 2016 - sch...@suse.de
+
+- Use system libmpfr
+
+---
+Tue Apr 12 16:04:19 UTC 2016 - wer...@suse.de
+
+- Work around broken perl_gen_filelist rpm macro
+
+---
+Wed Mar 30 14:32:20 UTC 2016 - wer...@suse.de
+
+- Change Recommends for binary packages on their main packages
+  to Requires(pre) even if we get a dependency loop as otherwise
+  some developers to not get it right.
+- Add some basic Recommends for binary packages to have an
+  basic environment around.
+
+---
+Mon Mar 21 13:57:38 UTC 2016 - wer...@suse.de
+
+- Really require the library packages with texive-bin-devel 
+
+---



Other differences:
--
++ texlive.spec ++
 1851 lines (skipped)
 between /work/SRC/openSUSE:Factory/texlive/texlive.spec
 and /work/SRC/openSUSE:Factory/.texlive.new/texlive.spec




commit texlive-specs-v for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-v for openSUSE:Factory 
checked in at 2016-04-22 16:21:24

Comparing /work/SRC/openSUSE:Factory/texlive-specs-v (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-v.new (New)


Package is "texlive-specs-v"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-v/texlive-specs-v.changes  
2016-03-17 16:45:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-v.new/texlive-specs-v.changes 
2016-04-22 16:21:30.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-v.spec ++
--- /var/tmp/diff_new_pack.FDeSlI/_old  2016-04-22 16:21:35.0 +0200
+++ /var/tmp/diff_new_pack.FDeSlI/_new  2016-04-22 16:21:35.0 +0200
@@ -8207,6 +8207,10 @@
 Requires(posttrans): texlive-hyphen-base >= %{texlive_version}
 Requires(posttrans): texlive-manfnt >= %{texlive_version}
 Requires(posttrans): tex(null.tex)
+Requires:   texlive-amsfonts >= %{texlive_version}
+Requires:   texlive-cm-super >= %{texlive_version}
+Requires:   texlive-ec >= %{texlive_version}
+Requires:   texlive-epsf >= %{texlive_version}
 # Download at ftp://ftp.ctan.org/pub/tex/systems/texlive/tlnet/archive/
 # from 20150521
 Source179:  tex.doc.tar.xz




commit texlive-specs-s for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-s for openSUSE:Factory 
checked in at 2016-04-22 16:21:06

Comparing /work/SRC/openSUSE:Factory/texlive-specs-s (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-s.new (New)


Package is "texlive-specs-s"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-s/texlive-specs-s.changes  
2016-03-17 16:36:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-s.new/texlive-specs-s.changes 
2016-04-22 16:21:09.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-s.spec ++
--- /var/tmp/diff_new_pack.AQCVCm/_old  2016-04-22 16:21:16.0 +0200
+++ /var/tmp/diff_new_pack.AQCVCm/_new  2016-04-22 16:21:16.0 +0200
@@ -14921,18 +14921,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-pst-2dplot-%{texlive_version}.%{texlive_noarch}.1.5svn15878-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist




commit texlive-specs-u for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-u for openSUSE:Factory 
checked in at 2016-04-22 16:21:18

Comparing /work/SRC/openSUSE:Factory/texlive-specs-u (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-u.new (New)


Package is "texlive-specs-u"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-u/texlive-specs-u.changes  
2016-03-17 16:43:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-u.new/texlive-specs-u.changes 
2016-04-22 16:21:24.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-u.spec ++
--- /var/tmp/diff_new_pack.RTydXl/_old  2016-04-22 16:21:29.0 +0200
+++ /var/tmp/diff_new_pack.RTydXl/_new  2016-04-22 16:21:29.0 +0200
@@ -15346,18 +15346,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-section-%{texlive_version}.%{texlive_noarch}.svn20180-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
@@ -15735,13 +15723,13 @@
test -e %{buildroot}/$scr || continue
chmod 0755 %{buildroot}/$scr
 done
-# Avoid /usr/local/bin
+# Avoid /usr/local/bin or similar
 for scr in %{_texmfdistdir}/doc/latex/songbook/contrib/crd2sb/crd2sb
 do
test -e %{buildroot}/$scr || continue
ed %{buildroot}/${scr} <<-'EOF'
1
-   s@/usr/[^/]\+/bin@/usr/bin@
+   s@\(/usr/[^/]\+\|/opt\(/[^/]\+\)\?\)/bin@/usr/bin@
.
w
q




commit texlive-specs-t for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-t for openSUSE:Factory 
checked in at 2016-04-22 16:21:12

Comparing /work/SRC/openSUSE:Factory/texlive-specs-t (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-t.new (New)


Package is "texlive-specs-t"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-t/texlive-specs-t.changes  
2016-03-17 16:37:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-t.new/texlive-specs-t.changes 
2016-04-22 16:21:17.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-t.spec ++
--- /var/tmp/diff_new_pack.FikKMK/_old  2016-04-22 16:21:23.0 +0200
+++ /var/tmp/diff_new_pack.FikKMK/_new  2016-04-22 16:21:23.0 +0200
@@ -15919,18 +15919,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-qstest-%{texlive_version}.%{texlive_noarch}.svn15878-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist




commit texlive-specs-r for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-r for openSUSE:Factory 
checked in at 2016-04-22 16:21:00

Comparing /work/SRC/openSUSE:Factory/texlive-specs-r (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-r.new (New)


Package is "texlive-specs-r"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-r/texlive-specs-r.changes  
2016-03-17 16:36:10.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-r.new/texlive-specs-r.changes 
2016-04-22 16:21:03.0 +0200
@@ -1,0 +2,16 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
@@ -40 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--



commit texlive-specs-q for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-q for openSUSE:Factory 
checked in at 2016-04-22 16:20:54

Comparing /work/SRC/openSUSE:Factory/texlive-specs-q (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-q.new (New)


Package is "texlive-specs-q"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-q/texlive-specs-q.changes  
2016-03-17 16:43:18.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-q.new/texlive-specs-q.changes 
2016-04-22 16:20:56.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-q.spec ++
--- /var/tmp/diff_new_pack.LJ54ne/_old  2016-04-22 16:21:02.0 +0200
+++ /var/tmp/diff_new_pack.LJ54ne/_new  2016-04-22 16:21:02.0 +0200
@@ -14807,18 +14807,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-nomentbl-%{texlive_version}.%{texlive_noarch}.0.0.4svn16549-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
@@ -15429,9 +15417,9 @@

%{buildroot}/var/adm/update-scripts/texlive-pas-cours-%{texlive_version}.%{texlive_noarch}.1.09dsvn35842-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:155} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
 tar --use-compress-program=xz -xf %{S:156} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist
-mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-styles.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-styles.tex
-mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-patrons.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-patrons.tex
 mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-solides.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-solides.tex
+mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-patrons.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-patrons.tex
+mv -vf %{buildroot}%{_texmfdistdir}/doc/latex/pas-cours/macro-styles.tex 
%{buildroot}%{_texmfdistdir}/tex/latex/pas-cours/macro-styles.tex
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-pas-crosswords-%{texlive_version}.%{texlive_noarch}.1.03svn32313-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:157} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist




commit texlive-specs-j for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-j for openSUSE:Factory 
checked in at 2016-04-22 16:20:10

Comparing /work/SRC/openSUSE:Factory/texlive-specs-j (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-j.new (New)


Package is "texlive-specs-j"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-j/texlive-specs-j.changes  
2016-03-17 16:32:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-j.new/texlive-specs-j.changes 
2016-04-22 16:20:15.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-j.spec ++
--- /var/tmp/diff_new_pack.UDW47w/_old  2016-04-22 16:20:20.0 +0200
+++ /var/tmp/diff_new_pack.UDW47w/_new  2016-04-22 16:20:20.0 +0200
@@ -13427,18 +13427,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-fonetika-%{texlive_version}.%{texlive_noarch}.svn21326-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist




commit texlive-specs-p for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-p for openSUSE:Factory 
checked in at 2016-04-22 16:20:46

Comparing /work/SRC/openSUSE:Factory/texlive-specs-p (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-p.new (New)


Package is "texlive-specs-p"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-p/texlive-specs-p.changes  
2016-03-17 16:35:39.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-p.new/texlive-specs-p.changes 
2016-04-22 16:20:49.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-p.spec ++
--- /var/tmp/diff_new_pack.LrAYDi/_old  2016-04-22 16:20:55.0 +0200
+++ /var/tmp/diff_new_pack.LrAYDi/_new  2016-04-22 16:20:55.0 +0200
@@ -17876,18 +17876,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-minorrevision-%{texlive_version}.%{texlive_noarch}.1.1svn32165-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist




commit texlive-specs-o for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-o for openSUSE:Factory 
checked in at 2016-04-22 16:20:40

Comparing /work/SRC/openSUSE:Factory/texlive-specs-o (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-o.new (New)


Package is "texlive-specs-o"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-o/texlive-specs-o.changes  
2016-03-17 16:35:05.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-o.new/texlive-specs-o.changes 
2016-04-22 16:20:42.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-o.spec ++
--- /var/tmp/diff_new_pack.iJ5ChH/_old  2016-04-22 16:20:48.0 +0200
+++ /var/tmp/diff_new_pack.iJ5ChH/_new  2016-04-22 16:20:48.0 +0200
@@ -14303,18 +14303,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-luaotfload-%{texlive_version}.%{texlive_noarch}.2.5_4svn35328-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C %{buildroot}%{_datadir}/texlive




commit texlive-specs-n for openSUSE:Factory

2016-04-22 Thread h_root
Hello community,

here is the log from the commit of package texlive-specs-n for openSUSE:Factory 
checked in at 2016-04-22 16:20:33

Comparing /work/SRC/openSUSE:Factory/texlive-specs-n (Old)
 and  /work/SRC/openSUSE:Factory/.texlive-specs-n.new (New)


Package is "texlive-specs-n"

Changes:

--- /work/SRC/openSUSE:Factory/texlive-specs-n/texlive-specs-n.changes  
2016-03-17 16:33:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.texlive-specs-n.new/texlive-specs-n.changes 
2016-04-22 16:20:35.0 +0200
@@ -1,0 +2,21 @@
+Tue Mar 22 13:10:35 UTC 2016 - wer...@suse.de
+
+- Let texlive-lm-fonts obsolete ctan-latinmodern-fonts (boo#971282) 
+- Let texlive-junicode-fonts obsolete ctan-junicode-fonts (boo#971282) 
+
+---
+Fri Mar  4 12:41:21 UTC 2016 - wer...@suse.de
+
+- Handle even more unknown shebangs of scripts
+
+---
+Tue Feb  9 13:43:56 UTC 2016 - wer...@suse.de
+
+- Patch bbold_bbold11.dif move from texlive-specs-c to texlive-specs-b 
+
+---
+Tue Feb  9 08:12:05 UTC 2016 - wer...@suse.de
+
+- Let texlive-ps2pk-bin Obsoletes texlive-ps2pkm-bin (boo#965472)
+
+---
@@ -35 +56 @@
-- Handle unkown scripts 
+- Handle unknown scripts 



Other differences:
--
++ texlive-specs-n.spec ++
--- /var/tmp/diff_new_pack.FiPzI8/_old  2016-04-22 16:20:41.0 +0200
+++ /var/tmp/diff_new_pack.FiPzI8/_new  2016-04-22 16:20:41.0 +0200
@@ -9038,6 +9038,7 @@
 License:LPPL-1.3c
 Group:  Productivity/Publishing/TeX/Fonts
 Url:http://www.tug.org/texlive/
+Obsoletes:  ctan-latinmodern-fonts <= 2.004
 Requires(post): fontconfig
 Requires(post): ghostscript-fonts-std
 Requires(post): mkfontdir
@@ -15954,18 +15955,6 @@
 mkdir -p %{buildroot}/var/adm/update-scripts
 ln -sf ../../share/texmf%{buildroot}%{_datadir}/texlive/texmf-dist
 ln -sf ../../lib/texmf  %{buildroot}%{_datadir}/texlive/texmf
-# Move relocated paths back to where those belongs to,
-# required as the as texlive.tlpdb isn't correct anymore
-relocate () {
-   pushd %{buildroot}%{_datadir}/texlive/
-   rm -vrf tlpkg/tlpobj
-   for path in * ; do
-   test ! -h "$path" || continue
-   test -d "$path"   || exit 1
-   tar cpf - "$path" | tar xpf - -C %{buildroot}%{_texmfdistdir}/
-   done
-   popd
-}
 ln -sf %{_texmfdistdir}/texconfig/zypper.py \

%{buildroot}/var/adm/update-scripts/texlive-leading-%{texlive_version}.%{texlive_noarch}.0.0.3svn15878-%{release}-zypper
 tar --use-compress-program=xz -xf %{S:1} -C 
%{buildroot}%{_datadir}/texlive/texmf-dist




  1   2   >