From 83e35aae5e6f7b213f2698fc6247e3ccbdd59e9c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 20 Nov 2015 10:10:04 +0000 Subject: [PATCH 01/37] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 13ee4cb2aba50d49f4437dfaa9b089694f56faa6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 20 Nov 2015 19:31:38 +0900 Subject: [PATCH 02/37] initial import (#1223293) --- .gitignore | 1 + ghc-xml-conduit.spec | 119 +++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 121 insertions(+) create mode 100644 ghc-xml-conduit.spec diff --git a/.gitignore b/.gitignore index e69de29..ed4f311 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/xml-conduit-1.3.1.tar.gz diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec new file mode 100644 index 0000000..03575a0 --- /dev/null +++ b/ghc-xml-conduit.spec @@ -0,0 +1,119 @@ +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name xml-conduit + +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 1.3.1 +Release: 1%{?dist} +Summary: Utilities for dealing with XML with conduit + +License: MIT +Url: https://hackage.haskell.org/package/%{pkg_name} +Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz + +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +# Begin cabal-rpm deps: +BuildRequires: ghc-attoparsec-devel +BuildRequires: ghc-blaze-builder-devel +BuildRequires: ghc-blaze-html-devel +BuildRequires: ghc-blaze-markup-devel +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-conduit-devel +BuildRequires: ghc-conduit-extra-devel +BuildRequires: ghc-containers-devel +BuildRequires: ghc-data-default-devel +BuildRequires: ghc-deepseq-devel +BuildRequires: ghc-monad-control-devel +BuildRequires: ghc-resourcet-devel +BuildRequires: ghc-text-devel +BuildRequires: ghc-transformers-devel +BuildRequires: ghc-xml-types-devel +%if %{with tests} +BuildRequires: ghc-HUnit-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} +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%prep +%setup -q -n %{pkg_name}-%{version} + + +%build +%ghc_lib_build + + +%install +%ghc_lib_install + +rm %{buildroot}%{ghc_pkgdocdir}/LICENSE + + +%check +%if %{with tests} +%cabal test +%endif + + +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache + + +%files -f %{name}.files +%license LICENSE + + +%files devel -f %{name}-devel.files +%doc README.md + + +%changelog +* 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 diff --git a/sources b/sources index e69de29..78f07f8 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +a6c19809f0ef4412ab29efa65070c8d7 xml-conduit-1.3.1.tar.gz From cd97fd759282701e1c74e1f7716ed8927dfbc471 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 20 Nov 2015 19:46:17 +0900 Subject: [PATCH 03/37] update to 1.3.2 --- .gitignore | 1 + ghc-xml-conduit.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ed4f311..926f341 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /xml-conduit-1.3.1.tar.gz +/xml-conduit-1.3.2.tar.gz diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 03575a0..38f9b0e 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -5,9 +5,9 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.3.1 +Version: 1.3.2 Release: 1%{?dist} -Summary: Utilities for dealing with XML with conduit +Summary: XML parsing and rendering with conduit License: MIT Url: https://hackage.haskell.org/package/%{pkg_name} @@ -109,6 +109,9 @@ rm %{buildroot}%{ghc_pkgdocdir}/LICENSE %changelog +* 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 diff --git a/sources b/sources index 78f07f8..5f55f32 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a6c19809f0ef4412ab29efa65070c8d7 xml-conduit-1.3.1.tar.gz +9183c443f1d0a9693db8d72e6eef1690 xml-conduit-1.3.2.tar.gz From 48ed03c97b058485a69a78ea251e6579a16a3412 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 21:49:33 +0000 Subject: [PATCH 04/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 38f9b0e..8d915f9 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 1.3.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -109,6 +109,9 @@ rm %{buildroot}%{ghc_pkgdocdir}/LICENSE %changelog +* 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 From 007c3ebec33272d884f88c27e018016c4114c2ec Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 26 Jun 2016 20:20:43 +0900 Subject: [PATCH 05/37] update to 1.3.5 --- .gitignore | 1 + ghc-xml-conduit.spec | 10 ++++++++-- sources | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 926f341..9b80ff1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /xml-conduit-1.3.1.tar.gz /xml-conduit-1.3.2.tar.gz +/xml-conduit-1.3.5.tar.gz diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 8d915f9..4a7308f 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,3 +1,4 @@ +# generated by cabal-rpm-0.9.12 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name xml-conduit @@ -5,8 +6,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.3.2 -Release: 2%{?dist} +Version: 1.3.5 +Release: 1%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -71,6 +72,8 @@ Requires: %{name}%{?_isa} = %{version}-%{release} %description devel This package provides the Haskell %{pkg_name} library development files. +rm %{buildroot}%{ghc_pkgdocdir}/LICENSE + %prep %setup -q -n %{pkg_name}-%{version} @@ -109,6 +112,9 @@ rm %{buildroot}%{ghc_pkgdocdir}/LICENSE %changelog +* 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 diff --git a/sources b/sources index 5f55f32..53cc302 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -9183c443f1d0a9693db8d72e6eef1690 xml-conduit-1.3.2.tar.gz +1d7df1a75616085cf79744faa7229916 xml-conduit-1.3.5.tar.gz From 1183b5693042a614f658d39187280f7fceca0e1f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 27 Sep 2016 19:15:57 +0900 Subject: [PATCH 06/37] no longer remove license; use cabal_test --- ghc-xml-conduit.spec | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 4a7308f..006aeb7 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -72,8 +72,6 @@ Requires: %{name}%{?_isa} = %{version}-%{release} %description devel This package provides the Haskell %{pkg_name} library development files. -rm %{buildroot}%{ghc_pkgdocdir}/LICENSE - %prep %setup -q -n %{pkg_name}-%{version} @@ -86,13 +84,9 @@ rm %{buildroot}%{ghc_pkgdocdir}/LICENSE %install %ghc_lib_install -rm %{buildroot}%{ghc_pkgdocdir}/LICENSE - %check -%if %{with tests} -%cabal test -%endif +%cabal_test %post devel From 205eecb7c770bd2b58f7206f4ebfaafb41c69ed6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 10:53:53 +0000 Subject: [PATCH 07/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 006aeb7..0417bcc 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -7,7 +7,7 @@ Name: ghc-%{pkg_name} Version: 1.3.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -106,6 +106,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 From 1a5b4971287fab4fae098693fd98eab80300dbc1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 23 Feb 2017 09:39:32 +0900 Subject: [PATCH 08/37] update to 1.4.0.4 --- .gitignore | 1 + ghc-xml-conduit.spec | 14 +++++++++----- sources | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index 9b80ff1..f49ef61 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /xml-conduit-1.3.1.tar.gz /xml-conduit-1.3.2.tar.gz /xml-conduit-1.3.5.tar.gz +/xml-conduit-1.4.0.4.tar.gz diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 0417bcc..0355e04 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,18 +1,19 @@ -# generated by cabal-rpm-0.9.12 +# generated by cabal-rpm-0.11.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name xml-conduit +%global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.3.5 -Release: 2%{?dist} +Version: 1.4.0.4 +Release: 1%{?dist} Summary: XML parsing and rendering with conduit License: MIT Url: https://hackage.haskell.org/package/%{pkg_name} -Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros @@ -74,7 +75,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep -%setup -q -n %{pkg_name}-%{version} +%setup -q -n %{pkgver} %build @@ -106,6 +107,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 diff --git a/sources b/sources index 53cc302..6277e4a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -1d7df1a75616085cf79744faa7229916 xml-conduit-1.3.5.tar.gz +SHA512 (xml-conduit-1.4.0.4.tar.gz) = e3dfdaf0480428f92f10728d2480b80ef9177f49730d022f886c7b4957116b2ed24b3b828063d81b4f0c2b6ad55631ee26385bfc0422311c276e49c2d17d7268 From 1748555953ccb4ae513fbd55196c329a0e50801c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 10:02:17 +0000 Subject: [PATCH 09/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 0355e04..568c311 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.4.0.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -107,6 +107,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 From 38ac02534e946e39404cca2b89ba8797a0358ee3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 21:37:52 +0000 Subject: [PATCH 10/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 568c311..203bbfe 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.4.0.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -107,6 +107,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 From 71a944518ab47fcb5733928b54f76619dc604071 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:12:23 +0100 Subject: [PATCH 11/37] refresh to cabal-rpm-0.12.1 --- ghc-xml-conduit.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 203bbfe..3d41a08 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.11.1 +# generated by cabal-rpm-0.12.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name xml-conduit @@ -65,9 +65,12 @@ broken up into the following modules: %package devel Summary: Haskell %{pkg_name} library development files Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-doc = %{version}-%{release} +%if %{defined ghc_version} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} Requires(postun): ghc-compiler = %{ghc_version} +%endif Requires: %{name}%{?_isa} = %{version}-%{release} %description devel @@ -90,6 +93,12 @@ This package provides the Haskell %{pkg_name} library development files. %cabal_test +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From ce1019178f9ac7f0f0692ec7b2ae71987ffea5d4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 16:01:53 +0100 Subject: [PATCH 12/37] update to 1.7.0.1 --- .gitignore | 1 + ghc-xml-conduit.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index f49ef61..22e887e 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /xml-conduit-1.3.2.tar.gz /xml-conduit-1.3.5.tar.gz /xml-conduit-1.4.0.4.tar.gz +/xml-conduit-1.7.0.1.tar.gz diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 3d41a08..5a17ec5 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.4.0.4 -Release: 3%{?dist} +Version: 1.7.0.1 +Release: 1%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -26,7 +26,7 @@ BuildRequires: ghc-bytestring-devel BuildRequires: ghc-conduit-devel BuildRequires: ghc-conduit-extra-devel BuildRequires: ghc-containers-devel -BuildRequires: ghc-data-default-devel +BuildRequires: ghc-data-default-class-devel BuildRequires: ghc-deepseq-devel BuildRequires: ghc-monad-control-devel BuildRequires: ghc-resourcet-devel @@ -116,6 +116,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 diff --git a/sources b/sources index 6277e4a..c6bc408 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xml-conduit-1.4.0.4.tar.gz) = e3dfdaf0480428f92f10728d2480b80ef9177f49730d022f886c7b4957116b2ed24b3b828063d81b4f0c2b6ad55631ee26385bfc0422311c276e49c2d17d7268 +SHA512 (xml-conduit-1.7.0.1.tar.gz) = 9c2569721711bf7b60b9a3cf8998095d5da7dc758af034a78007800be1cb1356619080a90e7393c0c986c301425be68f9f4c537e2427935b0df2446ad63e0ebb From fa4b774831ec7e5b96a305aa26bbb1f17806a105 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:03:50 +0900 Subject: [PATCH 13/37] drop ldconfig scriptlets --- ghc-xml-conduit.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 5a17ec5..c7a6add 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -93,12 +93,6 @@ This package provides the Haskell %{pkg_name} library development files. %cabal_test -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From d38b5aa7098ff5d86861610e125254cda1c50a60 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 12:22:46 +0000 Subject: [PATCH 14/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index c7a6add..87fe23c 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.7.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -110,6 +110,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 From 5d3bdfb8fc60cae30842a6cad1d6f0f46d08d618 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Tue, 6 Mar 2018 17:00:08 -0800 Subject: [PATCH 15/37] Rebuild for ghc-conduit-extra bump --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 87fe23c..4c72caa 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.7.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -110,6 +110,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 From 8c400d876a0e1ea349462ffbc66c5fa4f8f68ad5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 02:17:18 +0000 Subject: [PATCH 16/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 4c72caa..131a65b 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.7.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -110,6 +110,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 From f639e58b7408d86c3d13024056ce310794e96758 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 22 Jul 2018 23:38:43 +0900 Subject: [PATCH 17/37] update to 1.8.0 --- .gitignore | 1 + ghc-xml-conduit.spec | 10 ++++++---- sources | 2 +- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 22e887e..21e8a0c 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /xml-conduit-1.3.5.tar.gz /xml-conduit-1.4.0.4.tar.gz /xml-conduit-1.7.0.1.tar.gz +/xml-conduit-1.8.0.tar.gz diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 131a65b..99122d3 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.1 +# generated by cabal-rpm-0.12.5 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name xml-conduit @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.7.0.1 -Release: 4%{?dist} +Version: 1.8.0 +Release: 1%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -19,7 +19,6 @@ BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros # Begin cabal-rpm deps: BuildRequires: ghc-attoparsec-devel -BuildRequires: ghc-blaze-builder-devel BuildRequires: ghc-blaze-html-devel BuildRequires: ghc-blaze-markup-devel BuildRequires: ghc-bytestring-devel @@ -110,6 +109,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 diff --git a/sources b/sources index c6bc408..503090f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xml-conduit-1.7.0.1.tar.gz) = 9c2569721711bf7b60b9a3cf8998095d5da7dc758af034a78007800be1cb1356619080a90e7393c0c986c301425be68f9f4c537e2427935b0df2446ad63e0ebb +SHA512 (xml-conduit-1.8.0.tar.gz) = d6ffdba6db52cef4d11c8f7a49f357c3698673e8f5648c6f43510c5d55fcb0a7ba84e03340f7c84260bbeb026641a16e14d420b07f4845425d001462641c3bcd From 11e7b401b5a94822187ae1eb44db640fbc20e378 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 22:15:57 +0000 Subject: [PATCH 18/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 99122d3..41fe083 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.8.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -109,6 +109,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 From 42199372542e5d9333e80eb21eaf4d2e8bb29ce6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:47:58 +0800 Subject: [PATCH 19/37] refresh to cabal-rpm-0.13 --- ghc-xml-conduit.spec | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 41fe083..26bdd6c 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.5 +# generated by cabal-rpm-0.13 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name xml-conduit @@ -8,16 +8,18 @@ Name: ghc-%{pkg_name} Version: 1.8.0 -Release: 2%{?dist} +Release: 3%{?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 +# End cabal-rpm sources +# Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros -# Begin cabal-rpm deps: BuildRequires: ghc-attoparsec-devel BuildRequires: ghc-blaze-html-devel BuildRequires: ghc-blaze-markup-devel @@ -77,15 +79,21 @@ This package provides the Haskell %{pkg_name} library development files. %prep +# Begin cabal-rpm setup: %setup -q -n %{pkgver} +# 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 @@ -101,14 +109,19 @@ This package provides the Haskell %{pkg_name} library development files. %files -f %{name}.files +# Begin cabal-rpm files: %license LICENSE +# End cabal-rpm files %files devel -f %{name}-devel.files -%doc README.md +%doc ChangeLog.md README.md %changelog +* 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 From d9c35548ac6dfefbbc684b67e441ff6136706c09 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 21 Feb 2019 12:34:15 +0800 Subject: [PATCH 20/37] update to 1.8.0.1 --- .gitignore | 1 + ghc-xml-conduit.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 21e8a0c..0606497 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /xml-conduit-1.4.0.4.tar.gz /xml-conduit-1.7.0.1.tar.gz /xml-conduit-1.8.0.tar.gz +/xml-conduit-1.8.0.1.tar.gz diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 26bdd6c..58cd65c 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.8.0 -Release: 3%{?dist} +Version: 1.8.0.1 +Release: 1%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -29,13 +29,13 @@ BuildRequires: ghc-conduit-extra-devel BuildRequires: ghc-containers-devel BuildRequires: ghc-data-default-class-devel BuildRequires: ghc-deepseq-devel -BuildRequires: ghc-monad-control-devel BuildRequires: ghc-resourcet-devel BuildRequires: ghc-text-devel BuildRequires: ghc-transformers-devel BuildRequires: ghc-xml-types-devel %if %{with tests} BuildRequires: ghc-HUnit-devel +BuildRequires: ghc-doctest-devel BuildRequires: ghc-hspec-devel %endif # End cabal-rpm deps @@ -119,6 +119,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 diff --git a/sources b/sources index 503090f..f3cca71 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xml-conduit-1.8.0.tar.gz) = d6ffdba6db52cef4d11c8f7a49f357c3698673e8f5648c6f43510c5d55fcb0a7ba84e03340f7c84260bbeb026641a16e14d420b07f4845425d001462641c3bcd +SHA512 (xml-conduit-1.8.0.1.tar.gz) = 9b83ca0be187deea99d9434ac28b70c955796f3cce9ffefc7db2d05c94231f23e4e9c0453675fd3d9496493bbd5f83dcccdba0319e7f1a77e131a20a671a754d From 0bd03b92ff88204e5546c5d6c5441924f20a2164 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 03:16:10 +0000 Subject: [PATCH 21/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 58cd65c..5bfb028 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.8.0.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -119,6 +119,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* 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 From 2d1b5b6c997f9cac38ec9e77ba0e220ddd2f032a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:27:08 +0000 Subject: [PATCH 22/37] cabal-rpm-1.0.0: add doc and prof subpkgs --- ghc-xml-conduit.spec | 53 +++++++++++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 13 deletions(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 5bfb028..0b20eb4 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.13 +# generated by cabal-rpm-1.0.0 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name xml-conduit @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.8.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -19,6 +19,12 @@ Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel +%if %{with haddock} +BuildRequires: ghc-doc +%endif +%if %{with ghc_prof} +BuildRequires: ghc-prof +%endif BuildRequires: ghc-rpm-macros BuildRequires: ghc-attoparsec-devel BuildRequires: ghc-blaze-html-devel @@ -66,11 +72,8 @@ broken up into the following modules: %package devel Summary: Haskell %{pkg_name} library development files Provides: %{name}-static = %{version}-%{release} -Provides: %{name}-doc = %{version}-%{release} %if %{defined ghc_version} Requires: ghc-compiler = %{ghc_version} -Requires(post): ghc-compiler = %{ghc_version} -Requires(postun): ghc-compiler = %{ghc_version} %endif Requires: %{name}%{?_isa} = %{version}-%{release} @@ -78,6 +81,25 @@ Requires: %{name}%{?_isa} = %{version}-%{release} This package provides the Haskell %{pkg_name} library development files. +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation + +%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} + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} @@ -100,14 +122,6 @@ This package provides the Haskell %{pkg_name} library development files. %cabal_test -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -118,7 +132,20 @@ This package provides the Haskell %{pkg_name} library development files. %doc ChangeLog.md README.md +%if %{with haddock} +%files doc -f %{name}-doc.files +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + %changelog +* 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 From 912c62484e5f3baded3fd3779b794955fbaa4909 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:33:07 +0800 Subject: [PATCH 23/37] BR prof for lib and static for executable --- ghc-xml-conduit.spec | 36 ++++++++++++++++-------------------- 1 file changed, 16 insertions(+), 20 deletions(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 0b20eb4..af6c1f8 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-1.0.0 +# generated by cabal-rpm-1.0.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name xml-conduit @@ -19,26 +19,21 @@ Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel -%if %{with haddock} -BuildRequires: ghc-doc -%endif -%if %{with ghc_prof} -BuildRequires: ghc-prof -%endif BuildRequires: ghc-rpm-macros -BuildRequires: ghc-attoparsec-devel -BuildRequires: ghc-blaze-html-devel -BuildRequires: ghc-blaze-markup-devel -BuildRequires: ghc-bytestring-devel -BuildRequires: ghc-conduit-devel -BuildRequires: ghc-conduit-extra-devel -BuildRequires: ghc-containers-devel -BuildRequires: ghc-data-default-class-devel -BuildRequires: ghc-deepseq-devel -BuildRequires: ghc-resourcet-devel -BuildRequires: ghc-text-devel -BuildRequires: ghc-transformers-devel -BuildRequires: ghc-xml-types-devel +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 @@ -72,6 +67,7 @@ broken up into the following modules: %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 From f509a27640ed43c7327ea01589877be3ee7a33b0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 21:44:58 +0000 Subject: [PATCH 24/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index af6c1f8..9acf38f 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.8.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -139,6 +139,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* 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) From 68e37082a4183446fdde8735bbcbeff8da4496b4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:53:01 +0800 Subject: [PATCH 25/37] refresh to cabal-rpm-2.0.2 --- ghc-xml-conduit.spec | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 9acf38f..1e76ac2 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-1.0.1 +# generated by cabal-rpm-2.0.2 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name xml-conduit @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.8.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -80,6 +80,7 @@ This package provides the Haskell %{pkg_name} library development files. %if %{with haddock} %package doc Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch %description doc This package provides the Haskell %{pkg_name} library documentation. @@ -90,6 +91,7 @@ This package provides the Haskell %{pkg_name} library documentation. %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. @@ -118,6 +120,16 @@ This package provides the Haskell %{pkg_name} profiling library. %cabal_test +%if 0%{?fedora} < 31 || 0%{?rhel} < 8 +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache +%endif + + %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -130,6 +142,7 @@ This package provides the Haskell %{pkg_name} profiling library. %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE %endif @@ -139,6 +152,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* 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 From 14a1a3f46720127cfe0e9bd67766c50befb6e796 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:29:11 +0800 Subject: [PATCH 26/37] refresh to cabal-rpm-2.0.5 --- ghc-xml-conduit.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 1e76ac2..404f6c9 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,5 +1,5 @@ -# generated by cabal-rpm-2.0.2 -# https://fedoraproject.org/wiki/Packaging:Haskell +# generated by cabal-rpm-2.0.5 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name xml-conduit %global pkgver %{pkg_name}-%{version} From 6c4f6f96eb8b11638418d46eb3ba320b4560a257 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 10 Jun 2020 12:02:55 +0800 Subject: [PATCH 27/37] update to 1.9.0.0 --- .gitignore | 1 + ghc-xml-conduit.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 0606497..1ead36c 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /xml-conduit-1.7.0.1.tar.gz /xml-conduit-1.8.0.tar.gz /xml-conduit-1.8.0.1.tar.gz +/xml-conduit-1.9.0.0.tar.gz diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 404f6c9..e55668d 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.8.0.1 -Release: 5%{?dist} +Version: 1.9.0.0 +Release: 1%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -152,6 +152,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* 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 diff --git a/sources b/sources index f3cca71..f76e067 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xml-conduit-1.8.0.1.tar.gz) = 9b83ca0be187deea99d9434ac28b70c955796f3cce9ffefc7db2d05c94231f23e4e9c0453675fd3d9496493bbd5f83dcccdba0319e7f1a77e131a20a671a754d +SHA512 (xml-conduit-1.9.0.0.tar.gz) = a6348233d99db2987289448c7320820abb9ed897b389d0a275e92c4a1e8055e9fa60a422b306f2bb1289b85f83545effe00d07c9ca1ecc7f2893d74b812cca23 From 39e76c4ea9c26a50086bb86e9c7caa46e25aa596 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:57:49 +0800 Subject: [PATCH 28/37] refresh to cabal-rpm-2.0.6 --- ghc-xml-conduit.spec | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index e55668d..25d7f12 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.5 +# generated by cabal-rpm-2.0.6 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name xml-conduit @@ -120,16 +120,6 @@ This package provides the Haskell %{pkg_name} profiling library. %cabal_test -%if 0%{?fedora} < 31 || 0%{?rhel} < 8 -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache -%endif - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE From f3a36284a2b2344fdb827f607f790efc36872a50 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 19:54:57 +0000 Subject: [PATCH 29/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 25d7f12..a13f8ef 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.9.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -142,6 +142,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* 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 From 51446f5599d89ea5171e89f8eb01f26e4f964328 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 01:44:45 +0000 Subject: [PATCH 30/37] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index a13f8ef..f7c8da6 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.9.0.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -142,6 +142,10 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* 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 From 22cd2c1d32a82266e908a711f8fcf0dd4b6dbf4f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:58:48 +0000 Subject: [PATCH 31/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index f7c8da6..ffc3f10 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.9.0.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -142,6 +142,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* 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 From 2f24895a2e83c92228bd0e1f509ff7844db8fb0a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 01:31:17 +0000 Subject: [PATCH 32/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index ffc3f10..3d27cd1 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.9.0.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -142,6 +142,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* 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 From c967dea71729b4d9239a16d9cb399fd1969481b7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:14 +0800 Subject: [PATCH 33/37] refresh to cabal-rpm-2.0.9 --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 3d27cd1..0703d26 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.6 +# generated by cabal-rpm-2.0.9 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name xml-conduit @@ -81,6 +81,7 @@ This package provides the Haskell %{pkg_name} library development files. %package doc Summary: Haskell %{pkg_name} library documentation BuildArch: noarch +Requires: ghc-filesystem %description doc This package provides the Haskell %{pkg_name} library documentation. @@ -117,7 +118,9 @@ This package provides the Haskell %{pkg_name} profiling library. %check +%if %{with tests} %cabal_test +%endif %files -f %{name}.files From 647d57b75d2388e7d6e942ca2142f9fbe791042a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 5 Aug 2021 13:00:09 +0800 Subject: [PATCH 34/37] update to 1.9.1.1 --- .gitignore | 1 + ghc-xml-conduit.spec | 8 ++++++-- sources | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 1ead36c..70e2535 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /xml-conduit-1.8.0.tar.gz /xml-conduit-1.8.0.1.tar.gz /xml-conduit-1.9.0.0.tar.gz +/xml-conduit-1.9.1.1.tar.gz diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 0703d26..3e4c1cc 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.9.0.0 -Release: 5%{?dist} +Version: 1.9.1.1 +Release: 1%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -19,6 +19,7 @@ Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-cabal-doctest-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-attoparsec-prof BuildRequires: ghc-base-prof @@ -145,6 +146,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* 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 diff --git a/sources b/sources index f76e067..0b05fa6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xml-conduit-1.9.0.0.tar.gz) = a6348233d99db2987289448c7320820abb9ed897b389d0a275e92c4a1e8055e9fa60a422b306f2bb1289b85f83545effe00d07c9ca1ecc7f2893d74b812cca23 +SHA512 (xml-conduit-1.9.1.1.tar.gz) = 4d75960eb400a4ac8cb13bb70f59b554659fa2a6165906f73097a2bc564505a1efa78e72b121d9ed0fd8b424ff25cd1d8368e6c1f2b6ffa4b0aa36f584727687 From 320b86310a02108a21c24b937cf6e6a2285ff371 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 05:51:23 +0000 Subject: [PATCH 35/37] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-xml-conduit.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 3e4c1cc..91aa94a 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.9.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: XML parsing and rendering with conduit License: MIT @@ -146,6 +146,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* 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 From 619502b6c4154c3f48f478a1daf1296e3e50c2e4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 18 Jun 2022 00:21:41 +0800 Subject: [PATCH 36/37] revise .cabal --- ghc-xml-conduit.spec | 3 ++ xml-conduit-1.9.1.1.cabal | 79 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 82 insertions(+) create mode 100644 xml-conduit-1.9.1.1.cabal diff --git a/ghc-xml-conduit.spec b/ghc-xml-conduit.spec index 91aa94a..0b93796 100644 --- a/ghc-xml-conduit.spec +++ b/ghc-xml-conduit.spec @@ -15,9 +15,11 @@ 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 @@ -103,6 +105,7 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} +dos2unix -k -n %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup diff --git a/xml-conduit-1.9.1.1.cabal b/xml-conduit-1.9.1.1.cabal new file mode 100644 index 0000000..4b85793 --- /dev/null +++ b/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 From 7ad35e1d7115c20216d0199af48bbad4b66eafd8 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:12:24 +0300 Subject: [PATCH 37/37] Remove unnecessary files --- sources | 1 - 1 file changed, 1 deletion(-) delete mode 100644 sources diff --git a/sources b/sources deleted file mode 100644 index 0b05fa6..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (xml-conduit-1.9.1.1.tar.gz) = 4d75960eb400a4ac8cb13bb70f59b554659fa2a6165906f73097a2bc564505a1efa78e72b121d9ed0fd8b424ff25cd1d8368e6c1f2b6ffa4b0aa36f584727687