osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-attoparsec revision:15, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-attoparsec?expand=0&rev=57
This commit is contained in:
parent
2146e3388d
commit
6a32c44c23
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ba66cd6de1749ec92568db1b9c905b43a849f0ad918d45d7b594407a02ebefb2
|
|
||||||
size 163431
|
|
3
attoparsec-0.13.2.5.tar.gz
Normal file
3
attoparsec-0.13.2.5.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:21e0f38eaa1957bf471276afa17651c125a38924575f12c2cbd2fa534b45686f
|
||||||
|
size 163876
|
@ -1,5 +1,5 @@
|
|||||||
name: attoparsec
|
name: attoparsec
|
||||||
version: 0.13.2.4
|
version: 0.13.2.5
|
||||||
x-revision: 1
|
x-revision: 1
|
||||||
license: BSD3
|
license: BSD3
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
@ -7,11 +7,11 @@ category: Text, Parsing
|
|||||||
author: Bryan O'Sullivan <bos@serpentine.com>
|
author: Bryan O'Sullivan <bos@serpentine.com>
|
||||||
maintainer: Bryan O'Sullivan <bos@serpentine.com>, Ben Gamari <ben@smart-cactus.org>
|
maintainer: Bryan O'Sullivan <bos@serpentine.com>, Ben Gamari <ben@smart-cactus.org>
|
||||||
stability: experimental
|
stability: experimental
|
||||||
tested-with: GHC == 7.0.4, GHC == 7.2.2, GHC == 7.4.2, GHC ==7.6.3, GHC ==7.8.4, GHC ==7.10.3, GHC ==8.0.2, GHC ==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.1, GHC==8.10.1
|
tested-with: GHC == 7.4.2, GHC ==7.6.3, GHC ==7.8.4, GHC ==7.10.3, GHC ==8.0.2, GHC ==8.2.2, GHC==8.4.4, GHC==8.6.5, GHC==8.8.1, GHC==8.10.1
|
||||||
synopsis: Fast combinator parsing for bytestrings and text
|
synopsis: Fast combinator parsing for bytestrings and text
|
||||||
cabal-version: >= 1.8
|
cabal-version: 2.0
|
||||||
homepage: https://github.com/bos/attoparsec
|
homepage: https://github.com/bgamari/attoparsec
|
||||||
bug-reports: https://github.com/bos/attoparsec/issues
|
bug-reports: https://github.com/bgamari/attoparsec/issues
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
description:
|
description:
|
||||||
A fast parser combinator library, aimed particularly at dealing
|
A fast parser combinator library, aimed particularly at dealing
|
||||||
@ -39,16 +39,15 @@ Flag developer
|
|||||||
Manual: True
|
Manual: True
|
||||||
|
|
||||||
library
|
library
|
||||||
build-depends: bytestring <0.11
|
|
||||||
|
|
||||||
build-depends: array,
|
build-depends: array,
|
||||||
base >= 4.3 && < 5,
|
base >= 4.3 && < 5,
|
||||||
bytestring <0.11,
|
bytestring <0.12,
|
||||||
containers,
|
containers,
|
||||||
deepseq,
|
deepseq,
|
||||||
scientific >= 0.3.1 && < 0.4,
|
scientific >= 0.3.1 && < 0.4,
|
||||||
transformers >= 0.2 && (< 0.4 || >= 0.4.1.0) && < 0.6,
|
transformers >= 0.2 && (< 0.4 || >= 0.4.1.0) && < 0.6,
|
||||||
text >= 1.1.1.3
|
text >= 1.1.1.3,
|
||||||
|
ghc-prim <0.8
|
||||||
if impl(ghc < 7.4)
|
if impl(ghc < 7.4)
|
||||||
build-depends:
|
build-depends:
|
||||||
bytestring < 0.10.4.0
|
bytestring < 0.10.4.0
|
||||||
@ -75,12 +74,15 @@ library
|
|||||||
other-modules: Data.Attoparsec.ByteString.Buffer
|
other-modules: Data.Attoparsec.ByteString.Buffer
|
||||||
Data.Attoparsec.ByteString.FastSet
|
Data.Attoparsec.ByteString.FastSet
|
||||||
Data.Attoparsec.ByteString.Internal
|
Data.Attoparsec.ByteString.Internal
|
||||||
|
Data.Attoparsec.Internal.Compat
|
||||||
Data.Attoparsec.Internal.Fhthagn
|
Data.Attoparsec.Internal.Fhthagn
|
||||||
Data.Attoparsec.Text.Buffer
|
Data.Attoparsec.Text.Buffer
|
||||||
Data.Attoparsec.Text.FastSet
|
Data.Attoparsec.Text.FastSet
|
||||||
Data.Attoparsec.Text.Internal
|
Data.Attoparsec.Text.Internal
|
||||||
ghc-options: -O2 -Wall
|
ghc-options: -O2 -Wall
|
||||||
|
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
if flag(developer)
|
if flag(developer)
|
||||||
ghc-prof-options: -auto-all
|
ghc-prof-options: -auto-all
|
||||||
ghc-options: -Werror
|
ghc-options: -Werror
|
||||||
@ -109,6 +111,7 @@ test-suite tests
|
|||||||
Data.Attoparsec.ByteString.Lazy
|
Data.Attoparsec.ByteString.Lazy
|
||||||
Data.Attoparsec.Combinator
|
Data.Attoparsec.Combinator
|
||||||
Data.Attoparsec.Internal
|
Data.Attoparsec.Internal
|
||||||
|
Data.Attoparsec.Internal.Compat
|
||||||
Data.Attoparsec.Internal.Fhthagn
|
Data.Attoparsec.Internal.Fhthagn
|
||||||
Data.Attoparsec.Internal.Types
|
Data.Attoparsec.Internal.Types
|
||||||
Data.Attoparsec.Number
|
Data.Attoparsec.Number
|
||||||
@ -128,9 +131,9 @@ test-suite tests
|
|||||||
build-depends:
|
build-depends:
|
||||||
array,
|
array,
|
||||||
base,
|
base,
|
||||||
bytestring <0.11,
|
bytestring,
|
||||||
deepseq >= 1.1,
|
deepseq >= 1.1,
|
||||||
QuickCheck >= 2.13.2 && < 2.14,
|
QuickCheck >= 2.13.2 && < 2.15,
|
||||||
quickcheck-unicode,
|
quickcheck-unicode,
|
||||||
scientific,
|
scientific,
|
||||||
tasty >= 0.11,
|
tasty >= 0.11,
|
||||||
@ -139,6 +142,8 @@ test-suite tests
|
|||||||
transformers,
|
transformers,
|
||||||
vector
|
vector
|
||||||
|
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
if !impl(ghc >= 8.0)
|
if !impl(ghc >= 8.0)
|
||||||
-- Data.Semigroup && Control.Monad.Fail are available in base-4.9+
|
-- Data.Semigroup && Control.Monad.Fail are available in base-4.9+
|
||||||
build-depends: fail == 4.9.*,
|
build-depends: fail == 4.9.*,
|
||||||
@ -185,6 +190,8 @@ benchmark benchmarks
|
|||||||
unordered-containers,
|
unordered-containers,
|
||||||
vector
|
vector
|
||||||
|
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
if !impl(ghc >= 8.0)
|
if !impl(ghc >= 8.0)
|
||||||
-- Data.Semigroup && Control.Monad.Fail are available in base-4.9+
|
-- Data.Semigroup && Control.Monad.Fail are available in base-4.9+
|
||||||
build-depends: fail == 4.9.*,
|
build-depends: fail == 4.9.*,
|
||||||
@ -192,5 +199,5 @@ benchmark benchmarks
|
|||||||
|
|
||||||
source-repository head
|
source-repository head
|
||||||
type: git
|
type: git
|
||||||
location: https://github.com/bos/attoparsec
|
location: https://github.com/bgamari/attoparsec
|
||||||
|
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Mar 3 16:37:14 UTC 2021 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update attoparsec to version 0.13.2.5 revision 1.
|
||||||
|
Upstream has revised the Cabal build instructions on Hackage.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Feb 10 13:04:58 UTC 2021 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update attoparsec to version 0.13.2.5.
|
||||||
|
Upstream has not updated the file "changelog.md" since the last
|
||||||
|
release.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup <mimi.vx@gmail.com>
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-attoparsec
|
# spec file for package ghc-attoparsec
|
||||||
#
|
#
|
||||||
# Copyright (c) 2020 SUSE LLC
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,7 +19,7 @@
|
|||||||
%global pkg_name attoparsec
|
%global pkg_name attoparsec
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.13.2.4
|
Version: 0.13.2.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Fast combinator parsing for bytestrings and text
|
Summary: Fast combinator parsing for bytestrings and text
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
|
Loading…
x
Reference in New Issue
Block a user