commit ghc-conduit for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package ghc-conduit for openSUSE:Factory 
checked in at 2016-08-25 09:57:50

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


Package is "ghc-conduit"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-conduit/ghc-conduit.changes  2016-07-21 
08:05:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-conduit.new/ghc-conduit.changes 
2016-08-25 09:57:54.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 17 18:45:50 UTC 2016 - psim...@suse.com
+
+- Update to version 1.2.7 revision 0 with cabal2obs.
+
+---

Old:

  conduit-1.2.6.6.tar.gz

New:

  conduit-1.2.7.tar.gz



Other differences:
--
++ ghc-conduit.spec ++
--- /var/tmp/diff_new_pack.1LMSJt/_old  2016-08-25 09:57:55.0 +0200
+++ /var/tmp/diff_new_pack.1LMSJt/_new  2016-08-25 09:57:55.0 +0200
@@ -19,15 +19,14 @@
 %global pkg_name conduit
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:1.2.6.6
+Version:1.2.7
 Release:0
 Summary:Streaming data processing library
 License:MIT
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-exceptions-devel
 BuildRequires:  ghc-lifted-base-devel
 BuildRequires:  ghc-mmorph-devel
@@ -43,7 +42,6 @@
 BuildRequires:  ghc-hspec-devel
 BuildRequires:  ghc-safe-devel
 %endif
-# End cabal-rpm deps
 
 %description
 Hackage documentation generation is not reliable. For up to date documentation,
@@ -70,20 +68,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache

++ conduit-1.2.6.6.tar.gz -> conduit-1.2.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-1.2.6.6/ChangeLog.md 
new/conduit-1.2.7/ChangeLog.md
--- old/conduit-1.2.6.6/ChangeLog.md2016-05-05 14:29:07.0 +0200
+++ new/conduit-1.2.7/ChangeLog.md  2016-08-08 13:13:50.0 +0200
@@ -1,3 +1,7 @@
+## 1.2.7
+
+* Expose yieldM for ConduitM 
[#270](https://github.com/snoyberg/conduit/pull/270)
+
 ## 1.2.6.6
 
 * Fix test suite compilation on older GHCs
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-1.2.6.6/Data/Conduit/Internal/Conduit.hs 
new/conduit-1.2.7/Data/Conduit/Internal/Conduit.hs
--- old/conduit-1.2.6.6/Data/Conduit/Internal/Conduit.hs2016-05-05 
14:29:07.0 +0200
+++ new/conduit-1.2.7/Data/Conduit/Internal/Conduit.hs  2016-08-08 
13:13:50.0 +0200
@@ -419,7 +419,7 @@
 -- example, if an exception is thrown in a @Source@ feeding to a @Sink@, and
 -- the @Sink@ uses @catchC@, the exception will /not/ be caught.
 --
--- Due to this behavior (as well as lack of async exception handling), you
+-- Due to this behavior (as well as lack of async exception safety), you
 -- should not try to implement combinators such as @onException@ in terms of 
this
 -- primitive function.
 --
@@ -842,6 +842,9 @@
 yield o = yieldOr o (return ())
 {-# INLINE yield #-}
 
+-- | Send a monadic value downstream for the next component to consume.
+--
+-- @since 1.2.7
 yieldM :: Monad m => m o -> ConduitM i o m ()
 yieldM mo = lift mo >>= yield
 {-# INLINE yieldM #-}
@@ -854,7 +857,7 @@
 -- /Note/: it is highly encouraged to only return leftover values from input
 -- already consumed from upstream.
 --
--- Since 0.5.0
+-- @since 0.5.0
 leftover :: i -> ConduitM i o m ()
 leftover i = ConduitM $ \rest -> Leftover (rest ()) i
 {-# INLINE leftover #-}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/conduit-1.2.6.6/Data/Conduit.hs 
new/conduit-1.2.7/Data/Conduit.hs
--- old/conduit-1.2.6.6/Data/Conduit.hs 2016-05-05 14:29:07.0 +0200
+++ new/conduit-1.2.7/Data/Conduit.hs   2016-08-08 13:13:50.0 +0200
@@ -3,7 +3,7 @@
 {-# LANGUAGE Safe #-}
 -- | If this is your first time with conduit, you should probably start with
 -- the tutorial:
--- 
.
+-- .
 module Data.Conduit
 ( -- * Core interface
   -- ** Types
@@ -27,6 +27,7 @@
   -- ** Primitives
 , await
 , yield
+, yieldM
 , leftover
 , runConduit
 
diff 

commit ghc-connection for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package ghc-connection for openSUSE:Factory 
checked in at 2016-08-25 09:57:56

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


Package is "ghc-connection"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-connection/ghc-connection.changes
2016-07-20 09:20:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-connection.new/ghc-connection.changes   
2016-08-25 09:57:58.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 17 18:28:09 UTC 2016 - psim...@suse.com
+
+- Update to version 0.2.6 revision 0 with cabal2obs.
+
+---

Old:

  connection-0.2.5.tar.gz

New:

  connection-0.2.6.tar.gz



Other differences:
--
++ ghc-connection.spec ++
--- /var/tmp/diff_new_pack.riO8XG/_old  2016-08-25 09:57:58.0 +0200
+++ /var/tmp/diff_new_pack.riO8XG/_new  2016-08-25 09:57:58.0 +0200
@@ -18,15 +18,14 @@
 
 %global pkg_name connection
 Name:   ghc-%{pkg_name}
-Version:0.2.5
+Version:0.2.6
 Release:0
 Summary:Simple and easy network connections API
 License:BSD-3-Clause
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-byteable-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-containers-devel
@@ -40,7 +39,6 @@
 BuildRequires:  ghc-x509-system-devel
 BuildRequires:  ghc-x509-validation-devel
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-# End cabal-rpm deps
 
 %description
 Simple network library for all your connection need.
@@ -64,15 +62,12 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 

++ connection-0.2.5.tar.gz -> connection-0.2.6.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/connection-0.2.5/Network/Connection/Types.hs 
new/connection-0.2.6/Network/Connection/Types.hs
--- old/connection-0.2.5/Network/Connection/Types.hs2015-06-19 
22:32:33.0 +0200
+++ new/connection-0.2.6/Network/Connection/Types.hs2016-08-12 
08:23:14.0 +0200
@@ -17,13 +17,14 @@
 import Data.ByteString (ByteString)
 
 import Network.BSD (HostName)
-import Network.Socket (PortNumber)
+import Network.Socket (PortNumber, Socket)
 import qualified Network.TLS as TLS
 
 import System.IO (Handle)
 
 -- | Simple backend enumeration, either using a raw connection or a tls 
connection.
 data ConnectionBackend = ConnectionStream Handle
+   | ConnectionSocket Socket
| ConnectionTLS TLS.Context
 
 -- | Connection Parameters to establish a Connection.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/connection-0.2.5/Network/Connection.hs 
new/connection-0.2.6/Network/Connection.hs
--- old/connection-0.2.5/Network/Connection.hs  2015-06-19 22:32:33.0 
+0200
+++ new/connection-0.2.6/Network/Connection.hs  2016-08-12 08:23:14.0 
+0200
@@ -22,6 +22,8 @@
 
 -- * Exceptions
 , LineTooLong(..)
+, HostNotResolved(..)
+, HostCannotConnect(..)
 
 -- * Library initialization
 , initConnectionContext
@@ -29,11 +31,13 @@
 
 -- * Connection operation
 , connectFromHandle
+, connectFromSocket
 , connectTo
 , connectionClose
 
 -- * Sending and receiving data
 , connectionGet
+, connectionGetExact
 , connectionGetChunk
 , connectionGetChunk'
 , connectionGetLine
@@ -57,6 +61,10 @@
 
 import Network.Socks5
 import qualified Network as N
+import Network.Socket
+import Network.BSD (getProtocolNumber)
+import qualified Network.Socket as N (close)
+import qualified Network.Socket.ByteString as N
 
 import Data.Default.Class
 import Data.Data
@@ -77,7 +85,15 @@
 -- the line in ConnectionGetLine.
 data LineTooLong = LineTooLong deriving (Show,Typeable)
 
+-- | Exception raised when there's no resolution for a specific host
+data HostNotResolved = HostNotResolved String deriving (Show,Typeable)
+
+-- | Exception raised when the connect failed
+data HostCannotConnect = HostCannotConnect String [E.IOException] deriving 
(Show,Typeable)
+
 instance E.Exception LineTooLong
+instance E.Exception HostNotResolved
+instance E.Exception HostCannotConnect
 
 connectionSessionManager :: Manager -> TLS.SessionManager
 connectionSessionManager mvar = 

commit tor for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

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

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


Package is "tor"

Changes:

--- /work/SRC/openSUSE:Factory/tor/tor.changes  2016-08-15 10:31:50.0 
+0200
+++ /work/SRC/openSUSE:Factory/.tor.new/tor.changes 2016-08-25 
09:58:24.0 +0200
@@ -1,0 +2,11 @@
+Wed Aug 24 21:01:13 UTC 2016 - astie...@suse.com
+
+- tor 0.2.8.7:
+  * The "Tonga" bridge authority has been retired; the new bridge
+authority is "Bifroest"
+  * Only use the ReachableAddresses option to restrict the first
+hop in a path. In earlier versions of 0.2.8.x, it would apply
+to every hop in the path, with a possible degradation in
+anonymity for anyone using an uncommon ReachableAddress setting
+
+---

Old:

  tor-0.2.8.6.tar.gz
  tor-0.2.8.6.tar.gz.asc

New:

  tor-0.2.8.7.tar.gz
  tor-0.2.8.7.tar.gz.asc



Other differences:
--
++ tor.spec ++
--- /var/tmp/diff_new_pack.xg6kxa/_old  2016-08-25 09:58:25.0 +0200
+++ /var/tmp/diff_new_pack.xg6kxa/_new  2016-08-25 09:58:25.0 +0200
@@ -23,7 +23,7 @@
 %define home_dir %{_localstatedir}/lib/empty
 %bcond_with bufferevents
 Name:   tor
-Version:0.2.8.6
+Version:0.2.8.7
 Release:0
 Summary:Anonymizing overlay network for TCP (The onion router)
 License:BSD-3-Clause

++ tor-0.2.8.6.tar.gz -> tor-0.2.8.7.tar.gz ++
 31611 lines of diff (skipped)




commit ghc-blaze-markup for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package ghc-blaze-markup for 
openSUSE:Factory checked in at 2016-08-25 09:57:42

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


Package is "ghc-blaze-markup"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-blaze-markup/ghc-blaze-markup.changes
2016-07-21 08:07:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-blaze-markup.new/ghc-blaze-markup.changes   
2016-08-25 09:57:45.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug  1 14:07:14 UTC 2016 - psim...@suse.com
+
+- Update to version 0.7.1.0 revision 0 with cabal2obs.
+
+---

Old:

  blaze-markup-0.7.0.3.tar.gz

New:

  blaze-markup-0.7.1.0.tar.gz



Other differences:
--
++ ghc-blaze-markup.spec ++
--- /var/tmp/diff_new_pack.OfVBcu/_old  2016-08-25 09:57:47.0 +0200
+++ /var/tmp/diff_new_pack.OfVBcu/_new  2016-08-25 09:57:47.0 +0200
@@ -19,15 +19,14 @@
 %global pkg_name blaze-markup
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.7.0.3
+Version:0.7.1.0
 Release:0
 Summary:A blazingly fast markup combinator library for Haskell
 License:BSD-3-Clause
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-blaze-builder-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-rpm-macros
@@ -41,7 +40,6 @@
 BuildRequires:  ghc-test-framework-hunit-devel
 BuildRequires:  ghc-test-framework-quickcheck2-devel
 %endif
-# End cabal-rpm deps
 
 %description
 Core modules of a blazingly fast markup combinator library for the Haskell
@@ -62,20 +60,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache

++ blaze-markup-0.7.0.3.tar.gz -> blaze-markup-0.7.1.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-markup-0.7.0.3/CHANGELOG 
new/blaze-markup-0.7.1.0/CHANGELOG
--- old/blaze-markup-0.7.0.3/CHANGELOG  2015-09-28 11:45:08.0 +0200
+++ new/blaze-markup-0.7.1.0/CHANGELOG  2016-07-24 14:52:21.0 +0200
@@ -1,3 +1,7 @@
+- 0.7.1.0
+* Relax `QuickCheck` dependency to allow 2.9
+* Add text builder instances
+
 - 0.7.0.3
 * Relax `HUnit` dependency to allow 1.3
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-markup-0.7.0.3/blaze-markup.cabal 
new/blaze-markup-0.7.1.0/blaze-markup.cabal
--- old/blaze-markup-0.7.0.3/blaze-markup.cabal 2015-09-28 11:45:08.0 
+0200
+++ new/blaze-markup-0.7.1.0/blaze-markup.cabal 2016-07-24 14:52:21.0 
+0200
@@ -1,5 +1,5 @@
 Name: blaze-markup
-Version:  0.7.0.3
+Version:  0.7.1.0
 Homepage: http://jaspervdj.be/blaze
 Bug-Reports:  http://github.com/jaspervdj/blaze-markup/issues
 License:  BSD3
@@ -51,7 +51,7 @@
 
   Build-depends:
 HUnit  >= 1.2 && < 1.4,
-QuickCheck >= 2.4 && < 2.9,
+QuickCheck >= 2.4 && < 2.10,
 containers >= 0.3 && < 0.6,
 test-framework >= 0.4 && < 0.9,
 test-framework-hunit   >= 0.3 && < 0.4,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-markup-0.7.0.3/src/Text/Blaze/Internal.hs 
new/blaze-markup-0.7.1.0/src/Text/Blaze/Internal.hs
--- old/blaze-markup-0.7.0.3/src/Text/Blaze/Internal.hs 2015-09-28 
11:45:08.0 +0200
+++ new/blaze-markup-0.7.1.0/src/Text/Blaze/Internal.hs 2016-07-24 
14:52:21.0 +0200
@@ -31,6 +31,8 @@
 , preEscapedText
 , lazyText
 , preEscapedLazyText
+, textBuilder
+, preEscapedTextBuilder
 , string
 , preEscapedString
 , unsafeByteString
@@ -52,6 +54,8 @@
 , preEscapedTextValue
 , lazyTextValue
 , preEscapedLazyTextValue
+, textBuilderValue
+, preEscapedTextBuilderValue
 , stringValue
 , preEscapedStringValue
 , unsafeByteStringValue
@@ -85,6 +89,7 @@
 import qualified Data.Text as T
 import qualified Data.Text.Encoding as T
 import qualified Data.Text.Lazy as LT
+import qualified Data.Text.Lazy.Builder as LTB
 
 -- | A static string that supports efficient output to all possible backends.
 --
@@ -245,7 +250,7 @@
 --
 -- > Hello.
 --
--- 

commit ghc-case-insensitive for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package ghc-case-insensitive for 
openSUSE:Factory checked in at 2016-08-25 09:57:47

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


Package is "ghc-case-insensitive"

Changes:

--- 
/work/SRC/openSUSE:Factory/ghc-case-insensitive/ghc-case-insensitive.changes
2016-07-21 08:03:11.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-case-insensitive.new/ghc-case-insensitive.changes
   2016-08-25 09:57:50.0 +0200
@@ -1,0 +2,5 @@
+Mon Jul 25 11:21:37 UTC 2016 - psim...@suse.com
+
+- Update to version 1.2.0.7 revision 0 with cabal2obs.
+
+---

Old:

  case-insensitive-1.2.0.6.tar.gz

New:

  case-insensitive-1.2.0.7.tar.gz



Other differences:
--
++ ghc-case-insensitive.spec ++
--- /var/tmp/diff_new_pack.oNTXpv/_old  2016-08-25 09:57:50.0 +0200
+++ /var/tmp/diff_new_pack.oNTXpv/_new  2016-08-25 09:57:50.0 +0200
@@ -19,15 +19,14 @@
 %global pkg_name case-insensitive
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:1.2.0.6
+Version:1.2.0.7
 Release:0
 Summary:Case insensitive string comparison
 License:BSD-3-Clause
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-deepseq-devel
 BuildRequires:  ghc-hashable-devel
@@ -40,7 +39,6 @@
 BuildRequires:  ghc-test-framework-devel
 BuildRequires:  ghc-test-framework-hunit-devel
 %endif
-# End cabal-rpm deps
 
 %description
 The module 'Data.CaseInsensitive' provides the 'CI' type constructor which can
@@ -62,20 +60,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache

++ case-insensitive-1.2.0.6.tar.gz -> case-insensitive-1.2.0.7.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/case-insensitive-1.2.0.6/CHANGELOG 
new/case-insensitive-1.2.0.7/CHANGELOG
--- old/case-insensitive-1.2.0.6/CHANGELOG  2016-03-15 14:46:07.0 
+0100
+++ new/case-insensitive-1.2.0.7/CHANGELOG  2016-07-21 07:15:00.0 
+0200
@@ -1,3 +1,8 @@
+1.2.0.7
+
+* Fix build of benchmarks when getting the sources from Hackage.
+
+
 1.2.0.6
 
 * Add Travis CI support
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/case-insensitive-1.2.0.6/README.markdown 
new/case-insensitive-1.2.0.7/README.markdown
--- old/case-insensitive-1.2.0.6/README.markdown2016-03-15 
14:46:07.0 +0100
+++ new/case-insensitive-1.2.0.7/README.markdown2016-07-21 
07:15:00.0 +0200
@@ -1,3 +1,6 @@
+[![Hackage](https://img.shields.io/hackage/v/case-insensitive.svg)](https://hackage.haskell.org/package/case-insensitive)
+[![Build 
Status](https://travis-ci.org/basvandijk/case-insensitive.svg)](https://travis-ci.org/basvandijk/case-insensitive)
+
 The module `Data.CaseInsensitive` provides the `CI` type constructor
 which can be parameterised by a string-like type like: `String`,
 `ByteString`, `Text`, etc.. Comparisons of values of the resulting
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/case-insensitive-1.2.0.6/bench/NoClass.hs 
new/case-insensitive-1.2.0.7/bench/NoClass.hs
--- old/case-insensitive-1.2.0.6/bench/NoClass.hs   1970-01-01 
01:00:00.0 +0100
+++ new/case-insensitive-1.2.0.7/bench/NoClass.hs   2016-07-21 
07:15:00.0 +0200
@@ -0,0 +1,24 @@
+module NoClass ( CI, mk ) where
+
+import   Control.DeepSeq( NFData, rnf, deepseq )
+import   Data.ByteString( ByteString )
+import qualified Data.ByteString  as B  ( map )
+import   Data.Word  ( Word8 )
+
+data CI s = CI !s !s
+
+instance NFData s => NFData (CI s) where
+rnf (CI o f) = o `deepseq` f `deepseq` ()
+
+mk :: ByteString -> CI ByteString
+mk s = CI s (foldCase s)
+
+foldCase :: ByteString -> ByteString
+foldCase = B.map toLower8
+
+toLower8 :: Word8 -> Word8
+toLower8 w
+  |  65 <= w && w <=  90 ||
+192 <= w && w <= 214 ||
+216 <= w && w <= 222 = w + 32
+  | otherwise= w
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit ghc-Glob for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

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

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


Package is "ghc-Glob"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-Glob/ghc-Glob.changes2016-08-24 
10:07:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-Glob.new/ghc-Glob.changes   2016-08-25 
09:58:09.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 17 18:28:52 UTC 2016 - psim...@suse.com
+
+- Update to version 0.7.11 revision 0 with cabal2obs.
+
+---

Old:

  Glob-0.7.10.tar.gz

New:

  Glob-0.7.11.tar.gz



Other differences:
--
++ ghc-Glob.spec ++
--- /var/tmp/diff_new_pack.WsCg1z/_old  2016-08-25 09:58:10.0 +0200
+++ /var/tmp/diff_new_pack.WsCg1z/_new  2016-08-25 09:58:10.0 +0200
@@ -19,11 +19,11 @@
 %global pkg_name Glob
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.7.10
+Version:0.7.11
 Release:0
 Summary:Globbing library
 License:BSD-3-Clause
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
@@ -61,19 +61,15 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
 %cabal_test
 
-
 %post devel
 %ghc_pkg_recache
 

++ Glob-0.7.10.tar.gz -> Glob-0.7.11.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glob-0.7.10/CHANGELOG.txt 
new/Glob-0.7.11/CHANGELOG.txt
--- old/Glob-0.7.10/CHANGELOG.txt   2016-07-18 18:58:59.0 +0200
+++ new/Glob-0.7.11/CHANGELOG.txt   2016-08-08 18:58:03.0 +0200
@@ -1,3 +1,7 @@
+0.7.11, 2016-08-08:
+   Got rid of tests/Utils.hs to fix test compilation on case-insensitive
+   filesystems (tests/Utils.hs vs tests/Tests/Utils.hs).
+
 0.7.10, 2016-07-18:
Update dependencies to allow dlist-0.8.
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glob-0.7.10/Glob.cabal new/Glob-0.7.11/Glob.cabal
--- old/Glob-0.7.10/Glob.cabal  2016-07-18 18:58:59.0 +0200
+++ new/Glob-0.7.11/Glob.cabal  2016-08-08 18:58:03.0 +0200
@@ -1,7 +1,7 @@
 Cabal-Version: >= 1.9.2
 
 Name:Glob
-Version: 0.7.10
+Version: 0.7.11
 Homepage:http://iki.fi/matti.niemenmaa/glob/
 Synopsis:Globbing library
 Category:System
@@ -85,4 +85,3 @@
   Tests.Regression
   Tests.Simplifier
   Tests.Utils
-  Utils
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glob-0.7.10/tests/Tests/Base.hs 
new/Glob-0.7.11/tests/Tests/Base.hs
--- old/Glob-0.7.10/tests/Tests/Base.hs 2016-07-18 18:58:59.0 +0200
+++ new/Glob-0.7.11/tests/Tests/Base.hs 2016-08-08 18:58:03.0 +0200
@@ -1,7 +1,7 @@
 -- File created: 2008-10-10 22:03:00
 
 module Tests.Base ( PString(unPS), Path(unP), COpts(unCOpts)
-  , fromRight, isRight
+  , (-->), fromRight, isRight
   ) where
 
 import System.FilePath (extSeparator, pathSeparators)
@@ -9,8 +9,6 @@
 
 import System.FilePath.Glob.Base (CompOptions(..))
 
-import Utils (fromRight, isRight)
-
 newtype PString = PatString { unPS:: String } deriving Show
 newtype Path= Path  { unP :: String } deriving Show
 newtype COpts   = COpts { unCOpts :: CompOptions } deriving Show
@@ -72,3 +70,11 @@
   , maybe "" show (b :: Maybe Int)
   , ">"
   ]
+
+fromRight (Right x) = x
+fromRight _ = error "fromRight :: Left"
+
+isRight (Right _) = True
+isRight _ = False
+
+a --> b = not a || b
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glob-0.7.10/tests/Tests/Utils.hs 
new/Glob-0.7.11/tests/Tests/Utils.hs
--- old/Glob-0.7.10/tests/Tests/Utils.hs2016-07-18 18:58:59.0 
+0200
+++ new/Glob-0.7.11/tests/Tests/Utils.hs2016-08-08 18:58:03.0 
+0200
@@ -9,7 +9,7 @@
 
 import System.FilePath.Glob.Utils
 
-import Utils
+import Tests.Base ((-->))
 
 tests = testGroup "Utils"
[ testProperty "overlapperLosesNoInfo" prop_overlapperLosesNoInfo
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Glob-0.7.10/tests/Utils.hs 
new/Glob-0.7.11/tests/Utils.hs
--- old/Glob-0.7.10/tests/Utils.hs  2016-07-18 

commit raspberrypi-firmware for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package raspberrypi-firmware for 
openSUSE:Factory checked in at 2016-08-25 09:58:10

Comparing /work/SRC/openSUSE:Factory/raspberrypi-firmware (Old)
 and  /work/SRC/openSUSE:Factory/.raspberrypi-firmware.new (New)


Package is "raspberrypi-firmware"

Changes:

--- 
/work/SRC/openSUSE:Factory/raspberrypi-firmware/raspberrypi-firmware-config-rpi.changes
 2016-07-24 19:53:28.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware.new/raspberrypi-firmware-config-rpi.changes
2016-08-25 09:58:12.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 24 13:21:26 UTC 2016 - mplus...@suse.com
+
+- Update to d0bc6ce (2016.08.23)
+
+---
raspberrypi-firmware-config-rpi2.changes: same change
raspberrypi-firmware-config-rpi3.changes: same change
raspberrypi-firmware.changes: same change

Old:

  raspberrypi-firmware-2016.07.15.tar.bz2

New:

  raspberrypi-firmware-2016.08.23.tar.bz2



Other differences:
--
++ raspberrypi-firmware-config-rpi.spec ++
--- /var/tmp/diff_new_pack.5SXcpx/_old  2016-08-25 09:58:14.0 +0200
+++ /var/tmp/diff_new_pack.5SXcpx/_new  2016-08-25 09:58:14.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   raspberrypi-firmware-config-rpi
-Version:2016.07.15
+Version:2016.08.23
 Release:0
 Summary:Configuration for the Raspberry Pi firmware loader
 License:MIT

raspberrypi-firmware-config-rpi2.spec: same change
raspberrypi-firmware-config-rpi3.spec: same change
++ raspberrypi-firmware.spec ++
--- /var/tmp/diff_new_pack.5SXcpx/_old  2016-08-25 09:58:14.0 +0200
+++ /var/tmp/diff_new_pack.5SXcpx/_new  2016-08-25 09:58:14.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   raspberrypi-firmware
-Version:2016.07.15
+Version:2016.08.23
 Release:0
 Summary:Binary bootloader and firmware files for Raspberry Pi
 License:SUSE-Firmware

++ raspberrypi-firmware-2016.07.15.tar.bz2 -> 
raspberrypi-firmware-2016.08.23.tar.bz2 ++
/work/SRC/openSUSE:Factory/raspberrypi-firmware/raspberrypi-firmware-2016.07.15.tar.bz2
 
/work/SRC/openSUSE:Factory/.raspberrypi-firmware.new/raspberrypi-firmware-2016.08.23.tar.bz2
 differ: char 11, line 1

++ raspberrypi-firmware-config.spec.in ++
--- /var/tmp/diff_new_pack.5SXcpx/_old  2016-08-25 09:58:14.0 +0200
+++ /var/tmp/diff_new_pack.5SXcpx/_new  2016-08-25 09:58:14.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   __NAME__
-Version:2016.07.15
+Version:2016.08.23
 Release:0
 Summary:Configuration for the Raspberry Pi firmware loader
 License:MIT




commit ghc-dlist-instances for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package ghc-dlist-instances for 
openSUSE:Factory checked in at 2016-08-25 09:57:59

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


Package is "ghc-dlist-instances"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-dlist-instances/ghc-dlist-instances.changes  
2016-08-24 10:07:47.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.ghc-dlist-instances.new/ghc-dlist-instances.changes 
2016-08-25 09:58:01.0 +0200
@@ -1,0 +2,5 @@
+Mon Jul 25 11:29:38 UTC 2016 - psim...@suse.com
+
+- Update to version 0.1.1.1 revision 0 with cabal2obs.
+
+---

Old:

  dlist-instances-0.1.1.tar.gz

New:

  dlist-instances-0.1.1.1.tar.gz



Other differences:
--
++ ghc-dlist-instances.spec ++
--- /var/tmp/diff_new_pack.ulIR2l/_old  2016-08-25 09:58:02.0 +0200
+++ /var/tmp/diff_new_pack.ulIR2l/_new  2016-08-25 09:58:02.0 +0200
@@ -18,11 +18,11 @@
 
 %global pkg_name dlist-instances
 Name:   ghc-%{pkg_name}
-Version:0.1.1
+Version:0.1.1.1
 Release:0
 Summary:Difference lists instances
 License:BSD-3-Clause
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
@@ -49,17 +49,13 @@
 
 %prep
 %setup -q -n %{pkg_name}-%{version}
-echo > Setup.hs 'import Distribution.Simple'
-echo >>Setup.hs 'main = defaultMain'
 
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %post devel
 %ghc_pkg_recache
 

++ dlist-instances-0.1.1.tar.gz -> dlist-instances-0.1.1.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dlist-instances-0.1.1/Setup.hs 
new/dlist-instances-0.1.1.1/Setup.hs
--- old/dlist-instances-0.1.1/Setup.hs  2016-07-20 01:42:44.0 +0200
+++ new/dlist-instances-0.1.1.1/Setup.hs2016-07-23 21:11:00.0 
+0200
@@ -0,0 +1,2 @@
+import Distribution.Simple
+main = defaultMain
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/dlist-instances-0.1.1/dlist-instances.cabal 
new/dlist-instances-0.1.1.1/dlist-instances.cabal
--- old/dlist-instances-0.1.1/dlist-instances.cabal 2016-07-20 
01:40:55.0 +0200
+++ new/dlist-instances-0.1.1.1/dlist-instances.cabal   2016-07-23 
21:11:07.0 +0200
@@ -1,5 +1,5 @@
 name:   dlist-instances
-version:0.1.1
+version:0.1.1.1
 synopsis:   Difference lists instances
 description:
   See the dlist packages.




commit vm-install for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package vm-install for openSUSE:Factory 
checked in at 2016-08-25 09:58:16

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.changes2016-08-18 
09:18:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.vm-install.new/vm-install.changes   
2016-08-25 09:58:18.0 +0200
@@ -1,0 +2,6 @@
+Tue Aug 16 15:44:58 MDT 2016 - carn...@suse.com
+
+- bsc#984189 - vm-install: add updated language files
+- Version 0.8.56
+
+---
@@ -11 +17 @@
-- Updated language files
+- bsc#984189 - vm-install: add updated language files

Old:

  vm-install-0.8.55.tar.bz2

New:

  vm-install-0.8.56.tar.bz2



Other differences:
--
++ vm-install.spec ++
--- /var/tmp/diff_new_pack.K2wDMi/_old  2016-08-25 09:58:19.0 +0200
+++ /var/tmp/diff_new_pack.K2wDMi/_new  2016-08-25 09:58:19.0 +0200
@@ -27,12 +27,12 @@
 %endif
 # For directory ownership:
 BuildRequires:  yast2
-Version:0.8.55
+Version:0.8.56
 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.55.tar.bz2
+Source0:%{name}-0.8.56.tar.bz2
 Source1:vm-install.conf
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Requires:   dbus-1-python

++ vm-install-0.8.55.tar.bz2 -> vm-install-0.8.56.tar.bz2 ++
 29503 lines of diff (skipped)




commit ghc-blaze-html for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package ghc-blaze-html for openSUSE:Factory 
checked in at 2016-08-25 09:57:39

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


Package is "ghc-blaze-html"

Changes:

--- /work/SRC/openSUSE:Factory/ghc-blaze-html/ghc-blaze-html.changes
2016-07-21 08:07:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-blaze-html.new/ghc-blaze-html.changes   
2016-08-25 09:57:40.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug  1 10:39:00 UTC 2016 - psim...@suse.com
+
+- Update to version 0.8.1.2 revision 0 with cabal2obs.
+
+---

Old:

  blaze-html-0.8.1.1.tar.gz

New:

  blaze-html-0.8.1.2.tar.gz



Other differences:
--
++ ghc-blaze-html.spec ++
--- /var/tmp/diff_new_pack.w6Va7g/_old  2016-08-25 09:57:41.0 +0200
+++ /var/tmp/diff_new_pack.w6Va7g/_new  2016-08-25 09:57:41.0 +0200
@@ -19,15 +19,14 @@
 %global pkg_name blaze-html
 %bcond_with tests
 Name:   ghc-%{pkg_name}
-Version:0.8.1.1
+Version:0.8.1.2
 Release:0
 Summary:A blazingly fast HTML combinator library for Haskell
 License:BSD-3-Clause
-Group:  System/Libraries
+Group:  Development/Languages/Other
 Url:https://hackage.haskell.org/package/%{pkg_name}
 Source0:
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-blaze-builder-devel
 BuildRequires:  ghc-blaze-markup-devel
 BuildRequires:  ghc-bytestring-devel
@@ -42,7 +41,6 @@
 BuildRequires:  ghc-test-framework-hunit-devel
 BuildRequires:  ghc-test-framework-quickcheck2-devel
 %endif
-# End cabal-rpm deps
 
 %description
 A blazingly fast HTML combinator library for the Haskell programming language.
@@ -63,20 +61,14 @@
 %prep
 %setup -q -n %{pkg_name}-%{version}
 
-
 %build
 %ghc_lib_build
 
-
 %install
 %ghc_lib_install
 
-
 %check
-%if %{with tests}
-%{cabal} test
-%endif
-
+%cabal_test
 
 %post devel
 %ghc_pkg_recache

++ blaze-html-0.8.1.1.tar.gz -> blaze-html-0.8.1.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-html-0.8.1.1/CHANGELOG 
new/blaze-html-0.8.1.2/CHANGELOG
--- old/blaze-html-0.8.1.1/CHANGELOG2015-09-28 11:48:01.0 +0200
+++ new/blaze-html-0.8.1.2/CHANGELOG2016-07-24 14:57:22.0 +0200
@@ -1,3 +1,6 @@
+- 0.8.1.2
+* Bump QuickCheck dependency to 2.9
+
 - 0.8.1.1
 * Bump HUnit dependency to 1.3
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/blaze-html-0.8.1.1/blaze-html.cabal 
new/blaze-html-0.8.1.2/blaze-html.cabal
--- old/blaze-html-0.8.1.1/blaze-html.cabal 2015-09-28 11:48:01.0 
+0200
+++ new/blaze-html-0.8.1.2/blaze-html.cabal 2016-07-24 14:57:22.0 
+0200
@@ -1,5 +1,5 @@
 Name: blaze-html
-Version:  0.8.1.1
+Version:  0.8.1.2
 Homepage: http://jaspervdj.be/blaze
 Bug-Reports:  http://github.com/jaspervdj/blaze-html/issues
 License:  BSD3
@@ -70,7 +70,7 @@
 
   Build-depends:
 HUnit  >= 1.2 && < 1.4,
-QuickCheck >= 2.4 && < 2.9,
+QuickCheck >= 2.4 && < 2.10,
 containers >= 0.3 && < 0.6,
 test-framework >= 0.4 && < 0.9,
 test-framework-hunit   >= 0.3 && < 0.4,




commit xmobar for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package xmobar for openSUSE:Factory checked 
in at 2016-08-25 09:57:33

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


Package is "xmobar"

Changes:

--- /work/SRC/openSUSE:Factory/xmobar/xmobar.changes2016-07-21 
08:01:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.xmobar.new/xmobar.changes   2016-08-25 
09:57:34.0 +0200
@@ -1,0 +2,15 @@
+Wed Aug 17 18:43:13 UTC 2016 - psim...@suse.com
+
+- Update to version 0.24.2 revision 0 with cabal2obs.
+
+---
+Mon Aug  1 14:07:12 UTC 2016 - psim...@suse.com
+
+- Update to version 0.24.1 revision 0 with cabal2obs.
+
+---
+Thu Jul 28 11:31:07 UTC 2016 - psim...@suse.com
+
+- Update to version 0.24 revision 0 with cabal2obs.
+
+---

Old:

  xmobar-0.23.1.tar.gz

New:

  xmobar-0.24.2.tar.gz



Other differences:
--
++ xmobar.spec ++
--- /var/tmp/diff_new_pack.MRRb9h/_old  2016-08-25 09:57:36.0 +0200
+++ /var/tmp/diff_new_pack.MRRb9h/_new  2016-08-25 09:57:36.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   xmobar
-Version:0.23.1
+Version:0.24.2
 Release:0
 Summary:A Minimalistic Text Based Status Bar
 License:BSD-3-Clause
@@ -25,13 +25,15 @@
 Url:https://hackage.haskell.org/package/%{name}
 Source0:
https://hackage.haskell.org/package/%{name}-%{version}/%{name}-%{version}.tar.gz
 BuildRequires:  ghc-Cabal-devel
-# Begin cabal-rpm deps:
 BuildRequires:  ghc-HTTP-devel
 BuildRequires:  ghc-X11-devel
+BuildRequires:  ghc-X11-xft-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-containers-devel
+BuildRequires:  ghc-dbus-devel
 BuildRequires:  ghc-directory-devel
 BuildRequires:  ghc-filepath-devel
+BuildRequires:  ghc-hinotify-devel
 BuildRequires:  ghc-mtl-devel
 BuildRequires:  ghc-old-locale-devel
 BuildRequires:  ghc-parsec-devel
@@ -43,15 +45,11 @@
 BuildRequires:  ghc-transformers-devel
 BuildRequires:  ghc-unix-devel
 BuildRequires:  ghc-utf8-string-devel
+BuildRequires:  libXpm-devel
+BuildRequires:  libXrandr-devel
+BuildRequires:  libXrender-devel
 BuildRequires:  libiw-devel
-BuildRequires:  pkgconfig
-BuildRequires:  pkgconfig(xpm)
-BuildRequires:  pkgconfig(xrandr)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ghc-X11-xft-devel
-BuildRequires:  ghc-dbus-devel
-BuildRequires:  ghc-hinotify-devel
-BuildRequires:  libXinerama-devel
 
 %description
 Xmobar is a minimalistic text based status bar.
@@ -63,13 +61,12 @@
 %setup -q
 
 %build
-%define cabal_configure_options -f"with_thread with_utf8 with_xft with_xpm 
with_mpris with_dbus with_iwlib with_inotify"
+%define cabal_configure_options -fwith_thread -fwith_utf8 -fwith_xft 
-fwith_xpm -fwith_mpris -fwith_dbus -fwith_iwlib -fwith_inotify
 %ghc_bin_build
 
 %install
 %ghc_bin_install
 
-
 %files
 %defattr(-,root,root,-)
 %doc license

++ xmobar-0.23.1.tar.gz -> xmobar-0.24.2.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/xmobar-0.23.1/news.md new/xmobar-0.24.2/news.md
--- old/xmobar-0.23.1/news.md   2015-04-14 19:08:19.0 +0200
+++ new/xmobar-0.24.2/news.md   2016-08-08 23:40:59.0 +0200
@@ -1,5 +1,58 @@
 % xmobar - Release notes
 
+## Version 0.24.2 (Aug 8, 2016)
+
+_Bug fixes_
+
+   - New Weather plugin URL (see [issue #270]).
+
+[issue #270]: https://github.com/jaor/xmobar/issues/270
+
+## Version 0.24.1 (Jul 28, 2016)
+
+_Bug fixes_
+
+   - Restoring compatibility with GHC 7.6, (see [issue #269]).
+
+[issue #269]: https://github.com/jaor/xmobar/issues/269
+
+## Version 0.24 (Jul 26, 2016)
+
+_New features_
+
+   - Use the new compilation flag `with_conduit` to compile an
+ implemetation of the  `Weather` plugin that will work behind
+ proxies, by Dragos Boca.
+   - New command line argument (`-p`) to specify xmobar's position, by
+ Valentin Shirokov.
+   - Wind speed in Km/h and m/s for the `Weather` plugin, by Michael
+ Knabe.
+   - `UVMeter`, a new optional plugin showing UV data for Australian
+ users, by Roman Joost.
+   - New template parameter `` for the `MPD` plugin (by Bruno
+ Heridet)
+   - New monitor argument `-T` to specify the maximum total width of
+ the monitor text.
+   - New $VAR parameter syntax for using env vars in pipe monitors, by
+ Will Song (see [issue #268]).
+
+_Bug fixes_
+
+   - The `Volume` plugin now supports capture devices (Antoine Eiche).
+   - The `MPD` plugin will now automatically 

commit yast2-firstboot for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package yast2-firstboot for openSUSE:Factory 
checked in at 2016-08-25 09:57:29

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


Package is "yast2-firstboot"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-firstboot/yast2-firstboot.changes  
2016-08-13 18:30:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-firstboot.new/yast2-firstboot.changes 
2016-08-25 09:57:31.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug 24 11:22:55 UTC 2016 - jreidin...@suse.com
+
+- fix not showing errors as popup in firstboot (bnc#994892)
+- 3.1.17
+
+---

Old:

  yast2-firstboot-3.1.16.tar.bz2

New:

  yast2-firstboot-3.1.17.tar.bz2



Other differences:
--
++ yast2-firstboot.spec ++
--- /var/tmp/diff_new_pack.19Puvz/_old  2016-08-25 09:57:32.0 +0200
+++ /var/tmp/diff_new_pack.19Puvz/_new  2016-08-25 09:57:32.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-firstboot
-Version:3.1.16
+Version:3.1.17
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-firstboot-3.1.16.tar.bz2 -> yast2-firstboot-3.1.17.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-firstboot-3.1.16/CONTRIBUTING.md 
new/yast2-firstboot-3.1.17/CONTRIBUTING.md
--- old/yast2-firstboot-3.1.16/CONTRIBUTING.md  2016-08-12 17:02:42.0 
+0200
+++ new/yast2-firstboot-3.1.17/CONTRIBUTING.md  2016-08-24 14:00:13.0 
+0200
@@ -3,7 +3,7 @@
 
 YaST is an open source project and as such it welcomes all kinds of
 contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and YaST maintainers.
+ensure the process is effective and pleasant both for you and the YaST 
maintainers.
 
 There are two main forms of contribution: reporting bugs and performing code
 changes.
@@ -17,13 +17,11 @@
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
-that every bug will be fixed, but we'll try.
-
 When creating a bug report, please follow our [bug reporting
 guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
 
+We can't guarantee that every bug will be fixed, but we'll try.
+
 Code Changes
 
 
@@ -44,15 +42,22 @@
  to the [Ruby style
  guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
 
-  4. Make sure your change didn't break anything by building the RPM package
+  4. Update the package version (in `packages/*.spec`, usually by
+ `rake version:bump`) and add a new entry to the `package/*.changes` file
+ (by `osc vc package`).  
+ For bigger changes or changes which need longer discussion it is advised 
to
+ add this as a separate last commit so it can be easily updated when 
another
+ change is merged in the meantime.
+
+  5. Make sure your change didn't break anything by building the RPM package
  (`rake osc:build`). The build process includes running the full testsuite.
 
-  5. Publish the branch and create a pull request.
+  6. Publish the branch and create a pull request.
 
-  6. YaST developers will review your change and possibly point out issues.
+  7. YaST developers will review your change and possibly point out issues.
  Adapt the code under their guidance until they are all resolved.
 
-  7. Finally, the pull request will get merged or rejected.
+  8. Finally, the pull request will get merged or rejected.
 
 See also [GitHub's guide on
 contributing](https://help.github.com/articles/fork-a-repo).
@@ -60,9 +65,6 @@
 If you want to do multiple unrelated changes, use separate branches and pull
 requests.
 
-Do not change the `VERSION` and `*.changes` files as this could lead to
-conflicts.
-
 ### Commits
 
 Each commit in the pull request should do only one thing, which is clearly
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-firstboot-3.1.16/package/yast2-firstboot.changes 
new/yast2-firstboot-3.1.17/package/yast2-firstboot.changes
--- old/yast2-firstboot-3.1.16/package/yast2-firstboot.changes  2016-08-12 
17:02:42.0 +0200
+++ new/yast2-firstboot-3.1.17/package/yast2-firstboot.changes  2016-08-24 
14:00:13.0 +0200
@@ -1,4 +1,10 @@
 ---
+Wed Aug 24 11:22:55 UTC 2016 - jreidin...@suse.com
+
+- fix not 

commit gnome-sudoku for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-sudoku for openSUSE:Factory 
checked in at 2016-08-25 09:57:01

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


Package is "gnome-sudoku"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-sudoku/gnome-sudoku.changes
2016-07-18 21:24:19.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-sudoku.new/gnome-sudoku.changes   
2016-08-25 09:57:05.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 19 19:32:32 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.20.5:
+  + Properly hide game field during pause and show after resume.
+
+---

Old:

  gnome-sudoku-3.20.4.tar.xz

New:

  gnome-sudoku-3.20.5.tar.xz



Other differences:
--
++ gnome-sudoku.spec ++
--- /var/tmp/diff_new_pack.hmEKDv/_old  2016-08-25 09:57:06.0 +0200
+++ /var/tmp/diff_new_pack.hmEKDv/_new  2016-08-25 09:57:06.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-sudoku
-Version:3.20.4
+Version:3.20.5
 Release:0
 Summary:Sudoku Game for GNOME
 License:GPL-3.0+

++ gnome-sudoku-3.20.4.tar.xz -> gnome-sudoku-3.20.5.tar.xz ++
 2666 lines of diff (skipped)




commit httperf for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package httperf for openSUSE:Factory checked 
in at 2016-08-25 09:57:14

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


Package is "httperf"

Changes:

--- /work/SRC/openSUSE:Factory/httperf/httperf.changes  2016-04-30 
23:31:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.httperf.new/httperf.changes 2016-08-25 
09:57:16.0 +0200
@@ -2 +2,6 @@
-Wed Apr 27 13:24:06 UTC 2016 - mplus...@suse.com
+Wed Aug 17 07:11:36 UTC 2016 - mplus...@suse.com
+
+- Fix building on SLE-11
+
+---
+Wed Apr 27 07:08:42 UTC 2016 - mplus...@suse.com
@@ -4,0 +10,3 @@
+  * Add AC_CONFIG_MACRO_DIR
+  * added ACLOCAL_AMFLAGS to include m4
+  * apply https://github.com/httperf/httperf/issues/8 patch from 
rowan.li...@gmail.com



Other differences:
--
++ httperf.spec ++
--- /var/tmp/diff_new_pack.GhipnU/_old  2016-08-25 09:57:17.0 +0200
+++ /var/tmp/diff_new_pack.GhipnU/_new  2016-08-25 09:57:17.0 +0200
@@ -28,9 +28,9 @@
 BuildRequires:  autoconf
 BuildRequires:  automake
 BuildRequires:  libtool
+BuildRequires:  openssl-devel
 BuildRequires:  pkgconfig
 BuildRequires:  xz
-BuildRequires:  pkgconfig(openssl)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -46,18 +46,20 @@
 TIME="\"$(date -d "${modified}" "+%%R")\""
 find .  -name '*.[ch]' |\
 xargs sed -i "s/__DATE__/${DATE}/g;s/__TIME__/${TIME}/g"
+chmod -x AUTHORS ChangeLog NEWS README.md TODO
 
 %build
+mkdir m4
 autoreconf -fiv
 %configure
 make %{?_smp_mflags}
 
 %install
-make %{?_smp_mflags} DESTDIR=%{buildroot} install
+%make_install
 
 %files
 %defattr(-,root,root,-)
-%doc %attr(644,-,-) AUTHORS ChangeLog NEWS README.md TODO
+%doc AUTHORS ChangeLog NEWS README.md TODO
 %{_bindir}/httperf
 %{_mandir}/man1/httperf.1%{ext_man}
 %{_mandir}/man1/idleconn.1%{ext_man}

++ _service ++
--- /var/tmp/diff_new_pack.GhipnU/_old  2016-08-25 09:57:17.0 +0200
+++ /var/tmp/diff_new_pack.GhipnU/_new  2016-08-25 09:57:17.0 +0200
@@ -1,15 +1,14 @@
 
-  
+  
 git://github.com/httperf/httperf
 git
-.git
 enable
 httperf
 0.9.0+git.%cd
   
-  
+  
 *.tar
 xz
   
-  
+  
 




commit virt-manager for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package virt-manager for openSUSE:Factory 
checked in at 2016-08-25 09:57:06

Comparing /work/SRC/openSUSE:Factory/virt-manager (Old)
 and  /work/SRC/openSUSE:Factory/.virt-manager.new (New)


Package is "virt-manager"

Changes:

--- /work/SRC/openSUSE:Factory/virt-manager/virt-manager.changes
2016-07-30 00:27:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.virt-manager.new/virt-manager.changes   
2016-08-25 09:57:08.0 +0200
@@ -1,0 +2,14 @@
+Fri Aug 19 10:28:19 MDT 2016 - carn...@suse.com
+
+- bsc#994394 - virt-manager does not show up in SLE Classic
+  "Applications" menu
+  virtman-desktop.patch
+
+---
+Wed Aug 17 13:24:50 MDT 2016 - carn...@suse.com
+
+- bsc#989639 - xen cdrom device pass-through fails to start FV
+  guest
+  virtinst-use-qemu-for-cdrom-device.patch
+
+---

New:

  virtinst-use-qemu-for-cdrom-device.patch



Other differences:
--
++ virt-manager.spec ++
--- /var/tmp/diff_new_pack.7ej0R9/_old  2016-08-25 09:57:09.0 +0200
+++ /var/tmp/diff_new_pack.7ej0R9/_new  2016-08-25 09:57:09.0 +0200
@@ -21,7 +21,7 @@
 %define qemu_user  "qemu"
 %define libvirt_kvm_packages   ""
 %define libvirt_xen_packages   ""
-%define preferred_distros  "sles12sp1,opensuse42.1"
+%define preferred_distros  "sles12sp2,opensuse42.2"
 %define kvm_packages   ""
 %define _version   1.4.0
 %define _release   0
@@ -76,6 +76,7 @@
 Patch161:   virtinst-xenbus-disk-index-fix.patch
 Patch162:   virtinst-refresh_before_fetch_pool.patch
 Patch163:   virtinst-use-xenpae-kernel-for-32bit.patch
+Patch164:   virtinst-use-qemu-for-cdrom-device.patch
 BuildArch:  noarch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -195,6 +196,7 @@
 %patch161 -p1
 %patch162 -p1
 %patch163 -p1
+%patch164 -p1
 
 %build
 %if %{qemu_user}

++ virtinst-use-qemu-for-cdrom-device.patch ++
References: bsc#989639
When the device added is a cdrom device (/dev/sr0), don't use
"phy" as the driver name but instead use "qemu".

Index: virt-manager-1.4.0/virtinst/devicedisk.py
===
--- virt-manager-1.4.0.orig/virtinst/devicedisk.py
+++ virt-manager-1.4.0/virtinst/devicedisk.py
@@ -550,7 +550,8 @@ class VirtualDisk(VirtualDevice):
 # Recommended xen defaults from here:
 # https://bugzilla.redhat.com/show_bug.cgi?id=1171550#c9
 # If type block, use name=phy. Otherwise do the same as qemu
-if self.conn.is_xen() and self.type == self.TYPE_BLOCK:
+if self.conn.is_xen() and self.type == self.TYPE_BLOCK and not \
+   self.is_cdrom():
 return self.DRIVER_NAME_PHY
 if self.conn.check_support(
 self.conn.SUPPORT_CONN_DISK_DRIVER_NAME_QEMU):
++ virtman-desktop.patch ++
--- /var/tmp/diff_new_pack.7ej0R9/_old  2016-08-25 09:57:09.0 +0200
+++ /var/tmp/diff_new_pack.7ej0R9/_new  2016-08-25 09:57:09.0 +0200
@@ -1,7 +1,7 @@
-Index: virt-manager-1.3.0/data/virt-manager.desktop.in
+Index: virt-manager-1.4.0/data/virt-manager.desktop.in
 ===
 virt-manager-1.3.0.orig/data/virt-manager.desktop.in
-+++ virt-manager-1.3.0/data/virt-manager.desktop.in
+--- virt-manager-1.4.0.orig/data/virt-manager.desktop.in
 virt-manager-1.4.0/data/virt-manager.desktop.in
 @@ -1,8 +1,19 @@
  [Desktop Entry]
  _Name=Virtual Machine Manager
@@ -16,7 +16,7 @@
  Terminal=false
 -Categories=System;
 +Encoding=UTF-8
-+Categories=Qt;X-SuSE-YaST;X-SuSE-YaST-Virtualization;
++Categories=GTK;GNOME;System;Monitor;Qt;X-SuSE-YaST;X-SuSE-YaST-Virtualization;
 +X-KDE-ModuleType=Library
 +X-KDE-RootOnly=true
 +X-KDE-HasReadOnlyMode=false




commit gnumeric for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package gnumeric for openSUSE:Factory 
checked in at 2016-08-25 09:56:58

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


Package is "gnumeric"

Changes:

--- /work/SRC/openSUSE:Factory/gnumeric/gnumeric.changes2016-07-01 
10:01:25.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnumeric.new/gnumeric.changes   2016-08-25 
09:57:01.0 +0200
@@ -1,0 +2,21 @@
+Sat Aug 20 21:21:03 UTC 2016 - zai...@opensuse.org
+
+- Update to version 1.12.32:
+  + Improve html4.0 fragment export (bgo#769343).
+  + Fix moving averages, exponential smothing and principal
+component tools (bgo#769659).
+  + Fix paradox plugin build with pxlib-0.6.7 (bgo#769319).
+  + Avoid gnome-common dependency.
+  + New text functions CONCAT, TEXTJOIN.
+  + New selection functions IFS, SWITCH.
+  + New aggregation functions SUMIFS, AVERAGEIFS, MINIFS, MAXIFS,
+COUNTIFS.
+  + Fix criteria function issue with errors in the selector area.
+  + Fix corner case for MINA and MAXA.
+  + Fix criteria matching of numbers against strings.
+  + Test suite improvements.
+- Conditionally apply translations-update-upstream BuildRequires
+  and macro for non-openSUSE only.
+- Remove obsolete clean section.
+
+---

Old:

  gnumeric-1.12.31.tar.xz

New:

  gnumeric-1.12.32.tar.xz



Other differences:
--
++ gnumeric.spec ++
--- /var/tmp/diff_new_pack.TtCt35/_old  2016-08-25 09:57:02.0 +0200
+++ /var/tmp/diff_new_pack.TtCt35/_new  2016-08-25 09:57:02.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnumeric
-Version:1.12.31
+Version:1.12.32
 Release:0
 Summary:Spreadsheet Application
 License:GPL-2.0 or GPL-3.0
@@ -30,7 +30,9 @@
 BuildRequires:  libgsf-devel
 BuildRequires:  python-devel
 BuildRequires:  rarian-scrollkeeper-compat
+%if !0%{?is_opensuse}
 BuildRequires:  translation-update-upstream
+%endif
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(glib-2.0) >= 2.38.0
 BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 1.0.0
@@ -98,6 +100,7 @@
 %lang_package
 %prep
 %setup -q
+%if !0%{?is_opensuse}
 translation-update-upstream
 translation-update-upstream po-functions gnumeric-functions
 # remove incomplete translations caused by translation-update-upstream (global 
LINGUAS file, two domains)
@@ -108,6 +111,7 @@
 sed -i "/^$LNG\$/d" po/LINGUAS
 fi
 done
+%endif
 
 %build
 export CFLAGS="%{optflags} -fno-strict-aliasing"
@@ -127,9 +131,6 @@
 find %{buildroot} -type f -name "*.la" -delete -print
 %fdupes %{buildroot}
 
-%clean
-rm -rf %{buildroot}
-
 %post
 /sbin/ldconfig
 %glib2_gsettings_schema_post

++ gnumeric-1.12.31.tar.xz -> gnumeric-1.12.32.tar.xz ++
/work/SRC/openSUSE:Factory/gnumeric/gnumeric-1.12.31.tar.xz 
/work/SRC/openSUSE:Factory/.gnumeric.new/gnumeric-1.12.32.tar.xz differ: char 
25, line 1




commit goffice for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package goffice for openSUSE:Factory checked 
in at 2016-08-25 09:56:55

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


Package is "goffice"

Changes:

--- /work/SRC/openSUSE:Factory/goffice/goffice.changes  2016-07-01 
10:01:22.0 +0200
+++ /work/SRC/openSUSE:Factory/.goffice.new/goffice.changes 2016-08-25 
09:56:58.0 +0200
@@ -1,0 +2,9 @@
+Sat Aug 20 20:40:04 UTC 2016 - zai...@opensuse.org
+
+- Update to version 0.10.32:
+  + Avoid gnome-common dpendency.
+  + Plug leak.
+- Conditionally apply translations-update-upstream BuildRequires
+  and macro for non-openSUSE only.
+
+---

Old:

  goffice-0.10.31.tar.xz

New:

  goffice-0.10.32.tar.xz



Other differences:
--
++ goffice.spec ++
--- /var/tmp/diff_new_pack.IRqE75/_old  2016-08-25 09:56:59.0 +0200
+++ /var/tmp/diff_new_pack.IRqE75/_new  2016-08-25 09:56:59.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   goffice
-Version:0.10.31
+Version:0.10.32
 Release:0
 Summary:GLib/GTK+ Set of Document-Centric Objects and Utilities
 License:GPL-2.0 or GPL-3.0
@@ -28,7 +28,9 @@
 BuildRequires:  ghostscript-devel >= 9.06
 BuildRequires:  intltool
 BuildRequires:  libgsf-devel >= 1.14.24
+%if !0%{?is_opensuse}
 BuildRequires:  translation-update-upstream
+%endif
 BuildRequires:  pkgconfig(cairo) >= 1.10.0
 BuildRequires:  pkgconfig(cairo-pdf) >= 1.10.0
 BuildRequires:  pkgconfig(cairo-ps) >= 1.10.0
@@ -97,7 +99,9 @@
 %lang_package
 %prep
 %setup -q
+%if !0%{?is_opensuse}
 translation-update-upstream
+%endif
 
 %build
 %configure --disable-static --with-pic --enable-introspection

++ goffice-0.10.31.tar.xz -> goffice-0.10.32.tar.xz ++
 124737 lines of diff (skipped)




commit calibre for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package calibre for openSUSE:Factory checked 
in at 2016-08-25 09:57:17

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


Package is "calibre"

Changes:

--- /work/SRC/openSUSE:Factory/calibre/calibre.changes  2016-07-30 
00:27:27.0 +0200
+++ /work/SRC/openSUSE:Factory/.calibre.new/calibre.changes 2016-08-25 
09:57:18.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 24 07:48:25 UTC 2016 - tchva...@suse.com
+
+- Remove 2nd part of the update disabling as it breaks with new code
+  now user can click and get the notification, but still it won't
+  be at least done automatically bnc#993644
+  * calibre-no-update.diff
+
+---



Other differences:
--
++ calibre-no-update.diff ++
--- /var/tmp/diff_new_pack.MQlnV1/_old  2016-08-25 09:57:20.0 +0200
+++ /var/tmp/diff_new_pack.MQlnV1/_new  2016-08-25 09:57:20.0 +0200
@@ -13,15 +13,3 @@
  parser.add_option('--ignore-plugins', default=False, action='store_true',
  help=_('Ignore custom plugins, useful if you installed a plugin'
  ' that is preventing calibre from starting'))
-diff -burN calibre-2.9.0.orig/src/calibre/gui2/update.py 
calibre-2.9.0/src/calibre/gui2/update.py
 calibre-2.9.0.orig/src/calibre/gui2/update.py  2014-11-09 
20:09:54.082231864 +0800
-+++ calibre-2.9.0/src/calibre/gui2/update.py   2014-11-09 20:17:49.954767115 
+0800
-@@ -154,6 +154,8 @@
- self.update_checker.signal.update_found.connect(self.update_found,
- type=Qt.QueuedConnection)
- self.update_checker.start()
-+else:
-+self.update_checker = None
- 
- def recalc_update_label(self, number_of_plugin_updates):
- self.update_found(self.last_newest_calibre_version, 
number_of_plugin_updates)




commit virt-viewer for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package virt-viewer for openSUSE:Factory 
checked in at 2016-08-25 09:57:08

Comparing /work/SRC/openSUSE:Factory/virt-viewer (Old)
 and  /work/SRC/openSUSE:Factory/.virt-viewer.new (New)


Package is "virt-viewer"

Changes:

--- /work/SRC/openSUSE:Factory/virt-viewer/virt-viewer.changes  2016-08-03 
11:42:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.virt-viewer.new/virt-viewer.changes 
2016-08-25 09:57:11.0 +0200
@@ -1,0 +2,9 @@
+Fri Aug 19 12:48:53 MDT 2016 - carn...@suse.com
+
+- bsc#983689 - virt-viewer shows Domain-0 on list of virtual
+  machines
+  virtview-dont-show-Domain-0.patch
+- Upstream bug fix
+  813c775c-fix-filename-leak-on-transfer-dialog.patch
+
+---

New:

  813c775c-fix-filename-leak-on-transfer-dialog.patch
  virtview-dont-show-Domain-0.patch



Other differences:
--
++ virt-viewer.spec ++
--- /var/tmp/diff_new_pack.CQW9Od/_old  2016-08-25 09:57:12.0 +0200
+++ /var/tmp/diff_new_pack.CQW9Od/_new  2016-08-25 09:57:12.0 +0200
@@ -32,9 +32,11 @@
 Source: 
https://virt-manager.org/download/sources/virt-viewer/%name-%version.tar.gz
 Patch1: 35e489d5-fix-display-of-guest-name-in-title-for-vnc.patch
 Patch2: a62827d2-close-when-seeing-domain-stop-event.patch
+Patch3: 813c775c-fix-filename-leak-on-transfer-dialog.patch
 Patch50:netcat.patch
 Patch51:virtview-desktop.patch
 Patch52:reverse-3d5627d7-for-xen.patch
+Patch53:virtview-dont-show-Domain-0.patch
 ExclusiveArch:  %ix86 x86_64 s390x
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -79,9 +81,11 @@
 %setup -q
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 %patch50 -p1
 %patch51 -p1
 %patch52 -p1
+%patch53 -p1
 
 %build
 echo "suse_version = %suse_version"

++ 813c775c-fix-filename-leak-on-transfer-dialog.patch ++
Subject: Fix filename leak on transfer dialog
From: Victor Toso victort...@redhat.com Wed Aug 3 15:40:14 2016 +0200
Date: Fri Aug 5 10:59:23 2016 +0200:
Git: 813c775cc9a111ddb0be9e32e797c61fb797fa55

spice_file_transfer_task_get_filename() was wrongly annotated as
transfer none. We can safely free this string after usage.

Index: virt-viewer-4.0/src/virt-viewer-file-transfer-dialog.c
===
--- virt-viewer-4.0.orig/src/virt-viewer-file-transfer-dialog.c
+++ virt-viewer-4.0/src/virt-viewer-file-transfer-dialog.c
@@ -101,11 +101,14 @@ typedef struct {
 static TaskWidgets *task_widgets_new(SpiceFileTransferTask *task)
 {
 TaskWidgets *w = g_new0(TaskWidgets, 1);
+gchar *filename;
 
 w->vbox = gtk_box_new(GTK_ORIENTATION_VERTICAL, 6);
 w->hbox = gtk_box_new(GTK_ORIENTATION_HORIZONTAL, 12);
 w->progress = gtk_progress_bar_new();
-w->label = gtk_label_new(spice_file_transfer_task_get_filename(task));
+filename = spice_file_transfer_task_get_filename(task);
+w->label = gtk_label_new(filename);
+g_free(filename);
 w->cancel = gtk_button_new_from_icon_name("gtk-cancel", 
GTK_ICON_SIZE_SMALL_TOOLBAR);
 gtk_widget_set_hexpand(w->progress, TRUE);
 gtk_widget_set_valign(w->progress, GTK_ALIGN_CENTER);
++ virtview-dont-show-Domain-0.patch ++
References: bsc#983689
A user should not be able to connect to Domain-0. Don't show it
in the list.

Index: virt-viewer-4.0/src/virt-viewer.c
===
--- virt-viewer-4.0.orig/src/virt-viewer.c
+++ virt-viewer-4.0/src/virt-viewer.c
@@ -753,6 +753,7 @@ choose_vm(GtkWindow *main_window,
 virDomainPtr *domains, dom = NULL;
 int i, vms_running;
 unsigned int flags = VIR_CONNECT_LIST_DOMAINS_RUNNING;
+const char *domain_name;
 
 g_return_val_if_fail(vm_name != NULL, NULL);
 free(*vm_name);
@@ -761,8 +762,11 @@ choose_vm(GtkWindow *main_window,
 
 vms_running = virConnectListAllDomains(conn, , flags);
 for (i = 0; i < vms_running; i++) {
+domain_name = virDomainGetName(domains[i]);
+if (domain_name == NULL || !strcmp(domain_name, "Domain-0"))
+continue;
 gtk_list_store_append(model, );
-gtk_list_store_set(model, , 0, virDomainGetName(domains[i]), -1);
+gtk_list_store_set(model, , 0, domain_name, -1);
 virDomainFree(domains[i]);
 }
 free(domains);



commit sdl-ball for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package sdl-ball for openSUSE:Factory 
checked in at 2016-08-25 09:57:26

Comparing /work/SRC/openSUSE:Factory/sdl-ball (Old)
 and  /work/SRC/openSUSE:Factory/.sdl-ball.new (New)


Package is "sdl-ball"

Changes:

--- /work/SRC/openSUSE:Factory/sdl-ball/sdl-ball.changes2014-11-15 
12:28:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.sdl-ball.new/sdl-ball.changes   2016-08-25 
09:57:28.0 +0200
@@ -1,0 +2,5 @@
+Wed Aug 24 05:26:53 UTC 2016 - mailaen...@opensuse.org
+
+- Add support for https://en.opensuse.org/openSUSE:AppStore
+
+---

New:

  sdl-ball.appdata.xml



Other differences:
--
++ sdl-ball.spec ++
--- /var/tmp/diff_new_pack.HmSEZQ/_old  2016-08-25 09:57:29.0 +0200
+++ /var/tmp/diff_new_pack.HmSEZQ/_new  2016-08-25 09:57:29.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package sdl-ball
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright Vincent Petry 
 #
 # All modifications and additions to the file contributed by third parties
@@ -26,6 +26,8 @@
 Url:http://dustedgames.blogspot.co.uk/p/sdl-ball_20.html
 Source0:
http://downloads.sourceforge.net/%{name}/%{version}/%{name}-%{version}.tar.bz2
 Source1:%{name}.sh
+# PATCH-FEATURE-UPSTREAM https://sourceforge.net/p/sdl-ball/patches/6/
+Source2:%{name}.appdata.xml
 # PATCH-FIX-UPSTREAM https://sourceforge.net/p/sdl-ball/patches/5/
 Patch0: %{name}-%{version}-sdl-ball.desktop.patch
 %if 0%{?suse_version}
@@ -97,6 +99,9 @@
 # install Desktop file
 install -Dm 0644 %{name}.desktop 
%{buildroot}%{_datadir}/applications/%{name}.desktop
 
+# install meta data
+install -Dm 0644 %{S:2} %{buildroot}%{_datadir}/appdata/%{name}.appdata.xml
+
 %if 0%{?suse_version}
 %suse_update_desktop_file %{name}
 %fdupes -s %{buildroot}%{_prefix}
@@ -107,6 +112,8 @@
 %doc LICENSE.txt README
 %{_bindir}/%{name}
 %{_datadir}/applications/%{name}.desktop
+%dir %{_datadir}/appdata
+%{_datadir}/appdata/%{name}.appdata.xml
 %{_datadir}/pixmaps/%{name}.png
 %{_libexecdir}/%{name}
 




commit transifex-client for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package transifex-client for 
openSUSE:Factory checked in at 2016-08-25 09:57:20

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


Package is "transifex-client"

Changes:

--- /work/SRC/openSUSE:Factory/transifex-client/transifex-client.changes
2016-01-08 15:24:03.0 +0100
+++ /work/SRC/openSUSE:Factory/.transifex-client.new/transifex-client.changes   
2016-08-25 09:57:23.0 +0200
@@ -1,0 +2,16 @@
+Wed Aug 24 11:07:50 UTC 2016 - tchva...@suse.com
+
+- Update download url to github
+
+---
+Wed Aug 24 09:46:22 UTC 2016 - buschman...@opensuse.org
+
+- Update to 0.12.2
+  * better proxy support
+- Update to 0.12.1
+  * support new style URLs
+  * better error handling
+- Update to 0.12.b
+  * fix support for downloading docx, xlsx
+
+---

Old:

  transifex-client-0.11.tar.gz

New:

  0.12.2.tar.gz



Other differences:
--
++ transifex-client.spec ++
--- /var/tmp/diff_new_pack.LS0mJu/_old  2016-08-25 09:57:24.0 +0200
+++ /var/tmp/diff_new_pack.LS0mJu/_new  2016-08-25 09:57:24.0 +0200
@@ -17,24 +17,18 @@
 
 
 Name:   transifex-client
-Version:0.11
+Version:0.12.2
 Release:0
 Summary:Transifex Command-line Client
 License:GPL-2.0+
 Group:  Productivity/Text/Utilities
 Url:https://github.com/transifex/transifex-client
-Source: 
https://pypi.python.org/packages/source/t/transifex-client/%{name}-%{version}.tar.gz
-BuildRequires:  python-devel
+Source: 
https://github.com/transifex/transifex-client/archive/%{version}.tar.gz
 BuildRequires:  python-mock
 BuildRequires:  python-setuptools
 BuildRequires:  python-urllib3
-%{py_requires}
-%if 0%{?suse_version} && 0%{?suse_version} <= 1110
-%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
-%else
-BuildArch:  noarch
-%endif
 Requires:   python-setuptools
+BuildArch:  noarch
 
 %description
 The Transifex Command-line Client is a command line tool that enables you

++ transifex-client-0.11.tar.gz -> 0.12.2.tar.gz ++
 3270 lines of diff (skipped)




commit hg-git for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package hg-git for openSUSE:Factory checked 
in at 2016-08-25 09:56:39

Comparing /work/SRC/openSUSE:Factory/hg-git (Old)
 and  /work/SRC/openSUSE:Factory/.hg-git.new (New)


Package is "hg-git"

Changes:

--- /work/SRC/openSUSE:Factory/hg-git/hg-git.changes2016-02-05 
00:31:37.0 +0100
+++ /work/SRC/openSUSE:Factory/.hg-git.new/hg-git.changes   2016-08-25 
09:56:40.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug 15 14:53:23 UTC 2016 - astie...@suse.com
+
+- disable failing tests
+
+---



Other differences:
--
++ hg-git.spec ++
--- /var/tmp/diff_new_pack.SXeQGF/_old  2016-08-25 09:56:41.0 +0200
+++ /var/tmp/diff_new_pack.SXeQGF/_new  2016-08-25 09:56:41.0 +0200
@@ -52,10 +52,10 @@
 python setup.py build
 
 %check
-export PYTHONPATH="%{buildroot}%{python_sitelib}"
-pushd tests
-python run-tests.py --verbose --with-hg=%{_bindir}/hg
-popd
+# export PYTHONPATH="%{buildroot}%{python_sitelib}"
+# pushd tests
+# python run-tests.py --verbose --with-hg=%{_bindir}/hg
+# popd
 
 %install
 python setup.py install --prefix=%{_prefix} --root=%{buildroot}




commit tryton for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package tryton for openSUSE:Factory checked 
in at 2016-08-25 09:56:35

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


Package is "tryton"

Changes:

New Changes file:

--- /dev/null   2016-07-07 10:01:34.856033756 +0200
+++ /work/SRC/openSUSE:Factory/.tryton.new/tryton.changes   2016-08-25 
09:56:39.0 +0200
@@ -0,0 +1,42 @@
+---
+Mon Apr  4 10:58:05 UTC 2016 - axel.br...@gmx.de
+
+- added GNUHealth Camera and OpenCV
+
+---
+Thu Nov  5 20:55:25 UTC 2015 - axel.br...@gmx.de
+
+- Version 3.8.1
+  tryton-lang removed 
+
+--- 
+Wed Oct 19 20:14:38 UTC 2015 - axel.br...@gmx.de 
+
+- Tryton Release 3.8 
+
+--- 
+Wed Apr 15 07:24:15 UTC 2015 - axel.br...@gmx.de 
+
+- Tryton Release 3.6 
+
+---
+Fri Feb 07 23:15:02 UTC 2014 - axel.br...@gmx.de
+
+- update to 3.0.2, changes to specfile
+
+---
+Mon Nov 11 11:00:06 UTC 2013 - axel.br...@gmx.de
+
+- update to 3.0.1, patch for mime type
+
+---
+Wed Oct 23 14:59:59 UTC 2013 - axel.br...@gmx.de
+
+- new branch 3.0
+ 
+* Sat Jun 22 2013 axel.br...@gmx.de
+- new spec with regard to systemd 
+- setup of user tryton if not existing
+
+* Sun Mar 29 2009 axel.br...@gmx.de
+- packaged tryton version 1.0.3 using the buildservice spec file wizard

New:

  _service
  gnuhealth-camera-plugin-latest.tar.gz
  tryton-3.8.8.tar.gz
  tryton.changes
  tryton.spec
  tryton_crypto.patch



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

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


%define majorver 3.8
Name:   tryton
Version:%{majorver}.8
Release:0
Summary:The client of the Tryton application platform
License:GPL-3.0
Group:  Productivity/Office/Management
Url:http://www.tryton.org/
Source: 
http://downloads.tryton.org/%{majorver}/%{name}-%{version}.tar.gz
Source1:
ftp://ftp.gnu.org/gnu/health/plugins/gnuhealth-camera-plugin-latest.tar.gz
Patch0: tryton_crypto.patch
BuildRequires:  desktop-file-utils
BuildRequires:  fdupes
BuildRequires:  python-Babel
BuildRequires:  python-Sphinx
# List of additional build dependencies
BuildRequires:  python-devel
BuildRequires:  python-gtk
BuildRequires:  python-python-dateutil
BuildRequires:  python-rsvg
BuildRequires:  python-setuptools
BuildRequires:  python-simplejson
BuildRequires:  update-desktop-files
Requires:   librsvg
#for the plugins:
Requires:   opencv
Requires:   python-GooCalendar
Requires:   python-cdecimal
Requires:   python-chardet
Requires:   python-dateutil
Requires:   python-gnupg
Requires:   python-gtk
Requires:   python-opencv
Requires:   python-pytz
Requires:   python-rsvg
Requires:   python-setuptools
Requires:   python-simplejson
Requires:   python-xml
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
BuildArch:  noarch

%description
The client of the Tryton application platform.
A three-tiers  high-level general purpose application platform
written in Python and use Postgresql as database engine.
It is the core base of an Open Source ERP.
It provides modularity, scalability and security.

%prep
%setup -q
%patch0 -p1
pwd
cd %{name}/plugins/
tar --strip-components 1 -xzvf %{SOURCE1}

%install

python setup.py install --prefix=%{_prefix} --root=%{buildroot}

# menu-entry
desktop-file-install --dir %{buildroot}%{_datadir}/applications %{name}.desktop
%suse_update_desktop_file %{name}

%fdupes %{buildroot}%{_datadir}
%fdupes %{buildroot}%{_prefix}/lib

mkdir -p %{buildroot}%{_datadir}/pixmaps

commit polari for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package polari for openSUSE:Factory checked 
in at 2016-08-25 09:56:52

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


Package is "polari"

Changes:

--- /work/SRC/openSUSE:Factory/polari/polari.changes2016-05-16 
12:04:04.0 +0200
+++ /work/SRC/openSUSE:Factory/.polari.new/polari.changes   2016-08-25 
09:56:54.0 +0200
@@ -1,0 +2,10 @@
+Fri Aug 19 21:56:54 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.20.3:
+  + Fix auto-scrolling to bottom (bgo#765129).
+  + Fix rooms in sidebar not updating their read/unread style
+(bgo#768909).
+  + Fix connection issues with predefined networks (bgo#766935).
+  + Updated translations.
+
+---

Old:

  polari-3.20.2.tar.xz

New:

  polari-3.20.3.tar.xz



Other differences:
--
++ polari.spec ++
--- /var/tmp/diff_new_pack.G5NPYh/_old  2016-08-25 09:56:55.0 +0200
+++ /var/tmp/diff_new_pack.G5NPYh/_new  2016-08-25 09:56:55.0 +0200
@@ -18,7 +18,7 @@
 
 
 Name:   polari
-Version:3.20.2
+Version:3.20.3
 Release:0
 Summary:An IRC Client for GNOME
 License:GPL-2.0+ and LGPL-2.1+

++ polari-3.20.2.tar.xz -> polari-3.20.3.tar.xz ++
 3251 lines of diff (skipped)




commit kiwi-config-openSUSE for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package kiwi-config-openSUSE for 
openSUSE:Factory checked in at 2016-08-25 09:56:45

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


Package is "kiwi-config-openSUSE"

Changes:

--- 
/work/SRC/openSUSE:Factory/kiwi-config-openSUSE/kiwi-config-openSUSE.changes
2016-07-24 19:53:31.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.kiwi-config-openSUSE.new/kiwi-config-openSUSE.changes
   2016-08-25 09:56:47.0 +0200
@@ -1,0 +2,9 @@
+Thu Aug 18 16:28:21 UTC 2016 - fab...@ritter-vogt.de
+
+- Improve start-install.sh:
+  - Prevent simultaneous calls
+  - Same look everywhere:
+- Display accelerators on KDE
+- Same accelerators and font everywhere
+
+---



Other differences:
--


++ start-install.sh ++
--- /var/tmp/diff_new_pack.Dxflah/_old  2016-08-25 09:56:48.0 +0200
+++ /var/tmp/diff_new_pack.Dxflah/_new  2016-08-25 09:56:48.0 +0200
@@ -1,4 +1,14 @@
 #!/bin/bash
-echo "ZyppRepoURL: http://download.opensuse.org/tumbleweed/repo/oss; >> 
/etc/install.inf
-echo "InstMode: net" >> /etc/install.inf
+#YaST takes a certain time to show up, so we need to prevent calling it twice 
simultaneously
+#snippet from man 1 flock
+[ "${FLOCKER}" != "$0" ] && exec env FLOCKER="$0" flock -en "$0" "$0" "$@" || :
+
+#Look like the DVD installer everywhere
+unset XDG_CURRENT_DESKTOP
+
+cat >/etc/install.inf 

commit libgepub for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package libgepub for openSUSE:Factory 
checked in at 2016-08-25 09:56:49

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


Package is "libgepub"

Changes:

New Changes file:

--- /dev/null   2016-07-07 10:01:34.856033756 +0200
+++ /work/SRC/openSUSE:Factory/.libgepub.new/libgepub.changes   2016-08-25 
09:56:51.0 +0200
@@ -0,0 +1,5 @@
+---
+Tue Aug 23 15:22:02 UTC 2016 - dims...@opensuse.org
+
+- Initial package, version 0.3.
+

New:

  _service
  _servicedata
  libgepub-0.3.tar.xz
  libgepub.changes
  libgepub.spec



Other differences:
--
++ libgepub.spec ++
#
# spec file for package libgepub
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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


%global sover   0
Name:   libgepub
Version:0.3
Release:0
Summary:Epub Documents library
License:LGPL-2.1+
Group:  Development/Languages/C and C++
Url:https://git.gnome.org/browse/libgepub
Source: %{name}-%{version}.tar.xz
BuildRequires:  gnome-common
BuildRequires:  pkgconfig
BuildRequires:  pkgconfig(gio-2.0)
BuildRequires:  pkgconfig(glib-2.0)
BuildRequires:  pkgconfig(gobject-2.0)
BuildRequires:  pkgconfig(gobject-introspection-1.0) >= 1.30.0
BuildRequires:  pkgconfig(gtk+-3.0)
BuildRequires:  pkgconfig(libarchive)
BuildRequires:  pkgconfig(libxml-2.0)
BuildRoot:  %{_tmppath}/%{name}-%{version}-build

%description
A GObject based library for handling and rendering epub documents.

%package -n %{name}%{sover}
Summary:Epub Documents library -- Shared library
Group:  System/Libraries

%description -n %{name}%{sover}
A GObject based library for handling and rendering epub documents.

%package -n typelib-1_0-Gepub-0_3
Summary:Epub Documents library -- Introspection bindings
Group:  System/Libraries

%description -n typelib-1_0-Gepub-0_3
A GObject based library for handling and rendering epub documents.

%package devel
Summary:Epub Documents library -- Development files
Group:  Development/Languages/C and C++
Requires:   %{name}%{sover} = %{version}
Requires:   typelib-1_0-Gepub-0_3 = %{version}

%description devel
A GObject based library for handling and rendering epub documents.

%prep
%setup -q

%build
./autogen.sh
%configure \
--disable-static
make %{?_smp_mflags}

%install
make %{?_smp_mflags} DESTDIR=%{buildroot} install
find %{buildroot} -type f -name "*.la" -delete -print

%post   -n %{name}%{sover} -p /sbin/ldconfig
%postun -n %{name}%{sover} -p /sbin/ldconfig

%files -n %{name}%{sover}
%defattr(-,root,root)
%doc README COPYING
%{_libdir}/%{name}.so.*

%files -n typelib-1_0-Gepub-0_3
%defattr(-,root,root)
%{_libdir}/girepository-1.0/Gepub-0.3.typelib

%files devel
%defattr(-,root,root)
%{_includedir}/%{name}/
%{_libdir}/%{name}.so
%{_libdir}/pkgconfig/%{name}.pc
%{_datadir}/gir-1.0/Gepub-0.3.gir

%changelog
++ _service ++

  
git://git.gnome.org/libgepub
git
@PARENT_TAG@
enable
refs/tags/0.3
  
  
*.tar
xz
  
  

++ _servicedata ++


git://git.gnome.org/libgepub
  f1c9898c40762d89e0fa7e9094c00265e183adbb


commit opensc for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package opensc for openSUSE:Factory checked 
in at 2016-08-25 09:56:42

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


Package is "opensc"

Changes:

--- /work/SRC/openSUSE:Factory/opensc/opensc.changes2015-10-12 
10:03:01.0 +0200
+++ /work/SRC/openSUSE:Factory/.opensc.new/opensc.changes   2016-08-25 
09:56:44.0 +0200
@@ -1,0 +2,7 @@
+Tue Jul  5 12:09:24 UTC 2016 - t.gru...@katodev.de
+
+- update to version 0.16.0
+- remove fix (issue 505)
+- clean up spec-file
+
+---

Old:

  completion-template
  opensc-0.15.0.tar.gz

New:

  opensc-0.16.0.tar.gz



Other differences:
--
++ opensc.spec ++
--- /var/tmp/diff_new_pack.bOneU9/_old  2016-08-25 09:56:45.0 +0200
+++ /var/tmp/diff_new_pack.bOneU9/_new  2016-08-25 09:56:45.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package opensc
 #
-# 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,33 +17,28 @@
 
 
 Name:   opensc
-BuildRequires:  docbook-xsl-stylesheets
-BuildRequires:  libtool
-BuildRequires:  libxslt
-BuildRequires:  openssl-devel
-BuildRequires:  pcsc-lite-devel
-BuildRequires:  pkg-config
-BuildRequires:  readline-devel
-Url:https://github.com/OpenSC/OpenSC/wiki
-Version:0.15.0
+Version:0.16.0
 Release:0
 Summary:Smart Card Utilities
 License:LGPL-2.1+
 Group:  Productivity/Security
+Url:https://github.com/OpenSC/OpenSC/wiki
 Source: %{name}-%{version}.tar.gz
 Source1:%{name}-ADVISORIES
 Source2:%{name}-rpmlintrc
-# This is in git, but got stripped from the release tarball
-# https://github.com/OpenSC/OpenSC/issues/505
-Source3:completion-template
 # Register with p11-kit
 # https://www.opensc-project.org/opensc/ticket/390
-Source4:opensc.module
+Source3:opensc.module
+BuildRequires:  docbook-xsl-stylesheets
+BuildRequires:  libtool
+BuildRequires:  libxslt
+BuildRequires:  openssl-devel
+BuildRequires:  pcsc-lite-devel
+BuildRequires:  pkg-config
+BuildRequires:  readline-devel
 Requires:   pcsc-lite
 # There is no more devel package.
 Obsoletes:  opensc-devel < %{version}
-# This package is not supported any more. Last appeared in openSUSE 11.3, 
never appeared in SLE:
-Obsoletes:  opensc-java <= 0.2.2
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -61,49 +56,36 @@
 possible operations may be supported for your card. Card initialization
 may require third party proprietary software.
 
-Authors:
-
-Juha Yrjölä 
-Antti Tapaninen 
-Timo Teräs 
-Olaf Kirch 
-
 %prep
 %setup -q
-cp -a %{S:1} ADVISORIES
+cp -a %{SOURCE1} ADVISORIES
 
 %build
-%if %suse_version > 1100
+%if 0%{?suse_version} > 1100
 autoreconf -f -i
 %endif
-cp %{SOURCE3} doc/tools/completion-template
 %configure\
--docdir=%{_docdir}/%{name}\
--disable-static\
--enable-doc
-make %{?jobs:-j%jobs}
+make %{?_smp_mflags}
 
 %install
-mkdir -p $RPM_BUILD_ROOT%{_sysconfdir}
-mkdir -p $RPM_BUILD_ROOT%{_libdir}/pkcs11
-%makeinstall
-cp COPYING ADVISORIES ChangeLog README $RPM_BUILD_ROOT%{_docdir}/%{name}
+mkdir -p %{buildroot}%{_sysconfdir}
+mkdir -p %{buildroot}%{_libdir}/pkcs11
+make %{?_smp_mflags} DESTDIR=%{buildroot} install
+cp COPYING ADVISORIES NEWS README %{buildroot}%{_docdir}/%{name}
 # Private library.
-rm $RPM_BUILD_ROOT%{_libdir}/libopensc.so
-install -D -m 644 %{SOURCE4} 
$RPM_BUILD_ROOT%{_sysconfdir}/pkcs11/modules/opensc.module
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+rm %{buildroot}%{_libdir}/libopensc.so
+install -D -m 644 %{SOURCE3} 
%{buildroot}%{_sysconfdir}/pkcs11/modules/opensc.module
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %files
 %defattr(-,root,root)
 %doc %dir %{_docdir}/%{name}
 %doc %{_docdir}/%{name}/ADVISORIES
-%doc %{_docdir}/%{name}/ChangeLog
 %doc %{_docdir}/%{name}/COPYING
 %doc %{_docdir}/%{name}/NEWS
 %doc %{_docdir}/%{name}/README
@@ -115,7 +97,7 @@
 %{_libdir}/*.so*
 %dir %{_libdir}/pkcs11
 %{_libdir}/pkcs11/*.so
-%doc %{_mandir}/man?/*.*
+%{_mandir}/man?/*.*
 %config %{_sysconfdir}/opensc.conf
 %dir %{_sysconfdir}/pkcs11
 %config %{_sysconfdir}/pkcs11/modules/

++ opensc-0.15.0.tar.gz -> opensc-0.16.0.tar.gz ++
 125990 lines of diff (skipped)




commit nvme-cli for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package nvme-cli for openSUSE:Factory 
checked in at 2016-08-25 09:56:29

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


Package is "nvme-cli"

Changes:

--- /work/SRC/openSUSE:Factory/nvme-cli/nvme-cli.changes2016-06-07 
23:46:58.0 +0200
+++ /work/SRC/openSUSE:Factory/.nvme-cli.new/nvme-cli.changes   2016-08-25 
09:56:31.0 +0200
@@ -1,0 +2,16 @@
+Tue Aug  9 12:19:35 UTC 2016 - jthumsh...@suse.com
+
+- Update to upstream release v0.8
+  - Remove merged patch 0001-bash-completion-Remove-shebang-line.patch  
+  * Code re-organized to support new extensions. While these are called
+"plugins", they currently have to be built into the executable. Support
+for dynamically loadable plugins is under consideration.
+  * LightNVM is added as a built-in plugin.
+  * Intel vendor specific commands and structure decodings are supported
+in a new intel plugin.
+  * Support for NVMe-over-Fabrics
+  * New output format "json" for a subset of commands that decode returned
+structures.
+  * Lots of various documentation and minor code fixes.
+
+---

Old:

  0001-bash-completion-Remove-shebang-line.patch
  v0.7.tar.gz

New:

  v0.8.tar.gz



Other differences:
--
++ nvme-cli.spec ++
--- /var/tmp/diff_new_pack.T9piOQ/_old  2016-08-25 09:56:33.0 +0200
+++ /var/tmp/diff_new_pack.T9piOQ/_new  2016-08-25 09:56:33.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   nvme-cli
-Version:0.7
+Version:0.8
 Release:0
 Summary:Core nvme tools
 License:GPL-2.0
@@ -27,7 +27,6 @@
 BuildRequires:  pkgconfig(libudev)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 ExcludeArch:s390x
-Patch0: 0001-bash-completion-Remove-shebang-line.patch
 
 %description
 NVMe is a fast, scalable, direct attached storage interface. The nvme
@@ -35,7 +34,6 @@
 
 %prep
 %setup -q 
-%patch0 -p1
 
 %build
 echo %{version} > version

++ _service ++
--- /var/tmp/diff_new_pack.T9piOQ/_old  2016-08-25 09:56:33.0 +0200
+++ /var/tmp/diff_new_pack.T9piOQ/_new  2016-08-25 09:56:33.0 +0200
@@ -4,8 +4,8 @@
 https://github.com/linux-nvme/nvme-cli.git
 
 
-v0.7
-v0.7
+v0.8
+v0.8
   
   

commit rubygem-activerecord-4_2 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activerecord-4_2 for 
openSUSE:Factory checked in at 2016-08-25 09:55:28

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


Package is "rubygem-activerecord-4_2"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activerecord-4_2/rubygem-activerecord-4_2.changes
2016-07-20 09:25:29.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activerecord-4_2.new/rubygem-activerecord-4_2.changes
   2016-08-25 09:55:31.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:33:17 UTC 2016 - co...@suse.com
+
+- updated to version 4.2.7.1
+ see installed CHANGELOG.md
+
+---

Old:

  activerecord-4.2.7.gem

New:

  activerecord-4.2.7.1.gem



Other differences:
--
++ rubygem-activerecord-4_2.spec ++
--- /var/tmp/diff_new_pack.lqkZh1/_old  2016-08-25 09:55:32.0 +0200
+++ /var/tmp/diff_new_pack.lqkZh1/_new  2016-08-25 09:55:32.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-activerecord-4_2
-Version:4.2.7
+Version:4.2.7.1
 Release:0
 %define mod_name activerecord
 %define mod_full_name %{mod_name}-%{version}

++ activerecord-4.2.7.gem -> activerecord-4.2.7.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_record/gem_version.rb 
new/lib/active_record/gem_version.rb
--- old/lib/active_record/gem_version.rb2016-07-13 04:53:42.0 
+0200
+++ new/lib/active_record/gem_version.rb2016-08-11 00:25:26.0 
+0200
@@ -8,7 +8,7 @@
 MAJOR = 4
 MINOR = 2
 TINY  = 7
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/lib/active_record/relation/predicate_builder/array_handler.rb 
new/lib/active_record/relation/predicate_builder/array_handler.rb
--- old/lib/active_record/relation/predicate_builder/array_handler.rb   
2016-07-13 04:53:42.0 +0200
+++ new/lib/active_record/relation/predicate_builder/array_handler.rb   
2016-08-11 00:25:26.0 +0200
@@ -14,7 +14,8 @@
 it for 'IN' conditions.
   MSG
 
-  values = values.flatten
+  flat_values = values.flatten
+  values = flat_values unless flat_values.include?(nil)
 end
 
 return attribute.in([]) if values.empty? && nils.empty?
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-13 04:53:42.0 +0200
+++ new/metadata2016-08-11 00:25:26.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activerecord
 version: !ruby/object:Gem::Version
-  version: 4.2.7
+  version: 4.2.7.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-13 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,28 +16,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: arel
   requirement: !ruby/object:Gem::Requirement
@@ -304,8 +304,9 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.5.1
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Object-relational mapper framework (part of Rails).
 test_files: []
+has_rdoc: 




commit Box2D for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package Box2D for openSUSE:Factory checked 
in at 2016-08-25 09:56:26

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


Package is "Box2D"

Changes:

--- /work/SRC/openSUSE:Factory/Box2D/Box2D.changes  2016-08-15 
10:31:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.Box2D.new/Box2D.changes 2016-08-25 
09:56:28.0 +0200
@@ -1,0 +2,5 @@
+Fri Aug 12 16:58:00 UTC 2016 - jeng...@inai.de
+
+- Replace strange buildroot definition
+
+---



Other differences:
--
++ Box2D.spec ++
--- /var/tmp/diff_new_pack.IanHWR/_old  2016-08-25 09:56:29.0 +0200
+++ /var/tmp/diff_new_pack.IanHWR/_new  2016-08-25 09:56:29.0 +0200
@@ -17,9 +17,6 @@
 #
 
 
-%if 0%{?suse_version} < 1310
-%define buildroot $RPM_BUILD_ROOT
-%endif
 %define so_ver 2_3_1
 Name:   Box2D
 Version:2.3.1
@@ -32,6 +29,7 @@
 Source1:baselibs.conf
 # PATCH-FIX-UPSTREAM Box2D-fix-version-2.3.1.patch -- already fixed upstream
 Patch0: %{name}-fix-version-2.3.1.patch
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  cmake >= 3
 BuildRequires:  dos2unix
 BuildRequires:  gcc-c++




commit rubygem-airbrussh for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-airbrussh for 
openSUSE:Factory checked in at 2016-08-25 09:55:49

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


Package is "rubygem-airbrussh"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-airbrussh/rubygem-airbrussh.changes  
2016-06-11 00:01:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-airbrussh.new/rubygem-airbrussh.changes 
2016-08-25 09:55:52.0 +0200
@@ -1,0 +2,15 @@
+Wed Jul 27 04:28:32 UTC 2016 - co...@suse.com
+
+- updated to version 1.1.0
+ see installed CHANGELOG.md
+
+  ## [1.1.0][] (2016-07-26)
+  
+  * Use default color for info messages.
+When using the `gray` color on some implementation of the `solarized`
+theme the text is not visible. The `solarized` theme is popular and
+bugs have been reported about missed error messages, so this patch
+switches these messages to the default color.
+(see [#84](https://github.com/mattbrictson/airbrussh/issues/84))
+
+---

Old:

  airbrussh-1.0.2.gem

New:

  airbrussh-1.1.0.gem



Other differences:
--
++ rubygem-airbrussh.spec ++
--- /var/tmp/diff_new_pack.pgoSnC/_old  2016-08-25 09:55:53.0 +0200
+++ /var/tmp/diff_new_pack.pgoSnC/_new  2016-08-25 09:55:53.0 +0200
@@ -24,14 +24,14 @@
 #
 
 Name:   rubygem-airbrussh
-Version:1.0.2
+Version:1.1.0
 Release:0
 %define mod_name airbrussh
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  %{ruby}
+BuildRequires:  ruby-macros >= 5
 Url:https://github.com/mattbrictson/airbrussh
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml

++ airbrussh-1.0.2.gem -> airbrussh-1.1.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2016-05-13 19:24:21.0 +0200
+++ new/CHANGELOG.md2016-07-27 01:43:49.0 +0200
@@ -6,6 +6,15 @@
 
 * Your contribution here!
 
+## [1.1.0][] (2016-07-26)
+
+* Use default color for info messages.
+  When using the `gray` color on some implementation of the `solarized`
+  theme the text is not visible. The `solarized` theme is popular and
+  bugs have been reported about missed error messages, so this patch
+  switches these messages to the default color.
+  (see [#84](https://github.com/mattbrictson/airbrussh/issues/84))
+
 ## [1.0.2][] (2016-05-13)
 
 * Fix a crash that can happen in certain multi-server deployments when
@@ -106,7 +115,8 @@
 * Initial release
 
 [Semver]: http://semver.org
-[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.0.2...HEAD
+[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.1.0...HEAD
+[1.1.0]: https://github.com/mattbrictson/airbrussh/compare/v1.0.2...v1.1.0
 [1.0.2]: https://github.com/mattbrictson/airbrussh/compare/v1.0.1...v1.0.2
 [1.0.1]: https://github.com/mattbrictson/airbrussh/compare/v1.0.0...v1.0.1
 [1.0.0]: 
https://github.com/mattbrictson/airbrussh/compare/v1.0.0.beta1...v1.0.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Gemfile new/Gemfile
--- old/Gemfile 2016-05-13 19:24:21.0 +0200
+++ new/Gemfile 2016-07-27 01:43:49.0 +0200
@@ -31,5 +31,8 @@
   gem "sshkit", requirement
 end
 
+# json 2.0+ is not compatible with Ruby 1.9, so pin at older version.
+gem "json", "~> 1.8" if RUBY_VERSION == "1.9.3"
+
 # net-ssh 3.0+ is not compatible with Ruby 1.9, so pin at older version.
 gem "net-ssh", "~> 2.8" if RUBY_VERSION == "1.9.3"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/airbrussh.gemspec new/airbrussh.gemspec
--- old/airbrussh.gemspec   2016-05-13 19:24:21.0 +0200
+++ new/airbrussh.gemspec   2016-07-27 01:43:49.0 +0200
@@ -29,5 +29,5 @@
   spec.add_development_dependency "minitest"
   spec.add_development_dependency "minitest-reporters"
   spec.add_development_dependency "mocha"
-  spec.add_development_dependency "rubocop", ">= 0.37.0"
+  spec.add_development_dependency "rubocop", "~> 0.41.2"
 end
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/airbrussh/command_formatter.rb 
new/lib/airbrussh/command_formatter.rb
--- old/lib/airbrussh/command_formatter.rb  2016-05-13 

commit rubygem-capistrano for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-capistrano for 
openSUSE:Factory checked in at 2016-08-25 09:55:46

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


Package is "rubygem-capistrano"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-capistrano/rubygem-capistrano.changes
2016-06-11 00:01:06.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-capistrano.new/rubygem-capistrano.changes   
2016-08-25 09:55:48.0 +0200
@@ -1,0 +2,6 @@
+Wed Jul 27 04:29:07 UTC 2016 - co...@suse.com
+
+- updated to version 3.6.0
+ see installed CHANGELOG.md
+
+---

Old:

  capistrano-3.5.0.gem

New:

  capistrano-3.6.0.gem



Other differences:
--
++ rubygem-capistrano.spec ++
--- /var/tmp/diff_new_pack.PZVrXl/_old  2016-08-25 09:55:49.0 +0200
+++ /var/tmp/diff_new_pack.PZVrXl/_new  2016-08-25 09:55:49.0 +0200
@@ -24,12 +24,12 @@
 #
 
 Name:   rubygem-capistrano
-Version:3.5.0
+Version:3.6.0
 Release:0
 %define mod_name capistrano
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  %{ruby >= 1.9.3}
+BuildRequires:  %{ruby >= 2.0}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  ruby-macros >= 5
 BuildRequires:  update-alternatives

++ capistrano-3.5.0.gem -> capistrano-3.6.0.gem ++
 1758 lines of diff (skipped)




commit rubygem-json_pure for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-json_pure for 
openSUSE:Factory checked in at 2016-08-25 09:55:32

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


Package is "rubygem-json_pure"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-json_pure/rubygem-json_pure.changes  
2016-07-21 07:58:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-json_pure.new/rubygem-json_pure.changes 
2016-08-25 09:55:36.0 +0200
@@ -1,0 +2,10 @@
+Wed Jul 27 04:30:14 UTC 2016 - co...@suse.com
+
+- updated to version 2.0.2
+ see installed CHANGES.md
+
+  ## 2016-07-26 (2.0.2)
+* Specify `required_ruby_version` for json\_pure.
+* Fix issue #295 failure when parsing frozen strings.
+
+---

Old:

  json_pure-2.0.1.gem

New:

  json_pure-2.0.2.gem



Other differences:
--
++ rubygem-json_pure.spec ++
--- /var/tmp/diff_new_pack.rJ1SOw/_old  2016-08-25 09:55:36.0 +0200
+++ /var/tmp/diff_new_pack.rJ1SOw/_new  2016-08-25 09:55:36.0 +0200
@@ -24,14 +24,15 @@
 #
 
 Name:   rubygem-json_pure
-Version:2.0.1
+Version:2.0.2
 Release:0
 %define mod_name json_pure
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  %{ruby < 3}
+BuildRequires:  %{ruby => 2.0}
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{rubygem rdoc > 3.10}
-BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
 Url:http://flori.github.com/json
 Source: http://rubygems.org/gems/%{mod_full_name}.gem

++ json_pure-2.0.1.gem -> json_pure-2.0.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGES.md new/CHANGES.md
--- old/CHANGES.md  2016-07-01 17:31:26.0 +0200
+++ new/CHANGES.md  2016-07-26 13:11:27.0 +0200
@@ -1,5 +1,9 @@
 # Changes
 
+## 2016-07-26 (2.0.2)
+  * Specify `required_ruby_version` for json\_pure.
+  * Fix issue #295 failure when parsing frozen strings.
+
 ## 2016-07-01 (2.0.1)
   * Fix problem when requiring json\_pure and Parser constant was defiend top
 level.
@@ -28,7 +32,7 @@
 `JSON.dump_default_options`.
   * More tests by Michael Mac-Vicar  and fixing
 `space_before` accessor in generator.
-  * Performance on Jruby improvemed by Ben Browning .
+  * Performance on Jruby improved by Ben Browning .
   * Some fixes to be compatible with the new Ruby 2.2 by Zachary Scott 

 and SHIBATA Hiroshi .
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-07-01 17:31:26.0 +0200
+++ new/README.md   2016-07-26 13:11:27.0 +0200
@@ -3,8 +3,8 @@
 
 ## Description
 
-This is a implementation of the JSON specification according to RFC 4627
-http://www.ietf.org/rfc/rfc4627.txt . Starting from version 1.0.0 on there
+This is a implementation of the JSON specification according to RFC 7159
+http://www.ietf.org/rfc/rfc7159.txt . Starting from version 1.0.0 on there
 will be two variants available:
 
 * A pure ruby variant, that relies on the iconv and the stringscan
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2016-07-01 17:31:26.0 +0200
+++ new/Rakefile2016-07-26 13:11:27.0 +0200
@@ -95,6 +95,7 @@
 s.email = "fl...@ping.de"
 s.homepage = "http://flori.github.com/#{PKG_NAME};
 s.license = 'Ruby'
+s.required_ruby_version = '~> 2.0'
   end
 
   desc 'Creates a json_pure.gemspec file'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/VERSION new/VERSION
--- old/VERSION 2016-07-01 17:31:26.0 +0200
+++ new/VERSION 2016-07-26 13:11:27.0 +0200
@@ -1 +1 @@
-2.0.1
+2.0.2
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/json/ext/generator/generator.c 
new/ext/json/ext/generator/generator.c
--- old/ext/json/ext/generator/generator.c  2016-07-01 17:31:26.0 
+0200
+++ new/ext/json/ext/generator/generator.c  2016-07-26 13:11:27.0 
+0200
@@ -951,6 +951,7 @@
 {
 VALUE result = cState_partial_generate(self, obj);
 GET_STATE(self);
+(void)state;
 return result;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit cram for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package cram for openSUSE:Factory checked in 
at 2016-08-25 09:56:23

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


Package is "cram"

Changes:

--- /work/SRC/openSUSE:Factory/cram/cram.changes2016-06-25 
02:24:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.cram.new/cram.changes   2016-08-25 
09:56:26.0 +0200
@@ -1,0 +2,5 @@
+Mon Aug 22 07:08:38 UTC 2016 - mplus...@suse.com
+
+- Disable tests and its dependencies for SLE
+
+---



Other differences:
--
++ cram.spec ++
--- /var/tmp/diff_new_pack.7r1r9x/_old  2016-08-25 09:56:26.0 +0200
+++ /var/tmp/diff_new_pack.7r1r9x/_new  2016-08-25 09:56:26.0 +0200
@@ -24,9 +24,11 @@
 Group:  Development/Languages/Python
 Url:https://bitheap.org/cram/
 Source: 
https://pypi.python.org/packages/source/c/cram/cram-%{version}.tar.gz
+%if 0%{?is_opensuse}
 BuildRequires:  python3-coverage
-BuildRequires:  python3-devel
 BuildRequires:  python3-nose
+%endif
+BuildRequires:  python3-devel
 BuildRequires:  python3-setuptools
 Requires:   python3
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -51,7 +53,9 @@
 python3 setup.py install --prefix=%{_prefix} --root=%{buildroot}
 
 %check
+%if 0%{?is_opensuse}
 make %{?_smp_mflags} PYTHON=python3 test
+%endif
 
 %files
 %defattr(-,root,root,-)




commit yate for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package yate for openSUSE:Factory checked in 
at 2016-08-25 09:56:17

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


Package is "yate"

Changes:

--- /work/SRC/openSUSE:Factory/yate/yate.changes2016-05-08 
10:46:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.yate.new/yate.changes   2016-08-25 
09:56:20.0 +0200
@@ -1,0 +2,11 @@
+Sun Aug 21 09:23:39 UTC 2016 - jeng...@inai.de
+
+- Run fdupes to reduce duplicated files reported by rpmlint.
+
+---
+Thu May 26 14:55:36 UTC 2016 - mbrug...@suse.com
+
+- add support for aarch64 architecture
+  * add-arm64-support.patch
+
+---

New:

  add-arm64-support.patch



Other differences:
--
++ yate.spec ++
--- /var/tmp/diff_new_pack.OogfCK/_old  2016-08-25 09:56:21.0 +0200
+++ /var/tmp/diff_new_pack.OogfCK/_new  2016-08-25 09:56:21.0 +0200
@@ -27,9 +27,11 @@
 Url:http://www.yate.null.ro/
 Source0:http://yate.null.ro/tarballs/yate5/yate-%{version}-1.tar.gz
 Patch1: dont-mess-with-cflags.patch
+Patch2: add-arm64-support.patch
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf
 BuildRequires:  automake
+BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  libqt4-devel
 %if 0%{?fedora_version} || 0%{?rhel_version} || 0%{?centos_version}
@@ -73,7 +75,7 @@
 to compile and develop applications that use Yate.
 
 %package qt4
-Summary:Qt-4 client package for Yate
+Summary:Qt4 client package for Yate
 License:GPL-2.0
 Group:  Productivity/Telephony/Clients
 Requires:   %{name} = %{version}
@@ -107,6 +109,7 @@
 %prep
 %setup -q -n %{name}
 %patch1 -p1
+%patch2 -p1
 
 %build
 autoreconf -fiv
@@ -122,10 +125,11 @@
 mv %{buildroot}%{_datadir}/doc/%{name}-%{version} 
%{buildroot}%{_docdir}/%{name}
 
 %if 0%{?packman_bs}
-cat

commit votca-tools for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package votca-tools for openSUSE:Factory 
checked in at 2016-08-25 09:56:02

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


Package is "votca-tools"

Changes:

--- /work/SRC/openSUSE:Factory/votca-tools/votca-tools.changes  2016-01-22 
01:09:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.votca-tools.new/votca-tools.changes 
2016-08-25 09:56:04.0 +0200
@@ -1,0 +2,7 @@
+Fri Aug 19 21:28:36 UTC 2016 - jungh...@votca.org
+
+- Upgrade to 1.3
+  * fix bug in histogram class
+  * details: https://github.com/votca/csg/blob/master/CHANGELOG.md
+
+---

Old:

  votca-tools-1.3.tar.gz

New:

  votca-tools-1.3.1.tar.gz



Other differences:
--
++ votca-tools.spec ++
--- /var/tmp/diff_new_pack.PhZdJK/_old  2016-08-25 09:56:05.0 +0200
+++ /var/tmp/diff_new_pack.PhZdJK/_new  2016-08-25 09:56:05.0 +0200
@@ -10,7 +10,7 @@
 #
 
 Name:   votca-tools
-Version:1.3
+Version:1.3.1
 Release:0
 Summary:VOTCA tools library
 Group:  Productivity/Scientific/Chemistry

++ votca-tools-1.3.tar.gz -> votca-tools-1.3.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tools-1.3/CMakeLists.txt 
new/tools-1.3.1/CMakeLists.txt
--- old/tools-1.3/CMakeLists.txt2016-01-15 22:48:59.0 +0100
+++ new/tools-1.3.1/CMakeLists.txt  2016-08-19 22:03:11.0 +0200
@@ -2,7 +2,7 @@
 
 project(votca-tools)
 
-set(PROJECT_VERSION "1.3")
+set(PROJECT_VERSION "1.3.1")
 string(REGEX REPLACE "^[1-9]+\\.([1-9]+).*$" "\\1" SOVERSION 
"${PROJECT_VERSION}")
 if (NOT ${SOVERSION} MATCHES "[1-9]+")
   message(FATAL_ERROR "Could not determind SOVERSION from ${PROJECT_VERSION}")
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tools-1.3/include/votca/tools/calculator.h 
new/tools-1.3.1/include/votca/tools/calculator.h
--- old/tools-1.3/include/votca/tools/calculator.h  2016-01-15 
22:48:59.0 +0100
+++ new/tools-1.3.1/include/votca/tools/calculator.h2016-08-19 
22:03:11.0 +0200
@@ -1,5 +1,5 @@
 /*
- *Copyright 2009-2012 The VOTCA Development Team
+ *Copyright 2009-2016 The VOTCA Development Team
  *   (http://www.votca.org)
  *
  *  Licensed under the Apache License, Version 2.0 (the "License")
@@ -18,14 +18,14 @@
  */
 
 
-#ifndef VOTCA_CTP_CALCULATOR_H
-#define VOTCA_CTP_CALCULATOR_H
+#ifndef VOTCA_TOOLS_CALCULATOR_H
+#define VOTCA_TOOLS_CALCULATOR_H
 
 #include 
 #include 
 #include 
 
-namespace votca { namespace ctp {
+namespace votca { namespace tools {
 
 /**
  * \brief Base class for all calculators
@@ -115,7 +115,7 @@
 if(votca_share == NULL) throw std::runtime_error("VOTCASHARE not set, 
cannot open help files.");   
 // load the xml description of the calculator (with defaults and test 
values)
 std::string xmlFile = std::string(getenv("VOTCASHARE")) 
-+ std::string("/ctp/xml/") + id + std::string(".xml");
++ std::string("/tools/xml/") + id + std::string(".xml");
 
 votca::tools::Property defaults, _defaults;
 votca::tools::load_property_from_xml(_defaults, xmlFile);
@@ -158,4 +158,4 @@
 
 }}
 
-#endif /* VOTCA_CTP_CALCULATOR_H */
+#endif /* VOTCA_TOOLS_CALCULATOR_H */
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tools-1.3/scripts/VOTCARC.bash.in 
new/tools-1.3.1/scripts/VOTCARC.bash.in
--- old/tools-1.3/scripts/VOTCARC.bash.in   2016-01-15 22:48:59.0 
+0100
+++ new/tools-1.3.1/scripts/VOTCARC.bash.in 2016-08-19 22:03:11.0 
+0200
@@ -1,4 +1,5 @@
-# 
+#!/usr/bin/env bash
+#
 # Copyright 2009-2011 The VOTCA Development Team (http://www.votca.org)
 #
 # Licensed under the Apache License, Version 2.0 (the "License");
@@ -31,7 +32,7 @@
 done
 unset rc
 
-#bash cmopletion
+#bash completion
 if [ -n "$BASH_VERSION" ]; then 
   for comp in "@CMAKE_INSTALL_PREFIX@/@DATA@"/rc/*completion.bash; do
 [ -r "$comp" ] && source "$comp"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tools-1.3/scripts/VOTCARC.csh.in 
new/tools-1.3.1/scripts/VOTCARC.csh.in
--- old/tools-1.3/scripts/VOTCARC.csh.in2016-01-15 22:48:59.0 
+0100
+++ new/tools-1.3.1/scripts/VOTCARC.csh.in  2016-08-19 22:03:11.0 
+0200
@@ -1,4 +1,5 @@
-# 
+#!/usr/bin/env csh
+#
 # Copyright 2009-2011 The VOTCA Development Team (http://www.votca.org)
 #
 # Licensed under the Apache License, Version 2.0 (the 

commit plzip for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package plzip for openSUSE:Factory checked 
in at 2016-08-25 09:56:05

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


Package is "plzip"

Changes:

--- /work/SRC/openSUSE:Factory/plzip/plzip.changes  2015-08-14 
14:46:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.plzip.new/plzip.changes 2016-08-25 
09:56:07.0 +0200
@@ -1,0 +2,10 @@
+Sat Aug 20 08:18:48 UTC 2016 - jeng...@inai.de
+
+- Update to new upstream release 1.5
+* The option "-a, --trailing-error", which makes plzip exit with
+  error status 2 if any remaining input is detected after
+  decompressing the last member, has been added.
+* When decompressing, the file specified with the "--output" option
+  is now deleted if the input is a terminal.
+
+---

Old:

  plzip-1.4.tar.gz
  plzip-1.4.tar.gz.sig

New:

  plzip-1.5.tar.gz
  plzip-1.5.tar.gz.sig



Other differences:
--
++ plzip.spec ++
--- /var/tmp/diff_new_pack.hBNrd8/_old  2016-08-25 09:56:08.0 +0200
+++ /var/tmp/diff_new_pack.hBNrd8/_new  2016-08-25 09:56:08.0 +0200
@@ -2,7 +2,7 @@
 #
 # spec file for package plzip
 #
-# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2012 Pascal Bleser 
 #
 # All modifications and additions to the file contributed by third parties
@@ -19,7 +19,7 @@
 
 
 Name:   plzip
-Version:1.4
+Version:1.5
 Release:0
 Summary:Parallel LZMA Data Compressor
 License:GPL-2.0+

++ plzip-1.4.tar.gz -> plzip-1.5.tar.gz ++
 1959 lines of diff (skipped)




commit stellarium for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package stellarium for openSUSE:Factory 
checked in at 2016-08-25 09:55:56

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


Package is "stellarium"

Changes:

--- /work/SRC/openSUSE:Factory/stellarium/stellarium.changes2016-08-17 
12:05:03.0 +0200
+++ /work/SRC/openSUSE:Factory/.stellarium.new/stellarium.changes   
2016-08-25 09:55:58.0 +0200
@@ -1,0 +2,5 @@
+Thu Aug 18 08:32:59 UTC 2016 - fv...@suse.com
+
+- Require Qt5Script instead of Qt5Declarative to fix build
+
+---



Other differences:
--
++ stellarium.spec ++
--- /var/tmp/diff_new_pack.ZPYicW/_old  2016-08-25 09:56:01.0 +0200
+++ /var/tmp/diff_new_pack.ZPYicW/_new  2016-08-25 09:56:01.0 +0200
@@ -31,7 +31,7 @@
 BuildRequires:  pkgconfig
 BuildRequires:  update-desktop-files
 BuildRequires:  pkgconfig(Qt5Concurrent) >= 5.6.0
-BuildRequires:  pkgconfig(Qt5Declarative) >= 5.5.0
+BuildRequires:  pkgconfig(Qt5Script) >= 5.5.0
 BuildRequires:  pkgconfig(Qt5Gui) >= 5.6.0
 BuildRequires:  pkgconfig(Qt5Multimedia) >= 5.6.0
 BuildRequires:  pkgconfig(Qt5MultimediaWidgets) >= 5.6.0




commit votca-csg for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package votca-csg for openSUSE:Factory 
checked in at 2016-08-25 09:56:21

Comparing /work/SRC/openSUSE:Factory/votca-csg (Old)
 and  /work/SRC/openSUSE:Factory/.votca-csg.new (New)


Package is "votca-csg"

Changes:

--- /work/SRC/openSUSE:Factory/votca-csg/votca-csg.changes  2016-01-22 
01:09:46.0 +0100
+++ /work/SRC/openSUSE:Factory/.votca-csg.new/votca-csg.changes 2016-08-25 
09:56:23.0 +0200
@@ -1,0 +2,12 @@
+Sun Aug 21 12:05:33 UTC 2016 - jeng...@inai.de
+
+- RPM group update
+
+---
+Fri Aug 19 21:35:35 UTC 2016 - jungh...@votca.org
+
+- Upgrade to 1.3.1
+  * fixed build with >=cmake-3.4
+  * details: https://github.com/votca/csg/blob/master/CHANGELOG.md
+
+---

Old:

  votca-csg-1.3.tar.gz
  votca-csg-manual-1.3.pdf
  votca-csg-tutorials-1.3.tar.gz

New:

  votca-csg-1.3.1.tar.gz
  votca-csg-manual-1.3.1.pdf
  votca-csg-tutorials-1.3.1.tar.gz



Other differences:
--
++ votca-csg.spec ++
--- /var/tmp/diff_new_pack.vK5gvr/_old  2016-08-25 09:56:25.0 +0200
+++ /var/tmp/diff_new_pack.vK5gvr/_new  2016-08-25 09:56:25.0 +0200
@@ -1,21 +1,29 @@
 #
-# votca-csg.spec
+# spec file for package votca-csg
 #
+# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
 # Copyright (c) 2013-2016 Christoph Junghans
 #
-# Originally written by Jussi Lehtola 
-# Fixed for multi-distro build by Klaus Kaempf 
-#
-# Licensed under the Apache Software License (ASL 2.0)
+# All modifications and additions to the file contributed by third parties
+# remain the property of their copyright owners, unless otherwise agreed
+# upon. The license for this file, and modifications and additions to the
+# file, is the same license as for the pristine package itself (unless the
+# license for the pristine package is not an Open Source License, in which
+# case the license is the MIT License). An "Open Source License" is a
+# license that conforms to the Open Source Definition (Version 1.9)
+# published by the Open Source Initiative.
+
+# Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   votca-csg
-Version:1.3
+Version:1.3.1
 Release:0
 Summary:VOTCA coarse-graining engine
-Group:  Productivity/Scientific/Chemistry
 License:Apache-2.0
-URL:http://www.votca.org
+Group:  Productivity/Scientific/Chemistry
+Url:http://www.votca.org
 Source0:
https://github.com/votca/csg/archive/v%{version}.tar.gz#/%{name}-%{version}.tar.gz
 Source1:
https://github.com/votca/csg-tutorials/archive/v%{version}.tar.gz#/%{name}-tutorials-%{version}.tar.gz
 Source2:
https://github.com/votca/csg-manual/releases/download/v%{version}/votca-csg-manual-%{version}.pdf
@@ -28,12 +36,12 @@
 %else
 BuildRequires:  pkg-config
 %endif
-BuildRequires:  fdupes
 BuildRequires:  boost-devel >= 1.39.0
-BuildRequires:  pkgconfig(libvotca_tools) = %{version}
-BuildRequires:  gromacs-devel
 BuildRequires:  cmake >= 2.8.4
+BuildRequires:  fdupes
+BuildRequires:  gromacs-devel
 BuildRequires:  txt2tags
+BuildRequires:  pkgconfig(libvotca_tools) = %{version}
 
 #exact same version is needed
 Requires:   %{name}-common = %{version}
@@ -48,7 +56,7 @@
 
 %package -n libvotca_csg3
 Summary:Libraries for VOTCA coarse graining engine
-Group:  Productivity/Scientific/Chemistry
+Group:  System/Libraries
 
 %description -n libvotca_csg3
 Versatile Object-oriented Toolkit for Coarse-graining Applications (VOTCA) is
@@ -71,8 +79,8 @@
 Summary:Architecture independent data files for VOTCA CSG
 Group:  Productivity/Scientific/Chemistry
 BuildArch:  noarch
-Requires:   bash
 Requires:   /usr/bin/awk
+Requires:   bash
 Requires:   perl
 
 %description common
@@ -97,7 +105,7 @@
 
 %package bash
 Summary:Bash completion for votca
-Group:  Productivity/Other
+Group:  System/Shells
 Requires:   %{name} = %{version}
 Requires:   bash-completion
 BuildArch:  noarch

++ votca-csg-1.3.tar.gz -> votca-csg-1.3.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csg-1.3/CHANGELOG.md new/csg-1.3.1/CHANGELOG.md
--- old/csg-1.3/CHANGELOG.md2016-01-15 22:49:01.0 +0100
+++ new/csg-1.3.1/CHANGELOG.md  2016-08-19 22:03:12.0 +0200
@@ -1,5 +1,11 @@
 For more detailed information about the changes see the history of the 
[repository](https://github.com/votca/csg/commits/master).
 
+## Version 1.3.1 (released 19.08.16)
+* histogram: use floor() on bin value
+* calculator: 

commit rubygem-globalid for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-globalid for 
openSUSE:Factory checked in at 2016-08-25 09:55:41

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


Package is "rubygem-globalid"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-globalid/rubygem-globalid.changes
2015-08-05 19:14:43.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-globalid.new/rubygem-globalid.changes   
2016-08-25 09:55:43.0 +0200
@@ -1,0 +2,6 @@
+Wed Jul 27 04:29:42 UTC 2016 - co...@suse.com
+
+- updated to version 0.3.7
+  no changelog found
+
+---

Old:

  globalid-0.3.6.gem

New:

  globalid-0.3.7.gem



Other differences:
--
++ rubygem-globalid.spec ++
--- /var/tmp/diff_new_pack.PiuXSO/_old  2016-08-25 09:55:44.0 +0200
+++ /var/tmp/diff_new_pack.PiuXSO/_new  2016-08-25 09:55:44.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-globalid
 #
-# 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:   rubygem-globalid
-Version:0.3.6
+Version:0.3.7
 Release:0
 %define mod_name globalid
 %define mod_full_name %{mod_name}-%{version}
@@ -53,7 +53,7 @@
 
 %install
 %gem_install \
-  --doc-files="MIT-LICENSE" \
+  --doc-files="MIT-LICENSE README.md" \
   -f
 
 %gem_packages

++ globalid-0.3.6.gem -> globalid-0.3.7.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/MIT-LICENSE new/MIT-LICENSE
--- old/MIT-LICENSE 2015-08-04 23:30:09.0 +0200
+++ new/MIT-LICENSE 2016-07-26 22:35:46.0 +0200
@@ -1,4 +1,4 @@
-Copyright (c) 2014 David Heinemeier Hansson
+Copyright (c) 2014-2016 David Heinemeier Hansson
 
 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.md new/README.md
--- old/README.md   1970-01-01 01:00:00.0 +0100
+++ new/README.md   2016-07-26 22:35:46.0 +0200
@@ -0,0 +1,130 @@
+# Global ID - Reference models by URI
+
+A Global ID is an app wide URI that uniquely identifies a model instance:
+
+  gid://YourApp/Some::Model/id
+
+This is helpful when you need a single identifier to reference different
+classes of objects.
+
+One example is job scheduling. We need to reference a model object rather than
+serialize the object itself. We can pass a Global ID that can be used to locate
+the model when it's time to perform the job. The job scheduler doesn't need to 
know
+the details of model naming and IDs, just that it has a global identifier that
+references a model.
+
+Another example is a drop-down list of options, consisting of both Users and 
Groups.
+Normally we'd need to come up with our own ad hoc scheme to reference them. 
With Global
+IDs, we have a universal identifier that works for objects of both classes.
+
+
+## Usage
+
+Mix `GlobalID::Identification` into any model with a `#find(id)` class method.
+Support is automatically included in Active Record.
+
+```ruby
+>> person_gid = Person.find(1).to_global_id
+=> #> person_gid.uri
+=> #> person_gid.to_s
+=> "gid://app/Person/1"
+
+>> GlobalID::Locator.locate person_gid
+=> #
+```
+
+### Signed Global IDs
+
+For added security GlobalIDs can also be signed to ensure that the data hasn't 
been tampered with.
+
+```ruby
+>> person_sgid = Person.find(1).to_signed_global_id
+=> #> person_sgid = Person.find(1).to_sgid
+=> #> person_sgid.to_s
+=> 
"BAhJIh5naWQ6Ly9pZGluYWlkaS9Vc2VyLzM5NTk5BjoGRVQ=--81d7358dd5ee2ca33189bb404592df5e8d11420e"
+
+>> GlobalID::Locator.locate_signed person_sgid
+=> #
+
+```
+You can even bump the security up some more by explaining what purpose a 
Signed Global ID is for.
+In this way evildoers can't reuse a sign-up form's SGID on the login page. For 
example.
+
+```ruby
+>> signup_person_sgid = Person.find(1).to_sgid(for: 'signup_form')
+=> #> GlobalID::Locator.locate_signed(signup_person_sgid.to_s, for: 'signup_form')
+=> #
+```
+
+You can also have SGIDs that expire some time in the future. This is useful if 
there's a resource,
+people shouldn't have indefinite access to, like a share link.
+
+```ruby
+>> expiring_sgid = Document.find(5).to_sgid(expires_in: 2.hours, for: 
'sharing')
+=> #> 

commit libbrotli for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package libbrotli for openSUSE:Factory 
checked in at 2016-08-25 09:56:07

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


Package is "libbrotli"

Changes:

--- /work/SRC/openSUSE:Factory/libbrotli/libbrotli.changes  2016-03-26 
15:26:56.0 +0100
+++ /work/SRC/openSUSE:Factory/.libbrotli.new/libbrotli.changes 2016-08-25 
09:56:08.0 +0200
@@ -1,0 +2,7 @@
+Sat Aug 20 08:14:15 UTC 2016 - jeng...@inai.de
+
+- Update to git snapshot 1.0.git5
+* Some header files and symbols were erroneously absent from the
+  library
+
+---

Old:

  libbrotli-1.0.tar.xz

New:

  libbrotli-1.0.g5.tar.xz



Other differences:
--
++ libbrotli.spec ++
--- /var/tmp/diff_new_pack.6YDMjk/_old  2016-08-25 09:56:09.0 +0200
+++ /var/tmp/diff_new_pack.6YDMjk/_new  2016-08-25 09:56:09.0 +0200
@@ -16,8 +16,10 @@
 #
 
 
+%define version_unconverted 1.0.g5
+
 Name:   libbrotli
-Version:1.0
+Version:1.0.g5
 Release:0
 Summary:Library implementing the Brotli compression algorithm
 License:Apache-2.0 and MIT

++ _service ++
--- /var/tmp/diff_new_pack.6YDMjk/_old  2016-08-25 09:56:09.0 +0200
+++ /var/tmp/diff_new_pack.6YDMjk/_new  2016-08-25 09:56:09.0 +0200
@@ -2,9 +2,9 @@

https://github.com/bagder/libbrotli
git
-   libbrotli-1.0
enable
-   1.0
+   libbrotli-1.0
+   1.0.g@TAG_OFFSET@


*.tar




commit wxhexeditor for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package wxhexeditor for openSUSE:Factory 
checked in at 2016-08-25 09:56:14

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


Package is "wxhexeditor"

Changes:

--- /work/SRC/openSUSE:Factory/wxhexeditor/wxhexeditor.changes  2015-01-08 
23:02:50.0 +0100
+++ /work/SRC/openSUSE:Factory/.wxhexeditor.new/wxhexeditor.changes 
2016-08-25 09:56:17.0 +0200
@@ -1,0 +2,5 @@
+Sat Aug 20 18:24:31 UTC 2016 - jeng...@inai.de
+
+- Build against wxWidgets 3
+
+---



Other differences:
--
++ wxhexeditor.spec ++
--- /var/tmp/diff_new_pack.K2D5nh/_old  2016-08-25 09:56:18.0 +0200
+++ /var/tmp/diff_new_pack.K2D5nh/_new  2016-08-25 09:56:18.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package wxhexeditor
 #
-# 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
@@ -37,7 +37,7 @@
 BuildRequires:  libtool
 BuildRequires:  mhash-devel
 BuildRequires:  update-desktop-files
-BuildRequires:  wxWidgets-devel
+BuildRequires:  wxWidgets-devel >= 3
 Recommends: %{name}-lang
 
 %description




commit votca-csgapps for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package votca-csgapps for openSUSE:Factory 
checked in at 2016-08-25 09:55:59

Comparing /work/SRC/openSUSE:Factory/votca-csgapps (Old)
 and  /work/SRC/openSUSE:Factory/.votca-csgapps.new (New)


Package is "votca-csgapps"

Changes:

--- /work/SRC/openSUSE:Factory/votca-csgapps/votca-csgapps.changes  
2016-01-22 01:09:34.0 +0100
+++ /work/SRC/openSUSE:Factory/.votca-csgapps.new/votca-csgapps.changes 
2016-08-25 09:56:02.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 19 21:43:21 UTC 2016 - jungh...@votca.org
+
+- Upgrade to 1.3.1
+  * details: https://github.com/votca/csg/blob/master/CHANGELOG.md
+
+---

Old:

  votca-csgapps-1.3.tar.gz

New:

  votca-csgapps-1.3.1.tar.gz



Other differences:
--
++ votca-csgapps.spec ++
--- /var/tmp/diff_new_pack.pIHHa7/_old  2016-08-25 09:56:03.0 +0200
+++ /var/tmp/diff_new_pack.pIHHa7/_new  2016-08-25 09:56:03.0 +0200
@@ -1,7 +1,7 @@
 #
 # votca-csgapps.spec
 #
-# Copyright (c) 2013-2015 Christoph Junghans
+# Copyright (c) 2013-2016 Christoph Junghans
 #
 # Originally written by Jussi Lehtola 
 # Fixed for multi-distro build by Klaus Kaempf 
@@ -10,7 +10,7 @@
 #
 
 Name:   votca-csgapps
-Version:1.3
+Version:1.3.1
 Release:0
 Summary:VOTCA coarse-graining engine applications
 Group:  Productivity/Scientific/Chemistry

++ votca-csgapps-1.3.tar.gz -> votca-csgapps-1.3.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/csgapps-1.3/CMakeLists.txt 
new/csgapps-1.3.1/CMakeLists.txt
--- old/csgapps-1.3/CMakeLists.txt  2016-01-15 22:49:07.0 +0100
+++ new/csgapps-1.3.1/CMakeLists.txt2016-08-19 22:03:14.0 +0200
@@ -2,7 +2,7 @@
 
 project(csgapps)
 
-set(PROJECT_VERSION "1.3")
+set(PROJECT_VERSION "1.3.1")
 
 set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules)
 




commit python-alembic for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package python-alembic for openSUSE:Factory 
checked in at 2016-08-25 09:55:53

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


Package is "python-alembic"

Changes:

--- /work/SRC/openSUSE:Factory/python-alembic/python-alembic.changes
2016-06-07 23:49:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.python-alembic.new/python-alembic.changes   
2016-08-25 09:55:55.0 +0200
@@ -1,0 +2,39 @@
+Mon Aug 15 10:24:57 UTC 2016 - tbecht...@suse.com
+
+- update to 0.8.7:
+  - Fixed bug where upgrading to the head of a branch which is already
+present would fail, only if that head were also the dependency
+of a different branch that is also upgraded, as the revision system
+would see this as trying to go in the wrong direction.   The check
+here has been refined to distinguish between same-branch revisions
+out of order vs. movement along sibling branches.
+  - Adjusted the version traversal on downgrade
+such that we can downgrade to a version that is a dependency for
+a version in a different branch, *without* needing to remove that
+dependent version as well.  Previously, the target version would be
+seen as a "merge point" for it's normal up-revision as well as the
+dependency.  This integrates with the changes for :ticket:`377`
+and :ticket:`378` to improve treatment of branches with dependencies
+overall.
+  - Fixed bug where a downgrade to a version that is also a dependency
+to a different branch would fail, as the system attempted to treat
+this as an "unmerge" of a merge point, when in fact it doesn't have
+the other side of the merge point available for update.
+  - Fixed bug where the "alembic current" command wouldn't show a revision
+as a current head if it were also a dependency of a version in a
+different branch that's also applied.   Extra logic is added to
+extract "implied" versions of different branches from the top-level
+versions listed in the alembic_version table.
+  - Fixed bug where a repr() or str() of a Script object would fail
+if the script had multiple dependencies.
+  - Fixed bug in autogen where if the DB connection sends the default
+schema as "None", this "None" would be removed from the list of
+schemas to check if include_schemas were set.  This could possibly
+impact using include_schemas with SQLite.
+  - Small adjustment made to the batch handling for reflected CHECK
+constraints to accommodate for SQLAlchemy 1.1 now reflecting these.
+Batch mode still does not support CHECK constraints from the reflected
+table as these can't be easily differentiated from the ones created
+by types such as Boolean.
+
+---

Old:

  alembic-0.8.6.tar.gz

New:

  alembic-0.8.7.tar.gz



Other differences:
--
++ python-alembic.spec ++
--- /var/tmp/diff_new_pack.Z9lVd6/_old  2016-08-25 09:55:56.0 +0200
+++ /var/tmp/diff_new_pack.Z9lVd6/_new  2016-08-25 09:55:56.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python-alembic
-Version:0.8.6
+Version:0.8.7
 Release:0
 Url:http://bitbucket.org/zzzeek/alembic
 Summary:A database migration tool for SQLAlchemy

++ alembic-0.8.6.tar.gz -> alembic-0.8.7.tar.gz ++
 7786 lines of diff (skipped)




commit rubygem-daemons for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-daemons for openSUSE:Factory 
checked in at 2016-08-25 09:55:15

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


Package is "rubygem-daemons"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-daemons/rubygem-daemons.changes  
2015-06-30 10:16:37.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-daemons.new/rubygem-daemons.changes 
2016-08-25 09:55:16.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug  3 04:30:21 UTC 2016 - co...@suse.com
+
+- updated to version 1.2.4
+  no changelog found
+
+---

Old:

  daemons-1.2.3.gem

New:

  daemons-1.2.4.gem



Other differences:
--
++ rubygem-daemons.spec ++
--- /var/tmp/diff_new_pack.eJIEs0/_old  2016-08-25 09:55:17.0 +0200
+++ /var/tmp/diff_new_pack.eJIEs0/_new  2016-08-25 09:55:17.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package rubygem-daemons
 #
-# 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:   rubygem-daemons
-Version:1.2.3
+Version:1.2.4
 Release:0
 %define mod_name daemons
 %define mod_full_name %{mod_name}-%{version}

++ daemons-1.2.3.gem -> daemons-1.2.4.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/LICENSE new/LICENSE
--- old/LICENSE 2015-06-25 22:24:19.0 +0200
+++ new/LICENSE 2016-08-02 20:22:22.0 +0200
@@ -1,4 +1,4 @@
-Copyright (c) 2005-2015 Thomas Uehlinger, 2014-2015 Aaron Stone
+Copyright (c) 2005-2016 Thomas Uehlinger, 2014-2016 Aaron Stone
 
 Permission is hereby granted, free of charge, to any person
 obtaining a copy of this software and associated documentation
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2015-06-25 22:24:19.0 +0200
+++ new/README.md   2016-08-02 20:22:22.0 +0200
@@ -1,5 +1,6 @@
 Ruby Daemons
 
+[![Code 
Climate](https://codeclimate.com/github/acuppy/daemons/badges/gpa.svg)](https://codeclimate.com/github/acuppy/daemons)[![Test
 
Coverage](https://circleci.com/gh/acuppy/daemons.svg?style=shield=a4f96fd41f7682661d6543e30207427ac8870c0d)](https://circleci.com/gh/acuppy/daemons)
 
 Daemons provides an easy way to wrap existing ruby scripts (for example a 
self-written server)
 to be _run as a daemon_ and to be _controlled by simple start/stop/restart 
commands_.
@@ -203,4 +204,4 @@
 Author
 --
 
-Written 2005-2015 by Thomas Uehlinger , 2014-2015 
by Aaron Stone .
+Written 2005-2016 by Thomas Uehlinger, 2014-2016 by Aaron Stone.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Releases new/Releases
--- old/Releases2015-06-25 22:24:19.0 +0200
+++ new/Releases2016-08-02 20:22:22.0 +0200
@@ -1,5 +1,11 @@
 = Daemons Release History
 
+== Release 1.2.4: August 1, 2016
+
+* add :shush option
+* add :monitor_interval option
+* add :log_output_syslog option
+
 == Release 1.2.3: June 25, 2015
 
 * fix: ApplicationGroup now waits on subprocesses in start_all (thanks to 
tobithiel)
@@ -27,12 +33,12 @@
 
 == Release 1.1.9: August 10, 2012
 
-* daemonize.rb: do srand in the forked child process both in daemonize and 
call_as_daemon 
+* daemonize.rb: do srand in the forked child process both in daemonize and 
call_as_daemon
   (thanks to Andrew Havens).
 
 == Release 1.1.8: February 7, 2012
 
-* rename to daemonization.rb to daemonize.rb (and Daemonization to Daemonize) 
to 
+* rename to daemonization.rb to daemonize.rb (and Daemonization to Daemonize) 
to
   ensure compatibility.
 
 == Release 1.1.7: February 6, 2012
@@ -46,57 +52,57 @@
 
 == Release 1.1.5: December 19, 2011
 
-* Catch the case where the pidfile is empty but not deleted 
+* Catch the case where the pidfile is empty but not deleted
   and restart the app (thanks to Rich Healey)
 
 == Release 1.1.4: June 17, 2011
 
-* Do not change the umask to  when daemonizing anymore, just leave it as 
it 
+* Do not change the umask to  when daemonizing anymore, just leave it as it
   was (thanks to Jon Botelho).
 
 == Release 1.1.3: April 14, 2011
 
 * Fixed a bug in Application.stop: the cached pid number needs to
   be used to check for the status of a killed process (thanks to Jimmy Sieben).

commit rubygem-json for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-json for openSUSE:Factory 
checked in at 2016-08-25 09:55:37

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


Package is "rubygem-json"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-json/rubygem-json.changes
2016-07-21 07:58:11.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-json.new/rubygem-json.changes   
2016-08-25 09:55:39.0 +0200
@@ -1,0 +2,10 @@
+Wed Jul 27 04:29:58 UTC 2016 - co...@suse.com
+
+- updated to version 2.0.2
+ see installed CHANGES.md
+
+  ## 2016-07-26 (2.0.2)
+* Specify `required_ruby_version` for json\_pure.
+* Fix issue #295 failure when parsing frozen strings.
+
+---

Old:

  json-2.0.1.gem

New:

  json-2.0.2.gem



Other differences:
--
++ rubygem-json.spec ++
--- /var/tmp/diff_new_pack.wePB9J/_old  2016-08-25 09:55:40.0 +0200
+++ /var/tmp/diff_new_pack.wePB9J/_new  2016-08-25 09:55:40.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-json
-Version:2.0.1
+Version:2.0.2
 Release:0
 %define mod_name json
 %define mod_full_name %{mod_name}-%{version}

++ json-2.0.1.gem -> json-2.0.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGES.md new/CHANGES.md
--- old/CHANGES.md  2016-07-01 17:31:26.0 +0200
+++ new/CHANGES.md  2016-07-26 13:11:27.0 +0200
@@ -1,5 +1,9 @@
 # Changes
 
+## 2016-07-26 (2.0.2)
+  * Specify `required_ruby_version` for json\_pure.
+  * Fix issue #295 failure when parsing frozen strings.
+
 ## 2016-07-01 (2.0.1)
   * Fix problem when requiring json\_pure and Parser constant was defiend top
 level.
@@ -28,7 +32,7 @@
 `JSON.dump_default_options`.
   * More tests by Michael Mac-Vicar  and fixing
 `space_before` accessor in generator.
-  * Performance on Jruby improvemed by Ben Browning .
+  * Performance on Jruby improved by Ben Browning .
   * Some fixes to be compatible with the new Ruby 2.2 by Zachary Scott 

 and SHIBATA Hiroshi .
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-07-01 17:31:26.0 +0200
+++ new/README.md   2016-07-26 13:11:27.0 +0200
@@ -3,8 +3,8 @@
 
 ## Description
 
-This is a implementation of the JSON specification according to RFC 4627
-http://www.ietf.org/rfc/rfc4627.txt . Starting from version 1.0.0 on there
+This is a implementation of the JSON specification according to RFC 7159
+http://www.ietf.org/rfc/rfc7159.txt . Starting from version 1.0.0 on there
 will be two variants available:
 
 * A pure ruby variant, that relies on the iconv and the stringscan
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Rakefile new/Rakefile
--- old/Rakefile2016-07-01 17:31:26.0 +0200
+++ new/Rakefile2016-07-26 13:11:27.0 +0200
@@ -95,6 +95,7 @@
 s.email = "fl...@ping.de"
 s.homepage = "http://flori.github.com/#{PKG_NAME};
 s.license = 'Ruby'
+s.required_ruby_version = '~> 2.0'
   end
 
   desc 'Creates a json_pure.gemspec file'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/VERSION new/VERSION
--- old/VERSION 2016-07-01 17:31:26.0 +0200
+++ new/VERSION 2016-07-26 13:11:27.0 +0200
@@ -1 +1 @@
-2.0.1
+2.0.2
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/json/ext/generator/generator.c 
new/ext/json/ext/generator/generator.c
--- old/ext/json/ext/generator/generator.c  2016-07-01 17:31:26.0 
+0200
+++ new/ext/json/ext/generator/generator.c  2016-07-26 13:11:27.0 
+0200
@@ -951,6 +951,7 @@
 {
 VALUE result = cState_partial_generate(self, obj);
 GET_STATE(self);
+(void)state;
 return result;
 }
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/ext/json/ext/parser/parser.c 
new/ext/json/ext/parser/parser.c
--- old/ext/json/ext/parser/parser.c2016-07-01 17:31:26.0 +0200
+++ new/ext/json/ext/parser/parser.c2016-07-26 13:11:27.0 +0200
@@ -1670,6 +1670,9 @@
 #ifdef HAVE_RUBY_ENCODING_H
   rb_encoding *enc = rb_enc_get(source);
   if (enc == rb_ascii8bit_encoding()) {
+if (OBJ_FROZEN(source)) {
+  source = rb_str_dup(source);
+}
 

commit rubygem-actionmailer-4_2 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-actionmailer-4_2 for 
openSUSE:Factory checked in at 2016-08-25 09:54:48

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


Package is "rubygem-actionmailer-4_2"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionmailer-4_2/rubygem-actionmailer-4_2.changes
2016-07-20 09:25:53.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionmailer-4_2.new/rubygem-actionmailer-4_2.changes
   2016-08-25 09:54:50.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:29:09 UTC 2016 - co...@suse.com
+
+- updated to version 4.2.7.1
+ see installed CHANGELOG.md
+
+---

Old:

  actionmailer-4.2.7.gem

New:

  actionmailer-4.2.7.1.gem



Other differences:
--
++ rubygem-actionmailer-4_2.spec ++
--- /var/tmp/diff_new_pack.kuxPgb/_old  2016-08-25 09:54:52.0 +0200
+++ /var/tmp/diff_new_pack.kuxPgb/_new  2016-08-25 09:54:52.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionmailer-4_2
-Version:4.2.7
+Version:4.2.7.1
 Release:0
 %define mod_name actionmailer
 %define mod_full_name %{mod_name}-%{version}

++ actionmailer-4.2.7.gem -> actionmailer-4.2.7.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_mailer/gem_version.rb 
new/lib/action_mailer/gem_version.rb
--- old/lib/action_mailer/gem_version.rb2016-07-13 04:53:44.0 
+0200
+++ new/lib/action_mailer/gem_version.rb2016-08-11 00:25:29.0 
+0200
@@ -8,7 +8,7 @@
 MAJOR = 4
 MINOR = 2
 TINY  = 7
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-13 04:53:44.0 +0200
+++ new/metadata2016-08-11 00:25:29.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionmailer
 version: !ruby/object:Gem::Version
-  version: 4.2.7
+  version: 4.2.7.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-13 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: actionpack
@@ -16,42 +16,42 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: actionview
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: activejob
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: mail
   requirement: !ruby/object:Gem::Requirement
@@ -142,8 +142,9 @@
 requirements:
 - none
 rubyforge_project: 
-rubygems_version: 2.4.5.1
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Email composition, delivery, and receiving framework (part of Rails).
 test_files: []
+has_rdoc: 




commit rubygem-uglifier for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-uglifier for 
openSUSE:Factory checked in at 2016-08-25 09:55:09

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


Package is "rubygem-uglifier"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-uglifier/rubygem-uglifier.changes
2016-04-14 13:06:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-uglifier.new/rubygem-uglifier.changes   
2016-08-25 09:55:09.0 +0200
@@ -1,0 +2,11 @@
+Sat Jul 30 04:34:14 UTC 2016 - co...@suse.com
+
+- updated to version 3.0.1
+ see installed CHANGELOG.md
+
+  ## 3.0.1 (28 July 2016)
+  
+  - update UglifyJS to 2.7.0
+  - split JS dependencies to separate files
+
+---

Old:

  uglifier-3.0.0.gem

New:

  uglifier-3.0.1.gem



Other differences:
--
++ rubygem-uglifier.spec ++
--- /var/tmp/diff_new_pack.2Xb3B3/_old  2016-08-25 09:55:10.0 +0200
+++ /var/tmp/diff_new_pack.2Xb3B3/_new  2016-08-25 09:55:10.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-uglifier
-Version:3.0.0
+Version:3.0.1
 Release:0
 %define mod_name uglifier
 %define mod_full_name %{mod_name}-%{version}

++ uglifier-3.0.0.gem -> uglifier-3.0.1.gem ++
 6290 lines of diff (skipped)




commit rubygem-capistrano-harrow for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-capistrano-harrow for 
openSUSE:Factory checked in at 2016-08-25 09:55:04

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


Package is "rubygem-capistrano-harrow"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-capistrano-harrow/rubygem-capistrano-harrow.changes
  2016-06-29 15:10:38.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-capistrano-harrow.new/rubygem-capistrano-harrow.changes
 2016-08-25 09:55:05.0 +0200
@@ -1,0 +2,6 @@
+Fri Jul 29 04:29:19 UTC 2016 - co...@suse.com
+
+- updated to version 0.5.3
+  no changelog found
+
+---

Old:

  capistrano-harrow-0.5.2.gem

New:

  capistrano-harrow-0.5.3.gem



Other differences:
--
++ rubygem-capistrano-harrow.spec ++
--- /var/tmp/diff_new_pack.nTyTBr/_old  2016-08-25 09:55:06.0 +0200
+++ /var/tmp/diff_new_pack.nTyTBr/_new  2016-08-25 09:55:06.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-capistrano-harrow
-Version:0.5.2
+Version:0.5.3
 Release:0
 %define mod_name capistrano-harrow
 %define mod_full_name %{mod_name}-%{version}

++ capistrano-harrow-0.5.2.gem -> capistrano-harrow-0.5.3.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/capistrano/harrow/banner.rb 
new/lib/capistrano/harrow/banner.rb
--- old/lib/capistrano/harrow/banner.rb 2016-06-21 19:49:32.0 +0200
+++ new/lib/capistrano/harrow/banner.rb 2016-07-28 09:28:11.0 +0200
@@ -22,17 +22,7 @@
 Learn about our web-based collaboration and
 automation platform for Capistrano: hrw.io/auto-cap
 
-},
-  %q{
- ___   _   ___ ___ ___ _ ____   _  _  ___
-/ __| /_\ | _ \_ _/ __|_   _| _ \  /_\ | \| |/ _ \
-   | (__ / _ \|  _/| |\__ \ | | |   / / _ \| .` | (_) |
-\___/_/ \_\_| |___|___/ |_| |_|_\/_/ \_\_|\_|\___/
-
-Enhance Capistrano with awesome collaboration and
-automation features, learn more at hrw.io/cap-auto
-
-},
+}
 ]
   end
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/capistrano/harrow/version.rb 
new/lib/capistrano/harrow/version.rb
--- old/lib/capistrano/harrow/version.rb2016-06-21 19:49:32.0 
+0200
+++ new/lib/capistrano/harrow/version.rb2016-07-28 09:28:11.0 
+0200
@@ -1,5 +1,5 @@
 module Capistrano
   module Harrow
-VERSION = "0.5.2"
+VERSION = "0.5.3"
   end
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-21 19:49:32.0 +0200
+++ new/metadata2016-07-28 09:28:11.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: capistrano-harrow
 version: !ruby/object:Gem::Version
-  version: 0.5.2
+  version: 0.5.3
 platform: ruby
 authors:
 - Lee Hambley
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: exe
 cert_chain: []
-date: 2016-06-21 00:00:00.0 Z
+date: 2016-07-28 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: bundler
@@ -168,7 +168,7 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.3
+rubygems_version: 2.4.8
 signing_key: 
 specification_version: 4
 summary: A plugin to improve the user experience for users of Capistrano and 
Harrow




commit rubygem-actionview-4_2 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-actionview-4_2 for 
openSUSE:Factory checked in at 2016-08-25 09:54:30

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


Package is "rubygem-actionview-4_2"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionview-4_2/rubygem-actionview-4_2.changes
2016-07-20 09:25:43.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-4_2.new/rubygem-actionview-4_2.changes
   2016-08-25 09:54:32.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:30:50 UTC 2016 - co...@suse.com
+
+- updated to version 4.2.7.1
+ see installed CHANGELOG.md
+
+---

Old:

  actionview-4.2.7.gem

New:

  actionview-4.2.7.1.gem



Other differences:
--
++ rubygem-actionview-4_2.spec ++
--- /var/tmp/diff_new_pack.3V4T3z/_old  2016-08-25 09:54:33.0 +0200
+++ /var/tmp/diff_new_pack.3V4T3z/_new  2016-08-25 09:54:33.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionview-4_2
-Version:4.2.7
+Version:4.2.7.1
 Release:0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++ actionview-4.2.7.gem -> actionview-4.2.7.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/gem_version.rb 
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb  2016-07-13 04:53:43.0 +0200
+++ new/lib/action_view/gem_version.rb  2016-08-11 00:25:27.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 4
 MINOR = 2
 TINY  = 7
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/helpers/tag_helper.rb 
new/lib/action_view/helpers/tag_helper.rb
--- old/lib/action_view/helpers/tag_helper.rb   2016-07-13 04:53:43.0 
+0200
+++ new/lib/action_view/helpers/tag_helper.rb   2016-08-11 00:25:27.0 
+0200
@@ -181,7 +181,7 @@
   else
 value = escape ? ERB::Util.unwrapped_html_escape(value) : value
   end
-  %(#{key}="#{value}")
+  %(#{key}="#{value.gsub(/"/, ''.freeze)}")
 end
 end
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-13 04:53:43.0 +0200
+++ new/metadata2016-08-11 00:25:27.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionview
 version: !ruby/object:Gem::Version
-  version: 4.2.7
+  version: 4.2.7.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-13 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: builder
   requirement: !ruby/object:Gem::Requirement
@@ -98,28 +98,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 description: Simple, battle-tested conventions and helpers for building web 
pages.
 email: da...@loudthinking.com
 executables: []
@@ -248,8 +248,9 @@
 requirements:
 - none
 rubyforge_project: 
-rubygems_version: 2.4.5.1
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Rendering framework putting the V in MVC (part of Rails).
 test_files: []
+has_rdoc: 




commit rubygem-ruby_dep for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-ruby_dep for 
openSUSE:Factory checked in at 2016-08-25 09:55:21

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


Package is "rubygem-ruby_dep"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-ruby_dep/rubygem-ruby_dep.changes
2016-07-21 08:15:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-ruby_dep.new/rubygem-ruby_dep.changes   
2016-08-25 09:55:24.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug  3 04:36:11 UTC 2016 - co...@suse.com
+
+- updated to version 1.4.0
+  no changelog found
+
+---

Old:

  ruby_dep-1.3.1.gem

New:

  ruby_dep-1.4.0.gem



Other differences:
--
++ rubygem-ruby_dep.spec ++
--- /var/tmp/diff_new_pack.6Fqa3m/_old  2016-08-25 09:55:26.0 +0200
+++ /var/tmp/diff_new_pack.6Fqa3m/_new  2016-08-25 09:55:26.0 +0200
@@ -24,16 +24,16 @@
 #
 
 Name:   rubygem-ruby_dep
-Version:1.3.1
+Version:1.4.0
 Release:0
 %define mod_name ruby_dep
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
-BuildRequires:  %{ruby => 2.0}
 BuildRequires:  %{ruby < 3}
-BuildRequires:  %{ruby >= 2.0.0}
+BuildRequires:  %{ruby => 2.2}
+BuildRequires:  %{ruby >= 2.2.5}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  ruby-macros >= 5
 Url:https://github.com/e2/ruby_dep
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml

++ ruby_dep-1.3.1.gem -> ruby_dep-1.4.0.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.travis.yml new/.travis.yml
--- old/.travis.yml 2016-05-06 18:22:43.0 +0200
+++ new/.travis.yml 2016-08-03 03:11:54.0 +0200
@@ -1,12 +1,11 @@
 sudo: false
 language: ruby
 bundler_args: --without development
+env: JRUBY_OPTS='--server -Xcompile.invokedynamic=false'
 rvm:
-  - 2.0.0
-  - 2.1.9
-  - 2.2.4
   - 2.2.5
   - 2.3.1
-  - jruby-9.0.5.0
-before_install: gem install bundler -v 1.12.1
+  - jruby-9.1.2.0
+
+before_install: gem install bundler -v 1.12.5
 cache: bundler
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-05-06 18:22:43.0 +0200
+++ new/README.md   2016-08-03 03:11:54.0 +0200
@@ -4,16 +4,24 @@
 
 ## Description
 
-RubyDep helps users avoid incompatible, buggy and insecure Ruby versions.
+RubyDep does 2 things right now:
 
-It's for gem owners to add to their runtime dependencies in their gemspec.
+1. Helps end users avoid incompatible, buggy and insecure Ruby versions.
+2. Helps gem owners manage their gem's `required_ruby_version` gemspec field 
based on `.travis.yml`.
 
-1. It automatically sets your gemspec's `required_ruby_version` based on 
rubies tested in your `.travis-yml`
-2. It warns users of your project if they're using a buggy or vulnerable 
version of Ruby
+## Quick info
+
+- if you want to know how to disable the warnings, see here: 
https://github.com/e2/ruby_dep/wiki/Disabling-warnings
+- for a list of Ruby versions that can be used to install ruby_dep, see here: 
https://travis-ci.org/e2/ruby_dep
+- if your version of Ruby is not supported, open a new issue and explain your 
situation/problem
+- when in doubt, open a new issue or [read the FAQ on the 
Wiki](https://github.com/e2/ruby_dep/wiki/FAQ).
+- gems using RubyDep are designed to not be installable on a given Ruby 
version, unless it's specifically declared supported by those gems - but it's 
ok to ask for supporting your Ruby if you're stuck on an older version (for 
whatever reason)
+- discussions about Ruby versions can get complex and frustrating - please be 
patient and constructive, and open-minded about solutions - especially if 
you're having problems
 
-NOTE: RubyDep uses it's own approach on itself. This means it can only be 
installed on Ruby versions tested here: [check out the Travis build 
status](https://travis-ci.org/e2/ruby_dep). If you need support for an 
different/older version of Ruby, open an issue with "backport" in the title and 
provide a compelling case for supporting the version of Ruby you need. 
-When in doubt, open a new issue or [read the FAQ on the 
Wiki](https://github.com/e2/ruby_dep/wiki/FAQ).
 
+## Supported Ruby versions:
+
+NOTE: RubyDep uses it's own approach on itself. This means it can only be 
installed on Ruby versions tested here: [check out the Travis build 
status](https://travis-ci.org/e2/ruby_dep). If you need support for an 

commit rubygem-sshkit for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-sshkit for openSUSE:Factory 
checked in at 2016-08-25 09:55:06

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


Package is "rubygem-sshkit"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-sshkit/rubygem-sshkit.changes
2016-07-21 07:58:38.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-sshkit.new/rubygem-sshkit.changes   
2016-08-25 09:55:08.0 +0200
@@ -1,0 +2,13 @@
+Sat Jul 30 04:33:44 UTC 2016 - co...@suse.com
+
+- updated to version 1.11.2
+ see installed CHANGELOG.md
+
+  ## [1.11.2][] (2016-07-29)
+  
+  ### Bug fixes
+  
+* Fixed a crash occurring when `Host@keys` was set to a non-Enumerable.
+  @xavierholt [PR #360](https://github.com/capistrano/sshkit/pull/360)
+
+---

Old:

  sshkit-1.11.1.gem

New:

  sshkit-1.11.2.gem



Other differences:
--
++ rubygem-sshkit.spec ++
--- /var/tmp/diff_new_pack.6Mi7MT/_old  2016-08-25 09:55:09.0 +0200
+++ /var/tmp/diff_new_pack.6Mi7MT/_new  2016-08-25 09:55:09.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-sshkit
-Version:1.11.1
+Version:1.11.2
 Release:0
 %define mod_name sshkit
 %define mod_full_name %{mod_name}-%{version}

++ sshkit-1.11.1.gem -> sshkit-1.11.2.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2016-06-17 20:19:54.0 +0200
+++ new/CHANGELOG.md2016-07-30 02:57:10.0 +0200
@@ -8,6 +8,13 @@
   * Add your entries below here, remember to credit yourself however you want
 to be credited!
 
+## [1.11.2][] (2016-07-29)
+
+### Bug fixes
+
+  * Fixed a crash occurring when `Host@keys` was set to a non-Enumerable.
+@xavierholt [PR #360](https://github.com/capistrano/sshkit/pull/360)
+
 ## [1.11.1][] (2016-06-17)
 
 ### Bug fixes
@@ -637,6 +644,7 @@
 
 First release.
 
-[Unreleased]: https://github.com/capistrano/sshkit/compare/v1.11.1...HEAD
+[Unreleased]: https://github.com/capistrano/sshkit/compare/v1.11.2...HEAD
+[1.11.2]: https://github.com/capistrano/sshkit/compare/v1.11.1...v1.11.2
 [1.11.1]: https://github.com/capistrano/sshkit/compare/v1.11.0...v1.11.1
 [1.11.0]: https://github.com/capistrano/sshkit/compare/v1.10.0...v1.11.0
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-06-17 20:19:54.0 +0200
+++ new/README.md   2016-07-30 02:57:10.0 +0200
@@ -94,16 +94,16 @@
 the block they are given with a check.
 
 In the case of `within()`, an error-raising check will be made that the 
directory
-exists; for `as()` a simple call to `sudo su - whoami` wrapped in a 
check for
+exists; for `as()` a simple call to `sudo -u  -- sh -c '` 
wrapped in a check for
 success, raising an error if unsuccessful.
 
 The directory check is implemented like this:
 
 if test ! -d ; then echo "Directory doesn't exist" 2>&1; false; 
fi
 
-And the user switching test implemented like this:
+And the user switching test is implemented like this:
 
-if ! sudo su  -c whoami > /dev/null; then echo "Can't switch user" 
2>&1; false; fi
+if ! sudo -u  whoami > /dev/null; then echo "Can't switch user" 
2>&1; false; fi
 
 According to the defaults, any command that exits with a status other than 0
 raises an error (this can be changed). The body of the message is whatever was
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sshkit/host.rb new/lib/sshkit/host.rb
--- old/lib/sshkit/host.rb  2016-06-17 20:19:54.0 +0200
+++ new/lib/sshkit/host.rb  2016-07-30 02:57:10.0 +0200
@@ -17,7 +17,7 @@
 end
 
 def keys
-  @keys
+  Array(@keys)
 end
 
 def initialize(host_string_or_options_hash)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/sshkit/version.rb new/lib/sshkit/version.rb
--- old/lib/sshkit/version.rb   2016-06-17 20:19:54.0 +0200
+++ new/lib/sshkit/version.rb   2016-07-30 02:57:10.0 +0200
@@ -1,3 +1,3 @@
 module SSHKit
-  VERSION = "1.11.1".freeze
+  VERSION = "1.11.2".freeze
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-17 20:19:54.0 +0200
+++ new/metadata2016-07-30 02:57:10.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 

commit rubygem-actionpack-4_2 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-actionpack-4_2 for 
openSUSE:Factory checked in at 2016-08-25 09:54:40

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


Package is "rubygem-actionpack-4_2"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionpack-4_2/rubygem-actionpack-4_2.changes
2016-07-20 09:25:47.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionpack-4_2.new/rubygem-actionpack-4_2.changes
   2016-08-25 09:54:42.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:30:09 UTC 2016 - co...@suse.com
+
+- updated to version 4.2.7.1
+ see installed CHANGELOG.md
+
+---

Old:

  actionpack-4.2.7.gem

New:

  actionpack-4.2.7.1.gem



Other differences:
--
++ rubygem-actionpack-4_2.spec ++
--- /var/tmp/diff_new_pack.Uiqr5h/_old  2016-08-25 09:54:43.0 +0200
+++ /var/tmp/diff_new_pack.Uiqr5h/_new  2016-08-25 09:54:43.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionpack-4_2
-Version:4.2.7
+Version:4.2.7.1
 Release:0
 %define mod_name actionpack
 %define mod_full_name %{mod_name}-%{version}

++ actionpack-4.2.7.gem -> actionpack-4.2.7.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_pack/gem_version.rb 
new/lib/action_pack/gem_version.rb
--- old/lib/action_pack/gem_version.rb  2016-07-13 04:53:43.0 +0200
+++ new/lib/action_pack/gem_version.rb  2016-08-11 00:25:28.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 4
 MINOR = 2
 TINY  = 7
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-13 04:53:43.0 +0200
+++ new/metadata2016-08-11 00:25:28.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionpack
 version: !ruby/object:Gem::Version
-  version: 4.2.7
+  version: 4.2.7.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-13 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: rack
   requirement: !ruby/object:Gem::Requirement
@@ -98,28 +98,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 description: Web apps on Rails. Simple, battle-tested conventions for building 
and
   testing MVC web applications. Works with any Rack-compatible server.
 email: da...@loudthinking.com
@@ -300,8 +300,9 @@
 requirements:
 - none
 rubyforge_project: 
-rubygems_version: 2.4.5.1
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Web-flow and rendering framework putting the VC in MVC (part of 
Rails).
 test_files: []
+has_rdoc: 




commit rubygem-mimemagic for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-mimemagic for 
openSUSE:Factory checked in at 2016-08-25 09:55:17

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


Package is "rubygem-mimemagic"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-mimemagic/rubygem-mimemagic.changes  
2016-03-01 09:39:54.0 +0100
+++ /work/SRC/openSUSE:Factory/.rubygem-mimemagic.new/rubygem-mimemagic.changes 
2016-08-25 09:55:19.0 +0200
@@ -1,0 +2,6 @@
+Wed Aug  3 04:33:25 UTC 2016 - co...@suse.com
+
+- updated to version 0.3.2
+  no changelog found
+
+---

Old:

  mimemagic-0.3.1.gem

New:

  mimemagic-0.3.2.gem



Other differences:
--
++ rubygem-mimemagic.spec ++
--- /var/tmp/diff_new_pack.URw1PL/_old  2016-08-25 09:55:20.0 +0200
+++ /var/tmp/diff_new_pack.URw1PL/_new  2016-08-25 09:55:20.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-mimemagic
-Version:0.3.1
+Version:0.3.2
 Release:0
 %define mod_name mimemagic
 %define mod_full_name %{mod_name}-%{version}

++ mimemagic-0.3.1.gem -> mimemagic-0.3.2.gem ++
 11983 lines of diff (skipped)




commit rubygem-turbolinks for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-turbolinks for 
openSUSE:Factory checked in at 2016-08-25 09:55:12

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


Package is "rubygem-turbolinks"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-turbolinks/rubygem-turbolinks.changes
2016-07-21 07:57:04.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-turbolinks.new/rubygem-turbolinks.changes   
2016-08-25 09:55:14.0 +0200
@@ -1,0 +2,6 @@
+Mon Aug  1 04:34:50 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.1
+  no changelog found
+
+---

Old:

  turbolinks-5.0.0.gem

New:

  turbolinks-5.0.1.gem



Other differences:
--
++ rubygem-turbolinks.spec ++
--- /var/tmp/diff_new_pack.bqGnaE/_old  2016-08-25 09:55:15.0 +0200
+++ /var/tmp/diff_new_pack.bqGnaE/_new  2016-08-25 09:55:15.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-turbolinks
-Version:5.0.0
+Version:5.0.1
 Release:0
 %define mod_name turbolinks
 %define mod_full_name %{mod_name}-%{version}
@@ -32,7 +32,7 @@
 BuildRequires:  %{rubygem gem2rpm}
 BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
-Url:https://github.com/turbolinks/turbolinks-rails
+Url:https://github.com/turbolinks/turbolinks
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml
 Summary:Turbolinks makes navigating your web application faster

++ turbolinks-5.0.0.gem -> turbolinks-5.0.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/README.md new/README.md
--- old/README.md   2016-06-30 18:47:33.0 +0200
+++ new/README.md   2016-07-31 17:52:55.0 +0200
@@ -0,0 +1,3 @@
+This repository houses the `turbolinks` RubyGem, which provides a Rails engine 
for [Turbolinks 5](https://github.com/turbolinks/turbolinks) support.
+
+It depends on the 
[`turbolinks-source`](https://github.com/turbolinks/turbolinks-source-gem) 
RubyGem, which packages the Turbolinks JavaScript assets for the Rails asset 
pipeline.
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/turbolinks/version.rb 
new/lib/turbolinks/version.rb
--- old/lib/turbolinks/version.rb   2016-06-30 18:47:33.0 +0200
+++ new/lib/turbolinks/version.rb   2016-07-31 17:52:55.0 +0200
@@ -1,3 +1,3 @@
 module Turbolinks
-  VERSION = '5.0.0'
+  VERSION = '5.0.1'
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 18:47:33.0 +0200
+++ new/metadata2016-07-31 17:52:55.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: turbolinks
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-07-31 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: turbolinks-source
@@ -35,7 +35,7 @@
 - lib/turbolinks.rb
 - lib/turbolinks/redirection.rb
 - lib/turbolinks/version.rb
-homepage: https://github.com/turbolinks/turbolinks-rails
+homepage: https://github.com/turbolinks/turbolinks
 licenses:
 - MIT
 metadata: {}




commit rubygem-js-routes for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-js-routes for 
openSUSE:Factory checked in at 2016-08-25 09:54:56

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


Package is "rubygem-js-routes"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-js-routes/rubygem-js-routes.changes  
2016-08-09 22:15:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-js-routes.new/rubygem-js-routes.changes 
2016-08-25 09:54:58.0 +0200
@@ -1,0 +2,10 @@
+Thu Aug 11 04:36:53 UTC 2016 - co...@suse.com
+
+- updated to version 1.2.9
+ see installed CHANGELOG.md
+
+  ## v1.2.9
+  
+  * Fixed deprecation varning on Sprockets 3.7
+
+---

Old:

  js-routes-1.2.8.gem

New:

  js-routes-1.2.9.gem



Other differences:
--
++ rubygem-js-routes.spec ++
--- /var/tmp/diff_new_pack.uVwGk9/_old  2016-08-25 09:54:59.0 +0200
+++ /var/tmp/diff_new_pack.uVwGk9/_new  2016-08-25 09:54:59.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-js-routes
-Version:1.2.8
+Version:1.2.9
 Release:0
 %define mod_name js-routes
 %define mod_full_name %{mod_name}-%{version}

++ js-routes-1.2.8.gem -> js-routes-1.2.9.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/CHANGELOG.md new/CHANGELOG.md
--- old/CHANGELOG.md2016-08-05 12:52:33.0 +0200
+++ new/CHANGELOG.md2016-08-10 15:02:17.0 +0200
@@ -1,5 +1,9 @@
 ## master
 
+## v1.2.9
+
+* Fixed deprecation varning on Sprockets 3.7
+
 ## v1.2.8
 
 * Bugfix warning on Sprockets 4.0 #202
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/js_routes/engine.rb new/lib/js_routes/engine.rb
--- old/lib/js_routes/engine.rb 2016-08-05 12:52:33.0 +0200
+++ new/lib/js_routes/engine.rb 2016-08-10 15:02:17.0 +0200
@@ -30,13 +30,13 @@
 class Engine < ::Rails::Engine
   require 'sprockets/version'
   v2= Gem::Dependency.new('', ' ~> 2')
-  v3= Gem::Dependency.new('', ' ~> 3')
-  v4= Gem::Dependency.new('', ' >= 4')
-  sprockets_version = Gem::Version.new(Sprockets::VERSION).release
+  v3= Gem::Dependency.new('', ' >= 3' ,' < 3.7')
+  v37= Gem::Dependency.new('', ' >= 3.7')
+  sprockets_version = Gem::Version.new(::Sprockets::VERSION).release
   initializer_args  = case sprockets_version
 when -> (v) { v2.match?('', v) }
   { after: "sprockets.environment" }
-when -> (v) { v3.match?('', v) || v4.match?('', v) }
+when -> (v) { v3.match?('', v) || v37.match?('', v) }
   { after: :engines_blank_point, before: 
:finisher_hook }
 else
   raise StandardError, "Sprockets version 
#{sprockets_version} is not supported"
@@ -60,10 +60,10 @@
 data
   end
 end
-  when -> (v) { v4.match?('', v) }
+  when -> (v) { v37.match?('', v) }
 Sprockets.register_preprocessor 'application/javascript', 
JsRoutesSprocketsExtension
   else
 raise StandardError, "Sprockets version #{sprockets_version} is not 
supported"
 end
   end
-end
\ No newline at end of file
+end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/js_routes/version.rb new/lib/js_routes/version.rb
--- old/lib/js_routes/version.rb2016-08-05 12:52:33.0 +0200
+++ new/lib/js_routes/version.rb2016-08-10 15:02:17.0 +0200
@@ -1,3 +1,3 @@
 class JsRoutes
-  VERSION = "1.2.8"
+  VERSION = "1.2.9"
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-08-05 12:52:33.0 +0200
+++ new/metadata2016-08-10 15:02:17.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: js-routes
 version: !ruby/object:Gem::Version
-  version: 1.2.8
+  version: 1.2.9
 platform: ruby
 authors:
 - Bogdan Gusiev
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-08-05 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: railties




commit rubygem-actionmailer-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-actionmailer-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:54:43

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


Package is "rubygem-actionmailer-5_0"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionmailer-5_0/rubygem-actionmailer-5_0.changes
2016-07-21 07:55:49.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionmailer-5_0.new/rubygem-actionmailer-5_0.changes
   2016-08-25 09:54:47.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:29:25 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  actionmailer-5.0.0.gem

New:

  actionmailer-5.0.0.1.gem



Other differences:
--
++ rubygem-actionmailer-5_0.spec ++
--- /var/tmp/diff_new_pack.Bx6ljW/_old  2016-08-25 09:54:49.0 +0200
+++ /var/tmp/diff_new_pack.Bx6ljW/_new  2016-08-25 09:54:49.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionmailer-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name actionmailer
 %define mod_full_name %{mod_name}-%{version}

++ actionmailer-5.0.0.gem -> actionmailer-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_mailer/gem_version.rb 
new/lib/action_mailer/gem_version.rb
--- old/lib/action_mailer/gem_version.rb2016-06-30 23:22:09.0 
+0200
+++ new/lib/action_mailer/gem_version.rb2016-08-11 00:37:43.0 
+0200
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 0
 TINY  = 0
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:22:09.0 +0200
+++ new/metadata2016-08-11 00:37:43.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionmailer
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: actionpack
@@ -16,42 +16,42 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: actionview
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: activejob
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: mail
   requirement: !ruby/object:Gem::Requirement
@@ -137,8 +137,9 @@
 requirements:
 - none
 rubyforge_project: 
-rubygems_version: 2.6.4
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Email composition, delivery, and receiving framework (part of Rails).
 test_files: []
+has_rdoc: 




commit rubygem-httpclient for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-httpclient for 
openSUSE:Factory checked in at 2016-08-25 09:54:59

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


Package is "rubygem-httpclient"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-httpclient/rubygem-httpclient.changes
2016-05-29 03:13:19.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-httpclient.new/rubygem-httpclient.changes   
2016-08-25 09:55:02.0 +0200
@@ -1,0 +2,6 @@
+Mon Aug  8 04:38:16 UTC 2016 - co...@suse.com
+
+- updated to version 2.8.1
+  no changelog found
+
+---

Old:

  httpclient-2.8.0.gem

New:

  httpclient-2.8.1.gem



Other differences:
--
++ rubygem-httpclient.spec ++
--- /var/tmp/diff_new_pack.FfPROd/_old  2016-08-25 09:55:03.0 +0200
+++ /var/tmp/diff_new_pack.FfPROd/_new  2016-08-25 09:55:03.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-httpclient
-Version:2.8.0
+Version:2.8.1
 Release:0
 %define mod_name httpclient
 %define mod_full_name %{mod_name}-%{version}

++ httpclient-2.8.0.gem -> httpclient-2.8.1.gem ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/bin/httpclient new/bin/httpclient
--- old/bin/httpclient  2016-04-24 08:08:06.0 +0200
+++ new/bin/httpclient  2016-08-07 09:30:27.0 +0200
@@ -20,6 +20,7 @@
 url = ARGV.shift
 if method && url
   client = HTTPClient.new
+  client.strict_response_size_check = true
   if method == 'download'
 print client.get_content(url)
   else
@@ -37,6 +38,7 @@
 class Runner
   def initialize
 @httpclient = HTTPClient.new
+@httpclient.strict_response_size_check = true
   end
 
   def method_missing(msg, *a, )
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/httpclient/http.rb new/lib/httpclient/http.rb
--- old/lib/httpclient/http.rb  2016-04-24 08:08:06.0 +0200
+++ new/lib/httpclient/http.rb  2016-08-07 09:30:27.0 +0200
@@ -700,8 +700,9 @@
 
   def params_from_file(value)
 params = {}
+original_filename = value.respond_to?(:original_filename) ? 
value.original_filename : nil
 path = value.respond_to?(:path) ? value.path : nil
-params['filename'] = File.basename(path || '')
+params['filename'] = original_filename || File.basename(path || '')
 # Creation time is not available from File::Stat
 if value.respond_to?(:mtime)
   params['modification-date'] = value.mtime.rfc822
@@ -808,6 +809,8 @@
 case path
 when /\.txt$/i
   'text/plain'
+when /\.xml$/i
+  'text/xml'
 when /\.(htm|html)$/i
   'text/html'
 when /\.doc$/i
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/httpclient/jruby_ssl_socket.rb 
new/lib/httpclient/jruby_ssl_socket.rb
--- old/lib/httpclient/jruby_ssl_socket.rb  2016-04-24 08:08:06.0 
+0200
+++ new/lib/httpclient/jruby_ssl_socket.rb  2016-08-07 09:30:27.0 
+0200
@@ -289,11 +289,11 @@
 @keystore.load(nil)
   end
 
-  def add(cert_file, key_file, password)
-cert_str = cert_file.respond_to?(:to_pem) ? cert_file.to_pem : 
File.read(cert_file.to_s)
+  def add(cert_source, key_source, password)
+cert_str = cert_source.respond_to?(:to_pem) ? cert_source.to_pem : 
File.read(cert_source.to_s)
 cert = PEMUtils.read_certificate(cert_str)
 @keystore.setCertificateEntry('client_cert', cert)
-key_str = key_file.respond_to?(:to_pem) ? key_file.to_pem : 
File.read(key_file.to_s)
+key_str = key_source.respond_to?(:to_pem) ? key_source.to_pem : 
File.read(key_source.to_s)
 key_pair = PEMUtils.read_private_key(key_str, password)
 @keystore.setKeyEntry('client_key', key_pair.getPrivate, PASSWORD, 
[cert].to_java(Certificate))
   end
@@ -312,20 +312,21 @@
 @size = 0
   end
 
-  def add(file_or_dir)
-return if file_or_dir == :default
-if File.directory?(file_or_dir)
-  warn("#{file_or_dir}: directory not yet supported")
+  def add(cert_source)
+return if cert_source == :default
+if cert_source.respond_to?(:to_pem)
+  pem = cert_source.to_pem
+elsif File.directory?(cert_source)
+  warn("#{cert_source}: directory not yet supported")
+  return
 else
   pem = nil
-  File.read(file_or_dir).each_line 

commit rubygem-actioncable-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-actioncable-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:54:52

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


Package is "rubygem-actioncable-5_0"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actioncable-5_0/rubygem-actioncable-5_0.changes
  2016-07-21 07:59:04.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actioncable-5_0.new/rubygem-actioncable-5_0.changes
 2016-08-25 09:54:54.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:28:30 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  actioncable-5.0.0.gem

New:

  actioncable-5.0.0.1.gem



Other differences:
--
++ rubygem-actioncable-5_0.spec ++
--- /var/tmp/diff_new_pack.PpL9Ju/_old  2016-08-25 09:54:55.0 +0200
+++ /var/tmp/diff_new_pack.PpL9Ju/_new  2016-08-25 09:54:55.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actioncable-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name actioncable
 %define mod_full_name %{mod_name}-%{version}
@@ -35,9 +35,9 @@
 %endif
 # /MANUAL
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
 BuildRequires:  %{ruby >= 2.2.2}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  ruby-macros >= 5
 Url:http://rubyonrails.org
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml

++ actioncable-5.0.0.gem -> actioncable-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_cable/gem_version.rb 
new/lib/action_cable/gem_version.rb
--- old/lib/action_cable/gem_version.rb 2016-06-30 23:31:34.0 +0200
+++ new/lib/action_cable/gem_version.rb 2016-08-11 00:37:47.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 0
 TINY  = 0
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:31:34.0 +0200
+++ new/metadata2016-08-11 00:37:47.0 +0200
@@ -1,7 +1,7 @@
 --- !ruby/object:Gem::Specification
 name: actioncable
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - Pratik Naik
@@ -9,7 +9,7 @@
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: actionpack
@@ -17,14 +17,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: nio4r
   requirement: !ruby/object:Gem::Requirement
@@ -150,8 +150,9 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.4
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: WebSocket framework for Rails.
 test_files: []
+has_rdoc: 




commit rubygem-activerecord-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activerecord-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:54:10

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


Package is "rubygem-activerecord-5_0"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activerecord-5_0/rubygem-activerecord-5_0.changes
2016-07-21 07:56:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activerecord-5_0.new/rubygem-activerecord-5_0.changes
   2016-08-25 09:54:12.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:33:33 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  activerecord-5.0.0.gem

New:

  activerecord-5.0.0.1.gem



Other differences:
--
++ rubygem-activerecord-5_0.spec ++
--- /var/tmp/diff_new_pack.ztJU0F/_old  2016-08-25 09:54:13.0 +0200
+++ /var/tmp/diff_new_pack.ztJU0F/_new  2016-08-25 09:54:13.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-activerecord-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name activerecord
 %define mod_full_name %{mod_name}-%{version}

++ activerecord-5.0.0.gem -> activerecord-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_record/gem_version.rb 
new/lib/active_record/gem_version.rb
--- old/lib/active_record/gem_version.rb2016-06-30 23:21:21.0 
+0200
+++ new/lib/active_record/gem_version.rb2016-08-11 00:37:32.0 
+0200
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 0
 TINY  = 0
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:21:20.0 +0200
+++ new/metadata2016-08-11 00:37:32.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activerecord
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,28 +16,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: arel
   requirement: !ruby/object:Gem::Requirement
@@ -328,8 +328,9 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.4
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Object-relational mapper framework (part of Rails).
 test_files: []
+has_rdoc: 




commit rubygem-activemodel-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activemodel-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:54:07

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


Package is "rubygem-activemodel-5_0"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activemodel-5_0/rubygem-activemodel-5_0.changes
  2016-07-21 07:56:16.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activemodel-5_0.new/rubygem-activemodel-5_0.changes
 2016-08-25 09:54:10.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:32:42 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  activemodel-5.0.0.gem

New:

  activemodel-5.0.0.1.gem



Other differences:
--
++ rubygem-activemodel-5_0.spec ++
--- /var/tmp/diff_new_pack.vdMxyL/_old  2016-08-25 09:54:10.0 +0200
+++ /var/tmp/diff_new_pack.vdMxyL/_new  2016-08-25 09:54:10.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-activemodel-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name activemodel
 %define mod_full_name %{mod_name}-%{version}

++ activemodel-5.0.0.gem -> activemodel-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_model/gem_version.rb 
new/lib/active_model/gem_version.rb
--- old/lib/active_model/gem_version.rb 2016-06-30 23:21:08.0 +0200
+++ new/lib/active_model/gem_version.rb 2016-08-11 00:37:29.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 0
 TINY  = 0
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:21:08.0 +0200
+++ new/metadata2016-08-11 00:37:29.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activemodel
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 description: A toolkit for building modeling frameworks like Active Record. 
Rich support
   for attributes, callbacks, validations, serialization, internationalization, 
and
   testing.
@@ -113,8 +113,9 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.4
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: A toolkit for building modeling frameworks (part of Rails).
 test_files: []
+has_rdoc: 




commit rubygem-actionpack-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-actionpack-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:54:33

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


Package is "rubygem-actionpack-5_0"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionpack-5_0/rubygem-actionpack-5_0.changes
2016-07-21 07:55:52.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionpack-5_0.new/rubygem-actionpack-5_0.changes
   2016-08-25 09:54:39.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:30:28 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  actionpack-5.0.0.gem

New:

  actionpack-5.0.0.1.gem



Other differences:
--
++ rubygem-actionpack-5_0.spec ++
--- /var/tmp/diff_new_pack.uMSxwe/_old  2016-08-25 09:54:40.0 +0200
+++ /var/tmp/diff_new_pack.uMSxwe/_new  2016-08-25 09:54:40.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionpack-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name actionpack
 %define mod_full_name %{mod_name}-%{version}
@@ -35,9 +35,9 @@
 %endif
 # /MANUAL
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  ruby-macros >= 5
 BuildRequires:  %{ruby >= 2.2.2}
 BuildRequires:  %{rubygem gem2rpm}
+BuildRequires:  ruby-macros >= 5
 Url:http://rubyonrails.org
 Source: http://rubygems.org/gems/%{mod_full_name}.gem
 Source1:gem2rpm.yml

++ actionpack-5.0.0.gem -> actionpack-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_pack/gem_version.rb 
new/lib/action_pack/gem_version.rb
--- old/lib/action_pack/gem_version.rb  2016-06-30 23:21:48.0 +0200
+++ new/lib/action_pack/gem_version.rb  2016-08-11 00:37:38.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 0
 TINY  = 0
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:21:47.0 +0200
+++ new/metadata2016-08-11 00:37:38.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionpack
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: rack
   requirement: !ruby/object:Gem::Requirement
@@ -92,28 +92,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 description: Web apps on Rails. Simple, battle-tested conventions for building 
and
   testing MVC web applications. Works with any Rack-compatible server.
 email: da...@loudthinking.com
@@ -296,8 +296,9 @@
 requirements:
 - none
 rubyforge_project: 
-rubygems_version: 2.6.4
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Web-flow and rendering framework putting the VC in MVC (part of 
Rails).
 test_files: []
+has_rdoc: 




commit rubygem-activejob-4_2 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activejob-4_2 for 
openSUSE:Factory checked in at 2016-08-25 09:54:19

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


Package is "rubygem-activejob-4_2"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activejob-4_2/rubygem-activejob-4_2.changes  
2016-07-20 09:25:39.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activejob-4_2.new/rubygem-activejob-4_2.changes
 2016-08-25 09:54:20.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:31:27 UTC 2016 - co...@suse.com
+
+- updated to version 4.2.7.1
+ see installed CHANGELOG.md
+
+---

Old:

  activejob-4.2.7.gem

New:

  activejob-4.2.7.1.gem



Other differences:
--
++ rubygem-activejob-4_2.spec ++
--- /var/tmp/diff_new_pack.QLnudj/_old  2016-08-25 09:54:21.0 +0200
+++ /var/tmp/diff_new_pack.QLnudj/_new  2016-08-25 09:54:21.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-activejob-4_2
-Version:4.2.7
+Version:4.2.7.1
 Release:0
 %define mod_name activejob
 %define mod_full_name %{mod_name}-%{version}

++ activejob-4.2.7.gem -> activejob-4.2.7.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_job/gem_version.rb 
new/lib/active_job/gem_version.rb
--- old/lib/active_job/gem_version.rb   2016-07-13 04:53:44.0 +0200
+++ new/lib/active_job/gem_version.rb   2016-08-11 00:25:29.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 4
 MINOR = 2
 TINY  = 7
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-13 04:53:44.0 +0200
+++ new/metadata2016-08-11 00:25:29.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activejob
 version: !ruby/object:Gem::Version
-  version: 4.2.7
+  version: 4.2.7.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-13 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: globalid
   requirement: !ruby/object:Gem::Requirement
@@ -98,8 +98,9 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.5.1
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Job framework with pluggable queues.
 test_files: []
+has_rdoc: 




commit rubygem-activejob-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activejob-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:54:16

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


Package is "rubygem-activejob-5_0"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activejob-5_0/rubygem-activejob-5_0.changes  
2016-07-21 07:56:14.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activejob-5_0.new/rubygem-activejob-5_0.changes
 2016-08-25 09:54:18.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:31:45 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  activejob-5.0.0.gem

New:

  activejob-5.0.0.1.gem



Other differences:
--
++ rubygem-activejob-5_0.spec ++
--- /var/tmp/diff_new_pack.31ky4t/_old  2016-08-25 09:54:19.0 +0200
+++ /var/tmp/diff_new_pack.31ky4t/_new  2016-08-25 09:54:19.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-activejob-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name activejob
 %define mod_full_name %{mod_name}-%{version}

++ activejob-5.0.0.gem -> activejob-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_job/gem_version.rb 
new/lib/active_job/gem_version.rb
--- old/lib/active_job/gem_version.rb   2016-06-30 23:22:00.0 +0200
+++ new/lib/active_job/gem_version.rb   2016-08-11 00:37:41.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 0
 TINY  = 0
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:22:00.0 +0200
+++ new/metadata2016-08-11 00:37:41.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activejob
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: globalid
   requirement: !ruby/object:Gem::Requirement
@@ -101,8 +101,9 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.4
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Job framework with pluggable queues.
 test_files: []
+has_rdoc: 




commit rubygem-actionview-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-actionview-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:54:22

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


Package is "rubygem-actionview-5_0"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-actionview-5_0/rubygem-actionview-5_0.changes
2016-07-21 07:56:00.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-actionview-5_0.new/rubygem-actionview-5_0.changes
   2016-08-25 09:54:25.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:31:09 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  actionview-5.0.0.gem

New:

  actionview-5.0.0.1.gem



Other differences:
--
++ rubygem-actionview-5_0.spec ++
--- /var/tmp/diff_new_pack.RnrxpM/_old  2016-08-25 09:54:28.0 +0200
+++ /var/tmp/diff_new_pack.RnrxpM/_new  2016-08-25 09:54:28.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-actionview-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name actionview
 %define mod_full_name %{mod_name}-%{version}

++ actionview-5.0.0.gem -> actionview-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/gem_version.rb 
new/lib/action_view/gem_version.rb
--- old/lib/action_view/gem_version.rb  2016-06-30 23:21:36.0 +0200
+++ new/lib/action_view/gem_version.rb  2016-08-11 00:37:35.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 0
 TINY  = 0
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/action_view/helpers/tag_helper.rb 
new/lib/action_view/helpers/tag_helper.rb
--- old/lib/action_view/helpers/tag_helper.rb   2016-06-30 23:21:36.0 
+0200
+++ new/lib/action_view/helpers/tag_helper.rb   2016-08-11 00:37:35.0 
+0200
@@ -189,7 +189,7 @@
   else
 value = escape ? ERB::Util.unwrapped_html_escape(value) : value
   end
-  %(#{key}="#{value}")
+  %(#{key}="#{value.gsub(/"/, ''.freeze)}")
 end
 end
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:21:36.0 +0200
+++ new/metadata2016-08-11 00:37:35.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: actionview
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: builder
   requirement: !ruby/object:Gem::Requirement
@@ -92,28 +92,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 description: Simple, battle-tested conventions and helpers for building web 
pages.
 email: da...@loudthinking.com
 executables: []
@@ -244,8 +244,9 @@
 requirements:
 - none
 rubyforge_project: 
-rubygems_version: 2.6.4
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Rendering framework putting the V in MVC (part of Rails).
 test_files: []
+has_rdoc: 




commit rubygem-activemodel-4_2 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activemodel-4_2 for 
openSUSE:Factory checked in at 2016-08-25 09:54:13

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


Package is "rubygem-activemodel-4_2"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activemodel-4_2/rubygem-activemodel-4_2.changes
  2016-07-20 09:25:32.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activemodel-4_2.new/rubygem-activemodel-4_2.changes
 2016-08-25 09:54:15.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:32:25 UTC 2016 - co...@suse.com
+
+- updated to version 4.2.7.1
+ see installed CHANGELOG.md
+
+---

Old:

  activemodel-4.2.7.gem

New:

  activemodel-4.2.7.1.gem



Other differences:
--
++ rubygem-activemodel-4_2.spec ++
--- /var/tmp/diff_new_pack.j58LrH/_old  2016-08-25 09:54:16.0 +0200
+++ /var/tmp/diff_new_pack.j58LrH/_new  2016-08-25 09:54:16.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-activemodel-4_2
-Version:4.2.7
+Version:4.2.7.1
 Release:0
 %define mod_name activemodel
 %define mod_full_name %{mod_name}-%{version}

++ activemodel-4.2.7.gem -> activemodel-4.2.7.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_model/gem_version.rb 
new/lib/active_model/gem_version.rb
--- old/lib/active_model/gem_version.rb 2016-07-13 04:53:42.0 +0200
+++ new/lib/active_model/gem_version.rb 2016-08-11 00:25:25.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 4
 MINOR = 2
 TINY  = 7
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-13 04:53:42.0 +0200
+++ new/metadata2016-08-11 00:25:25.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activemodel
 version: !ruby/object:Gem::Version
-  version: 4.2.7
+  version: 4.2.7.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-13 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,14 +16,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: builder
   requirement: !ruby/object:Gem::Requirement
@@ -104,8 +104,9 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.5.1
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: A toolkit for building modeling frameworks (part of Rails).
 test_files: []
+has_rdoc: 




commit rubygem-gettext_i18n_rails for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-gettext_i18n_rails for 
openSUSE:Factory checked in at 2016-08-25 09:54:00

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


Package is "rubygem-gettext_i18n_rails"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-gettext_i18n_rails/rubygem-gettext_i18n_rails.changes
2016-05-29 03:13:20.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-gettext_i18n_rails.new/rubygem-gettext_i18n_rails.changes
   2016-08-25 09:54:02.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:41:33 UTC 2016 - co...@suse.com
+
+- updated to version 1.8.0
+  no changelog found
+
+---

Old:

  gettext_i18n_rails-1.7.2.gem

New:

  gettext_i18n_rails-1.8.0.gem



Other differences:
--
++ rubygem-gettext_i18n_rails.spec ++
--- /var/tmp/diff_new_pack.kptqop/_old  2016-08-25 09:54:03.0 +0200
+++ /var/tmp/diff_new_pack.kptqop/_new  2016-08-25 09:54:03.0 +0200
@@ -24,13 +24,13 @@
 #
 
 Name:   rubygem-gettext_i18n_rails
-Version:1.7.2
+Version:1.8.0
 Release:0
 %define mod_name gettext_i18n_rails
 %define mod_full_name %{mod_name}-%{version}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+BuildRequires:  %{ruby >= 2.1.0}
 BuildRequires:  %{rubygem gem2rpm}
-BuildRequires:  %{ruby}
 BuildRequires:  ruby-macros >= 5
 Url:http://github.com/grosser/gettext_i18n_rails
 Source: http://rubygems.org/gems/%{mod_full_name}.gem

++ gettext_i18n_rails-1.7.2.gem -> gettext_i18n_rails-1.8.0.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/gettext_i18n_rails/version.rb 
new/lib/gettext_i18n_rails/version.rb
--- old/lib/gettext_i18n_rails/version.rb   2016-05-18 20:10:35.0 
+0200
+++ new/lib/gettext_i18n_rails/version.rb   2016-08-11 20:19:02.0 
+0200
@@ -1,3 +1,3 @@
 module GettextI18nRails
-  Version = VERSION = '1.7.2'
+  Version = VERSION = '1.8.0'
 end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-05-18 20:10:35.0 +0200
+++ new/metadata2016-08-11 20:19:02.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: gettext_i18n_rails
 version: !ruby/object:Gem::Version
-  version: 1.7.2
+  version: 1.8.0
 platform: ruby
 authors:
 - Michael Grosser
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-05-18 00:00:00.0 Z
+date: 2016-08-11 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: fast_gettext
@@ -217,7 +217,7 @@
   requirements:
   - - ">="
 - !ruby/object:Gem::Version
-  version: '0'
+  version: 2.1.0
 required_rubygems_version: !ruby/object:Gem::Requirement
   requirements:
   - - ">="
@@ -225,7 +225,7 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.5.1
+rubygems_version: 2.5.1
 signing_key: 
 specification_version: 4
 summary: Simple FastGettext Rails integration.




commit rubygem-activesupport-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activesupport-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:54:02

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


Package is "rubygem-activesupport-5_0"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activesupport-5_0/rubygem-activesupport-5_0.changes
  2016-07-21 07:56:32.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activesupport-5_0.new/rubygem-activesupport-5_0.changes
 2016-08-25 09:54:03.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:35:03 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  activesupport-5.0.0.gem

New:

  activesupport-5.0.0.1.gem



Other differences:
--
++ rubygem-activesupport-5_0.spec ++
--- /var/tmp/diff_new_pack.0rb0tA/_old  2016-08-25 09:54:04.0 +0200
+++ /var/tmp/diff_new_pack.0rb0tA/_new  2016-08-25 09:54:04.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-activesupport-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name activesupport
 %define mod_full_name %{mod_name}-%{version}

++ activesupport-5.0.0.gem -> activesupport-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_support/gem_version.rb 
new/lib/active_support/gem_version.rb
--- old/lib/active_support/gem_version.rb   2016-06-30 23:20:52.0 
+0200
+++ new/lib/active_support/gem_version.rb   2016-08-11 00:37:26.0 
+0200
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 0
 TINY  = 0
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:20:52.0 +0200
+++ new/metadata2016-08-11 00:37:26.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activesupport
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: i18n
@@ -336,9 +336,10 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.4
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: A toolkit of support libraries and Ruby core extensions extracted 
from the
   Rails framework.
 test_files: []
+has_rdoc: 




commit rubygem-activesupport-4_2 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-activesupport-4_2 for 
openSUSE:Factory checked in at 2016-08-25 09:54:04

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


Package is "rubygem-activesupport-4_2"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-activesupport-4_2/rubygem-activesupport-4_2.changes
  2016-07-20 09:25:25.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-activesupport-4_2.new/rubygem-activesupport-4_2.changes
 2016-08-25 09:54:06.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:34:42 UTC 2016 - co...@suse.com
+
+- updated to version 4.2.7.1
+ see installed CHANGELOG.md
+
+---

Old:

  activesupport-4.2.7.gem

New:

  activesupport-4.2.7.1.gem



Other differences:
--
++ rubygem-activesupport-4_2.spec ++
--- /var/tmp/diff_new_pack.WPwqOH/_old  2016-08-25 09:54:07.0 +0200
+++ /var/tmp/diff_new_pack.WPwqOH/_new  2016-08-25 09:54:07.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-activesupport-4_2
-Version:4.2.7
+Version:4.2.7.1
 Release:0
 %define mod_name activesupport
 %define mod_full_name %{mod_name}-%{version}

++ activesupport-4.2.7.gem -> activesupport-4.2.7.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/active_support/gem_version.rb 
new/lib/active_support/gem_version.rb
--- old/lib/active_support/gem_version.rb   2016-07-13 04:53:41.0 
+0200
+++ new/lib/active_support/gem_version.rb   2016-08-11 00:25:24.0 
+0200
@@ -8,7 +8,7 @@
 MAJOR = 4
 MINOR = 2
 TINY  = 7
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-13 04:53:41.0 +0200
+++ new/metadata2016-08-11 00:25:24.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: activesupport
 version: !ruby/object:Gem::Version
-  version: 4.2.7
+  version: 4.2.7.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-13 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: i18n
@@ -340,9 +340,10 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.5.1
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: A toolkit of support libraries and Ruby core extensions extracted 
from the
   Rails framework.
 test_files: []
+has_rdoc: 




commit rubygem-rails-4_2 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rails-4_2 for 
openSUSE:Factory checked in at 2016-08-25 09:53:57

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


Package is "rubygem-rails-4_2"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rails-4_2/rubygem-rails-4_2.changes  
2016-07-20 09:25:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-rails-4_2.new/rubygem-rails-4_2.changes 
2016-08-25 09:53:59.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:47:31 UTC 2016 - co...@suse.com
+
+- updated to version 4.2.7.1
+ see installed CHANGELOG.md
+
+---

Old:

  rails-4.2.7.gem

New:

  rails-4.2.7.1.gem



Other differences:
--
++ rubygem-rails-4_2.spec ++
--- /var/tmp/diff_new_pack.xvg8S0/_old  2016-08-25 09:54:00.0 +0200
+++ /var/tmp/diff_new_pack.xvg8S0/_new  2016-08-25 09:54:00.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-rails-4_2
-Version:4.2.7
+Version:4.2.7.1
 Release:0
 %define mod_name rails
 %define mod_full_name %{mod_name}-%{version}

++ rails-4.2.7.gem -> rails-4.2.7.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-13 04:53:45.0 +0200
+++ new/metadata2016-08-11 00:25:31.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: rails
 version: !ruby/object:Gem::Version
-  version: 4.2.7
+  version: 4.2.7.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-13 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,112 +16,112 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: actionpack
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: actionview
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: activerecord
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: actionmailer
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: activejob
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 

commit python-puppetboard for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package python-puppetboard for 
openSUSE:Factory checked in at 2016-08-25 09:53:45

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


Package is "python-puppetboard"

Changes:

--- /work/SRC/openSUSE:Factory/python-puppetboard/python-puppetboard.changes
2014-12-03 22:51:11.0 +0100
+++ 
/work/SRC/openSUSE:Factory/.python-puppetboard.new/python-puppetboard.changes   
2016-08-25 09:53:47.0 +0200
@@ -1,0 +2,38 @@
+Wed Aug 10 11:06:19 UTC 2016 - jeng...@inai.de
+
+- Ensure shadow utilities are present, and check for group/user
+  before creating them.
+
+---
+Sat Aug  6 19:05:22 UTC 2016 - tampak...@opensuse.org
+
+- fix the perms of the tmp/ directory, so that uwsgi can actually create the
+  socket inside there
+- remove needless dep
+
+---
+Sat Aug  6 09:53:18 UTC 2016 - tampak...@opensuse.org
+
+- create -uwsgi subpackage with appropriate config and unit service file
+
+---
+Sat Jul 30 09:23:55 UTC 2016 - tampak...@opensuse.org
+
+- Version bump 0.0.5:
+  - Replacing chart.js with c3.js and d3.js
+  - Implemented Semantic UI 0.16.1
+  - Adding an OFFLINE_MODE to download assets from a CDN or the PuppetBoard
+server
+  - Allowing Catalog viewing from the Nodes page if new configuration option
+ENABLE_CATALOG is enabled (Disabled by default)
+  - Adding an Inventory page to give a high-level overview of the managed nodes
+through a configurable list of facts
+  - This will be the final release of the 0.0.x series
+- Fix homepage
+- Unhardcode the paths in the configs
+- Change wsgi dir to /srv/www/vhosts/puppetboard
+- Create puppetboard user and run the apache wsgi process with that user
+- Install the wsgi/settings configs in the main package
+- Rename the wsgi subpackage to apache, and install only the apache config
+
+---

Old:

  puppetboard-0.0.4.tar.gz

New:

  puppetboard-0.0.5.tar.gz
  puppetboard-uwsgi.service
  uwsgi.ini



Other differences:
--
++ python-puppetboard.spec ++
--- /var/tmp/diff_new_pack.0LvQDZ/_old  2016-08-25 09:53:48.0 +0200
+++ /var/tmp/diff_new_pack.0LvQDZ/_new  2016-08-25 09:53:48.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package python-puppetboard
 #
-# 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
@@ -15,66 +15,75 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 %define pyname  puppetboard
-%define wsgi_dir/var/lib/%{pyname}
+%define wsgi_dir/srv/www/vhosts/%{pyname}
 %define apache_confd%{_sysconfdir}/apache2/conf.d
-
+%if 0%{?suse_version} && 0%{?suse_version} <= 1110
+%{!?python_sitelib: %global python_sitelib %(python -c "from 
distutils.sysconfig import get_python_lib; print get_python_lib()")}
+%else
+BuildArch:  noarch
+%endif
 Name:   python-puppetboard
-Version:0.0.4
+Version:0.0.5
 Release:0
-Url:https://github.com/nedap/puppetboard
 Summary:Web frontend for PuppetDB
 License:Apache-2.0
 Group:  Development/Languages/Python
+Url:https://github.com/voxpupuli/puppetboard
 Source: 
https://pypi.python.org/packages/source/p/%{pyname}/%{pyname}-%{version}.tar.gz
 Source1:wsgi.py
 Source2:apache2-wsgi.conf
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  python-devel
+Source3:uwsgi.ini
+Source4:%{pyname}-uwsgi.service
+BuildRequires:  apache2
 BuildRequires:  fdupes
-BuildRequires:  python-setuptools
 BuildRequires:  python-Flask
 BuildRequires:  python-Flask-WTF
-BuildRequires:  python-jinja2
 BuildRequires:  python-MarkupSafe
 BuildRequires:  python-WTForms
-BuildRequires:  python-werkzeug
+BuildRequires:  python-devel
 BuildRequires:  python-itsdangerous
+BuildRequires:  python-jinja2
 BuildRequires:  python-pypuppetdb
 BuildRequires:  python-requests
-BuildRequires:  apache2
+BuildRequires:  python-setuptools
+BuildRequires:  python-werkzeug
+BuildRequires:  pkgconfig(systemd)
 Requires:   python-Flask
 Requires:   python-Flask-WTF
-Requires:   python-jinja2
 Requires:   python-MarkupSafe
 Requires:   

commit rubygem-railties-4_2 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-railties-4_2 for 
openSUSE:Factory checked in at 2016-08-25 09:53:49

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


Package is "rubygem-railties-4_2"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-railties-4_2/rubygem-railties-4_2.changes
2016-07-20 09:25:11.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-railties-4_2.new/rubygem-railties-4_2.changes
   2016-08-25 09:53:51.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:48:39 UTC 2016 - co...@suse.com
+
+- updated to version 4.2.7.1
+ see installed CHANGELOG.md
+
+---

Old:

  railties-4.2.7.gem

New:

  railties-4.2.7.1.gem



Other differences:
--
++ rubygem-railties-4_2.spec ++
--- /var/tmp/diff_new_pack.qAKcuU/_old  2016-08-25 09:53:52.0 +0200
+++ /var/tmp/diff_new_pack.qAKcuU/_new  2016-08-25 09:53:52.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-railties-4_2
-Version:4.2.7
+Version:4.2.7.1
 Release:0
 %define mod_name railties
 %define mod_full_name %{mod_name}-%{version}

++ railties-4.2.7.gem -> railties-4.2.7.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/gem_version.rb new/lib/rails/gem_version.rb
--- old/lib/rails/gem_version.rb2016-07-13 04:53:44.0 +0200
+++ new/lib/rails/gem_version.rb2016-08-11 00:25:30.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 4
 MINOR = 2
 TINY  = 7
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-07-13 04:53:44.0 +0200
+++ new/metadata2016-08-11 00:25:30.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: railties
 version: !ruby/object:Gem::Version
-  version: 4.2.7
+  version: 4.2.7.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-07-13 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,28 +16,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: actionpack
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 - !ruby/object:Gem::Dependency
   name: rake
   requirement: !ruby/object:Gem::Requirement
@@ -78,14 +78,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 4.2.7
+version: 4.2.7.1
 description: 'Rails internals: application bootup, plugins, generators, and 
rake tasks.'
 email: da...@loudthinking.com
 executables:
@@ -357,8 +357,9 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.4.5.1
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Tools for creating, working with, and running Rails applications.
 test_files: []
+has_rdoc: 




commit rubygem-rails-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-rails-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:53:52

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


Package is "rubygem-rails-5_0"

Changes:

--- /work/SRC/openSUSE:Factory/rubygem-rails-5_0/rubygem-rails-5_0.changes  
2016-08-05 18:16:31.0 +0200
+++ /work/SRC/openSUSE:Factory/.rubygem-rails-5_0.new/rubygem-rails-5_0.changes 
2016-08-25 09:53:57.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:47:50 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+  no changelog found
+
+---

Old:

  rails-5.0.0.gem

New:

  rails-5.0.0.1.gem



Other differences:
--
++ rubygem-rails-5_0.spec ++
--- /var/tmp/diff_new_pack.6kRalf/_old  2016-08-25 09:53:58.0 +0200
+++ /var/tmp/diff_new_pack.6kRalf/_new  2016-08-25 09:53:58.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-rails-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name rails
 %define mod_full_name %{mod_name}-%{version}

++ rails-5.0.0.gem -> rails-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:31:47.0 +0200
+++ new/metadata2016-08-11 00:37:51.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: rails
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: bin
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,126 +16,126 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: actionpack
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: actionview
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: activemodel
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: activerecord
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: actionmailer
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: activejob
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - 

commit rubygem-railties-5_0 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package rubygem-railties-5_0 for 
openSUSE:Factory checked in at 2016-08-25 09:53:47

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


Package is "rubygem-railties-5_0"

Changes:

--- 
/work/SRC/openSUSE:Factory/rubygem-railties-5_0/rubygem-railties-5_0.changes
2016-07-21 07:56:40.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.rubygem-railties-5_0.new/rubygem-railties-5_0.changes
   2016-08-25 09:53:49.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 12 04:49:00 UTC 2016 - co...@suse.com
+
+- updated to version 5.0.0.1
+ see installed CHANGELOG.md
+
+---

Old:

  railties-5.0.0.gem

New:

  railties-5.0.0.1.gem



Other differences:
--
++ rubygem-railties-5_0.spec ++
--- /var/tmp/diff_new_pack.gUvBVv/_old  2016-08-25 09:53:50.0 +0200
+++ /var/tmp/diff_new_pack.gUvBVv/_new  2016-08-25 09:53:50.0 +0200
@@ -24,7 +24,7 @@
 #
 
 Name:   rubygem-railties-5_0
-Version:5.0.0
+Version:5.0.0.1
 Release:0
 %define mod_name railties
 %define mod_full_name %{mod_name}-%{version}

++ railties-5.0.0.gem -> railties-5.0.0.1.gem ++
Files old/checksums.yaml.gz and new/checksums.yaml.gz differ
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/lib/rails/gem_version.rb new/lib/rails/gem_version.rb
--- old/lib/rails/gem_version.rb2016-06-30 23:31:41.0 +0200
+++ new/lib/rails/gem_version.rb2016-08-11 00:37:50.0 +0200
@@ -8,7 +8,7 @@
 MAJOR = 5
 MINOR = 0
 TINY  = 0
-PRE   = nil
+PRE   = "1"
 
 STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
   end
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/metadata new/metadata
--- old/metadata2016-06-30 23:31:41.0 +0200
+++ new/metadata2016-08-11 00:37:50.0 +0200
@@ -1,14 +1,14 @@
 --- !ruby/object:Gem::Specification
 name: railties
 version: !ruby/object:Gem::Version
-  version: 5.0.0
+  version: 5.0.0.1
 platform: ruby
 authors:
 - David Heinemeier Hansson
 autorequire: 
 bindir: exe
 cert_chain: []
-date: 2016-06-30 00:00:00.0 Z
+date: 2016-08-10 00:00:00.0 Z
 dependencies:
 - !ruby/object:Gem::Dependency
   name: activesupport
@@ -16,28 +16,28 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: actionpack
   requirement: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :runtime
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 - !ruby/object:Gem::Dependency
   name: rake
   requirement: !ruby/object:Gem::Requirement
@@ -92,14 +92,14 @@
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
   type: :development
   prerelease: false
   version_requirements: !ruby/object:Gem::Requirement
 requirements:
 - - '='
   - !ruby/object:Gem::Version
-version: 5.0.0
+version: 5.0.0.1
 description: 'Rails internals: application bootup, plugins, generators, and 
rake tasks.'
 email: da...@loudthinking.com
 executables:
@@ -402,8 +402,9 @@
   version: '0'
 requirements: []
 rubyforge_project: 
-rubygems_version: 2.6.4
+rubygems_version: 2.6.6
 signing_key: 
 specification_version: 4
 summary: Tools for creating, working with, and running Rails applications.
 test_files: []
+has_rdoc: 




commit python3-GeoIP for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package python3-GeoIP for openSUSE:Factory 
checked in at 2016-08-25 09:53:39

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


Package is "python3-GeoIP"

Changes:

New Changes file:

--- /dev/null   2016-07-07 10:01:34.856033756 +0200
+++ /work/SRC/openSUSE:Factory/.python3-GeoIP.new/python3-GeoIP.changes 
2016-08-25 09:53:40.0 +0200
@@ -0,0 +1,73 @@
+---
+Wed Jul 20 18:35:12 UTC 2016 - sor.ale...@meowr.ru
+
+- Update to version 1.3.2 (changes since 1.2.1):
+  * Python 3 support and significant code cleanup.
+  * Update test_city.py and test_region.py.
+  * Add region_name to GeoIPRegion.
+  * Add database_info and database_edition attributes to GeoIP
+object.
+  * Add region_name and time_zone keys to GeoIPRecord wrapper.
+  * Export the country list, country code -> country name mapping,
+and country->continent mapping.
+  * Raise country code counter from 251 to 253.
+  * record_by_addr and record_by_name return None instead of
+throwing a exception. See test_city.py.
+  * Add a py_geoip.error Exception object.
+  * Export the country list, country code -> country name mapping,
+and country->continent mapping.
+  * Update test.py - replace www.government.de with www.bundestag.de.
+  * Add range_by_ip - returns largest start and stop ip for any ip.
+Remember to use a IP not a name.
+  * Add range_by_ip example.
+  * Add metro_code as a alias for the depreciated dma_code.
+  * Add charset and set_charset methods, as well as the new
+attributes GeoIP.GEOIP_CHARSET_ISO_8859_1 and
+GeoIP.GEOIP_CHARSET_UTF8.
+  * Add test_city_charset.py script showing howto use charset and
+set_charset.
+  * Add last_netmask.
+  * Fix compile warnings.
+  * Fix small memoryleak in database_info, org_by_name and
+org_by_addr.
+  * Remove dma_code from test_city.py example.
+  * Remove Confidence and Accuracy Database, it is unused anyway.
+  * Add new methods enable_teredo, teredo,
+time_zone_by_country_and_region and lib_version.
+  * Add support for Confidence and Accuracy Database.
+  * Add support for Netspeed Database. via: id_by_addr id_by_name.
+  * Add IPv6 glue (needs libGeoIP 1.4.7):
++ country_code_by_name_v6;
++ country_name_by_name_v6;
++ country_code_by_addr_v6;
++ country_name_by_addr_v6.
+  * Add new methods record_by_name_v6 and record_by_addr_v6 to
+support GeoIPCityv6 databases.
+  * Fix low memory error handling and refcount issues on error.
+  * Add example test_netspeedcell.py.
+  * The methods name_by_addr, name_by_addr_v6, name_by_name, and
+name_by_name_v6 were added for ISP, Org, and ASNum lookups.
+  * Portability fixes.
+  * Expose GEOIP_MMAP_CACHE from the C library.
+  * Unit tests were added.
+  * The description for org_by_name incorrectly directed people to
+use name_by_addr rather than name_by_name.
+  * Previously GeoIP.country_names was populated from
+GeoIP_country_name in the libGeoIP C API. Some versions of the
+libGeoIP include non-ASCII ISO-8859-1 characters in these names,
+causing encoding errors under Python
+  * Changed licence to LGPLv2+ from GPLv2+.
+- Target Python3.
+- Correct RPM group: Development/Languages/Python.
+- Package examples instead of tests.
+- Spec cleanup.
+
+---
+Sun Jan 28 21:24:30 UTC 2007 - judas_iscari...@shorewall.net
+
+- now GeoIP-devel is needed.
+
+---
+Thu Dec  7 16:12:32 UTC 2006 - po...@cmdline.net
+
+- import 1.2.1 from FC6 extra

New:

  GeoIP-1.3.2.tar.gz
  python3-GeoIP.changes
  python3-GeoIP.spec



Other differences:
--
++ python3-GeoIP.spec ++
#
# spec file for package python3-GeoIP
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

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


%define _name   GeoIP
Name:   python3-GeoIP
Version:1.3.2
Release:0
Summary:Python bindings for the GeoIP 

commit php5 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package php5 for openSUSE:Factory checked in 
at 2016-08-25 09:52:57

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


Package is "php5"

Changes:

--- /work/SRC/openSUSE:Factory/php5/php5.changes2016-08-05 
18:13:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.php5.new/php5.changes   2016-08-25 
09:52:58.0 +0200
@@ -1,0 +2,6 @@
+Mon Aug 22 08:22:29 UTC 2016 - pgaj...@suse.com
+
+- updated to 5.6.25: Several security bugs were fixed in this 
+  release.
+
+---

Old:

  php-5.6.24.tar.xz
  php-5.6.24.tar.xz.asc

New:

  php-5.6.25.tar.xz
  php-5.6.25.tar.xz.asc



Other differences:
--
++ php5.spec ++
--- /var/tmp/diff_new_pack.76doBO/_old  2016-08-25 09:53:00.0 +0200
+++ /var/tmp/diff_new_pack.76doBO/_new  2016-08-25 09:53:00.0 +0200
@@ -46,7 +46,7 @@
 %define need_libxml2_hack %(if [ -e %{_includedir}/libxml/parser.h ]; then if 
grep -q XML_PARSE_OLDSAX %{_includedir}/libxml/parser.h; then echo 1; else echo 
0; fi; else echo 0; fi)
 
 Name:   php5
-Version:5.6.24
+Version:5.6.25
 Release:0
 Summary:PHP5 Core Files
 License:PHP-3.01

++ php-5.6.24.tar.xz -> php-5.6.25.tar.xz ++
/work/SRC/openSUSE:Factory/php5/php-5.6.24.tar.xz 
/work/SRC/openSUSE:Factory/.php5.new/php-5.6.25.tar.xz differ: char 27, line 1





commit yast2-storage for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package yast2-storage for openSUSE:Factory 
checked in at 2016-08-25 09:52:50

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


Package is "yast2-storage"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-storage/yast2-storage.changes  
2016-08-18 10:20:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-storage.new/yast2-storage.changes 
2016-08-25 09:52:51.0 +0200
@@ -1,0 +2,6 @@
+Fri Aug 19 12:27:18 UTC 2016 - jsr...@suse.cz
+
+- added /var/lib/machines to the list of subvolumes (bsc#992573)
+- 3.1.101
+
+---

Old:

  yast2-storage-3.1.100.tar.bz2

New:

  yast2-storage-3.1.101.tar.bz2



Other differences:
--
++ yast2-storage.spec ++
--- /var/tmp/diff_new_pack.6Ngc1e/_old  2016-08-25 09:52:52.0 +0200
+++ /var/tmp/diff_new_pack.6Ngc1e/_new  2016-08-25 09:52:52.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-storage
-Version:3.1.100
+Version:3.1.101
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-storage-3.1.100.tar.bz2 -> yast2-storage-3.1.101.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.100/CONTRIBUTING.md 
new/yast2-storage-3.1.101/CONTRIBUTING.md
--- old/yast2-storage-3.1.100/CONTRIBUTING.md   2016-08-16 11:35:00.0 
+0200
+++ new/yast2-storage-3.1.101/CONTRIBUTING.md   2016-08-19 17:45:33.0 
+0200
@@ -3,7 +3,7 @@
 
 YaST is an open source project and as such it welcomes all kinds of
 contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and YaST maintainers.
+ensure the process is effective and pleasant both for you and the YaST 
maintainers.
 
 There are two main forms of contribution: reporting bugs and performing code
 changes.
@@ -17,13 +17,11 @@
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
-that every bug will be fixed, but we'll try.
-
 When creating a bug report, please follow our [bug reporting
 guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
 
+We can't guarantee that every bug will be fixed, but we'll try.
+
 Code Changes
 
 
@@ -44,15 +42,22 @@
  to the [Ruby style
  guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
 
-  4. Make sure your change didn't break anything by building the RPM package
+  4. Update the package version (in `packages/*.spec`, usually by
+ `rake version:bump`) and add a new entry to the `package/*.changes` file
+ (by `osc vc package`).  
+ For bigger changes or changes which need longer discussion it is advised 
to
+ add this as a separate last commit so it can be easily updated when 
another
+ change is merged in the meantime.
+
+  5. Make sure your change didn't break anything by building the RPM package
  (`rake osc:build`). The build process includes running the full testsuite.
 
-  5. Publish the branch and create a pull request.
+  6. Publish the branch and create a pull request.
 
-  6. YaST developers will review your change and possibly point out issues.
+  7. YaST developers will review your change and possibly point out issues.
  Adapt the code under their guidance until they are all resolved.
 
-  7. Finally, the pull request will get merged or rejected.
+  8. Finally, the pull request will get merged or rejected.
 
 See also [GitHub's guide on
 contributing](https://help.github.com/articles/fork-a-repo).
@@ -60,9 +65,6 @@
 If you want to do multiple unrelated changes, use separate branches and pull
 requests.
 
-Do not change the `VERSION` and `*.changes` files as this could lead to
-conflicts.
-
 ### Commits
 
 Each commit in the pull request should do only one thing, which is clearly
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-storage-3.1.100/package/yast2-storage.changes 
new/yast2-storage-3.1.101/package/yast2-storage.changes
--- old/yast2-storage-3.1.100/package/yast2-storage.changes 2016-08-16 
11:35:00.0 +0200
+++ new/yast2-storage-3.1.101/package/yast2-storage.changes 2016-08-19 
17:45:33.0 +0200
@@ -1,4 +1,10 @@
 ---
+Fri Aug 19 12:27:18 UTC 2016 - jsr...@suse.cz
+
+- added /var/lib/machines to the list of subvolumes 

commit yast2-network for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package yast2-network for openSUSE:Factory 
checked in at 2016-08-25 09:53:04

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


Package is "yast2-network"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-network/yast2-network.changes  
2016-08-22 10:48:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-network.new/yast2-network.changes 
2016-08-25 09:53:06.0 +0200
@@ -1,0 +2,7 @@
+Fri Aug 19 08:59:14 UTC 2016 - mfi...@suse.com
+
+- bnc#991382 
+  - init and store IFPLUGD_PRIORITY properly
+- 3.1.167
+
+---

Old:

  yast2-network-3.1.166.tar.bz2

New:

  yast2-network-3.1.167.tar.bz2



Other differences:
--
++ yast2-network.spec ++
--- /var/tmp/diff_new_pack.GMVRAW/_old  2016-08-25 09:53:07.0 +0200
+++ /var/tmp/diff_new_pack.GMVRAW/_new  2016-08-25 09:53:07.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.166
+Version:3.1.167
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ yast2-network-3.1.166.tar.bz2 -> yast2-network-3.1.167.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.166/package/yast2-network.changes 
new/yast2-network-3.1.167/package/yast2-network.changes
--- old/yast2-network-3.1.166/package/yast2-network.changes 2016-08-19 
16:48:53.0 +0200
+++ new/yast2-network-3.1.167/package/yast2-network.changes 2016-08-23 
09:35:26.0 +0200
@@ -1,4 +1,11 @@
 ---
+Fri Aug 19 08:59:14 UTC 2016 - mfi...@suse.com
+
+- bnc#991382 
+  - init and store IFPLUGD_PRIORITY properly
+- 3.1.167
+
+---
 Thu Aug 18 08:52:41 UTC 2016 - mfi...@suse.com
 
 - bnc#991486
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-network-3.1.166/package/yast2-network.spec 
new/yast2-network-3.1.167/package/yast2-network.spec
--- old/yast2-network-3.1.166/package/yast2-network.spec2016-08-19 
16:48:53.0 +0200
+++ new/yast2-network-3.1.167/package/yast2-network.spec2016-08-23 
09:35:26.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-network
-Version:3.1.166
+Version:3.1.167
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-network-3.1.166/src/include/network/lan/address.rb 
new/yast2-network-3.1.167/src/include/network/lan/address.rb
--- old/yast2-network-3.1.166/src/include/network/lan/address.rb
2016-08-19 16:48:53.0 +0200
+++ new/yast2-network-3.1.167/src/include/network/lan/address.rb
2016-08-23 09:35:26.0 +0200
@@ -1174,12 +1174,18 @@
   UI.ChangeWidget(
 Id("IFPLUGD_PRIORITY"),
 :Value,
-Builtins.tointeger(Ops.get_string(@settings, "IFPLUGD_PRIORITY", "0"))
+@settings["IFPLUGD_PRIORITY"].to_i
   )
 
   nil
 end
 
+# Stores content of IFPLUGD_PRIORITY widget into internal variables
+def store_ifplugd_priority(_key, _event)
+  ifp_prio = UI.QueryWidget(Id("IFPLUGD_PRIORITY"), :Value).to_s
+  LanItems.ifplugd_priority = ifp_prio if !ifp_prio.empty?
+end
+
 def general_tab
   type = LanItems.GetCurrentType
 
@@ -1408,7 +1414,8 @@
  " then we need a way to decide which interface to 
take up. Therefore we have to\n" \
  " set the priority of each interface.  \n"
  ),
-"init"=> fun_ref(method(:initIfplugdPriority), "void (string)")
+"init"=> fun_ref(method(:initIfplugdPriority), "void (string)"),
+"store"   => fun_ref(method(:store_ifplugd_priority), "void (string, 
map)")
   )
 
   Ops.set(wd, ["IFCFGTYPE", "items"], 
BuildTypesListCWM(NetworkInterfaces.GetDeviceTypes))
@@ -1504,12 +1511,6 @@
 ifcfgname = Ops.get_string(LanItems.getCurrentItem, "ifcfg", "")
 # general tab
 LanItems.startmode = Ops.get_string(@settings, "STARTMODE", "")
-if LanItems.startmode == "ifplugd"
-  ifp_prio = Builtins.tostring(
-UI.QueryWidget(Id("IFPLUGD_PRIORITY"), :Value)
-  )
-  LanItems.ifplugd_priority = ifp_prio if !ifp_prio.nil?
-end
 
 if SuSEFirewall4Network.IsInstalled
   zone = Ops.get_string(@settings, "FWZONE", "")




commit kernel-source for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package kernel-source for openSUSE:Factory 
checked in at 2016-08-25 09:53:19

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


Package is "kernel-source"

Changes:

--- /work/SRC/openSUSE:Factory/kernel-source/kernel-debug.changes   
2016-08-20 12:26:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.kernel-source.new/kernel-debug.changes  
2016-08-25 09:53:22.0 +0200
@@ -1,0 +2,7 @@
+Sun Aug 21 10:59:11 CEST 2016 - jsl...@suse.cz
+
+- Linux 4.7.2.
+- Refresh patches.fixes/block-copy-bi_vcnt-in-_bio_clone_fast.
+- commit 34ba8d6
+
+---
kernel-default.changes: same change
kernel-docs.changes: same change
kernel-lpae.changes: same change
kernel-obs-build.changes: same change
kernel-obs-qa.changes: same change
kernel-pae.changes: same change
kernel-source.changes: same change
kernel-syms.changes: same change
kernel-vanilla.changes: same change



Other differences:
--
++ kernel-debug.spec ++
--- /var/tmp/diff_new_pack.vSbhlf/_old  2016-08-25 09:53:26.0 +0200
+++ /var/tmp/diff_new_pack.vSbhlf/_new  2016-08-25 09:53:26.0 +0200
@@ -20,7 +20,7 @@
 # needssslcertforbuild
 
 %define srcversion 4.7
-%define patchversion 4.7.1
+%define patchversion 4.7.2
 %define variant %{nil}
 %define vanilla_only 0
 
@@ -61,9 +61,9 @@
 Summary:A Debug Version of the Kernel
 License:GPL-2.0
 Group:  System/Kernel
-Version:4.7.1
+Version:4.7.2
 %if 0%{?is_kotd}
-Release:.g61bf3f1
+Release:.g34ba8d6
 %else
 Release:0
 %endif

kernel-default.spec: same change
++ kernel-docs.spec ++
--- /var/tmp/diff_new_pack.vSbhlf/_old  2016-08-25 09:53:26.0 +0200
+++ /var/tmp/diff_new_pack.vSbhlf/_new  2016-08-25 09:53:26.0 +0200
@@ -16,7 +16,7 @@
 #
 
 
-%define patchversion 4.7.1
+%define patchversion 4.7.2
 %define variant %{nil}
 
 %include %_sourcedir/kernel-spec-macros
@@ -27,9 +27,9 @@
 Summary:Kernel Documentation (man pages)
 License:GPL-2.0
 Group:  Documentation/Man
-Version:4.7.1
+Version:4.7.2
 %if 0%{?is_kotd}
-Release:.g61bf3f1
+Release:.g34ba8d6
 %else
 Release:0
 %endif

++ kernel-lpae.spec ++
--- /var/tmp/diff_new_pack.vSbhlf/_old  2016-08-25 09:53:26.0 +0200
+++ /var/tmp/diff_new_pack.vSbhlf/_new  2016-08-25 09:53:26.0 +0200
@@ -20,7 +20,7 @@
 # needssslcertforbuild
 
 %define srcversion 4.7
-%define patchversion 4.7.1
+%define patchversion 4.7.2
 %define variant %{nil}
 %define vanilla_only 0
 
@@ -61,9 +61,9 @@
 Summary:Kernel for LPAE enabled systems
 License:GPL-2.0
 Group:  System/Kernel
-Version:4.7.1
+Version:4.7.2
 %if 0%{?is_kotd}
-Release:.g61bf3f1
+Release:.g34ba8d6
 %else
 Release:0
 %endif

++ kernel-obs-build.spec ++
--- /var/tmp/diff_new_pack.vSbhlf/_old  2016-08-25 09:53:26.0 +0200
+++ /var/tmp/diff_new_pack.vSbhlf/_new  2016-08-25 09:53:26.0 +0200
@@ -19,7 +19,7 @@
 
 #!BuildIgnore: post-build-checks
 
-%define patchversion 4.7.1
+%define patchversion 4.7.2
 %define variant %{nil}
 
 %include %_sourcedir/kernel-spec-macros
@@ -51,9 +51,9 @@
 Summary:package kernel and initrd for OBS VM builds
 License:GPL-2.0
 Group:  SLES
-Version:4.7.1
+Version:4.7.2
 %if 0%{?is_kotd}
-Release:.g61bf3f1
+Release:.g34ba8d6
 %else
 Release:0
 %endif

++ kernel-obs-qa.spec ++
--- /var/tmp/diff_new_pack.vSbhlf/_old  2016-08-25 09:53:26.0 +0200
+++ /var/tmp/diff_new_pack.vSbhlf/_new  2016-08-25 09:53:26.0 +0200
@@ -17,7 +17,7 @@
 # needsrootforbuild
 
 
-%define patchversion 4.7.1
+%define patchversion 4.7.2
 %define variant %{nil}
 
 %include %_sourcedir/kernel-spec-macros
@@ -36,9 +36,9 @@
 Summary:Basic QA tests for the kernel
 License:GPL-2.0
 Group:  SLES
-Version:4.7.1
+Version:4.7.2
 %if 0%{?is_kotd}
-Release:.g61bf3f1
+Release:.g34ba8d6
 %else
 Release:0
 %endif

++ kernel-pae.spec ++
--- /var/tmp/diff_new_pack.vSbhlf/_old  2016-08-25 09:53:26.0 +0200
+++ /var/tmp/diff_new_pack.vSbhlf/_new  2016-08-25 09:53:26.0 +0200
@@ -20,7 +20,7 @@
 # needssslcertforbuild
 
 %define srcversion 4.7
-%define patchversion 4.7.1
+%define patchversion 4.7.2
 %define variant %{nil}
 %define vanilla_only 0
 
@@ -61,9 +61,9 @@
 Summary:Kernel with PAE Support
 License:GPL-2.0
 Group:  System/Kernel
-Version:4.7.1
+Version:

commit yast2-country for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package yast2-country for openSUSE:Factory 
checked in at 2016-08-25 09:52:41

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


Package is "yast2-country"

Changes:

--- /work/SRC/openSUSE:Factory/yast2-country/yast2-country.changes  
2016-08-18 10:18:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.yast2-country.new/yast2-country.changes 
2016-08-25 09:52:44.0 +0200
@@ -1,0 +2,7 @@
+Fri Aug 19 14:47:20 CEST 2016 - loci...@suse.com
+
+- Fixed downloading language extensions in the installation
+  (bsc#994577)
+- 3.1.30
+
+---

Old:

  yast2-country-3.1.29.tar.bz2

New:

  yast2-country-3.1.30.tar.bz2



Other differences:
--
++ yast2-country.spec ++
--- /var/tmp/diff_new_pack.B1fH5z/_old  2016-08-25 09:52:45.0 +0200
+++ /var/tmp/diff_new_pack.B1fH5z/_new  2016-08-25 09:52:45.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   yast2-country
-Version:3.1.29
+Version:3.1.30
 Release:0
 
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build



++ yast2-country-3.1.29.tar.bz2 -> yast2-country-3.1.30.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/yast2-country-3.1.29/CONTRIBUTING.md 
new/yast2-country-3.1.30/CONTRIBUTING.md
--- old/yast2-country-3.1.29/CONTRIBUTING.md2016-08-10 16:53:54.0 
+0200
+++ new/yast2-country-3.1.30/CONTRIBUTING.md2016-08-19 15:55:17.0 
+0200
@@ -3,7 +3,7 @@
 
 YaST is an open source project and as such it welcomes all kinds of
 contributions. If you decide to contribute, please follow these guidelines to
-ensure the process is effective and pleasant both for you and YaST maintainers.
+ensure the process is effective and pleasant both for you and the YaST 
maintainers.
 
 There are two main forms of contribution: reporting bugs and performing code
 changes.
@@ -17,13 +17,11 @@
 
registration](https://secure-www.novell.com/selfreg/jsp/createSimpleAccount.jsp)
 if you don't have an account yet.)
 
-If you find a problem, please report it either using
-[Bugzilla](https://bugzilla.suse.com/) or GitHub issues. We can't guarantee
-that every bug will be fixed, but we'll try.
-
 When creating a bug report, please follow our [bug reporting
 guidelines](http://en.opensuse.org/openSUSE:Report_a_YaST_bug).
 
+We can't guarantee that every bug will be fixed, but we'll try.
+
 Code Changes
 
 
@@ -44,15 +42,22 @@
  to the [Ruby style
  guide](https://github.com/SUSE/style-guides/blob/master/Ruby.md).
 
-  4. Make sure your change didn't break anything by building the RPM package
+  4. Update the package version (in `packages/*.spec`, usually by
+ `rake version:bump`) and add a new entry to the `package/*.changes` file
+ (by `osc vc package`).  
+ For bigger changes or changes which need longer discussion it is advised 
to
+ add this as a separate last commit so it can be easily updated when 
another
+ change is merged in the meantime.
+
+  5. Make sure your change didn't break anything by building the RPM package
  (`rake osc:build`). The build process includes running the full testsuite.
 
-  5. Publish the branch and create a pull request.
+  6. Publish the branch and create a pull request.
 
-  6. YaST developers will review your change and possibly point out issues.
+  7. YaST developers will review your change and possibly point out issues.
  Adapt the code under their guidance until they are all resolved.
 
-  7. Finally, the pull request will get merged or rejected.
+  8. Finally, the pull request will get merged or rejected.
 
 See also [GitHub's guide on
 contributing](https://help.github.com/articles/fork-a-repo).
@@ -60,9 +65,6 @@
 If you want to do multiple unrelated changes, use separate branches and pull
 requests.
 
-Do not change the `VERSION` and `*.changes` files as this could lead to
-conflicts.
-
 ### Commits
 
 Each commit in the pull request should do only one thing, which is clearly
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/yast2-country-3.1.29/language/src/modules/Language.rb 
new/yast2-country-3.1.30/language/src/modules/Language.rb
--- old/yast2-country-3.1.29/language/src/modules/Language.rb   2016-08-10 
16:53:54.0 +0200
+++ new/yast2-country-3.1.30/language/src/modules/Language.rb   2016-08-19 
15:55:17.0 +0200
@@ -464,7 +464,7 @@
 lang = correct_language(lang)
 
 if Stage.initial && !Mode.test && !Mode.live_installation
-  

commit efibootmgr for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

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

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


Package is "efibootmgr"

Changes:

--- /work/SRC/openSUSE:Factory/efibootmgr/efibootmgr.changes2016-07-20 
09:16:42.0 +0200
+++ /work/SRC/openSUSE:Factory/.efibootmgr.new/efibootmgr.changes   
2016-08-25 09:52:18.0 +0200
@@ -1,0 +2,6 @@
+Sat Aug 20 16:17:42 UTC 2016 - arvidj...@gmail.com
+
+- add efibootmgr-fix-usage-of-efi_loadopt_path-again.patch - fix
+  efibootmgr -v with new efivar (boo#993458)
+
+---

New:

  efibootmgr-fix-usage-of-efi_loadopt_path-again.patch



Other differences:
--
++ efibootmgr.spec ++
--- /var/tmp/diff_new_pack.XyZxPB/_old  2016-08-25 09:52:19.0 +0200
+++ /var/tmp/diff_new_pack.XyZxPB/_new  2016-08-25 09:52:19.0 +0200
@@ -27,6 +27,7 @@
 Patch1: %{name}-derhat.diff
 Patch2: %{name}-check-boot-order.diff
 Patch3: %{name}-fix-efivar-0.24.patch
+Patch4: %{name}-fix-usage-of-efi_loadopt_path-again.patch
 BuildRequires:  efivar-devel
 BuildRequires:  pciutils-devel
 BuildRequires:  pkg-config
@@ -45,6 +46,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 
 %build
 LOADER="grub.efi"  # default loader

++ efibootmgr-fix-usage-of-efi_loadopt_path-again.patch ++
>From f5e09ec26bd03490903330f121b18b8aaa56cf85 Mon Sep 17 00:00:00 2001
From: Peter Jones 
Date: Tue, 24 May 2016 11:33:20 -0400
Subject: [PATCH] efibootmgr: fix usage of efi_loadopt_path() /again/.

Signed-off-by: Peter Jones 
---
 src/efibootmgr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/efibootmgr.c b/src/efibootmgr.c
index baefa68..199eb28 100644
--- a/src/efibootmgr/efibootmgr.c
+++ b/src/efibootmgr/efibootmgr.c
@@ -848,7 +848,7 @@ show_boot_vars()
 
pathlen = efi_loadopt_pathlen(load_option,
  boot->data_size);
-   dp = efi_loadopt_path(load_option, pathlen);
+   dp = efi_loadopt_path(load_option, boot->data_size);
rc = efidp_format_device_path(text_path, text_path_len,
  dp, pathlen);
if (rc < 0)
-- 
1.9.1




commit libgtop for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package libgtop for openSUSE:Factory checked 
in at 2016-08-25 09:52:25

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


Package is "libgtop"

Changes:

--- /work/SRC/openSUSE:Factory/libgtop/libgtop.changes  2016-03-29 
14:43:48.0 +0200
+++ /work/SRC/openSUSE:Factory/.libgtop.new/libgtop.changes 2016-08-25 
09:52:27.0 +0200
@@ -1,0 +2,20 @@
+Sat Aug 20 14:17:09 UTC 2016 - zai...@opensuse.org
+
+- Update to version 2.34.1:
+  + Rename --with-libgtop-examples to --with-examples.
+  + Use gettext instead of intltool/glib-gettext.
+  + Added Language headers to the translations.
+- Drop intltool BuildRequires following upstream changes.
+- Remove obsolete clean section, and conditionals for long gone
+  versions of openSUSE.
+- Make translation-update-upstream conditional, only apply on
+  non-openSUSE.
+
+---
+Fri Apr 15 02:12:01 UTC 2016 - mgo...@suse.com
+
+- Update to GNOME 3.20  Fate#318572
+- Drop extending-max-cpu-number.patch: fixed upstream.
+  (bnc#885202).
+
+---
@@ -111,0 +132,7 @@
+Thu Jul  3 02:24:57 UTC 2014 - mgo...@suse.com
+
+- Add extending-max-cpu-number.patch: support more than 32 CPUs
+  (bnc#885202).
+- Adjust package name, since the patch introduces an ABI break.
+
+---

Old:

  libgtop-2.34.0.tar.xz

New:

  libgtop-2.34.1.tar.xz



Other differences:
--
++ libgtop.spec ++
--- /var/tmp/diff_new_pack.adObD0/_old  2016-08-25 09:52:28.0 +0200
+++ /var/tmp/diff_new_pack.adObD0/_new  2016-08-25 09:52:28.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   libgtop
-Version:2.34.0
+Version:2.34.1
 Release:0
 %define soname 10
 Summary:LibGTop Library
@@ -28,8 +28,9 @@
 BuildRequires:  fdupes
 BuildRequires:  glib2-devel
 BuildRequires:  gobject-introspection-devel
-BuildRequires:  intltool
+%if !0%{?is_opensuse}
 BuildRequires:  translation-update-upstream
+%endif
 BuildRequires:  pkgconfig(gobject-2.0) >= 2.26.0
 BuildRequires:  pkgconfig(xau)
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -110,8 +111,10 @@
 %lang_package
 %prep
 %setup -q
+%if !0%{?is_opensuse}
 translation-update-upstream
 # rpmlint note: libgtop has a separate translation for both Bengali and 
Bengali India
+%endif
 
 %build
 %configure\
@@ -120,17 +123,8 @@
 
 %install
 %makeinstall
-%if 0%{?suse_version} <= 1110
-%{__rm} %{buildroot}%{_datadir}/locale/la/LC_MESSAGES/*
-%endif
-%if 0%{?suse_version} <= 1120
-%{__rm} %{buildroot}%{_datadir}/locale/en@shaw/LC_MESSAGES/*
-%endif
 find %{buildroot}%{_libdir} -name '*.la' -type f -delete -print
-%find_lang %{name}-2.0
-
-%clean
-rm -rf $RPM_BUILD_ROOT
+%find_lang %{name} %{?no_lang_C}
 
 %post -n libgtop-2_0-%{soname} -p /sbin/ldconfig
 
@@ -142,7 +136,7 @@
 %post doc
 %install_info --info-dir=%{_datadir}/info %{_datadir}/info/%{name}2.info.gz
 
-%files lang -f %{name}-2.0.lang
+%files lang -f %{name}.lang
 
 %files -n libgtop-2_0-%{soname}
 %defattr(-, root, root)

++ libgtop-2.34.0.tar.xz -> libgtop-2.34.1.tar.xz ++
 17133 lines of diff (skipped)




commit dconf for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package dconf for openSUSE:Factory checked 
in at 2016-08-25 09:51:34

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


Package is "dconf"

Changes:

--- /work/SRC/openSUSE:Factory/dconf/dconf.changes  2016-08-17 
12:01:56.0 +0200
+++ /work/SRC/openSUSE:Factory/.dconf.new/dconf.changes 2016-08-25 
09:51:35.0 +0200
@@ -1,0 +2,9 @@
+Fri Aug 19 18:10:24 UTC 2016 - fezh...@suse.com
+
+- Add 0001-gvdb-Restore-permissions-on-changed-files.patch:
+  'dconf update' writes new contents into temporary file and
+  renames it to the original one, resulting permission
+  inconsistencies if umask has been changed before that. The patch
+  restores the changed permissions (bsc#971074, bgo#758066).
+
+---

New:

  0001-gvdb-Restore-permissions-on-changed-files.patch



Other differences:
--
++ dconf.spec ++
--- /var/tmp/diff_new_pack.SfACrw/_old  2016-08-25 09:51:36.0 +0200
+++ /var/tmp/diff_new_pack.SfACrw/_new  2016-08-25 09:51:36.0 +0200
@@ -25,6 +25,8 @@
 Url:http://live.gnome.org/dconf
 Source: 
http://download.gnome.org/sources/dconf/0.26/%{name}-%{version}.tar.xz
 Source99:   baselibs.conf
+# PATCH-FIX-UPSTREAM 0001-gvdb-Restore-permissions-on-changed-files.patch 
bsc#971074 bgo#758066 fezh...@suse.com -- Restore permissions on files changed 
by dconf update.
+Patch0: 0001-gvdb-Restore-permissions-on-changed-files.patch
 # For directory ownership
 BuildRequires:  dbus-1
 BuildRequires:  docbook-xsl-stylesheets
@@ -91,6 +93,7 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %if 0%{?BUILD_FROM_VCS}
 [ -x ./autogen.sh ] && NOCONFIGURE=1 ./autogen.sh

++ 0001-gvdb-Restore-permissions-on-changed-files.patch ++
>From 4e303b094dc2b6c53739fb65f0e6e9f508a8f99c Mon Sep 17 00:00:00 2001
From: Marek Kasik 
Date: Fri, 13 Nov 2015 17:22:31 +0100
Subject: [PATCH] gvdb: Restore permissions on changed files

Restore permissions of files changed in gvdb_table_write_contents().
Since g_file_set_contents() doesn't preserve permissions it can happen
that if user calling e.g. "dconf update" has umask set then
the originally readable file becomes unreadable.
---
 gvdb/gvdb-builder.c | 8 
 1 file changed, 8 insertions(+)

diff --git a/gvdb/gvdb-builder.c b/gvdb/gvdb-builder.c
index 90ea50b..a185cb3 100644
--- a/gvdb/gvdb-builder.c
+++ b/gvdb/gvdb-builder.c
@@ -21,6 +21,7 @@
 #include "gvdb-format.h"
 
 #include 
+#include 
 #include 
 #if !defined(G_OS_WIN32) || !defined(_MSC_VER)
 #include 
@@ -509,13 +510,20 @@ gvdb_table_write_contents (GHashTable   *table,
   gboolean status;
   FileBuilder *fb;
   GString *str;
+  GStatBuf buf;
+  gint stat_ret;
 
   fb = file_builder_new (byteswap);
   file_builder_add_hash (fb, table, );
   str = file_builder_serialise (fb, root);
 
+  stat_ret = g_stat (filename, );
+
   status = g_file_set_contents (filename, str->str, str->len, error);
   g_string_free (str, TRUE);
 
+  if (stat_ret == 0)
+g_chmod (filename, buf.st_mode);
+
   return status;
 }
-- 
2.5.0




commit libtasn1 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package libtasn1 for openSUSE:Factory 
checked in at 2016-08-25 09:51:41

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


Package is "libtasn1"

Changes:

--- /work/SRC/openSUSE:Factory/libtasn1/libtasn1.changes2016-06-13 
21:52:45.0 +0200
+++ /work/SRC/openSUSE:Factory/.libtasn1.new/libtasn1.changes   2016-08-25 
09:51:43.0 +0200
@@ -1,0 +2,8 @@
+Wed Aug 10 18:57:51 UTC 2016 - astie...@suse.com
+
+- update to 4.9:
+  * Fix OID encoding of OIDs which have elements which exceed 2^32
+- Do not treat i586 warning as error, adding upstream
+  0001-configure-don-t-add-Werror-to-build-flags.patch
+
+---

Old:

  libtasn1-4.8.tar.gz
  libtasn1-4.8.tar.gz.sig

New:

  0001-configure-don-t-add-Werror-to-build-flags.patch
  libtasn1-4.9.tar.gz
  libtasn1-4.9.tar.gz.sig



Other differences:
--
++ libtasn1.spec ++
--- /var/tmp/diff_new_pack.tEohNu/_old  2016-08-25 09:51:44.0 +0200
+++ /var/tmp/diff_new_pack.tEohNu/_new  2016-08-25 09:51:44.0 +0200
@@ -18,7 +18,7 @@
 
 %define somajor 6
 Name:   libtasn1
-Version:4.8
+Version:4.9
 Release:0
 Summary:ASN.1 parsing library
 License:LGPL-2.1+ and GPL-3.0
@@ -29,8 +29,15 @@
 # http://josefsson.org/key.txt
 Source2:%{name}.keyring
 Source99:   baselibs.conf
+Patch0: 0001-configure-don-t-add-Werror-to-build-flags.patch
+# for patch0 0001-configure-don-t-add-Werror-to-build-flags.patch
+BuildRequires:  autoconf
+BuildRequires:  automake
+BuildRequires:  help2man
+BuildRequires:  libtool
+#
 BuildRequires:  info
-BuildRequires:  pkg-config
+BuildRequires:  pkgconfig
 Requires(post): %{install_info_prereq}
 Requires(preun): %{install_info_prereq}
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -62,8 +69,12 @@
 
 %prep
 %setup -q
+%patch0 -p1
 
 %build
+# for patch0 0001-configure-don-t-add-Werror-to-build-flags.patch
+autoreconf -fiv
+#
 %configure --disable-static
 make %{?_smp_mflags} V=1
 

++ 0001-configure-don-t-add-Werror-to-build-flags.patch ++
>From dd091c8af163213e12aa92f61bc4916e0f102633 Mon Sep 17 00:00:00 2001
From: Nikos Mavrogiannopoulos 
Date: Tue, 26 Jul 2016 08:45:33 +0200
Subject: [PATCH] configure: don't add -Werror to build flags
References: 
http://git.savannah.gnu.org/gitweb/?p=libtasn1.git;a=commit;h=dd091c8af163213e12aa92f61bc4916e0f102633

Fixing:
[   81s] Test_overflow.c: In function 'main':
[   81s] Test_overflow.c:63:45: error: left shift of negative value 
[-Werror=shift-negative-value]
[   81s]unsigned long num = ((long) UINT_MAX) << 2;
[   81s]  ^~

---
 configure.ac | 2 --
 1 file changed, 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 7a14e04..066f5fe 100644
--- a/configure.ac
+++ b/configure.ac
@@ -70,8 +70,6 @@ AC_ARG_ENABLE([gcc-warnings],
 )
 
 if test "$gl_gcc_warnings" = yes; then
-  gl_WARN_ADD([-Werror], [WERROR_CFLAGS])
-
   nw="$nw -Wsystem-headers" # Don't let system headers trigger warnings
   nw="$nw -Wc++-compat" # We don't care strongly about C++ 
compilers
   nw="$nw -Wtraditional"# Warns on #elif which we use often
-- 
2.6.6

++ libtasn1-4.8.tar.gz -> libtasn1-4.9.tar.gz ++
 2682 lines of diff (skipped)





commit libksba for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package libksba for openSUSE:Factory checked 
in at 2016-08-25 09:51:50

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


Package is "libksba"

Changes:

--- /work/SRC/openSUSE:Factory/libksba/libksba.changes  2016-05-19 
12:03:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.libksba.new/libksba.changes 2016-08-25 
09:51:52.0 +0200
@@ -1,0 +2,11 @@
+Mon Aug 22 19:58:46 UTC 2016 - astie...@suse.com
+
+- libksba 1.3.5:
+ * Limit the allowed size of complex ASN.1 objects (e.g.
+   certificates) to 16MiB.
+ * Avoid read access to unitialized memory.
+ * Improve detection of invalid RDNs.
+ * Encode the OCSP nonce value as an octet string as described by
+   RFC-6960.
+
+---

Old:

  libksba-1.3.4.tar.bz2
  libksba-1.3.4.tar.bz2.sig

New:

  libksba-1.3.5.tar.bz2
  libksba-1.3.5.tar.bz2.sig



Other differences:
--
++ libksba.spec ++
--- /var/tmp/diff_new_pack.uq8Rg5/_old  2016-08-25 09:51:53.0 +0200
+++ /var/tmp/diff_new_pack.uq8Rg5/_new  2016-08-25 09:51:53.0 +0200
@@ -18,7 +18,7 @@
 
 %define soname 8
 Name:   libksba
-Version:1.3.4
+Version:1.3.5
 Release:0
 Summary:A X.509 Library
 License:(LGPL-3.0+ or GPL-2.0+) and GPL-3.0+ and MIT

++ libksba-1.3.4.tar.bz2 -> libksba-1.3.5.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksba-1.3.4/ChangeLog new/libksba-1.3.5/ChangeLog
--- old/libksba-1.3.4/ChangeLog 2016-05-03 18:26:25.0 +0200
+++ new/libksba-1.3.5/ChangeLog 2016-08-22 11:57:26.0 +0200
@@ -1,3 +1,55 @@
+2016-08-22  Werner Koch  
+
+   Release 1.3.5.
+   * configure.ac: Set LT version to C19/A/11/R6.
+
+   Use size_t for the result of fread.
+   * src/reader.c (ksba_reader_read): Make 'n' and size_t.
+
+   Limit allocation in the BER decoder to 16 MiB.
+   * src/ber-decoder.c (MAX_IMAGE_LENGTH): New.
+   (decoder_next): Limit allcoation to MAX_IMAGE_LENGTH.
+   (_ksba_ber_decoder_dump, _ksba_ber_decoder_decode): Ditto.
+
+2016-07-17  Tomáš Trnka  
+
+   Encode OCSP nonce value as an octet string (RFC 6960)
+   * src/ocsp.c (ksba_ocsp_set_nonce): Stop removing the sign bit.
+(write_request_extensions): Encode nonce as octet string.
+(parse_response_extensions): Decode nonce as octet string.
+
+2016-07-13  Werner Koch  
+
+   build: Update config.{guess,sub} to {2016-05-15,2016-06-20}.
+   * build-aux/config.guess: Update.
+   * build-aux/config.sub: Update.
+
+2016-06-27  Werner Koch  
+
+   tests: Fix a memory leak.
+   * tests/t-oid.c (test_oid_to_str): Free STR.
+
+   Use modern error macros and fix a missing assignment.
+   * src/ocsp.c: Remove errno.h.  Replace gpg_error_from_errno(errno) by
+   gpg_error_from_syserror ().
+   (parse_response): Ditto.  Return direct becuase static analyzer may
+   not grasp that  gpg_error_from_syserror will never return false.
+   (ksba_ocsp_get_responder_id): Actually return an error for NO_DATA.
+
+   Detect invalid RDN names and avoid a read from uninitialized variable.
+   * src/dn.c (parse_rdn): Bail out for an invalid name.
+
+2016-05-25  Werner Koch  
+   Pascal Cuoq  
+
+   Fix OOB read in parse_distribution_point.
+   * src/cert.c (parse_distribution_point): Check TI.length.
+
+2016-05-11  Werner Koch  
+
+   Make sure that ASN.1 data is stored in an all-initialized buffer.
+   * src/ber-decoder.c (decoder_next): Clear the image buffer.
+
 2016-05-03  Werner Koch  
 
Release 1.3.4.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/libksba-1.3.4/NEWS new/libksba-1.3.5/NEWS
--- old/libksba-1.3.4/NEWS  2016-05-03 18:22:29.0 +0200
+++ new/libksba-1.3.5/NEWS  2016-08-22 11:53:16.0 +0200
@@ -1,4 +1,18 @@
-Noteworthy changes in version 1.3.4 (2016-05-03) [C19/A11/R4]
+Noteworthy changes in version 1.3.5 (2016-08-22) [C19/A11/R6]
+
+
+ * Limit the allowed size of complex ASN.1 objects (e.g. certificates)
+   to 16MiB.
+
+ * Avoid read access to unitialized memory.
+
+ * Improve detection of invalid RDNs.
+
+ * Encode the OCSP nonce value as an octet string as described by
+   RFC-6960.
+
+
+Noteworthy changes in version 1.3.4 (2016-05-03) [C19/A11/R5]
 

commit boost for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package boost for openSUSE:Factory checked 
in at 2016-08-25 09:52:08

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


Package is "boost"

Changes:

--- /work/SRC/openSUSE:Factory/boost/boost.changes  2016-08-18 
10:21:13.0 +0200
+++ /work/SRC/openSUSE:Factory/.boost.new/boost.changes 2016-08-25 
09:52:09.0 +0200
@@ -1,0 +2,9 @@
+Thu Aug 18 14:40:43 UTC 2016 - mvet...@suse.com
+
+- Fix boo#994378, boo#994381, boo#994382 boo#994383:
+  Fix build issues when optional_fwd.hpp is used before
+  including boost/config.hpp 
+- Add boost-fix_include_config.patch from
+  gh#boostorg/optional#19
+
+---

New:

  boost-fix_include_config.patch



Other differences:
--
++ boost.spec ++
--- /var/tmp/diff_new_pack.Pyaim9/_old  2016-08-25 09:52:12.0 +0200
+++ /var/tmp/diff_new_pack.Pyaim9/_new  2016-08-25 09:52:12.0 +0200
@@ -88,6 +88,7 @@
 Patch14:boost-1.57.0-python-libpython_dep.patch
 Patch15:boost-1.57.0-python-abi_letters.patch
 Patch16:boost-1.55.0-python-test-PyImport_AppendInittab.patch
+Patch17:boost-fix_include_config.patch
 BuildRequires:  chrpath
 BuildRequires:  dos2unix
 BuildRequires:  fdupes
@@ -447,6 +448,7 @@
 %patch14 -p1
 %patch15 -p1
 %patch16 -p1
+%patch17 -p2
 
 #stupid build machinery copies .orig files
 find . -name \*.orig -exec rm {} +


++ boost-fix_include_config.patch ++
--- /boost_1_61_0/boost/optional/optional_fwd.hpp
+++ /boost_1_61_0.new/boost/optional/optional_fwd.hpp
@@ -16,7 +16,7 @@
 #ifndef BOOST_OPTIONAL_OPTIONAL_FWD_FLC_19NOV2002_HPP
 #define BOOST_OPTIONAL_OPTIONAL_FWD_FLC_19NOV2002_HPP
 
-#include 
+#include 
 
 namespace boost {
 



commit gnome-keyring for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-keyring for openSUSE:Factory 
checked in at 2016-08-25 09:51:25

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


Package is "gnome-keyring"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-keyring/gnome-keyring.changes  
2016-03-29 14:50:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-keyring.new/gnome-keyring.changes 
2016-08-25 09:51:26.0 +0200
@@ -1,0 +2,17 @@
+Sat Aug 20 14:32:13 UTC 2016 - fezh...@suse.com
+
+- Merge
+  
bnc#903966-SEGV-in-gnome-keyring-daemon-caused-by-calling-free-on-static-string.patch
+  into gnome-keyring-896818-reduce-head-msg-length.patch:
+  bsc#903966 is just a regression caused by bsc#896818 anyway
+  (bsc#896818, bsc#903966, bgo#770170).
+
+---
+Thu May  5 01:43:01 CEST 2016 - h...@suse.com
+
+- Rebase gnome-keyring-bsc932232-use-non-fips-md5.patch for
+  version 3.20.0 (bsc#932232, bsc#966229, bsc#966225).
+- Drop gnome-keyring-bsc961271-secmem-mismatch.patch (fixed
+  upstream).
+
+---
@@ -7,0 +25,8 @@
+Thu Mar  3 01:35:32 CET 2016 - h...@suse.com
+
+- Update gnome-keyring-bsc932232-use-non-fips-md5.patch
+  (bsc#966229, bsc#966225). Fixes inability to decrypt private ssh
+  keys and corruption in stored keyrings. Fix by Michal Koutny
+  .
+
+---
@@ -30,0 +56,13 @@
+Tue Jan 12 23:24:31 CET 2016 - h...@suse.com
+
+- Add gnome-keyring-bsc961271-secmem-mismatch.patch (bsc#961271).
+  This fixes a crash caused by mixed calls to egg_secure_free()
+  and gcry_free().
+
+---
+Thu Nov 26 02:57:11 CET 2015 - h...@suse.com
+
+- Add gnome-keyring-bsc932232-use-libgcrypt-allocators.patch and
+  gnome-keyring-bsc932232-use-non-fips-md5.patch (bsc#932232).
+
+---
@@ -137,0 +176,8 @@
+Fri Nov  7 09:30:13 UTC 2014 - r...@suse.com
+
+- Add
+  
bnc#903966-SEGV-in-gnome-keyring-daemon-caused-by-calling-free-on-static-string.patch
+  Fixed SEGV in gnome-keyring-daemon caused by calling free() on
+  static string (bnc#903966).
+
+---
@@ -145,0 +192,7 @@
+Mon Sep 22 18:51:55 UTC 2014 - dli...@suse.com
+
+- Add gnome-keyring-896818-reduce-head-msg-length.patch:
+  Make the head message shorter. The patch makes sense but no need
+  to be upstream (bnc#896818).
+
+---
@@ -613 +666 @@
-  autostart, that only works with gnome-session 
+  autostart, that only works with gnome-session.
@@ -1344,2 +1397,2 @@
-  + When auto activating the gnome-keyring DBus service, check for an 
-already running daemon
+  + When auto activating the gnome-keyring DBus service, check for
+an already running daemon
@@ -1445,2 +1498,2 @@
-  + Overhaul the secure memory allocator to have memory guards, 
-and also be more sparing with secure memory
+  + Overhaul the secure memory allocator to have memory guards, and
+also be more sparing with secure memory
@@ -1513,2 +1566,2 @@
-  + Fix initialization problems which prevented SSH agent from setting
-environment variables properly
+  + Fix initialization problems which prevented SSH agent from
+setting environment variables properly
@@ -1527,3 +1580,3 @@
-  + Close open file descriptors before starting daemon from PAM module.
-  + Don't try and unlock keyring from PAM if daemon isn't 
-running
+  + Close open file descriptors before starting daemon from PAM
+module.
+  + Don't try and unlock keyring from PAM if daemon isn't running
@@ -1641,2 +1694,2 @@
-  + Use 'Change' instead of 'Create' when prompting the user for 
-a password to change keyring password.
+  + Use 'Change' instead of 'Create' when prompting the user for a
+password to change keyring password.
@@ -1673 +1726,2 @@
- + Add gconf schema for noting the user's configured PKCS#11 modules.
+ + Add gconf schema for noting the user's configured PKCS#11
+   modules.
@@ -1688 +1742,2 @@
-   and id_dsa. Also load public portions of keys when needed ie: *.pub
+   and id_dsa. Also load public portions of keys when needed ie:
+   *.pub
@@ -1698 +1753,2 @@
- + Add --disable-acl-prompts option to disable all ACL prompting [Colin 
Walters]
+ + Add --disable-acl-prompts option to disable all ACL prompting
+   [Colin Walters]
@@ -1850,2 +1906,2 @@
-- Updated to 2.19.91 to incorporate needed fixes for Novell bugs: 298975, 
-  299730, 299621, 304189
+- Updated to 2.19.91 to incorporate needed fixes for Novell bugs:
+  

commit gnome-documents for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-documents for openSUSE:Factory 
checked in at 2016-08-25 09:51:15

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


Package is "gnome-documents"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-documents/gnome-documents.changes  
2016-08-22 10:49:36.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-documents.new/gnome-documents.changes 
2016-08-25 09:51:17.0 +0200
@@ -1,0 +2,8 @@
+Mon Aug 22 12:23:19 UTC 2016 - fezh...@suse.com
+
+- Drop pdf-converter-modify.patch.
+  Drop unoconv or libreoffice recommends:
+  Upstream uses LOKDocView instead of unoconv to handle ODF, OOXML,
+  etc now, see bgo#753686 for more details (bnc#902922).
+
+---
@@ -16,0 +25,5 @@
+Thu Apr 14 06:43:22 UTC 2016 - ty...@suse.com
+
+- Update to GNOME 3.20 Fate#318572
+
+---
@@ -213,0 +227,7 @@
+Wed Jan 21 10:42:03 UTC 2015 - ty...@suse.com
+
+- Add patch pdf-converter-modify.patch for bnc#902922:
+  Replace the unoconv with libreoffice when converting files to
+  pdf format.
+
+---



Other differences:
--
++ gnome-documents.spec ++
--- /var/tmp/diff_new_pack.vu8XdO/_old  2016-08-25 09:51:18.0 +0200
+++ /var/tmp/diff_new_pack.vu8XdO/_new  2016-08-25 09:51:18.0 +0200
@@ -53,7 +53,6 @@
 # If available, we query the Online Miners via dbus.
 Recommends: dbus(org.gnome.OnlineMiners.GData)
 # A lot of document formats are handled using unoconv.
-Recommends: unoconv
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{glib2_gsettings_schema_requires}
 




commit gnome-shell for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package gnome-shell for openSUSE:Factory 
checked in at 2016-08-25 09:50:58

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


Package is "gnome-shell"

Changes:

--- /work/SRC/openSUSE:Factory/gnome-shell/gnome-shell.changes  2016-08-17 
12:00:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.gnome-shell.new/gnome-shell.changes 
2016-08-25 09:51:00.0 +0200
@@ -1,0 +2,14 @@
+Fri Aug 19 22:16:11 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.20.4:
+  + Free old backgrounds immediately (bgo#766353).
+  + Adjust to flatpak PermissionStore API changes (bgo#766598).
+  + calendar: Only hide dismissed occurrence of recurring event
+(bgo#748226).
+  + Updated translations.
+- Drop gnome-shell-background-free-MetaBackground.patch: Fixed
+  upstream.
+- Add gnome-shell-fix-missing-return.patch: Fix build, add missing
+  return value in gnome-calendar.
+
+---

Old:

  gnome-shell-3.20.3.tar.xz
  gnome-shell-background-free-MetaBackground.patch

New:

  gnome-shell-3.20.4.tar.xz
  gnome-shell-fix-missing-return.patch



Other differences:
--
++ gnome-shell.spec ++
--- /var/tmp/diff_new_pack.w3tf5S/_old  2016-08-25 09:51:01.0 +0200
+++ /var/tmp/diff_new_pack.w3tf5S/_new  2016-08-25 09:51:01.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   gnome-shell
-Version:3.20.3
+Version:3.20.4
 Release:0
 Summary:GNOME Shell
 License:GPL-2.0+
@@ -26,10 +26,10 @@
 Source: 
http://download.gnome.org/sources/gnome-shell/3.20/%{name}-%{version}.tar.xz
 # PATCH-FIX-UPSTREAM gnome-shell-private-connection.patch bnc#751211 
bgo#646187 dims...@opensuse.org -- create private connections if the user is 
not authorized
 Patch1: gnome-shell-private-connection.patch
-# PATCH-FIX-UPSTREAM gnome-shell-background-free-MetaBackground.patch 
bgo#766353 zai...@opensuse.org -- Free MetaBackground explicitly when its 
MetaBackgroundActor is destroyed
-Patch2: gnome-shell-background-free-MetaBackground.patch
 # PATCH-FIX-OPENSUSE gnome-shell-disable-ibus-when-not-installed.patch 
bsc#987360 qz...@suse.com -- disable ibus start when outof Chinese, Japanese, 
Korean area.
-Patch3: gnome-shell-disable-ibus-when-not-installed.patch
+Patch2: gnome-shell-disable-ibus-when-not-installed.patch
+# PATCH-FIX-UPSTREAM gnome-shell-fix-missing-return.patch zai...@opensuse.org 
-- Fix a missing return, patch from upstream stable git.
+Patch3: gnome-shell-fix-missing-return.patch
 BuildRequires:  docbook-xsl-stylesheets
 BuildRequires:  gcc-c++
 BuildRequires:  intltool

++ gnome-shell-3.20.3.tar.xz -> gnome-shell-3.20.4.tar.xz ++
 7602 lines of diff (skipped)

++ gnome-shell-fix-missing-return.patch ++
>From 890a1f112b62d95678f765f71013ee4c2c68ab88 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20M=C3=BCllner?= 
Date: Mon, 25 Jul 2016 18:46:59 +0200
Subject: calendar-server: Add back missing return value

In commit 7e0e224e0, when moving from e_cal_recur_generate_instances()
to e_cal_client_generate_instances(), the return value of the
ECalRecurInstanceFn callback was accidentally removed; add it
back.

https://bugzilla.gnome.org/show_bug.cgi?id=769156
---
 src/calendar-server/gnome-shell-calendar-server.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/calendar-server/gnome-shell-calendar-server.c 
b/src/calendar-server/gnome-shell-calendar-server.c
index 5ff12f2..57bc71b 100644
--- a/src/calendar-server/gnome-shell-calendar-server.c
+++ b/src/calendar-server/gnome-shell-calendar-server.c
@@ -443,6 +443,8 @@ generate_instances_cb (ECalComponent *comp,
   occurrence->rid= e_cal_component_get_recurid_as_string (comp);
 
   appointment->occurrences = g_slist_append (appointment->occurrences, 
occurrence);
+
+  return TRUE;
 }
 
 
-- 
cgit v0.12




commit eog for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package eog for openSUSE:Factory checked in 
at 2016-08-25 09:51:07

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


Package is "eog"

Changes:

--- /work/SRC/openSUSE:Factory/eog/eog.changes  2016-07-01 09:53:18.0 
+0200
+++ /work/SRC/openSUSE:Factory/.eog.new/eog.changes 2016-08-25 
09:51:08.0 +0200
@@ -1,0 +2,8 @@
+Sun Aug 21 15:27:20 UTC 2016 - zai...@opensuse.org
+
+- Update to version 3.20.4 (boo#994819):
+  + Out-of-bounds fix (bgo#770143, CVE-2016-6855).
+  + eog leaks error message if loading an SVG fails (bgo#770197).
+  + Updated translations.
+
+---

Old:

  eog-3.20.3.tar.xz

New:

  eog-3.20.4.tar.xz



Other differences:
--
++ eog.spec ++
--- /var/tmp/diff_new_pack.NC7BcD/_old  2016-08-25 09:51:09.0 +0200
+++ /var/tmp/diff_new_pack.NC7BcD/_new  2016-08-25 09:51:09.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   eog
-Version:3.20.3
+Version:3.20.4
 Release:0
 Summary:Image Viewer for GNOME
 License:GPL-2.0+ and LGPL-2.1+

++ eog-3.20.3.tar.xz -> eog-3.20.4.tar.xz ++
 11311 lines of diff (skipped)




commit nfs-utils for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package nfs-utils for openSUSE:Factory 
checked in at 2016-08-25 09:50:38

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


Package is "nfs-utils"

Changes:

--- /work/SRC/openSUSE:Factory/nfs-utils/nfs-utils.changes  2016-08-18 
09:15:16.0 +0200
+++ /work/SRC/openSUSE:Factory/.nfs-utils.new/nfs-utils.changes 2016-08-25 
09:50:39.0 +0200
@@ -1,0 +2,9 @@
+Sun Aug 21 06:16:27 UTC 2016 - nfbr...@suse.com
+
+- 0001-Make-location-of-nfs-utils_env.sh-configurable.patch
+  1.3.4 moved the config script location to somewhere
+  that doesn't exist on openSUSE.  Move it somewhere
+  better and install it there.
+  (bsc#990356)
+
+---

New:

  0001-Make-location-of-nfs-utils_env.sh-configurable.patch



Other differences:
--
++ nfs-utils.spec ++
--- /var/tmp/diff_new_pack.hNKoHK/_old  2016-08-25 09:50:40.0 +0200
+++ /var/tmp/diff_new_pack.hNKoHK/_new  2016-08-25 09:50:40.0 +0200
@@ -40,6 +40,7 @@
 Source17:   nfs-server.nfsserver.conf
 Source18:   nfs-client.nfs.conf
 Patch0: nfs-utils-1.0.7-bind-syntax.patch
+Patch1: 0001-Make-location-of-nfs-utils_env.sh-configurable.patch
 BuildRequires:  e2fsprogs-devel
 BuildRequires:  fedfs-utils-devel
 BuildRequires:  gcc-c++
@@ -106,6 +107,7 @@
 %prep
 %setup -q -a 1
 %patch0 -p1
+%patch1 -p1
 
 cp %{SOURCE6} .
 
@@ -142,8 +144,8 @@
 install -m 644 %{SOURCE17} 
%{buildroot}%{_unitdir}/nfs-server.service.d/nfsserver.conf
 install -d %{buildroot}%{_unitdir}/nfs-client.target.d
 install -m 644 %{SOURCE18} %{buildroot}%{_unitdir}/nfs-client.target.d/nfs.conf
-install -d %{buildroot}%{_prefix}/lib/systemd/scripts
-install -m 755 %{SOURCE14} 
%{buildroot}%{_prefix}/lib/systemd/scripts/nfs-utils_env.sh
+install -d %{buildroot}%{_libexecdir}/nfs-utils
+install -m 755 %{SOURCE14} 
%{buildroot}%{_libexecdir}/nfs-utils/nfs-utils_env.sh
 install -d %{buildroot}%{_unitdir}/nfs-config.service.d
 install -m 644 %{SOURCE12} 
%{buildroot}%{_unitdir}/nfs-config.service.d/restart.conf
 ln -sf %{_sbindir}/service %{buildroot}%{_sbindir}/rcnfsserver
@@ -263,8 +265,8 @@
 %{_unitdir}/nfs-client.target.d/nfs.conf
 %dir %{_unitdir}/nfs-config.service.d
 %{_unitdir}/nfs-config.service.d/restart.conf
-%dir %{_libexecdir}/systemd/scripts
-%{_libexecdir}/systemd/scripts/nfs-utils_env.sh
+%dir %{_libexecdir}/nfs-utils
+%{_libexecdir}/nfs-utils/nfs-utils_env.sh
 %{_mandir}/man5/nfsmount.conf.5%{ext_man}
 %{_mandir}/man5/nfs.5%{ext_man}
 %{_mandir}/man8/mount.nfs.8%{ext_man}

++ 0001-Make-location-of-nfs-utils_env.sh-configurable.patch ++
>From dc071e55135019d4503930f204674219a9f8676b Mon Sep 17 00:00:00 2001
From: NeilBrown 
Date: Sun, 21 Aug 2016 14:53:57 +1000
Subject: [PATCH] Make location of nfs-utils_env.sh configurable.

A recent patch moved this file to /usr/libexec/...
That directory isn't universal, and doesn't exist on openSUSE or
Debian for example.
So change it to use the $libexecdir directory determined by configure

Signed-off-by: NeilBrown 

---
 configure.ac  |6 ++
 systemd/nfs-config.service|   13 -
 systemd/nfs-config.service.in |   13 +
 3 files changed, 19 insertions(+), 13 deletions(-)

--- a/configure.ac
+++ b/configure.ac
@@ -511,8 +511,14 @@ AC_SUBST([AM_CFLAGS], ["$my_am_cflags"])
 # Make sure that $ACLOCAL_FLAGS are used during a rebuild
 AC_SUBST([ACLOCAL_AMFLAGS], ["-I $ac_macro_dir \$(ACLOCAL_FLAGS)"])
 
+# make libexecdir available for substituion in config files
+# 2 "evals" needed late to expand variable names.
+AC_SUBST([_libexecdir])
+AC_CONFIG_COMMANDS_PRE([eval eval _libexecdir=$libexecdir])
+
 AC_CONFIG_FILES([
Makefile
+   systemd/nfs-config.service
linux-nfs/Makefile
support/Makefile
support/export/Makefile
--- a/systemd/nfs-config.service
+++ /dev/null
@@ -1,13 +0,0 @@
-[Unit]
-Description=Preprocess NFS configuration
-After=local-fs.target
-DefaultDependencies=no
-
-[Service]
-Type=oneshot
-# This service needs to run any time any nfs service
-# is started, so changes to local config files get
-# incorporated.  Having "RemainAfterExit=no" (the default)
-# ensures this happens.
-RemainAfterExit=no
-ExecStart=/usr/libexec/nfs-utils/nfs-utils_env.sh
--- /dev/null
+++ b/systemd/nfs-config.service.in
@@ -0,0 +1,13 @@
+[Unit]
+Description=Preprocess NFS configuration
+After=local-fs.target
+DefaultDependencies=no
+
+[Service]
+Type=oneshot
+# This service needs to run any time any nfs service
+# is started, so changes to local config files get
+# incorporated.  

commit dbus-1 for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package dbus-1 for openSUSE:Factory checked 
in at 2016-08-25 09:50:47

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


Package is "dbus-1"

Changes:

--- /work/SRC/openSUSE:Factory/dbus-1/dbus-1-x11.changes2016-03-29 
09:52:23.0 +0200
+++ /work/SRC/openSUSE:Factory/.dbus-1.new/dbus-1-x11.changes   2016-08-25 
09:50:49.0 +0200
@@ -1,0 +2,44 @@
+Mon Aug 22 09:08:03 UTC 2016 - fst...@suse.com
+
+- Update to 1.10.10
+  * Fixes:
++ On Linux, when dbus-daemon is run with reduced susceptibility
+  to the OOM killer (typically via systemd), do not let child
+  processes inherit that setting (fdo#32851;
+  Kimmo Hämäläinen, WaLyong Cho)
++ Output valid shell syntax in ~/.dbus/session-bus/ if the bus
+  address contains a semicolon (fdo#94746, Thiago Macieira)
++ Fix memory leaks and thread safety in subprocess starting on
+  Windows (fdo#95191, Ralf Habacker)
++ Do not require systemd to have a service file if using it for
+  activation (fdo#93194; Simon McVittie; backport from 1.11.0)
++ Stop test-dbus-daemon incorrectly failing on platforms that
+  cannot discover the process ID of clients (fdo#96653,
+  Руслан Ижбулатов)
++ In tests that exercise correct handling of crashing D-Bus
+  services, suppress Windows crash handler (fdo#95155;
+  Yiyang Fei, Ralf Habacker)
++ Explicitly check for stdint.h (Ioan-Adrian Ratiu)
++ update-activation-environment: produce better diagnostics on
+  error (fdo#96653, Simon McVittie)
++ Don't fail the build with an unused const variable warning
+  under gcc 6 (fdo#97282; Thomas Zimmermann, Simon McVittie)
++ Merge dbus-1.10-ci branch, containing backports from 1.11.0
+  in build/test code to support continuous integration
+  (fdo#93194, Simon McVittie)
+  - Avoid -Wunused-label when compiling with libselinux but no
+libaudit
+  - In development builds, allow OOM tests to be disabled as
+documented
+  - Accept and ignore the --tap argument in all "embedded
+tests", and run all automated tests with that argument for
+better diagnostics
+  - Fix the systemd activation test under CMake by installing
+the required files
+  - In Automake, fix shell syntax for installcheck-local with
+no DESTDIR
+  - In Automake, don't try to run manual tests in installcheck
+  - In CMake, don't run manual-tcp test as an automated test
+  - Add travis-ci.org build machinery
+
+---
@@ -312 +356 @@
-  (CVE-2014-7824, fd.o #85105; Simon McVittie, Alban Crequy)
+  (CVE-2014-7824, fdo#85105; Simon McVittie, Alban Crequy)
dbus-1.changes: same change

Old:

  dbus-1.10.8.tar.gz

New:

  dbus-1.10.10.tar.gz



Other differences:
--
++ dbus-1-x11.spec ++
--- /var/tmp/diff_new_pack.dByncQ/_old  2016-08-25 09:50:51.0 +0200
+++ /var/tmp/diff_new_pack.dByncQ/_new  2016-08-25 09:50:51.0 +0200
@@ -27,7 +27,7 @@
 Url:http://dbus.freedesktop.org/
 # COMMON1-BEGIN
 # COMMON1-BEGIN
-Version:1.10.8
+Version:1.10.10
 Release:0
 Source0:
http://dbus.freedesktop.org/releases/dbus/%{_name}-%{version}.tar.gz
 Source2:dbus-1.desktop

++ dbus-1.spec ++
--- /var/tmp/diff_new_pack.dByncQ/_old  2016-08-25 09:50:51.0 +0200
+++ /var/tmp/diff_new_pack.dByncQ/_new  2016-08-25 09:50:51.0 +0200
@@ -28,7 +28,7 @@
 Url:http://dbus.freedesktop.org/
 # WARNING don't use cosmetic beautifiers. it will break the specs after 
calling pre_checkin script. we don't need to be pretty, but efficient
 # COMMON1-BEGIN
-Version:1.10.8
+Version:1.10.10
 Release:0
 Source0:
http://dbus.freedesktop.org/releases/dbus/%{_name}-%{version}.tar.gz
 Source2:dbus-1.desktop

++ dbus-1.10.8.tar.gz -> dbus-1.10.10.tar.gz ++
 2268 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/dbus-1.10.8/NEWS new/dbus-1.10.10/NEWS
--- old/dbus-1.10.8/NEWS2016-03-07 17:06:12.0 +0100
+++ new/dbus-1.10.10/NEWS   2016-08-15 20:58:20.0 +0200
@@ -1,3 +1,51 @@
+D-Bus 1.10.10 (2016-08-15)
+==
+
+The “tungsten door” release.
+
+Fixes:
+
+• On Linux, when 

commit python3-pytest-cov for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package python3-pytest-cov for 
openSUSE:Factory checked in at 2016-08-25 09:50:25

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


Package is "python3-pytest-cov"

Changes:

--- /work/SRC/openSUSE:Factory/python3-pytest-cov/python3-pytest-cov.changes
2016-07-18 21:22:05.0 +0200
+++ 
/work/SRC/openSUSE:Factory/.python3-pytest-cov.new/python3-pytest-cov.changes   
2016-08-25 09:50:27.0 +0200
@@ -1,0 +2,11 @@
+Sat Aug 20 17:42:43 UTC 2016 - a...@gmx.de
+
+- update to version 2.3.1:
+  * Fixed regression causing spurious errors when xdist was used. See
+#124.
+  * Fixed DeprecationWarning about incorrect addoption
+use. Contributed by Florian Bruhin in PR#127.
+  * Fixed deprecated use of funcarg fixture API. Contributed by Daniel
+Hahler in PR#125.
+
+---

Old:

  pytest-cov-2.3.0.tar.gz

New:

  pytest-cov-2.3.1.tar.gz



Other differences:
--
++ python3-pytest-cov.spec ++
--- /var/tmp/diff_new_pack.RljUQq/_old  2016-08-25 09:50:28.0 +0200
+++ /var/tmp/diff_new_pack.RljUQq/_new  2016-08-25 09:50:28.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-pytest-cov
-Version:2.3.0
+Version:2.3.1
 Release:0
 Summary:Pytest plugin for coverage reporting
 License:MIT

++ pytest-cov-2.3.0.tar.gz -> pytest-cov-2.3.1.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-cov-2.3.0/.bumpversion.cfg 
new/pytest-cov-2.3.1/.bumpversion.cfg
--- old/pytest-cov-2.3.0/.bumpversion.cfg   2016-07-05 21:54:31.0 
+0200
+++ new/pytest-cov-2.3.1/.bumpversion.cfg   2016-08-07 22:09:52.0 
+0200
@@ -1,5 +1,5 @@
 [bumpversion]
-current_version = 2.3.0
+current_version = 2.3.1
 commit = True
 tag = True
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/pytest-cov-2.3.0/.travis.yml 
new/pytest-cov-2.3.1/.travis.yml
--- old/pytest-cov-2.3.0/.travis.yml2016-06-01 11:13:14.0 +0200
+++ new/pytest-cov-2.3.1/.travis.yml2016-08-07 16:47:09.0 +0200
@@ -11,57 +11,99 @@
 - TOXENV=py26-27-37
 - TOXENV=py26-27-40
 - TOXENV=py26-27-41
+- TOXENV=py26-27-42
 - TOXENV=py26-28-37
 - TOXENV=py26-28-40
 - TOXENV=py26-28-41
+- TOXENV=py26-28-42
 - TOXENV=py26-29-37
 - TOXENV=py26-29-40
 - TOXENV=py26-29-41
+- TOXENV=py26-29-42
+- TOXENV=py26-30-37
+- TOXENV=py26-30-40
+- TOXENV=py26-30-41
+- TOXENV=py26-30-42
 - TOXENV=py27-27-37
 - TOXENV=py27-27-40
 - TOXENV=py27-27-41
+- TOXENV=py27-27-42
 - TOXENV=py27-28-37
 - TOXENV=py27-28-40
 - TOXENV=py27-28-41
+- TOXENV=py27-28-42
 - TOXENV=py27-29-37
 - TOXENV=py27-29-40
 - TOXENV=py27-29-41
+- TOXENV=py27-29-42
+- TOXENV=py27-30-37
+- TOXENV=py27-30-40
+- TOXENV=py27-30-41
+- TOXENV=py27-30-42
 - TOXENV=py33-27-37
 - TOXENV=py33-27-40
 - TOXENV=py33-27-41
+- TOXENV=py33-27-42
 - TOXENV=py33-28-37
 - TOXENV=py33-28-40
 - TOXENV=py33-28-41
+- TOXENV=py33-28-42
 - TOXENV=py33-29-37
 - TOXENV=py33-29-40
 - TOXENV=py33-29-41
+- TOXENV=py33-29-42
+- TOXENV=py33-30-37
+- TOXENV=py33-30-40
+- TOXENV=py33-30-41
+- TOXENV=py33-30-42
 - TOXENV=py34-27-37
 - TOXENV=py34-27-40
 - TOXENV=py34-27-41
+- TOXENV=py34-27-42
 - TOXENV=py34-28-37
 - TOXENV=py34-28-40
 - TOXENV=py34-28-41
+- TOXENV=py34-28-42
 - TOXENV=py34-29-37
 - TOXENV=py34-29-40
 - TOXENV=py34-29-41
+- TOXENV=py34-29-42
+- TOXENV=py34-30-37
+- TOXENV=py34-30-40
+- TOXENV=py34-30-41
+- TOXENV=py34-30-42
 - TOXENV=py35-27-37
 - TOXENV=py35-27-40
 - TOXENV=py35-27-41
+- TOXENV=py35-27-42
 - TOXENV=py35-28-37
 - TOXENV=py35-28-40
 - TOXENV=py35-28-41
+- TOXENV=py35-28-42
 - TOXENV=py35-29-37
 - TOXENV=py35-29-40
 - TOXENV=py35-29-41
+- TOXENV=py35-29-42
+- TOXENV=py35-30-37
+- TOXENV=py35-30-40
+- TOXENV=py35-30-41
+- TOXENV=py35-30-42
 - TOXENV=pypy-27-37
 - TOXENV=pypy-27-40
 - TOXENV=pypy-27-41
+- TOXENV=pypy-27-42
 - TOXENV=pypy-28-37
 - TOXENV=pypy-28-40
 - TOXENV=pypy-28-41
+- TOXENV=pypy-28-42
 - TOXENV=pypy-29-37
 - TOXENV=pypy-29-40
 - TOXENV=pypy-29-41
+- TOXENV=pypy-29-42
+- TOXENV=pypy-30-37
+- TOXENV=pypy-30-40
+- TOXENV=pypy-30-41
+- TOXENV=pypy-30-42
 before_install:
   - python 

commit python3-certifi for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package python3-certifi for openSUSE:Factory 
checked in at 2016-08-25 09:50:17

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


Package is "python3-certifi"

Changes:

--- /work/SRC/openSUSE:Factory/python3-certifi/python3-certifi.changes  
2016-05-17 17:09:40.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-certifi.new/python3-certifi.changes 
2016-08-25 09:50:18.0 +0200
@@ -1,0 +2,10 @@
+Sat Aug 20 18:32:21 UTC 2016 - a...@gmx.de
+
+- update to version 2016.8.8:
+  * Update update process to do weak bundle too
+  * setup.py: Borrow the comment by @dstufft (thanks)
+  * setup.py: Use `distutils` fallback if `setuptools` is not present.
+  * Update classifiers in setup.py
+  * Fix Python 2.5's lack of a builtin with statement
+
+---
@@ -6 +15,0 @@
-

Old:

  certifi-2016.2.28.tar.gz

New:

  certifi-2016.8.8.tar.gz



Other differences:
--
++ python3-certifi.spec ++
--- /var/tmp/diff_new_pack.ptteUA/_old  2016-08-25 09:50:19.0 +0200
+++ /var/tmp/diff_new_pack.ptteUA/_new  2016-08-25 09:50:19.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   python3-certifi
-Version:2016.2.28
+Version:2016.8.8
 Release:0
 Summary:Python package for providing Mozilla's CA Bundle
 License:MPL-2.0

++ certifi-2016.2.28.tar.gz -> certifi-2016.8.8.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certifi-2016.2.28/PKG-INFO 
new/certifi-2016.8.8/PKG-INFO
--- old/certifi-2016.2.28/PKG-INFO  2016-02-28 15:32:35.0 +0100
+++ new/certifi-2016.8.8/PKG-INFO   2016-08-08 15:11:57.0 +0200
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: certifi
-Version: 2016.2.28
+Version: 2016.8.8
 Summary: Python package for providing Mozilla's CA Bundle.
 Home-page: http://certifi.io/
 Author: Kenneth Reitz
@@ -23,7 +23,8 @@
 Usage
 -
 
-To reference the installed CA Bundle, you can use the built-in 
function::
+To reference the installed certificate authority (CA) bundle, you can 
use the
+built-in function::
 
 >>> import certifi
 
@@ -39,7 +40,7 @@
 unacceptably weak for certificates, particularly root certificates. 
For this
 reason, Mozilla has removed any weak (i.e. 1024-bit key) certificate 
from its
 bundle, replacing it with an equivalent strong (i.e. 2048-bit or 
greater key)
-certifiate from the same CA. Because Mozilla removed these 
certificates from
+certificate from the same CA. Because Mozilla removed these 
certificates from
 its bundle, ``certifi`` removed them as well.
 
 Unfortunately, old versions of OpenSSL (less than 1.0.2) sometimes 
fail to
@@ -58,11 +59,8 @@
 Classifier: Intended Audience :: Developers
 Classifier: Natural Language :: English
 Classifier: Programming Language :: Python
-Classifier: Programming Language :: Python :: 2.5
 Classifier: Programming Language :: Python :: 2.6
 Classifier: Programming Language :: Python :: 2.7
-Classifier: Programming Language :: Python :: 3.0
-Classifier: Programming Language :: Python :: 3.1
-Classifier: Programming Language :: Python :: 3.2
 Classifier: Programming Language :: Python :: 3.3
 Classifier: Programming Language :: Python :: 3.4
+Classifier: Programming Language :: Python :: 3.5
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/certifi-2016.2.28/README.rst 
new/certifi-2016.8.8/README.rst
--- old/certifi-2016.2.28/README.rst2015-11-15 22:00:19.0 +0100
+++ new/certifi-2016.8.8/README.rst 2016-02-28 15:33:32.0 +0100
@@ -15,7 +15,8 @@
 Usage
 -
 
-To reference the installed CA Bundle, you can use the built-in function::
+To reference the installed certificate authority (CA) bundle, you can use the
+built-in function::
 
 >>> import certifi
 
@@ -31,7 +32,7 @@
 unacceptably weak for certificates, particularly root certificates. For this
 reason, Mozilla has removed any weak (i.e. 1024-bit key) certificate from its
 bundle, replacing it with an equivalent strong (i.e. 2048-bit or greater key)
-certifiate from the same CA. Because Mozilla removed these certificates from
+certificate from the same CA. Because Mozilla removed these certificates from
 its bundle, ``certifi`` removed them as well.
 
 Unfortunately, old versions of OpenSSL (less than 1.0.2) sometimes fail to
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 

commit util-linux for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package util-linux for openSUSE:Factory 
checked in at 2016-08-25 09:49:40

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


Package is "util-linux"

Changes:

--- /work/SRC/openSUSE:Factory/util-linux/python-libmount.changes   
2016-07-18 21:16:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.util-linux.new/python-libmount.changes  
2016-08-25 09:49:42.0 +0200
@@ -1,0 +2,14 @@
+Thu Aug 11 13:24:34 UTC 2016 - sweet_...@gmx.de
+
+- Update to version 2.28.1, bugfix release, see
+  ftp://ftp.kernel.org/pub/linux/utils/util-linux/v2.28/v2.28.1-ReleaseNotes
+- Remove util-linux-libblkid-wipe-offset.patch (upstream)
+- use the new configure option --enable-libuuid-force-uuidd
+  instead of sed'ing configure.ac
+
+---
+Thu Aug 11 10:21:35 UTC 2016 - o...@aepfle.de
+
+- Install klogconsole with read permissions (bnc#990837)
+
+---
util-linux-systemd.changes: same change
util-linux.changes: same change

Old:

  util-linux-2.28.tar.sign
  util-linux-2.28.tar.xz
  util-linux-libblkid-wipe-offset.patch

New:

  util-linux-2.28.1.tar.sign
  util-linux-2.28.1.tar.xz



Other differences:
--
++ python-libmount.spec ++
--- /var/tmp/diff_new_pack.wNYEFB/_old  2016-08-25 09:49:45.0 +0200
+++ /var/tmp/diff_new_pack.wNYEFB/_new  2016-08-25 09:49:45.0 +0200
@@ -69,7 +69,7 @@
 %endif
 Summary:%main_summary
 License:GPL-2.0+
-Group:  %group_pl
+Group:  %main_group
 BuildRequires:  audit-devel
 BuildRequires:  bc
 BuildRequires:  binutils-devel
@@ -113,7 +113,7 @@
 %endif
 %endif
 #END SECOND STAGE DEPENDENCIES
-Version:2.28
+Version:2.28.1
 Release:0
 # util-linux is a base package and uuidd pre-requiring pwdutils pulls
 # that into the core build cycle.  pwdutils also pulls in the whole
@@ -150,8 +150,6 @@
 ##
 ## util-linux patches
 ##
-# PATCH-FIX-UPSTREAM util-linux-libblkid-wipe-offset.patch bsc976141 
sbra...@suse.com -- blkid: Wipe corect area for probes with offset
-Patch:  util-linux-libblkid-wipe-offset.patch
 # PATCH-EXTEND-UPSTREAM: Let `su' handle /sbin and /usr/sbin in path
 Patch4: make-sure-sbin-resp-usr-sbin-are-in-PATH.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -374,7 +372,6 @@
 %if %build_util_linux
 %package -n python-libmount
 Summary:%summary_pl
-License:GPL-2.0+
 Group:  %group_pl
 
 %description -n python-libmount
@@ -387,20 +384,12 @@
 %endif
 %prep
 %setup -q -n %{_name}-%{version} -b 40
-%patch -p1
 %patch4 -p1
 #
 # setctsid
 cp -p %{S:22} %{S:23} .
 
 %build
-#BEGIN CONFIG ALTER
-%if !%build_util_linux_systemd
-# We are not building util_linux_systemd => we are not building uuidd
-# But we want libuuid with support of uuidd. The default configure disables it 
as well.
-sed -i '/^AM_CONDITIONAL.*BUILD_UUIDD/a AC_DEFINE([HAVE_UUIDD], [1], [Define 
to 1 if you want to use uuid daemon.])' configure.ac
-%endif
-#END CONFIG ALTER
 %if %build_util_linux
 pushd ../klogconsole
 # klogconsole build
@@ -536,6 +525,7 @@
   --with-bashcompletiondir=%{_datadir}/bash-completion/completions \
   --with-systemdsystemunitdir=%{_unitdir} \
   --enable-libmount-force-mountinfo \
+  --enable-libuuid-force-uuidd \
   --enable-sulogin-emergency-mount \
   --disable-use-tty-group \
   --enable-static \
@@ -1166,7 +1156,7 @@
 /sbin/hwclock
 #EndUsrMerge
 %{_sbindir}/hwclock
-%{_sbindir}/klogconsole
+%attr(744,root,root) %{_sbindir}/klogconsole
 %{_bindir}/setterm
 %{_sbindir}/tunelp
 %{_mandir}/man8/fdformat.8.gz

++ util-linux-systemd.spec ++
--- /var/tmp/diff_new_pack.wNYEFB/_old  2016-08-25 09:49:45.0 +0200
+++ /var/tmp/diff_new_pack.wNYEFB/_new  2016-08-25 09:49:45.0 +0200
@@ -113,7 +113,7 @@
 %endif
 %endif
 #END SECOND STAGE DEPENDENCIES
-Version:2.28
+Version:2.28.1
 Release:0
 # util-linux is a base package and uuidd pre-requiring pwdutils pulls
 # that into the core build cycle.  pwdutils also pulls in the whole
@@ -150,8 +150,6 @@
 ##
 ## util-linux patches
 ##
-# PATCH-FIX-UPSTREAM util-linux-libblkid-wipe-offset.patch bsc976141 
sbra...@suse.com -- blkid: Wipe corect area for probes with offset
-Patch:  util-linux-libblkid-wipe-offset.patch
 # PATCH-EXTEND-UPSTREAM: Let `su' handle /sbin and /usr/sbin in path
 Patch4: make-sure-sbin-resp-usr-sbin-are-in-PATH.diff
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
@@ -386,20 +384,12 @@
 %endif
 %prep
 %setup -q -n %{_name}-%{version} -b 40
-%patch -p1
 %patch4 

commit python3-requests for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package python3-requests for 
openSUSE:Factory checked in at 2016-08-25 09:50:06

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


Package is "python3-requests"

Changes:

--- /work/SRC/openSUSE:Factory/python3-requests/python3-requests.changes
2016-06-26 23:51:05.0 +0200
+++ /work/SRC/openSUSE:Factory/.python3-requests.new/python3-requests.changes   
2016-08-25 09:50:08.0 +0200
@@ -1,0 +2,41 @@
+Sat Aug 20 17:21:35 UTC 2016 - a...@gmx.de
+
+- update to version 2.11.1:
+  * Fixed a bug when using iter_content with decode_unicode=True for
+streamed bodies would raise AttributeError. This bug was
+introduced in 2.11.
+  * Strip Content-Type and Transfer-Encoding headers from the header
+block when following a redirect that transforms the verb from
+POST/PUT to GET.
+
+---
+Wed Aug 17 04:31:08 UTC 2016 - a...@gmx.de
+
+- update to version 2.11.0:
+  * Improvements
++ Added support for the ALL_PROXY environment variable.
++ Reject header values that contain leading whitespace or newline
+  characters to reduce risk of header smuggling.
+  * Bugfixes
++ Fixed occasional TypeError when attempting to decode a JSON
+  response that occurred in an error case. Now correctly returns a
+  ValueError.
++ Requests would incorrectly ignore a non-CIDR IP address in the
+  NO_PROXY environment variables: Requests now treats it as a
+  specific IP.
++ Fixed a bug when sending JSON data that could cause us to
+  encounter obscure OpenSSL errors in certain network conditions
+  (yes, really).
++ Added type checks to ensure that iter_content only accepts
+  integers and None for chunk sizes.
++ Fixed issue where responses whose body had not been fully
+  consumed would have the underlying connection closed but not
+  returned to the connection pool, which could cause Requests to
+  hang in situations where the HTTPAdapter had been configured to
+  use a blocking connection pool.
+  * Miscellaneous
++ Updated bundled urllib3 to 1.16.
++ Some previous releases accidentally accepted non-strings as
+  acceptable header values. This release does not.
+
+---

Old:

  requests-2.10.0.tar.gz

New:

  requests-2.11.1.tar.gz



Other differences:
--
++ python3-requests.spec ++
--- /var/tmp/diff_new_pack.YaauFQ/_old  2016-08-25 09:50:09.0 +0200
+++ /var/tmp/diff_new_pack.YaauFQ/_new  2016-08-25 09:50:09.0 +0200
@@ -19,7 +19,7 @@
 %define urllib3_version 1.15.1
 
 Name:   python3-requests
-Version:2.10.0
+Version:2.11.1
 Release:0
 Summary:Awesome Python HTTP Library That's Actually Usable
 License:Apache-2.0

++ requests-2.10.0.tar.gz -> requests-2.11.1.tar.gz ++
 2776 lines of diff (skipped)




commit ncurses for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package ncurses for openSUSE:Factory checked 
in at 2016-08-25 09:49:27

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


Package is "ncurses"

Changes:

--- /work/SRC/openSUSE:Factory/ncurses/ncurses.changes  2016-07-24 
19:41:59.0 +0200
+++ /work/SRC/openSUSE:Factory/.ncurses.new/ncurses.changes 2016-08-25 
09:49:29.0 +0200
@@ -1,0 +2,41 @@
+Mon Aug 15 11:55:32 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160813
+  + add a dependency upon generated-sources in Ada95/src/Makefile.in to
+handle a case of "configure && make install".
+  + trim trailing blanks from include/Caps*, to work around a problem
+in sed (Debian #818067).
+
+---
+Mon Aug  8 12:32:57 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160806
+  + improve CF_GNU_SOURCE configure macro to optionally define
+_DEFAULT_SOURCE work around a nuisance in recent glibc releases.
+  + move the terminfo-specific parts of tput's "reset" function into
+the shared reset_cmd.c, making the two forms of reset use the same
+strings.
+  + split-out the terminal initialization functions from tset as
+progs/reset_cmd.c, as part of changes to merge the reset-feature
+with tput.
+
+---
+Mon Aug  1 11:45:10 UTC 2016 - wer...@suse.de
+
+- Add ncurses patch 20160730
+  + change tset's initialization to allow it to get settings from the
+standard input as well as /dev/tty, to be more effective when
+output or error are redirected.
+  + improve discussion of history and portability for tset/reset/tput
+manual pages.
+- Add ncurses patch 20160723
+  + improve error message from tset/reset when both stderr/stdout are
+redirected to a file or pipe.
+  + improve organization of curs_attr.3x, curs_color.3x
+- Add ncurses patch 20160709
+  + work around Debian's antique/unmaintained version of mawk when
+building link_test.
+  + improve test/list_keys.c, showing ncurses's convention of modifiers
+for special keys, based on xterm.
+
+---



Other differences:
--
++ ncurses-6.0-patches.tar.bz2 ++
 27338 lines of diff (skipped)

++ ncurses-6.0.dif ++
--- /var/tmp/diff_new_pack.eWGs5E/_old  2016-08-25 09:49:31.0 +0200
+++ /var/tmp/diff_new_pack.eWGs5E/_new  2016-08-25 09:49:31.0 +0200
@@ -21,7 +21,7 @@
  19 files changed, 239 insertions(+), 80 deletions(-)
 
 --- aclocal.m4
-+++ aclocal.m4 2016-07-07 09:02:12.558645150 +
 aclocal.m4 2016-08-08 12:33:42.740866267 +
 @@ -564,7 +564,7 @@ AC_MSG_CHECKING([for size of bool])
  AC_CACHE_VAL(cf_cv_type_of_bool,[
rm -f cf_test.out
@@ -31,7 +31,7 @@
  #include 
  
  #if defined(__cplusplus)
-@@ -4687,12 +4687,15 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\$TMP
  CF_EOF
  if test -n "$cf_compress" ; then
-@@ -4817,9 +4820,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <\$TMP
  CF_EOF
  if test -n "$cf_compress" ; then
-@@ -11694,9 +11697,9 @@ cat >>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <>$cf_edit_man <$@
 --- ncurses/curses.priv.h
-+++ ncurses/curses.priv.h  2016-07-07 09:02:12.566644995 +
 ncurses/curses.priv.h  2016-08-08 12:33:42.748866115 +
 @@ -2024,6 +2024,8 @@ extern NCURSES_EXPORT(char *) _nc_tracec
  extern NCURSES_EXPORT(char *) _nc_tracemouse (SCREEN *, MEVENT const *);
  extern NCURSES_EXPORT(char *) _nc_trace_mmask_t (SCREEN *, mmask_t);
@@ -795,7 +795,7 @@
  extern NCURSES_EXPORT(int) _nc_freewin (WINDOW *);
  extern NCURSES_EXPORT(int) _nc_getenv_num (const char *);
 --- ncurses/run_cmd.sh
-+++ ncurses/run_cmd.sh 2016-07-07 09:02:12.566644995 +
 ncurses/run_cmd.sh 2016-08-08 12:33:42.748866115 +
 @@ -0,0 +1,11 @@
 +#!/bin/sh
 +
@@ -809,7 +809,7 @@
 +
 +exec ${1+"$@"}
 --- ncurses/tinfo/MKfallback.sh
-+++ ncurses/tinfo/MKfallback.sh2016-07-07 09:02:12.566644995 +
 ncurses/tinfo/MKfallback.sh2016-08-08 12:33:42.748866115 +
 @@ -68,6 +68,12 @@ else
tmp_info=
  fi
@@ -842,7 +842,7 @@
done
  
 --- ncurses/tinfo/access.c
-+++ ncurses/tinfo/access.c 2016-07-07 09:02:12.566644995 +
 ncurses/tinfo/access.c 2016-08-08 12:33:42.748866115 +
 @@ -35,6 

commit screen for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package screen for openSUSE:Factory checked 
in at 2016-08-25 09:49:16

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


Package is "screen"

Changes:

--- /work/SRC/openSUSE:Factory/screen/screen.changes2015-09-19 
06:52:06.0 +0200
+++ /work/SRC/openSUSE:Factory/.screen.new/screen.changes   2016-08-25 
09:49:18.0 +0200
@@ -1,0 +2,14 @@
+Wed Aug 17 14:02:33 UTC 2016 - alexander_nau...@opensuse.org
+
+- Remove %postun - it tried to delete "screen.info.gz" file
+  second time.
+
+---
+Thu Aug 11 17:32:44 UTC 2016 - alexander_nau...@opensuse.org
+
+- GNU screen 4.4.0:
+ * Support up to 24 function keys
+ * 'logfile' command, starts logging into new file upon changing
+ * Fix runtime issues
+
+---

Old:

  screen-4.3.1.tar.gz
  screen-4.3.1.tar.gz.sig

New:

  screen-4.4.0.tar.gz
  screen-4.4.0.tar.gz.sig



Other differences:
--
++ screen.spec ++
--- /var/tmp/diff_new_pack.4Zbifr/_old  2016-08-25 09:49:19.0 +0200
+++ /var/tmp/diff_new_pack.4Zbifr/_new  2016-08-25 09:49:19.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package screen
 #
-# 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
@@ -39,7 +39,7 @@
 BuildRequires:  pam-devel
 PreReq: %install_info_prereq
 PreReq: coreutils
-Version:4.3.1
+Version:4.4.0
 Release:0
 Summary:A program to allow multiple screens on a VT100/ANSI Terminal
 License:GPL-3.0+
@@ -127,7 +127,4 @@
 test -d %rundir/screens || mkdir -m 755 %rundir/screens
 test -d %rundir/uscreens || mkdir -m 1777 %rundir/uscreens
 
-%postun
-%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
-
 %changelog

++ screen-4.3.1.tar.gz -> screen-4.4.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/screen-4.3.1/ChangeLog new/screen-4.4.0/ChangeLog
--- old/screen-4.3.1/ChangeLog  2015-06-28 23:41:01.0 +0200
+++ new/screen-4.4.0/ChangeLog  2016-06-19 22:20:33.0 +0200
@@ -1,3 +1,8 @@
+Version 4.4.0 (19/06/2016):
+  * Support up to 24 function keys
+  * Fix runtime issues
+  * 'logfile' command, starts logging into new file upon changing
+
 Version 4.3.1 (28/06/2015):
   * Fix resize bug
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/screen-4.3.1/INSTALL new/screen-4.4.0/INSTALL
--- old/screen-4.3.1/INSTALL2015-06-28 23:39:42.0 +0200
+++ new/screen-4.4.0/INSTALL2016-06-19 21:41:03.0 +0200
@@ -1,4 +1,4 @@
-Installation of screen 4.3.1
+Installation of GNU screen.
 
 
 0.) This instruction is quite lengthy
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/screen-4.3.1/Makefile.in new/screen-4.4.0/Makefile.in
--- old/screen-4.3.1/Makefile.in2015-06-28 23:22:55.0 +0200
+++ new/screen-4.4.0/Makefile.in2016-06-19 21:41:03.0 +0200
@@ -352,5 +352,5 @@
  braille.h
 list_generic.o: list_generic.h list_generic.c layer.h screen.h osdef.h
 list_display.o: list_generic.h list_display.c layer.h screen.h osdef.h
-list_window.o: list_generic.h list_window.c window.h layer.h screen.h osdef.h
+list_window.o: list_generic.h list_window.c window.h layer.h screen.h osdef.h 
comm.h
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/screen-4.3.1/README new/screen-4.4.0/README
--- old/screen-4.3.1/README 2015-06-28 23:39:55.0 +0200
+++ new/screen-4.4.0/README 2016-06-19 21:41:03.0 +0200
@@ -5,7 +5,7 @@
 
 
 
-Short introduction to screen (Version 4.3.1)
+Short introduction to GNU screen.
 
 Send bugreports, fixes, enhancements, t-shirts, money, beer & pizza to 
   screen-de...@gnu.org
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/screen-4.3.1/ansi.c new/screen-4.4.0/ansi.c
--- old/screen-4.3.1/ansi.c 2015-06-28 23:22:55.0 +0200
+++ new/screen-4.4.0/ansi.c 2016-06-19 21:41:03.0 +0200
@@ -2502,13 +2502,13 @@
 return;
   if (n > 0)
 {
+  if (ye - ys + 1 < n)
+   n = ye - ys + 1;
   if (n > 256)
{
  MScrollV(p, n - 256, ys, ye, bce);
  n = 256;
}
-  if (ye - ys + 1 < n)
-   n = ye 

commit timezone for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package timezone for openSUSE:Factory 
checked in at 2016-08-25 09:48:35

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


Package is "timezone"

Changes:

--- /work/SRC/openSUSE:Factory/timezone/timezone-java.changes   2016-07-16 
22:09:51.0 +0200
+++ /work/SRC/openSUSE:Factory/.timezone.new/timezone-java.changes  
2016-08-25 09:48:37.0 +0200
@@ -1,0 +2,12 @@
+Mon Aug  8 17:29:14 UTC 2016 - astie...@suse.com
+
+- A positive leap second will be added at the end of 2016-12-31
+  (bsc#988184) 0001-Positive-leap-second-on-2016-12-31.patch
+
+---
+Tue Aug  2 08:28:03 UTC 2016 - astie...@suse.com
+
+- add new signing key which is now available. Next release will
+  revert to previous key.
+
+---
timezone.changes: same change

New:

  0001-Positive-leap-second-on-2016-12-31.patch
  timezone.keyring
  tzcode2016f.tar.gz.asc
  tzdata2016f.tar.gz.asc



Other differences:
--
++ timezone-java.spec ++
--- /var/tmp/diff_new_pack.BPQn7g/_old  2016-08-25 09:48:38.0 +0200
+++ /var/tmp/diff_new_pack.BPQn7g/_new  2016-08-25 09:48:38.0 +0200
@@ -29,6 +29,10 @@
 Release:0
 Source: ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz
 Source1:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz
+Source2:ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz.asc
+Source3:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz.asc
+# http://sks.mrball.net/pks/lookup?op=get=0xED97E90E62AA7E34
+Source4:timezone.keyring
 Patch100:   tzcode-revert-01-8c9cb9580.patch
 Patch101:   tzcode-revert-02-301f794f3.patch
 Patch102:   tzcode-revert-03-39fd078a6.patch
@@ -39,6 +43,8 @@
 Patch3: iso3166-uk.diff
 Patch4: tzcode-link.diff
 Patch5: tzcode-symlink.patch
+# PATCH-FIX-UPSTREAM 0001-Positive-leap-second-on-2016-12-31.patch bsc#988184
+Patch6: 0001-Positive-leap-second-on-2016-12-31.patch
 # COMMON-END
 # COMMON-END
 Url:http://www.gnu.org/software/libc/libc.html
@@ -70,6 +76,7 @@
 %else
 %patch5 -p1
 %endif
+%patch6 -p1
 sed -ri 's@/usr/local/etc/zoneinfo@%{_datadir}/zoneinfo@g' *.[1358]
 # COMMON-PREP-END
 # COMMON-PREP-END

++ timezone.spec ++
--- /var/tmp/diff_new_pack.BPQn7g/_old  2016-08-25 09:48:38.0 +0200
+++ /var/tmp/diff_new_pack.BPQn7g/_new  2016-08-25 09:48:38.0 +0200
@@ -27,6 +27,10 @@
 Release:0
 Source: ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz
 Source1:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz
+Source2:ftp://ftp.iana.org/tz/releases/tzdata%{version}.tar.gz.asc
+Source3:ftp://ftp.iana.org/tz/releases/tzcode%{version}.tar.gz.asc
+# http://sks.mrball.net/pks/lookup?op=get=0xED97E90E62AA7E34
+Source4:timezone.keyring
 Patch100:   tzcode-revert-01-8c9cb9580.patch
 Patch101:   tzcode-revert-02-301f794f3.patch
 Patch102:   tzcode-revert-03-39fd078a6.patch
@@ -37,6 +41,8 @@
 Patch3: iso3166-uk.diff
 Patch4: tzcode-link.diff
 Patch5: tzcode-symlink.patch
+# PATCH-FIX-UPSTREAM 0001-Positive-leap-second-on-2016-12-31.patch bsc#988184
+Patch6: 0001-Positive-leap-second-on-2016-12-31.patch
 # COMMON-END
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
@@ -64,6 +70,7 @@
 %else
 %patch5 -p1
 %endif
+%patch6 -p1
 sed -ri 's@/usr/local/etc/zoneinfo@%{_datadir}/zoneinfo@g' *.[1358]
 # COMMON-PREP-END
 
@@ -74,7 +81,7 @@
 AREA=%{AREA}
 ZONE=%{ZONE}
 export AREA LANG LC_ALL ZONE
-make %{?_smp_mflags} TZDIR=%{_datadir}/zoneinfo CFLAGS="$RPM_OPT_FLAGS 
-DHAVE_GETTEXT=1 -DTZDEFAULT='\"/etc/localtime\"' -DTM_GMTOFF=tm_gmtoff 
-DTM_ZONE=tm_zone" AWK=awk
+make %{?_smp_mflags} TZDIR=%{_datadir}/zoneinfo CFLAGS="$RPM_OPT_FLAGS 
-DHAVE_GETTEXT=1 -DTZDEFAULT='\"/etc/localtime\"' -DTM_GMTOFF=tm_gmtoff 
-DTM_ZONE=tm_zone -Dlint" AWK=awk
 make %{?_smp_mflags} TZDIR=zoneinfo AWK=awk zones
 # Generate posixrules
 ./zic -y ./yearistype -d zoneinfo -p %{AREA}/%{ZONE}

++ 0001-Positive-leap-second-on-2016-12-31.patch ++
>From 6d5fc7fed0690f22574a9b795575e2bb7962716c Mon Sep 17 00:00:00 2001
From: Tim Parenti 
Date: Mon, 18 Jul 2016 23:10:36 -0400
Subject: [PATCH] Positive leap second on 2016-12-31

* leap-seconds.list: Per IERS Bulletin C52 (2016-07-06), a
positive leap second will be inserted into the UTC time scale at the end
of 2016-12-31.  Update file from NIST, retrieved from
.
---
 leap-seconds.list | 13 

commit parted for openSUSE:Factory

2016-08-25 Thread h_root
Hello community,

here is the log from the commit of package parted for openSUSE:Factory checked 
in at 2016-08-25 09:48:45

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


Package is "parted"

Changes:

--- /work/SRC/openSUSE:Factory/parted/parted.changes2016-06-26 
23:51:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.parted.new/parted.changes   2016-08-25 
09:48:47.0 +0200
@@ -1,0 +2,14 @@
+Tue Aug  9 14:36:20 CEST 2016 - sparscha...@suse.de
+
+- Sync with SLES-12 SP2 for bsc#979275
+  - amend: libparted-open-the-device-RO-and-lazily-switch-to-RW.patch
+
+---
+Tue Aug  9 14:04:47 CEST 2016 - sparscha...@suse.de
+
+- Correctly flush caches before reading from the device
+  (bsc#989751)
+  - amend: libparted-open-the-device-RO-and-lazily-switch-to-RW.patch
+  - refresh: libparted-Add-support-for-NVMe-devices.patch
+
+---



Other differences:
--
++ libparted-Add-support-for-NVMe-devices.patch ++
--- /var/tmp/diff_new_pack.S9SOO7/_old  2016-08-25 09:48:48.0 +0200
+++ /var/tmp/diff_new_pack.S9SOO7/_new  2016-08-25 09:48:48.0 +0200
@@ -50,8 +50,8 @@
  
  #define SCSI_BLK_MAJOR(M) ( \
  (M) == SCSI_DISK0_MAJOR \
-@@ -463,6 +464,12 @@ _ensure_read_write (PedDevice *dev)
-_flush_cache (dev);
+@@ -461,6 +462,12 @@ _ensure_read_write (PedDevice *dev)
+ return;
  }
  
 +static int
@@ -63,7 +63,7 @@
  #ifdef ENABLE_DEVICE_MAPPER
  static int
  _dm_task_run_wait (struct dm_task *task, uint32_t cookie)
-@@ -714,6 +721,8 @@ _device_probe_type (PedDevice* dev)
+@@ -712,6 +719,8 @@ _device_probe_type (PedDevice* dev)
  dev->type = PED_DEVICE_LOOP;
  } else if (dev_major == MD_MAJOR) {
  dev->type = PED_DEVICE_MD;
@@ -72,7 +72,7 @@
  } else {
  dev->type = PED_DEVICE_UNKNOWN;
  }
-@@ -1473,6 +1482,11 @@ linux_new (const char* path)
+@@ -1471,6 +1480,11 @@ linux_new (const char* path)
  goto error_free_arch_specific;
  break;
  

++ libparted-open-the-device-RO-and-lazily-switch-to-RW.patch ++
--- /var/tmp/diff_new_pack.S9SOO7/_old  2016-08-25 09:48:48.0 +0200
+++ /var/tmp/diff_new_pack.S9SOO7/_new  2016-08-25 09:48:48.0 +0200
@@ -4,6 +4,11 @@
 Subject: [PATCH] libparted: open the device RO and lazily switch to RW only if
  necessary
 
+[sparschauer: Use _flush_cache() also for reads, don't switch to RW
+ in _flush_cache() to avoid a possible recursion (bnc#989751), open
+ partitions in _flush_cache() O_RDONLY instead of O_WRONLY]
+Signed-off-by: Sebastian Parschauer 
+
 Avoid useless udev events triggered by opening the device RW
 for purely read-only operations.
 
@@ -14,11 +19,11 @@
  libparted/arch/linux.h |  1 +
  2 files changed, 31 insertions(+), 3 deletions(-)
 
-diff --git a/libparted/arch/linux.c b/libparted/arch/linux.c
-index 326b956..0a50452 100644
 a/libparted/arch/linux.c
-+++ b/libparted/arch/linux.c
-@@ -294,6 +294,9 @@ static unsigned int _device_get_partition_range(PedDevice 
const* dev);
+Index: parted-3.2/libparted/arch/linux.c
+===
+--- parted-3.2.orig/libparted/arch/linux.c
 parted-3.2/libparted/arch/linux.c
+@@ -295,6 +295,9 @@ static unsigned int _device_get_partitio
  static int _device_open (PedDevice* dev, int flags);
  static int _device_open_ro (PedDevice* dev);
  static int _device_close (PedDevice* dev);
@@ -28,7 +33,7 @@
  
  static int
  _read_fd (int fd, char **buf)
-@@ -441,6 +444,24 @@ _is_virtblk_major (int major)
+@@ -442,6 +445,22 @@ _is_virtblk_major (int major)
  return _major_type_in_devices (major, "virtblk");
  }
  
@@ -46,22 +51,21 @@
 +
 +   if (!_device_open (dev, RW_MODE))
 +return;
-+
-+   _flush_cache (dev);
 +}
 +
  #ifdef ENABLE_DEVICE_MAPPER
  static int
  _dm_task_run_wait (struct dm_task *task, uint32_t cookie)
-@@ -1604,6 +1625,7 @@ _flush_cache (PedDevice* dev)
- 
- if (dev->read_only)
- return;
-+_ensure_read_write (dev);
- dev->dirty = 0;
- 
- ioctl (arch_specific->fd, BLKFLSBUF);
-@@ -1647,7 +1669,7 @@ _device_open_ro (PedDevice* dev)
+@@ -1603,7 +1622,7 @@ _flush_cache (PedDevice* dev)
+ if (!name)
+ break;
+ if (!_partition_is_mounted_by_path (name)) {
+-fd = open (name, WR_MODE, 0);
++

  1   2   >