Hello community,

here is the log from the commit of package ghc-tries for openSUSE:Factory 
checked in at 2017-05-10 20:49:53
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-tries (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-tries.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-tries"

Wed May 10 20:49:53 2017 rev:2 rq:491517 version:0.0.4.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-tries/ghc-tries.changes      2017-04-14 
13:32:32.219349958 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-tries.new/ghc-tries.changes 2017-05-10 
20:49:53.580134913 +0200
@@ -1,0 +2,10 @@
+Wed Apr 19 13:32:03 UTC 2017 - [email protected]
+
+- Update to version 0.0.4.2 with cabal2obs.
+
+-------------------------------------------------------------------
+Wed Mar 22 09:16:15 UTC 2017 - [email protected]
+
+- Update to version 0.0.4.1 with cabal2obs.
+
+-------------------------------------------------------------------

Old:
----
  tries-0.0.4.tar.gz

New:
----
  tries-0.0.4.2.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-tries.spec ++++++
--- /var/tmp/diff_new_pack.h1dmMm/_old  2017-05-10 20:49:54.168051953 +0200
+++ /var/tmp/diff_new_pack.h1dmMm/_new  2017-05-10 20:49:54.172051389 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package ghc-tries
 #
-# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,15 +19,14 @@
 %global pkg_name tries
 %bcond_with tests
 Name:           ghc-%{pkg_name}
-Version:        0.0.4
+Version:        0.0.4.2
 Release:        0
 Summary:        Various trie implementations in 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-QuickCheck-devel
 BuildRequires:  ghc-bytestring-devel
 BuildRequires:  ghc-bytestring-trie-devel
@@ -49,7 +48,6 @@
 BuildRequires:  ghc-tasty-devel
 BuildRequires:  ghc-tasty-quickcheck-devel
 %endif
-# End cabal-rpm deps
 
 %description
 Various trie implementations in Haskell.
@@ -68,20 +66,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

++++++ tries-0.0.4.tar.gz -> tries-0.0.4.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tries-0.0.4/test/Data/TrieSpec.hs 
new/tries-0.0.4.2/test/Data/TrieSpec.hs
--- old/tries-0.0.4/test/Data/TrieSpec.hs       2015-12-11 20:40:15.000000000 
+0100
+++ new/tries-0.0.4.2/test/Data/TrieSpec.hs     2017-04-14 08:17:53.000000000 
+0200
@@ -97,8 +97,3 @@
 lookupDeleteNotExists ps trie = isNothing $ lookup ps $ delete ps trie
 
 
-
--- Instances -------------
-
-instance Arbitrary a => Arbitrary (NonEmpty a) where
-  arbitrary = NE.fromList <$> arbitrary `suchThat` (not . null)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/tries-0.0.4/tries.cabal new/tries-0.0.4.2/tries.cabal
--- old/tries-0.0.4/tries.cabal 2015-12-15 21:03:10.000000000 +0100
+++ new/tries-0.0.4.2/tries.cabal       2017-04-14 08:29:56.000000000 +0200
@@ -1,5 +1,5 @@
 Name:                   tries
-Version:                0.0.4
+Version:                0.0.4.2
 Author:                 Athan Clark <[email protected]>
 Maintainer:             Athan Clark <[email protected]>
 License:                BSD3
@@ -36,43 +36,24 @@
 --                      , TernaryTrees
                       , rose-trees >= 0.0.2.1
                       , semigroups
-                      , sets >= 0.0.5
+                      , sets >= 0.0.5.2
                       , unordered-containers
-                      , QuickCheck
+                      , QuickCheck >= 2.9.2
                       , quickcheck-instances
 
 Test-Suite test
   Type:                 exitcode-stdio-1.0
   Default-Language:     Haskell2010
-  Hs-Source-Dirs:       src
-                      , test
+  Hs-Source-Dirs:       test
   Ghc-Options:          -Wall -threaded
   Main-Is:              Spec.hs
   Other-Modules:        Data.TrieSpec
-                        Data.Trie.Class
-                        Data.Trie.HashMap
-                        Data.Trie.Knuth
-                        Data.Trie.List
-                        Data.Trie.Map
-                        Data.Trie.Pseudo
   Build-Depends:        base
-                      , bytestring
-                      , bytestring-trie
-                      , composition
-                      , composition-extra
-                      , deepseq
---                      , TernaryTrees
+                      , tries
                       , containers
-                      , hashable
-                      , keys
                       , mtl
-                      , rose-trees
-                      , sets
-                      , semigroups
-                      , tries
                       , tasty
                       , tasty-quickcheck
-                      , unordered-containers
                       , QuickCheck
                       , quickcheck-instances
 
@@ -80,36 +61,17 @@
 Benchmark bench
   Type:                 exitcode-stdio-1.0
   Default-Language:     Haskell2010
-  Hs-Source-Dirs:       src
-                      , bench
+  Hs-Source-Dirs:       bench
   Ghc-Options:          -Wall -threaded
   Main-Is:              Bench.hs
-  Other-Modules:        Data.Trie.Class
-                        Data.Trie.HashMap
-                        Data.Trie.Knuth
-                        Data.Trie.List
-                        Data.Trie.Map
-                        Data.Trie.Pseudo
-                        Build
+  Other-Modules:        Build
   Build-Depends:        base
-                      , bytestring
-                      , bytestring-trie
-                      , composition
-                      , composition-extra
-                      , containers
-                      , deepseq
---                      , TernaryTrees
-                      , hashable
-                      , keys
-                      , mtl
-                      , rose-trees
-                      , semigroups
-                      , sets
                       , tries
-                      , unordered-containers
-                      , QuickCheck
-                      , quickcheck-instances
                       , criterion
+                      , rose-trees
+                      , mtl
+                      , unordered-containers
+                      , containers
 
 Benchmark bench-lookup
   if flag(Lookup)
@@ -118,36 +80,17 @@
     Buildable: False
   Type:                 exitcode-stdio-1.0
   Default-Language:     Haskell2010
-  Hs-Source-Dirs:       src
-                      , bench
+  Hs-Source-Dirs:       bench
   Ghc-Options:          -Wall -threaded
   Main-Is:              BenchLookup.hs
-  Other-Modules:        Data.Trie.Class
-                        Data.Trie.HashMap
-                        Data.Trie.Knuth
-                        Data.Trie.List
-                        Data.Trie.Map
-                        Data.Trie.Pseudo
-                        Build
+  Other-Modules:        Build
   Build-Depends:        base
-                      , bytestring
-                      , bytestring-trie
-                      , composition
-                      , composition-extra
-                      , containers
-                      , deepseq
---                      , TernaryTrees
-                      , hashable
-                      , keys
-                      , mtl
-                      , rose-trees
-                      , semigroups
-                      , sets
                       , tries
-                      , unordered-containers
-                      , QuickCheck
-                      , quickcheck-instances
                       , criterion
+                      , rose-trees
+                      , mtl
+                      , unordered-containers
+                      , containers
 
 Source-Repository head
   Type:                 git


Reply via email to