update to 0.14.4
This commit is contained in:
parent
b9b37bff91
commit
38ba60b76f
1
.gitignore
vendored
1
.gitignore
vendored
@ -18,3 +18,4 @@
|
|||||||
/attoparsec-0.13.2.3.tar.gz
|
/attoparsec-0.13.2.3.tar.gz
|
||||||
/attoparsec-0.13.2.4.tar.gz
|
/attoparsec-0.13.2.4.tar.gz
|
||||||
/attoparsec-0.13.2.5.tar.gz
|
/attoparsec-0.13.2.5.tar.gz
|
||||||
|
/attoparsec-0.14.4.tar.gz
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
name: attoparsec
|
name: attoparsec
|
||||||
version: 0.13.2.5
|
version: 0.14.4
|
||||||
x-revision: 2
|
x-revision: 2
|
||||||
license: BSD3
|
license: BSD3
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
@ -7,7 +7,7 @@ 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.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.4, GHC==8.10.7, GHC ==9.0.2, GHC ==9.2.1
|
||||||
synopsis: Fast combinator parsing for bytestrings and text
|
synopsis: Fast combinator parsing for bytestrings and text
|
||||||
cabal-version: 2.0
|
cabal-version: 2.0
|
||||||
homepage: https://github.com/bgamari/attoparsec
|
homepage: https://github.com/bgamari/attoparsec
|
||||||
@ -19,8 +19,6 @@ description:
|
|||||||
file formats.
|
file formats.
|
||||||
extra-source-files:
|
extra-source-files:
|
||||||
README.markdown
|
README.markdown
|
||||||
benchmarks/*.cabal
|
|
||||||
benchmarks/*.hs
|
|
||||||
benchmarks/*.txt
|
benchmarks/*.txt
|
||||||
benchmarks/json-data/*.json
|
benchmarks/json-data/*.json
|
||||||
benchmarks/Makefile
|
benchmarks/Makefile
|
||||||
@ -29,27 +27,42 @@ extra-source-files:
|
|||||||
examples/*.c
|
examples/*.c
|
||||||
examples/*.hs
|
examples/*.hs
|
||||||
examples/Makefile
|
examples/Makefile
|
||||||
tests/*.hs
|
|
||||||
tests/QC/*.hs
|
|
||||||
tests/QC/IPv6/*.hs
|
|
||||||
|
|
||||||
Flag developer
|
Flag developer
|
||||||
Description: Whether to build the library in development mode
|
Description: Whether to build the library in development mode
|
||||||
Default: False
|
Default: False
|
||||||
Manual: True
|
Manual: True
|
||||||
|
|
||||||
library
|
-- We need to test and benchmark these modules,
|
||||||
build-depends: text <1.3
|
-- but do not want to expose them to end users
|
||||||
|
library attoparsec-internal
|
||||||
|
hs-source-dirs: internal
|
||||||
build-depends: array,
|
build-depends: array,
|
||||||
base >= 4.3 && < 5,
|
base >= 4.5 && < 5,
|
||||||
|
bytestring <0.12,
|
||||||
|
text >= 1.1.1.3
|
||||||
|
if !impl(ghc >= 8.0)
|
||||||
|
build-depends: semigroups >=0.16.1 && <0.21
|
||||||
|
exposed-modules: Data.Attoparsec.ByteString.Buffer
|
||||||
|
Data.Attoparsec.ByteString.FastSet
|
||||||
|
Data.Attoparsec.Internal.Compat
|
||||||
|
Data.Attoparsec.Internal.Fhthagn
|
||||||
|
Data.Attoparsec.Text.Buffer
|
||||||
|
Data.Attoparsec.Text.FastSet
|
||||||
|
ghc-options: -O2 -Wall
|
||||||
|
default-language: Haskell2010
|
||||||
|
|
||||||
|
library
|
||||||
|
build-depends: array,
|
||||||
|
base >= 4.5 && < 5,
|
||||||
bytestring <0.12,
|
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.7,
|
||||||
text >= 1.1.1.3,
|
text >= 1.1.1.3,
|
||||||
ghc-prim <0.8
|
ghc-prim <0.10,
|
||||||
|
attoparsec-internal
|
||||||
if impl(ghc < 7.4)
|
if impl(ghc < 7.4)
|
||||||
build-depends:
|
build-depends:
|
||||||
bytestring < 0.10.4.0
|
bytestring < 0.10.4.0
|
||||||
@ -57,7 +70,7 @@ library
|
|||||||
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.*,
|
||||||
semigroups >=0.16.1 && <0.20
|
semigroups >=0.16.1 && <0.21
|
||||||
|
|
||||||
exposed-modules: Data.Attoparsec
|
exposed-modules: Data.Attoparsec
|
||||||
Data.Attoparsec.ByteString
|
Data.Attoparsec.ByteString
|
||||||
@ -73,13 +86,7 @@ library
|
|||||||
Data.Attoparsec.Text.Lazy
|
Data.Attoparsec.Text.Lazy
|
||||||
Data.Attoparsec.Types
|
Data.Attoparsec.Types
|
||||||
Data.Attoparsec.Zepto
|
Data.Attoparsec.Zepto
|
||||||
other-modules: Data.Attoparsec.ByteString.Buffer
|
other-modules: Data.Attoparsec.ByteString.Internal
|
||||||
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
|
Data.Attoparsec.Text.Internal
|
||||||
ghc-options: -O2 -Wall
|
ghc-options: -O2 -Wall
|
||||||
|
|
||||||
@ -89,9 +96,9 @@ library
|
|||||||
ghc-prof-options: -auto-all
|
ghc-prof-options: -auto-all
|
||||||
ghc-options: -Werror
|
ghc-options: -Werror
|
||||||
|
|
||||||
test-suite tests
|
test-suite attoparsec-tests
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
hs-source-dirs: tests .
|
hs-source-dirs: tests
|
||||||
main-is: QC.hs
|
main-is: QC.hs
|
||||||
other-modules: QC.Buffer
|
other-modules: QC.Buffer
|
||||||
QC.ByteString
|
QC.ByteString
|
||||||
@ -105,25 +112,6 @@ test-suite tests
|
|||||||
QC.Text.FastSet
|
QC.Text.FastSet
|
||||||
QC.Text.Regressions
|
QC.Text.Regressions
|
||||||
|
|
||||||
other-modules: Data.Attoparsec.ByteString
|
|
||||||
Data.Attoparsec.ByteString.Buffer
|
|
||||||
Data.Attoparsec.ByteString.Char8
|
|
||||||
Data.Attoparsec.ByteString.FastSet
|
|
||||||
Data.Attoparsec.ByteString.Internal
|
|
||||||
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
|
|
||||||
Data.Attoparsec.Text
|
|
||||||
Data.Attoparsec.Text.Buffer
|
|
||||||
Data.Attoparsec.Text.FastSet
|
|
||||||
Data.Attoparsec.Text.Internal
|
|
||||||
Data.Attoparsec.Text.Lazy
|
|
||||||
Data.Attoparsec.Zepto
|
|
||||||
|
|
||||||
ghc-options:
|
ghc-options:
|
||||||
-Wall -threaded -rtsopts
|
-Wall -threaded -rtsopts
|
||||||
|
|
||||||
@ -132,6 +120,8 @@ test-suite tests
|
|||||||
|
|
||||||
build-depends:
|
build-depends:
|
||||||
array,
|
array,
|
||||||
|
attoparsec,
|
||||||
|
attoparsec-internal,
|
||||||
base,
|
base,
|
||||||
bytestring,
|
bytestring,
|
||||||
deepseq >= 1.1,
|
deepseq >= 1.1,
|
||||||
@ -151,13 +141,15 @@ test-suite tests
|
|||||||
build-depends: fail == 4.9.*,
|
build-depends: fail == 4.9.*,
|
||||||
semigroups >=0.16.1 && <0.19
|
semigroups >=0.16.1 && <0.19
|
||||||
|
|
||||||
benchmark benchmarks
|
benchmark attoparsec-benchmarks
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
hs-source-dirs: benchmarks benchmarks/warp-3.0.1.1 .
|
hs-source-dirs: benchmarks benchmarks/warp-3.0.1.1
|
||||||
ghc-options: -O2 -Wall -rtsopts
|
ghc-options: -O2 -Wall -rtsopts
|
||||||
main-is: Benchmarks.hs
|
main-is: Benchmarks.hs
|
||||||
other-modules:
|
other-modules:
|
||||||
|
Aeson
|
||||||
Common
|
Common
|
||||||
|
Genome
|
||||||
HeadersByteString
|
HeadersByteString
|
||||||
HeadersByteString.Atto
|
HeadersByteString.Atto
|
||||||
HeadersText
|
HeadersText
|
||||||
@ -175,11 +167,12 @@ benchmark benchmarks
|
|||||||
|
|
||||||
build-depends:
|
build-depends:
|
||||||
array,
|
array,
|
||||||
|
attoparsec,
|
||||||
|
attoparsec-internal,
|
||||||
base == 4.*,
|
base == 4.*,
|
||||||
bytestring >= 0.10.4.0,
|
bytestring >= 0.10.4.0,
|
||||||
case-insensitive,
|
case-insensitive,
|
||||||
containers,
|
containers,
|
||||||
criterion >= 1.0,
|
|
||||||
deepseq >= 1.1,
|
deepseq >= 1.1,
|
||||||
directory,
|
directory,
|
||||||
filepath,
|
filepath,
|
||||||
@ -187,6 +180,7 @@ benchmark benchmarks
|
|||||||
http-types,
|
http-types,
|
||||||
parsec >= 3.1.2,
|
parsec >= 3.1.2,
|
||||||
scientific,
|
scientific,
|
||||||
|
tasty-bench >= 0.3,
|
||||||
text >= 1.1.1.0,
|
text >= 1.1.1.0,
|
||||||
transformers,
|
transformers,
|
||||||
unordered-containers,
|
unordered-containers,
|
||||||
@ -202,4 +196,3 @@ benchmark benchmarks
|
|||||||
source-repository head
|
source-repository head
|
||||||
type: git
|
type: git
|
||||||
location: https://github.com/bgamari/attoparsec
|
location: https://github.com/bgamari/attoparsec
|
||||||
|
|
@ -1,4 +1,4 @@
|
|||||||
# generated by cabal-rpm-2.0.9
|
# generated by cabal-rpm-2.1.0
|
||||||
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/
|
||||||
|
|
||||||
%global pkg_name attoparsec
|
%global pkg_name attoparsec
|
||||||
@ -7,11 +7,11 @@
|
|||||||
# testsuite missing deps: quickcheck-unicode
|
# testsuite missing deps: quickcheck-unicode
|
||||||
|
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.13.2.5
|
Version: 0.14.4
|
||||||
Release: 4%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Fast combinator parsing for bytestrings and text
|
Summary: Fast combinator parsing for bytestrings and text
|
||||||
|
|
||||||
License: BSD
|
License: BSD-3-Clause
|
||||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
Url: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
# Begin cabal-rpm sources:
|
# Begin cabal-rpm sources:
|
||||||
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz
|
||||||
@ -22,6 +22,15 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#
|
|||||||
BuildRequires: dos2unix
|
BuildRequires: dos2unix
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-rpm-macros
|
BuildRequires: ghc-rpm-macros
|
||||||
|
BuildRequires: ghc-array-devel
|
||||||
|
BuildRequires: ghc-base-devel
|
||||||
|
BuildRequires: ghc-bytestring-devel
|
||||||
|
BuildRequires: ghc-containers-devel
|
||||||
|
BuildRequires: ghc-deepseq-devel
|
||||||
|
BuildRequires: ghc-scientific-devel
|
||||||
|
BuildRequires: ghc-text-devel
|
||||||
|
BuildRequires: ghc-transformers-devel
|
||||||
|
%if %{with ghc_prof}
|
||||||
BuildRequires: ghc-array-prof
|
BuildRequires: ghc-array-prof
|
||||||
BuildRequires: ghc-base-prof
|
BuildRequires: ghc-base-prof
|
||||||
BuildRequires: ghc-bytestring-prof
|
BuildRequires: ghc-bytestring-prof
|
||||||
@ -30,6 +39,7 @@ BuildRequires: ghc-deepseq-prof
|
|||||||
BuildRequires: ghc-scientific-prof
|
BuildRequires: ghc-scientific-prof
|
||||||
BuildRequires: ghc-text-prof
|
BuildRequires: ghc-text-prof
|
||||||
BuildRequires: ghc-transformers-prof
|
BuildRequires: ghc-transformers-prof
|
||||||
|
%endif
|
||||||
# End cabal-rpm deps
|
# End cabal-rpm deps
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -113,6 +123,10 @@ dos2unix -k -n %{SOURCE1} %{pkg_name}.cabal
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Jan 22 2023 Jens Petersen <petersen@redhat.com> - 0.14.4-1
|
||||||
|
- https://hackage.haskell.org/package/attoparsec-0.14.4/changelog
|
||||||
|
- refresh to cabal-rpm-2.1.0 with SPDX migration
|
||||||
|
|
||||||
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.2.5-4
|
* Thu Jul 21 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.2.5-4
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (attoparsec-0.13.2.5.tar.gz) = 357545ebd003faff09485cdf89adee9f1f87b49ab9c26a133ef3d0ac165e3880eecd147431131ede425f5863f07ee79857fe2cbbfba1a3155abd70894f553c59
|
SHA512 (attoparsec-0.14.4.tar.gz) = 48aa7743b24def2db7041e3e0189d9844194c42b5d216ff5060806a80eb550200ddcb11e9321a910ac4881ffdd7381d80a4b88a73acfb29209c650eababb925b
|
||||||
|
Loading…
Reference in New Issue
Block a user