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:
Ondřej Súkup 2021-03-08 08:01:04 +00:00 committed by Git OBS Bridge
parent 2146e3388d
commit 6a32c44c23
5 changed files with 221 additions and 201 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ba66cd6de1749ec92568db1b9c905b43a849f0ad918d45d7b594407a02ebefb2
size 163431

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:21e0f38eaa1957bf471276afa17651c125a38924575f12c2cbd2fa534b45686f
size 163876

View File

@ -1,5 +1,5 @@
name: attoparsec
version: 0.13.2.4
version: 0.13.2.5
x-revision: 1
license: BSD3
license-file: LICENSE
@ -7,11 +7,11 @@ category: Text, Parsing
author: Bryan O'Sullivan <bos@serpentine.com>
maintainer: Bryan O'Sullivan <bos@serpentine.com>, Ben Gamari <ben@smart-cactus.org>
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
cabal-version: >= 1.8
homepage: https://github.com/bos/attoparsec
bug-reports: https://github.com/bos/attoparsec/issues
cabal-version: 2.0
homepage: https://github.com/bgamari/attoparsec
bug-reports: https://github.com/bgamari/attoparsec/issues
build-type: Simple
description:
A fast parser combinator library, aimed particularly at dealing
@ -39,16 +39,15 @@ Flag developer
Manual: True
library
build-depends: bytestring <0.11
build-depends: array,
base >= 4.3 && < 5,
bytestring <0.11,
bytestring <0.12,
containers,
deepseq,
scientific >= 0.3.1 && < 0.4,
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)
build-depends:
bytestring < 0.10.4.0
@ -75,12 +74,15 @@ library
other-modules: Data.Attoparsec.ByteString.Buffer
Data.Attoparsec.ByteString.FastSet
Data.Attoparsec.ByteString.Internal
Data.Attoparsec.Internal.Compat
Data.Attoparsec.Internal.Fhthagn
Data.Attoparsec.Text.Buffer
Data.Attoparsec.Text.FastSet
Data.Attoparsec.Text.Internal
ghc-options: -O2 -Wall
default-language: Haskell2010
if flag(developer)
ghc-prof-options: -auto-all
ghc-options: -Werror
@ -109,6 +111,7 @@ test-suite tests
Data.Attoparsec.ByteString.Lazy
Data.Attoparsec.Combinator
Data.Attoparsec.Internal
Data.Attoparsec.Internal.Compat
Data.Attoparsec.Internal.Fhthagn
Data.Attoparsec.Internal.Types
Data.Attoparsec.Number
@ -128,9 +131,9 @@ test-suite tests
build-depends:
array,
base,
bytestring <0.11,
bytestring,
deepseq >= 1.1,
QuickCheck >= 2.13.2 && < 2.14,
QuickCheck >= 2.13.2 && < 2.15,
quickcheck-unicode,
scientific,
tasty >= 0.11,
@ -139,6 +142,8 @@ test-suite tests
transformers,
vector
default-language: Haskell2010
if !impl(ghc >= 8.0)
-- Data.Semigroup && Control.Monad.Fail are available in base-4.9+
build-depends: fail == 4.9.*,
@ -185,6 +190,8 @@ benchmark benchmarks
unordered-containers,
vector
default-language: Haskell2010
if !impl(ghc >= 8.0)
-- Data.Semigroup && Control.Monad.Fail are available in base-4.9+
build-depends: fail == 4.9.*,
@ -192,5 +199,5 @@ benchmark benchmarks
source-repository head
type: git
location: https://github.com/bos/attoparsec
location: https://github.com/bgamari/attoparsec

View File

@ -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>

View File

@ -1,7 +1,7 @@
#
# 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
# remain the property of their copyright owners, unless otherwise agreed
@ -19,7 +19,7 @@
%global pkg_name attoparsec
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 0.13.2.4
Version: 0.13.2.5
Release: 0
Summary: Fast combinator parsing for bytestrings and text
License: BSD-3-Clause