commit 291562e91ec934df5ff763cf2508837998e4a22d Author: Alexey Lyubimov Date: Sat Aug 19 12:15:45 2023 +0300 import ghc-xml-conduit-1.9.1.1-2.el9 diff --git a/.ghc-xml-conduit.metadata b/.ghc-xml-conduit.metadata new file mode 100644 index 0000000..750bb4e --- /dev/null +++ b/.ghc-xml-conduit.metadata @@ -0,0 +1 @@ +387d47a854e878e33ecb2419e0ede11709aa9d60 SOURCES/xml-conduit-1.9.1.1.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..81ed949 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/xml-conduit-1.9.1.1.tar.gz diff --git a/SOURCES/xml-conduit-1.9.1.1.cabal b/SOURCES/xml-conduit-1.9.1.1.cabal new file mode 100644 index 0000000..4b85793 --- /dev/null +++ b/SOURCES/xml-conduit-1.9.1.1.cabal @@ -0,0 +1,79 @@ +cabal-version: >= 1.14 + +name: xml-conduit +version: 1.9.1.1 +x-revision: 1 +license: MIT +license-file: LICENSE +author: Michael Snoyman , Aristid Breitkreuz +maintainer: Michael Snoyman +synopsis: Pure-Haskell utilities for dealing with XML with the conduit package. +description: Hackage documentation generation is not reliable. For up to date documentation, please see: . +category: XML, Conduit +stability: Stable +build-type: Custom +homepage: http://github.com/snoyberg/xml +extra-source-files: README.md + ChangeLog.md +tested-with: GHC >=8.0 && <8.12 + +custom-setup + setup-depends: base >= 4 && <5, Cabal, cabal-doctest >= 1 && <1.1 + +library + build-depends: base >= 4 && < 5 + , conduit >= 1.3 && < 1.4 + , conduit-extra >= 1.3 && < 1.4 + , resourcet >= 1.2 && < 1.3 + , bytestring >= 0.10.2 + , text >= 0.7 + , containers >= 0.2 + , xml-types >= 0.3.4 && < 0.4 + , attoparsec >= 0.10 + , transformers >= 0.2 && < 0.7 + , data-default-class + , blaze-markup >= 0.5 + , blaze-html >= 0.5 + , deepseq >= 1.1.0.0 + exposed-modules: Text.XML.Stream.Parse + Text.XML.Stream.Render + Text.XML.Unresolved + Text.XML.Cursor + Text.XML.Cursor.Generic + Text.XML + other-modules: Text.XML.Stream.Token + ghc-options: -Wall + hs-source-dirs: src + default-language: Haskell2010 + +test-suite unit + type: exitcode-stdio-1.0 + main-is: unit.hs + hs-source-dirs: test + build-depends: base + , containers + , text + , transformers + , bytestring + , xml-conduit + , hspec >= 1.3 + , HUnit + , xml-types >= 0.3.1 + , conduit + , conduit-extra + , blaze-markup + , resourcet + default-language: Haskell2010 + +test-suite doctest + type: exitcode-stdio-1.0 + main-is: doctest.hs + hs-source-dirs: test + build-depends: base + , doctest >= 0.8 + , xml-conduit + default-language: Haskell2010 + +source-repository head + type: git + location: git://github.com/snoyberg/xml.git diff --git a/SPECS/ghc-xml-conduit.spec b/SPECS/ghc-xml-conduit.spec new file mode 100644 index 0000000..d0803a9 --- /dev/null +++ b/SPECS/ghc-xml-conduit.spec @@ -0,0 +1,241 @@ +# generated by cabal-rpm-2.0.9 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name xml-conduit +%global pkgver %{pkg_name}-%{version} + +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 1.9.1.1 +Release: 2%{?dist} +Summary: XML parsing and rendering with conduit + +License: MIT +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-cabal-doctest-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-attoparsec-prof +BuildRequires: ghc-base-prof +BuildRequires: ghc-blaze-html-prof +BuildRequires: ghc-blaze-markup-prof +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-conduit-prof +BuildRequires: ghc-conduit-extra-prof +BuildRequires: ghc-containers-prof +BuildRequires: ghc-data-default-class-prof +BuildRequires: ghc-deepseq-prof +BuildRequires: ghc-resourcet-prof +BuildRequires: ghc-text-prof +BuildRequires: ghc-transformers-prof +BuildRequires: ghc-xml-types-prof +%if %{with tests} +BuildRequires: ghc-HUnit-devel +BuildRequires: ghc-doctest-devel +BuildRequires: ghc-hspec-devel +%endif +# End cabal-rpm deps + +%description +This package provides parsing and rendering functions for XML. It is +based on the datatypes found in the xml-types package. This package is +broken up into the following modules: + +* Text.XML: DOM-based parsing and rendering. + This is the most commonly used module. + +* Text.XML.Cursor: A wrapper around Text.XML which allows bidirectional + traversing of the DOM, similar to XPath. (Note: Text.XML.Cursor.Generic + is the same concept, but will work with any node representation.) + +* Text.XML.Unresolved: A slight modification to Text.XML which does not + require all entities to be resolved at parsing. The datatypes are + slightly more complicated here, and therefore this module is only + recommended when you need to deal directly with raw entities. + +* Text.XML.Stream.Parse: Streaming parser, including some streaming + parser combinators. + +* Text.XML.Stream.Render: Streaming renderer. + + +%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 + + +%check +%if %{with tests} +%cabal_test +%endif + + +%files -f %{name}.files +# Begin cabal-rpm files: +%license LICENSE +# End cabal-rpm files + + +%files devel -f %{name}-devel.files +%doc ChangeLog.md README.md + + +%if %{with haddock} +%files doc -f %{name}-doc.files +%license LICENSE +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + +%changelog +* Sat Aug 19 2023 Alexey Lyubimov - 1.9.1.1-2 +- Rebuilt for MSVSphere 9.2 + +* Thu Jan 20 2022 Fedora Release Engineering - 1.9.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Aug 5 2021 Jens Petersen - 1.9.1.1-1 +- update to 1.9.1.1 + +* Thu Jul 22 2021 Fedora Release Engineering - 1.9.0.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jan 26 2021 Fedora Release Engineering - 1.9.0.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Aug 01 2020 Fedora Release Engineering - 1.9.0.0-3 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 1.9.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Wed Jun 10 2020 Jens Petersen - 1.9.0.0-1 +- update to 1.9.0.0 + +* Thu Feb 20 2020 Jens Petersen - 1.8.0.1-5 +- refresh to cabal-rpm-2.0.2 + +* Tue Jan 28 2020 Fedora Release Engineering - 1.8.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Fri Aug 02 2019 Jens Petersen - 1.8.0.1-3 +- add doc and prof subpackages (cabal-rpm-1.0.0) + +* Thu Jul 25 2019 Fedora Release Engineering - 1.8.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu Feb 21 2019 Jens Petersen - 1.8.0.1-1 +- update to 1.8.0.1 + +* Sun Feb 17 2019 Jens Petersen - 1.8.0-3 +- refresh to cabal-rpm-0.13 + +* Thu Jan 31 2019 Fedora Release Engineering - 1.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jul 22 2018 Jens Petersen - 1.8.0-1 +- update to 1.8.0 + +* Fri Jul 13 2018 Fedora Release Engineering - 1.7.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Tue Mar 06 2018 Adam Williamson - 1.7.0.1-3 +- Rebuild for ghc-conduit-extra bump + +* Wed Feb 07 2018 Fedora Release Engineering - 1.7.0.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 24 2018 Jens Petersen - 1.7.0.1-1 +- update to 1.7.0.1 + +* Wed Aug 02 2017 Fedora Release Engineering - 1.4.0.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 1.4.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Thu Feb 23 2017 Jens Petersen - 1.4.0.4-1 +- update to 1.4.0.4 + +* Fri Feb 10 2017 Fedora Release Engineering - 1.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sun Jun 26 2016 Jens Petersen - 1.3.5-1 +- update to 1.3.5 + +* Wed Feb 03 2016 Fedora Release Engineering - 1.3.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Nov 20 2015 Jens Petersen - 1.3.2-1 +- update to 1.3.2 + +* Fri Sep 18 2015 Jens Petersen - 1.3.1-1 +- update to 1.3.1 + +* Wed May 20 2015 Jens Petersen - 1.2.6-1 +- description + +* Wed May 20 2015 Fedora Haskell SIG - 1.2.6 +- spec file generated by cabal-rpm-0.9.5.50