update to 0.13.2.3
This commit is contained in:
parent
31e4b6de55
commit
0c7a8e782f
1
.gitignore
vendored
1
.gitignore
vendored
@ -15,3 +15,4 @@
|
|||||||
/attoparsec-0.13.1.0.tar.gz
|
/attoparsec-0.13.1.0.tar.gz
|
||||||
/attoparsec-0.13.2.0.tar.gz
|
/attoparsec-0.13.2.0.tar.gz
|
||||||
/attoparsec-0.13.2.2.tar.gz
|
/attoparsec-0.13.2.2.tar.gz
|
||||||
|
/attoparsec-0.13.2.3.tar.gz
|
||||||
|
@ -1,13 +1,13 @@
|
|||||||
name: attoparsec
|
name: attoparsec
|
||||||
version: 0.13.2.2
|
version: 0.13.2.3
|
||||||
x-revision: 3
|
x-revision: 1
|
||||||
license: BSD3
|
license: BSD3
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
category: Text, Parsing
|
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
|
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
|
||||||
synopsis: Fast combinator parsing for bytestrings and text
|
synopsis: Fast combinator parsing for bytestrings and text
|
||||||
cabal-version: >= 1.8
|
cabal-version: >= 1.8
|
||||||
homepage: https://github.com/bos/attoparsec
|
homepage: https://github.com/bos/attoparsec
|
||||||
@ -40,12 +40,12 @@ Flag developer
|
|||||||
|
|
||||||
library
|
library
|
||||||
build-depends: array,
|
build-depends: array,
|
||||||
base >= 4.2 && < 5,
|
base >= 4.3 && < 5,
|
||||||
bytestring,
|
bytestring,
|
||||||
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,
|
||||||
text >= 1.1.1.3
|
text >= 1.1.1.3
|
||||||
if impl(ghc < 7.4)
|
if impl(ghc < 7.4)
|
||||||
build-depends:
|
build-depends:
|
||||||
@ -125,22 +125,22 @@ test-suite tests
|
|||||||
|
|
||||||
build-depends:
|
build-depends:
|
||||||
array,
|
array,
|
||||||
base >= 4 && < 5,
|
base,
|
||||||
bytestring,
|
bytestring,
|
||||||
deepseq >= 1.1,
|
deepseq >= 1.1,
|
||||||
QuickCheck >= 2.7 && < 2.10,
|
QuickCheck >= 2.13.2 && < 2.14,
|
||||||
quickcheck-unicode,
|
quickcheck-unicode,
|
||||||
scientific,
|
scientific,
|
||||||
tasty >= 0.11,
|
tasty >= 0.11,
|
||||||
tasty-quickcheck >= 0.8,
|
tasty-quickcheck >= 0.8,
|
||||||
text,
|
text,
|
||||||
transformers >= 0.2 && (< 0.4 || >= 0.4.1.0) && < 0.6,
|
transformers,
|
||||||
vector
|
vector
|
||||||
|
|
||||||
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.19
|
||||||
|
|
||||||
benchmark benchmarks
|
benchmark benchmarks
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
@ -179,7 +179,7 @@ benchmark benchmarks
|
|||||||
parsec >= 3.1.2,
|
parsec >= 3.1.2,
|
||||||
scientific,
|
scientific,
|
||||||
text >= 1.1.1.0,
|
text >= 1.1.1.0,
|
||||||
transformers >= 0.2 && (< 0.4 || >= 0.4.1.0) && < 0.6,
|
transformers,
|
||||||
unordered-containers,
|
unordered-containers,
|
||||||
vector
|
vector
|
||||||
|
|
@ -5,8 +5,8 @@
|
|||||||
%global pkgver %{pkg_name}-%{version}
|
%global pkgver %{pkg_name}-%{version}
|
||||||
|
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.13.2.2
|
Version: 0.13.2.3
|
||||||
Release: 6%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Fast combinator parsing for bytestrings and text
|
Summary: Fast combinator parsing for bytestrings and text
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
@ -119,6 +119,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal
|
|||||||
|
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Sun Feb 09 2020 Jens Petersen <petersen@redhat.com> - 0.13.2.3-1
|
||||||
|
- update to 0.13.2.3
|
||||||
|
|
||||||
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.2.2-6
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.13.2.2-6
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (attoparsec-0.13.2.2.tar.gz) = 3726b9d3c45289b2148c8df99d41a31fbb32a9783e1ef3940110bf064da0d000277cba54a3d990210e48a4fcaa8ed016228be7d26861e74de40c971bd7c89ea6
|
SHA512 (attoparsec-0.13.2.3.tar.gz) = 84805ff547f1aa5eebd320c1bd738bc1098a9789fb330eff7bdcb1b0477e9709d86f93bd8848f4a8501a123b6add6bd22af59cfa94af66f1d57703745706a194
|
||||||
|
Loading…
Reference in New Issue
Block a user