Accepting request 930425 from devel:languages:haskell
automated update of haskell stack OBS-URL: https://build.opensuse.org/request/show/930425 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-HsYAML?expand=0&rev=13
This commit is contained in:
commit
84e59df623
24
HsYAML.cabal
24
HsYAML.cabal
@ -1,7 +1,7 @@
|
|||||||
cabal-version: 1.14
|
cabal-version: 1.14
|
||||||
name: HsYAML
|
name: HsYAML
|
||||||
version: 0.2.1.0
|
version: 0.2.1.0
|
||||||
x-revision: 2
|
x-revision: 3
|
||||||
|
|
||||||
synopsis: Pure Haskell YAML 1.2 processor
|
synopsis: Pure Haskell YAML 1.2 processor
|
||||||
homepage: https://github.com/hvr/HsYAML
|
homepage: https://github.com/hvr/HsYAML
|
||||||
@ -15,7 +15,19 @@ copyright: 2015-2018 Herbert Valerio Riedel
|
|||||||
, 2007-2008 Oren Ben-Kiki
|
, 2007-2008 Oren Ben-Kiki
|
||||||
category: Text
|
category: Text
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
tested-with: GHC==8.6.1, GHC==8.4.3, GHC==8.4.1, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3, GHC==7.4.2
|
tested-with:
|
||||||
|
GHC == 9.2.1
|
||||||
|
GHC == 9.0.1
|
||||||
|
GHC == 8.10.7
|
||||||
|
GHC == 8.8.4
|
||||||
|
GHC == 8.6.5
|
||||||
|
GHC == 8.4.4
|
||||||
|
GHC == 8.2.2
|
||||||
|
GHC == 8.0.2
|
||||||
|
GHC == 7.10.3
|
||||||
|
GHC == 7.8.4
|
||||||
|
GHC == 7.6.3
|
||||||
|
GHC == 7.4.2
|
||||||
|
|
||||||
description:
|
description:
|
||||||
@HsYAML@ is a [YAML 1.2](http://yaml.org/spec/1.2/spec.html) processor, i.e. a library for parsing and serializing YAML documents.
|
@HsYAML@ is a [YAML 1.2](http://yaml.org/spec/1.2/spec.html) processor, i.e. a library for parsing and serializing YAML documents.
|
||||||
@ -78,7 +90,7 @@ library
|
|||||||
Trustworthy
|
Trustworthy
|
||||||
TypeSynonymInstances
|
TypeSynonymInstances
|
||||||
|
|
||||||
build-depends: base >=4.5 && <4.16
|
build-depends: base >=4.5 && <4.17
|
||||||
, bytestring >=0.9 && <0.12
|
, bytestring >=0.9 && <0.12
|
||||||
, containers >=0.4.2 && <0.7
|
, containers >=0.4.2 && <0.7
|
||||||
, deepseq >=1.3.0 && <1.5
|
, deepseq >=1.3.0 && <1.5
|
||||||
@ -114,7 +126,7 @@ executable yaml-test
|
|||||||
, containers
|
, containers
|
||||||
, mtl
|
, mtl
|
||||||
-- non-inherited
|
-- non-inherited
|
||||||
, megaparsec >= 6.5.0 && < 6.6
|
, megaparsec >= 6.5.0 && < 10
|
||||||
, microaeson == 0.1.*
|
, microaeson == 0.1.*
|
||||||
, filepath == 1.4.*
|
, filepath == 1.4.*
|
||||||
, directory >= 1.2 && < 1.4
|
, directory >= 1.2 && < 1.4
|
||||||
@ -139,6 +151,6 @@ test-suite tests
|
|||||||
, containers
|
, containers
|
||||||
, mtl
|
, mtl
|
||||||
-- non-inherited
|
-- non-inherited
|
||||||
, QuickCheck == 2.13.*
|
, QuickCheck == 2.14.*
|
||||||
, tasty == 1.2.*
|
, tasty == 1.4.*
|
||||||
, tasty-quickcheck == 0.10.*
|
, tasty-quickcheck == 0.10.*
|
||||||
|
@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 8 16:30:36 UTC 2021 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update HsYAML to version 0.2.1.0 revision 3.
|
||||||
|
Upstream has revised the Cabal build instructions on Hackage.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 11 17:56:50 UTC 2021 - psimons@suse.com
|
Thu Mar 11 17:56:50 UTC 2021 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -25,7 +25,7 @@ Summary: Pure Haskell YAML 1.2 processor
|
|||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
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/2.cabal#/%{pkg_name}.cabal
|
Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/3.cabal#/%{pkg_name}.cabal
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-bytestring-devel
|
BuildRequires: ghc-bytestring-devel
|
||||||
BuildRequires: ghc-containers-devel
|
BuildRequires: ghc-containers-devel
|
||||||
|
Loading…
Reference in New Issue
Block a user