From ad012a3a4103254184c07f5dbaae86f8ea5eac19 Mon Sep 17 00:00:00 2001 From: Alexey Lyubimov Date: Fri, 18 Aug 2023 22:28:40 +0300 Subject: [PATCH] import ghc-attoparsec-0.13.2.5-2.el9 --- .ghc-attoparsec.metadata | 1 + .gitignore | 1 + SOURCES/attoparsec-0.13.2.5.cabal | 205 +++++++++++++++++++++ SPECS/ghc-attoparsec.spec | 292 ++++++++++++++++++++++++++++++ 4 files changed, 499 insertions(+) create mode 100644 .ghc-attoparsec.metadata create mode 100644 .gitignore create mode 100644 SOURCES/attoparsec-0.13.2.5.cabal create mode 100644 SPECS/ghc-attoparsec.spec diff --git a/.ghc-attoparsec.metadata b/.ghc-attoparsec.metadata new file mode 100644 index 0000000..581cb6d --- /dev/null +++ b/.ghc-attoparsec.metadata @@ -0,0 +1 @@ +9535e218943738d4b6b7ce0fd7deb0078db148ea SOURCES/attoparsec-0.13.2.5.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4869a00 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/attoparsec-0.13.2.5.tar.gz diff --git a/SOURCES/attoparsec-0.13.2.5.cabal b/SOURCES/attoparsec-0.13.2.5.cabal new file mode 100644 index 0000000..385e51a --- /dev/null +++ b/SOURCES/attoparsec-0.13.2.5.cabal @@ -0,0 +1,205 @@ +name: attoparsec +version: 0.13.2.5 +x-revision: 2 +license: BSD3 +license-file: LICENSE +category: Text, Parsing +author: Bryan O'Sullivan +maintainer: Bryan O'Sullivan , Ben Gamari +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 +synopsis: Fast combinator parsing for bytestrings and text +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 + efficiently with network protocols and complicated text/binary + file formats. +extra-source-files: + README.markdown + benchmarks/*.cabal + benchmarks/*.hs + benchmarks/*.txt + benchmarks/json-data/*.json + benchmarks/Makefile + benchmarks/med.txt.bz2 + changelog.md + examples/*.c + examples/*.hs + examples/Makefile + tests/*.hs + tests/QC/*.hs + tests/QC/IPv6/*.hs + +Flag developer + Description: Whether to build the library in development mode + Default: False + Manual: True + +library + build-depends: text <1.3 + + build-depends: array, + base >= 4.3 && < 5, + 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, + ghc-prim <0.8 + if impl(ghc < 7.4) + build-depends: + bytestring < 0.10.4.0 + + if !impl(ghc >= 8.0) + -- Data.Semigroup && Control.Monad.Fail are available in base-4.9+ + build-depends: fail == 4.9.*, + semigroups >=0.16.1 && <0.20 + + exposed-modules: Data.Attoparsec + Data.Attoparsec.ByteString + Data.Attoparsec.ByteString.Char8 + Data.Attoparsec.ByteString.Lazy + Data.Attoparsec.Char8 + Data.Attoparsec.Combinator + Data.Attoparsec.Internal + Data.Attoparsec.Internal.Types + Data.Attoparsec.Lazy + Data.Attoparsec.Number + Data.Attoparsec.Text + Data.Attoparsec.Text.Lazy + Data.Attoparsec.Types + Data.Attoparsec.Zepto + 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 + +test-suite tests + type: exitcode-stdio-1.0 + hs-source-dirs: tests . + main-is: QC.hs + other-modules: QC.Buffer + QC.ByteString + QC.Combinator + QC.Common + QC.IPv6.Internal + QC.IPv6.Types + QC.Rechunked + QC.Simple + QC.Text + QC.Text.FastSet + 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: + -Wall -threaded -rtsopts + + if flag(developer) + ghc-options: -Werror + + build-depends: + array, + base, + bytestring, + deepseq >= 1.1, + QuickCheck >= 2.13.2 && < 2.15, + quickcheck-unicode, + scientific, + tasty >= 0.11, + tasty-quickcheck >= 0.8, + text, + 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.*, + semigroups >=0.16.1 && <0.19 + +benchmark benchmarks + type: exitcode-stdio-1.0 + hs-source-dirs: benchmarks benchmarks/warp-3.0.1.1 . + ghc-options: -O2 -Wall -rtsopts + main-is: Benchmarks.hs + other-modules: + Common + HeadersByteString + HeadersByteString.Atto + HeadersText + Links + Network.Wai.Handler.Warp.ReadInt + Network.Wai.Handler.Warp.RequestHeader + Numbers + Sets + TextFastSet + Warp + ghc-options: -O2 -Wall + + if flag(developer) + ghc-options: -Werror + + build-depends: + array, + base == 4.*, + bytestring >= 0.10.4.0, + case-insensitive, + containers, + criterion >= 1.0, + deepseq >= 1.1, + directory, + filepath, + ghc-prim, + http-types, + parsec >= 3.1.2, + scientific, + text >= 1.1.1.0, + transformers, + 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.*, + semigroups >=0.16.1 && <0.19 + +source-repository head + type: git + location: https://github.com/bgamari/attoparsec + diff --git a/SPECS/ghc-attoparsec.spec b/SPECS/ghc-attoparsec.spec new file mode 100644 index 0000000..621240a --- /dev/null +++ b/SPECS/ghc-attoparsec.spec @@ -0,0 +1,292 @@ +# generated by cabal-rpm-2.0.9 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name attoparsec +%global pkgver %{pkg_name}-%{version} + +# testsuite missing deps: quickcheck-unicode + +Name: ghc-%{pkg_name} +Version: 0.13.2.5 +Release: 2%{?dist} +Summary: Fast combinator parsing for bytestrings and text + +License: BSD +Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal +# End cabal-rpm sources + +# Begin cabal-rpm deps: +BuildRequires: dos2unix +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-array-prof +BuildRequires: ghc-base-prof +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-containers-prof +BuildRequires: ghc-deepseq-prof +BuildRequires: ghc-scientific-prof +BuildRequires: ghc-text-prof +BuildRequires: ghc-transformers-prof +# End cabal-rpm deps + +%description +A fast parser combinator library, aimed particularly at dealing efficiently +with network protocols and complicated text/binary file formats. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-static%{?_isa} = %{version}-%{release} +%if %{defined ghc_version} +Requires: ghc-compiler = %{ghc_version} +%endif +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch +Requires: ghc-filesystem + +%description doc +This package provides the Haskell %{pkg_name} library documentation. +%endif + + +%if %{with ghc_prof} +%package prof +Summary: Haskell %{pkg_name} profiling library +Requires: %{name}-devel%{?_isa} = %{version}-%{release} +Supplements: (%{name}-devel and ghc-prof) + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + +%prep +# Begin cabal-rpm setup: +%setup -q -n %{pkgver} +dos2unix -k -n %{SOURCE1} %{pkg_name}.cabal +# End cabal-rpm setup + + +%build +# Begin cabal-rpm build: +%ghc_lib_build +# End cabal-rpm build + + +%install +# Begin cabal-rpm install +%ghc_lib_install +# End cabal-rpm install + + +%files -f %{name}.files +# Begin cabal-rpm files: +%license LICENSE +# End cabal-rpm files + + +%files devel -f %{name}-devel.files +%doc README.markdown changelog.md examples + + +%if %{with haddock} +%files doc -f %{name}-doc.files +%license LICENSE +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + +%changelog +* Fri Aug 18 2023 Alexey Lyubimov - 0.13.2.5-2 +- Rebuilt for MSVSphere 9.2 + +* Thu Jan 20 2022 Fedora Release Engineering - 0.13.2.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Aug 5 2021 Jens Petersen - 0.13.2.5-1 +- update to 0.13.2.5 + +* Thu Jul 22 2021 Fedora Release Engineering - 0.13.2.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jan 26 2021 Fedora Release Engineering - 0.13.2.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 0.13.2.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun Jun 07 2020 Jens Petersen - 0.13.2.4-1 +- update to 0.13.2.4 + +* Sun Feb 09 2020 Jens Petersen - 0.13.2.3-1 +- update to 0.13.2.3 + +* Tue Jan 28 2020 Fedora Release Engineering - 0.13.2.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Aug 01 2019 Jens Petersen - 0.13.2.2-5 +- add doc and prof subpackages (cabal-rpm-1.0.0) + +* Thu Jul 25 2019 Fedora Release Engineering - 0.13.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 17 2019 Jens Petersen - 0.13.2.2-3 +- refresh to cabal-rpm-0.13 + +* Thu Jan 31 2019 Fedora Release Engineering - 0.13.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jul 22 2018 Jens Petersen - 0.13.2.2-1 +- update to 0.13.2.2 + +* Fri Jul 13 2018 Fedora Release Engineering - 0.13.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 0.13.2.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 24 2018 Jens Petersen - 0.13.2.0-1 +- update to 0.13.2.0 + +* Wed Aug 02 2017 Fedora Release Engineering - 0.13.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 0.13.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Tue Feb 21 2017 Jens Petersen - 0.13.1.0-1 +- update to 0.13.1.0 + +* Fri Feb 10 2017 Fedora Release Engineering - 0.13.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Jun 23 2016 Jens Petersen - 0.13.0.2-1 +- update to 0.13.0.2 + +* Tue Jun 7 2016 Jens Petersen - 0.13.0.1-1 +- update to 0.13.0.1 + +* Wed Feb 03 2016 Fedora Release Engineering - 0.11.3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 0.11.3.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Jan 26 2015 Jens Petersen - 0.11.3.4-1 +- update to 0.11.3.4 + +* Sat Aug 16 2014 Fedora Release Engineering - 0.10.4.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.10.4.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sat Aug 03 2013 Fedora Release Engineering - 0.10.4.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Sat May 04 2013 Jens Petersen - 0.10.4.0-1 +- update to 0.10.4.0 (now part of Haskell Platform 2013.2) +- update spec file to cabal-rpm-0.8.0 + +* Wed Feb 13 2013 Fedora Release Engineering - 0.10.2.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Nov 17 2012 Jens Petersen - 0.10.2.0-4 +- update with cabal-rpm + +* Thu Jul 19 2012 Fedora Release Engineering - 0.10.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jul 16 2012 Jens Petersen - 0.10.2.0-2 +- change prof BRs to devel + +* Tue Jun 19 2012 Ben Boeckel - 0.10.2.0-1 +- Update to 0.10.2.0 + +* Fri Jun 15 2012 Jens Petersen - 0.10.1.1-3 +- rebuild + +* Fri Mar 23 2012 Jens Petersen - 0.10.1.1-2 +- add license to ghc_files + +* Tue Feb 28 2012 Ben Boeckel - 0.10.1.1-1 +- Update to 0.10.1.1 + +* Thu Jan 5 2012 Jens Petersen - 0.10.1.0-1 +- update to 0.10.1.0 and cabal2spec-0.25.2 +- now depends on text library + +* Thu Oct 27 2011 Jens Petersen - 0.9.1.2-1 +- update to 0.9.1.2 +- BR ghc-*-prof not devel + +* Thu Oct 20 2011 Marcela Mašláňová - 0.9.1.1-2.2 +- rebuild with new gmp without compat lib + +* Tue Oct 11 2011 Peter Schiffer - 0.9.1.1-2.1 +- rebuild with new gmp + +* Mon Jul 25 2011 Ben Boeckel - 0.9.1.1-2 +- Update to cabal2spec-0.24 + +* Fri Jul 22 2011 Jens Petersen - 0.9.1.1-1 +- update to 0.9.1.1 + +* Fri Jun 24 2011 Jens Petersen - 0.8.6.1-2 +- BR ghc-Cabal-devel instead of ghc-prof and use ghc_arches (cabal2spec-0.23.2) + +* Wed May 11 2011 Ben Boeckel - 0.8.6.1-1 +- Update to 0.8.6.1 +- Update to cabal2spec-0.22.7 + +* Tue May 10 2011 Ben Boeckel - 0.8.5.3-2 +- Update to cabal2spec-0.22.6 + +* Tue May 10 2011 Ben Boeckel - 0.8.5.3-1 +- Update to cabal2spec-0.22.5 +- Update to 0.8.5.3 +- Add new deepseq dependency + +* Thu Mar 10 2011 Fabio M. Di Nitto - 0.8.5.0-3 +- Enable build on sparcv9 + +* Sat Mar 05 2011 Ben Boeckel - 0.8.5.0-2 +- Update to 0.8.5.0 + +* Tue Feb 08 2011 Fedora Release Engineering - 0.8.3.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Sat Jan 15 2011 Ben Boeckel - 0.8.3.0-1 +- Update to 0.8.3.0 + +* Sat Jan 15 2011 Ben Boeckel - 0.8.2.0-2 +- Update to cabal2spec-0.22.4 +- Rebuild + +* Mon Nov 29 2010 Ben Boeckel - 0.8.2.0-1 +- Update to 0.8.2.0 + +* Mon Oct 18 2010 Ben Boeckel - 0.8.1.1-1 +- Update to 0.8.1.1 + +* Sat Sep 04 2010 Ben Boeckel - 0.8.1.0-1 +- Initial package + +* Sat Sep 4 2010 Fedora Haskell SIG - 0.8.1.0-0 +- initial packaging for Fedora automatically generated by cabal2spec-0.22.2