SHA256
1
0
forked from pool/ghc-vault

Accepting request 1233836 from devel:languages:haskell

Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1233836
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-vault?expand=0&rev=13
This commit is contained in:
Ana Guerrero 2024-12-30 13:58:22 +00:00 committed by Git OBS Bridge
commit a1c83b7211
3 changed files with 47 additions and 36 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Sun Dec 22 20:08:58 UTC 2024 - Peter Simons <psimons@suse.com>
- Update vault to version 0.3.1.5 revision 9.
Upstream has revised the Cabal build instructions on Hackage.
------------------------------------------------------------------- -------------------------------------------------------------------
Sat Aug 31 11:37:47 UTC 2024 - Peter Simons <psimons@suse.com> Sat Aug 31 11:37:47 UTC 2024 - Peter Simons <psimons@suse.com>

View File

@ -25,7 +25,7 @@ Summary: A persistent store for values of arbitrary types
License: BSD-3-Clause License: BSD-3-Clause
URL: https://hackage.haskell.org/package/%{pkg_name} URL: https://hackage.haskell.org/package/%{pkg_name}
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz 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-Cabal-devel
BuildRequires: ghc-base-devel BuildRequires: ghc-base-devel
BuildRequires: ghc-base-prof BuildRequires: ghc-base-prof

View File

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