Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-vault for openSUSE:Factory 
checked in at 2024-12-30 14:58:22
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-vault (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-vault.new.1881 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-vault"

Mon Dec 30 14:58:22 2024 rev:13 rq:1233836 version:0.3.1.5

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-vault/ghc-vault.changes      2024-09-09 
14:44:59.376060493 +0200
+++ /work/SRC/openSUSE:Factory/.ghc-vault.new.1881/ghc-vault.changes    
2024-12-30 14:58:25.060700778 +0100
@@ -1,0 +2,6 @@
+Sun Dec 22 20:08:58 UTC 2024 - Peter Simons <[email protected]>
+
+- Update vault to version 0.3.1.5 revision 9.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

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

Other differences:
------------------
++++++ ghc-vault.spec ++++++
--- /var/tmp/diff_new_pack.D0IKkL/_old  2024-12-30 14:58:26.024740450 +0100
+++ /var/tmp/diff_new_pack.D0IKkL/_new  2024-12-30 14:58:26.028740615 +0100
@@ -25,7 +25,7 @@
 License:        BSD-3-Clause
 URL:            https://hackage.haskell.org/package/%{pkg_name}
 Source0:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
-Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/8.cabal#/%{pkg_name}.cabal
+Source1:        
https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/9.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-base-devel
 BuildRequires:  ghc-base-prof

++++++ vault.cabal ++++++
--- /var/tmp/diff_new_pack.D0IKkL/_old  2024-12-30 14:58:26.076742590 +0100
+++ /var/tmp/diff_new_pack.D0IKkL/_new  2024-12-30 14:58:26.080742754 +0100
@@ -1,8 +1,9 @@
-Name:               vault
-Version:            0.3.1.5
-x-revision: 8
-Synopsis:           a persistent store for values of arbitrary types
-Description:
+cabal-version:      >= 1.10
+name:               vault
+version:            0.3.1.5
+x-revision: 9
+synopsis:           a persistent store for values of arbitrary types
+description:
   A /vault/ is a persistent store for values of arbitrary types.
   It's like having first-class access to the storage space behind IORefs.
   .
@@ -12,28 +13,31 @@
   .
   Also provided is a /locker/ type, representing a store for a single element.
 
-Category:           Data
-License:            BSD3
-License-file:       LICENSE
-Author:             Heinrich Apfelmus, Elliott Hird
-Maintainer:         Heinrich Apfelmus <apfelmus at quantentunnel de>
-Homepage:           https://github.com/HeinrichApfelmus/vault
-Copyright:          (c) Heinrich Apfelmus 2011-2013
+category:           Data
+
+license:            BSD3
+license-file:       LICENSE
+author:             Heinrich Apfelmus, Elliott Hird
+maintainer:         Heinrich Apfelmus <apfelmus at quantentunnel de>
+homepage:           https://github.com/HeinrichApfelmus/vault
+copyright:          (c) Heinrich Apfelmus 2011-2013
 
 build-type:         Simple
-cabal-version:      >= 1.10
-Tested-With:         GHC == 8.0.2
-                    ,GHC == 8.2.2
-                    ,GHC == 8.4.4
-                    ,GHC == 8.6.5
-                    ,GHC == 8.8.4
-                    ,GHC == 8.10.7
-                    ,GHC == 9.0.2
-                    ,GHC == 9.2.8
-                    ,GHC == 9.4.8
-                    ,GHC == 9.6.6
-                    ,GHC == 9.8.2
-                    ,GHC == 9.10.1
+
+tested-with:
+      GHC == 8.0.2
+    , GHC == 8.2.2
+    , GHC == 8.4.4
+    , GHC == 8.6.5
+    , GHC == 8.8.4
+    , GHC == 8.10.7
+    , GHC == 9.0.2
+    , GHC == 9.2.8
+    , GHC == 9.4.8
+    , GHC == 9.6.6
+    , GHC == 9.8.4
+    , GHC == 9.10.1
+    , GHC == 9.12.1
 
 extra-source-files:
     CHANGELOG.md
@@ -50,12 +54,13 @@
     description: Use GHC-specific packages and extensions.
     default:     True
 
-Library
+library
     hs-source-dirs:     src
-    build-depends:      base >= 4.5 && < 4.21,
-                        containers >= 0.4 && < 0.8,
-                        unordered-containers >= 0.2.3.0 && < 0.3,
-                        hashable >= 1.1.2.5 && < 1.6
+    build-depends:
+          base >= 4.5 && < 4.22
+        , containers >= 0.4 && < 0.8
+        , unordered-containers >= 0.2.3.0 && < 0.3
+        , hashable >= 1.1.2.5 && < 1.6
 
     if impl(ghc < 8.0)
         build-depends:  semigroups >= 0.1 && < 1.0
@@ -65,11 +70,11 @@
     ghc-options:        -Wall -fno-warn-missing-signatures
 
     exposed-modules:
-                        Data.Vault.Lazy,
-                        Data.Vault.Strict,
-                        Data.Vault.ST.Lazy,
-                        Data.Vault.ST.Strict,
-                        Data.Unique.Really
+        Data.Vault.Lazy
+        Data.Vault.Strict
+        Data.Vault.ST.Lazy
+        Data.Vault.ST.Strict
+        Data.Unique.Really
 
     if impl(ghc) && flag(UseGHC)
         CPP-options:    -DUseGHC

Reply via email to