From 112c77d6a5c084bc464846d88247ee574ac6d595 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Fri, 10 Nov 2017 15:47:42 +0000 Subject: [PATCH 01/32] Added the README --- README.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..a007e89 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ghc-mono-traversable + +The ghc-mono-traversable package \ No newline at end of file From fd4c2e7aa89704f73fda1755fa85c50830b50992 Mon Sep 17 00:00:00 2001 From: David Shea Date: Tue, 14 Nov 2017 10:25:16 -0500 Subject: [PATCH 02/32] New package ghc-mono-traversable --- .gitignore | 1 + README.md | 3 -- ghc-mono-traversable.spec | 105 ++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 107 insertions(+), 3 deletions(-) create mode 100644 .gitignore delete mode 100644 README.md create mode 100644 ghc-mono-traversable.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a623961 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/mono-traversable-1.0.2.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index a007e89..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# ghc-mono-traversable - -The ghc-mono-traversable package \ No newline at end of file diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec new file mode 100644 index 0000000..e256f01 --- /dev/null +++ b/ghc-mono-traversable.spec @@ -0,0 +1,105 @@ +# generated by cabal-rpm-0.11.1 +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name mono-traversable +%global pkgver %{pkg_name}-%{version} + +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 1.0.2 +Release: 1%{?dist} +Summary: Type classes for mapping, folding, and traversing monomorphic containers + +License: MIT +Url: https://hackage.haskell.org/package/%{pkg_name} +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz + +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +# Begin cabal-rpm deps: +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-containers-devel +BuildRequires: ghc-hashable-devel +BuildRequires: ghc-split-devel +BuildRequires: ghc-text-devel +BuildRequires: ghc-transformers-devel +BuildRequires: ghc-unordered-containers-devel +BuildRequires: ghc-vector-algorithms-devel +BuildRequires: ghc-vector-devel +%if %{with tests} +BuildRequires: ghc-HUnit-devel +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-foldl-devel +BuildRequires: ghc-hspec-devel +BuildRequires: ghc-semigroups-devel +%endif +# End cabal-rpm deps + +%description +Monomorphic variants of the Functor, Foldable, and Traversable typeclasses. +If you understand Haskell's basic typeclasses, you understand mono-traversable. +In addition to what you are used to, it adds on an IsSequence typeclass and has +code for marking data structures as non-empty. + + +%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. + +%package devel-doc +Summary: Haskell %{pkg_name} library development documentation +BuildArch: noarch + +%description devel-doc +This package provides the Haskell %{pkg_name} library development documentation. + + +%prep +%setup -q -n %{pkgver} + + +%build +%ghc_lib_build + + +%install +%ghc_lib_install +grep -v "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-nodoc.files +grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-doc.files + + +%check +%cabal_test + + +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache + + +%files -f %{name}.files +%license LICENSE + + +%files devel -f %{name}-devel-nodoc.files +%doc ChangeLog.md README.md + +%files devel-doc -f %{name}-devel-doc.files +%doc ChangeLog.md README.md + +%changelog +* Thu Nov 9 2017 David Shea - 1.0.2-3 +- spec file generated by cabal-rpm-0.11.1 +- Split the documentation into a separate package diff --git a/sources b/sources new file mode 100644 index 0000000..610ffce --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (mono-traversable-1.0.2.tar.gz) = 681ba454cb9b3c48e037e9a12e626e93046c171137e87c631d7c4b57631d79042d177d188173aea6093087da2f0c6b8aec0cf5d4df7fe380693fb25604fc3c7a From ec1245c9a3cbdfcb23e55180512f4f7571663210 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:11:37 +0100 Subject: [PATCH 03/32] refresh to cabal-rpm-0.12.1 --- ghc-mono-traversable.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index e256f01..319c35c 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.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 mono-traversable @@ -46,9 +46,12 @@ code for marking data structures as non-empty. %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 @@ -81,6 +84,12 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %cabal_test +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From b15bef987f9654308c79cb6e6ad17876bb1024d8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 15:42:51 +0100 Subject: [PATCH 04/32] update to 1.0.7.0 --- .gitignore | 1 + ghc-mono-traversable.spec | 10 +++++----- sources | 2 +- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index a623961..91bc864 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /mono-traversable-1.0.2.tar.gz +/mono-traversable-1.0.7.0.tar.gz diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 319c35c..207fa53 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -7,7 +7,7 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.0.2 +Version: 1.0.7.0 Release: 1%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers @@ -37,10 +37,7 @@ BuildRequires: ghc-semigroups-devel # End cabal-rpm deps %description -Monomorphic variants of the Functor, Foldable, and Traversable typeclasses. -If you understand Haskell's basic typeclasses, you understand mono-traversable. -In addition to what you are used to, it adds on an IsSequence typeclass and has -code for marking data structures as non-empty. +Please see the README at . %package devel @@ -109,6 +106,9 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %doc ChangeLog.md README.md %changelog +* Wed Jan 24 2018 Jens Petersen - 1.0.7.0-1 +- update to 1.0.7.0 + * Thu Nov 9 2017 David Shea - 1.0.2-3 - spec file generated by cabal-rpm-0.11.1 - Split the documentation into a separate package diff --git a/sources b/sources index 610ffce..1a9bb21 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mono-traversable-1.0.2.tar.gz) = 681ba454cb9b3c48e037e9a12e626e93046c171137e87c631d7c4b57631d79042d177d188173aea6093087da2f0c6b8aec0cf5d4df7fe380693fb25604fc3c7a +SHA512 (mono-traversable-1.0.7.0.tar.gz) = c1bed28126ee24bf1f41f1c71758d2e56e6bb1b1b1901a2a69a30a3316e0b9cd4ec061dd9953d860933c29333e46ebca835469d48da918321b89cef7e0589569 From 55c29fc1f44cf35c093251f59b67ecbf23625a18 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:03:02 +0900 Subject: [PATCH 05/32] drop ldconfig scriptlets --- ghc-mono-traversable.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 207fa53..1036e68 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -81,12 +81,6 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %cabal_test -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From a0ec017cf4d958004421f8aaf40b0afe357aa40c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 11:54:58 +0000 Subject: [PATCH 06/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 1036e68..0ed4f1e 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -100,6 +100,9 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %doc ChangeLog.md README.md %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.0.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Wed Jan 24 2018 Jens Petersen - 1.0.7.0-1 - update to 1.0.7.0 From 9263d99fadeb92f9f0d7419d8a86e688ce0e7c76 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 01:59:10 +0000 Subject: [PATCH 07/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 0ed4f1e..434eb87 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.7.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -100,6 +100,9 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %doc ChangeLog.md README.md %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.0.7.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 1.0.7.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 62566b7c152369800fdd90880c9bece576a09e69 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 22 Jul 2018 23:17:59 +0900 Subject: [PATCH 08/32] update to 1.0.8.1 --- .gitignore | 1 + ghc-mono-traversable.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 91bc864..26bbb19 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /mono-traversable-1.0.2.tar.gz /mono-traversable-1.0.7.0.tar.gz +/mono-traversable-1.0.8.1.tar.gz diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 434eb87..382a31f 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.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 mono-traversable @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.0.7.0 -Release: 3%{?dist} +Version: 1.0.8.1 +Release: 1%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -100,6 +100,9 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %doc ChangeLog.md README.md %changelog +* Sun Jul 22 2018 Jens Petersen - 1.0.8.1-1 +- update to 1.0.8.1 + * Fri Jul 13 2018 Fedora Release Engineering - 1.0.7.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index 1a9bb21..ec15280 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mono-traversable-1.0.7.0.tar.gz) = c1bed28126ee24bf1f41f1c71758d2e56e6bb1b1b1901a2a69a30a3316e0b9cd4ec061dd9953d860933c29333e46ebca835469d48da918321b89cef7e0589569 +SHA512 (mono-traversable-1.0.8.1.tar.gz) = cb3ea7efd1995be5f3af2b71cb8ed105801de6e2496fdd2644f90b223a33aa9b1e2e70837acaf3289aa4354ec217daf9bb77b44e7b745c3c84866ec40be5e062 From 383ab3c4448e49248b894dc14df6c9b083788b0f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 13 Sep 2018 18:56:12 +0900 Subject: [PATCH 09/32] fix build when haddock disabled --- ghc-mono-traversable.spec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 382a31f..b5af869 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -74,7 +74,9 @@ This package provides the Haskell %{pkg_name} library development documentation. %install %ghc_lib_install grep -v "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-nodoc.files +%if %{undefined without_haddock} grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-doc.files +%endif %check @@ -96,8 +98,10 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %files devel -f %{name}-devel-nodoc.files %doc ChangeLog.md README.md +%if %{undefined without_haddock} %files devel-doc -f %{name}-devel-doc.files %doc ChangeLog.md README.md +%endif %changelog * Sun Jul 22 2018 Jens Petersen - 1.0.8.1-1 From 6a725dbda7bdcca5218979367b2f88deedcd9b99 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 21:47:44 +0000 Subject: [PATCH 10/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index b5af869..495fecd 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.8.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -104,6 +104,9 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %endif %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 1.0.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sun Jul 22 2018 Jens Petersen - 1.0.8.1-1 - update to 1.0.8.1 From 72e67a4f7411fecaae04017685e60617c9cf515d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:46:23 +0800 Subject: [PATCH 11/32] refresh to cabal-rpm-0.13 --- ghc-mono-traversable.spec | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 495fecd..0e7724d 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.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 mono-traversable @@ -8,16 +8,18 @@ Name: ghc-%{pkg_name} Version: 1.0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers 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-bytestring-devel BuildRequires: ghc-containers-devel BuildRequires: ghc-hashable-devel @@ -64,15 +66,21 @@ This package provides the Haskell %{pkg_name} library development documentation. %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 grep -v "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-nodoc.files %if %{undefined without_haddock} grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-doc.files @@ -92,7 +100,9 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %files -f %{name}.files +# Begin cabal-rpm files: %license LICENSE +# End cabal-rpm files %files devel -f %{name}-devel-nodoc.files @@ -104,6 +114,9 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %endif %changelog +* Sun Feb 17 2019 Jens Petersen - 1.0.8.1-3 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 1.0.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 6bb47ed4c55cb3b7a2e9c9e40d642e8766a0e7ab Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 21 Feb 2019 12:04:50 +0800 Subject: [PATCH 12/32] update to 1.0.10.0 --- .gitignore | 1 + ghc-mono-traversable.spec | 9 ++- mono-traversable-1.0.10.0.cabal | 97 +++++++++++++++++++++++++++++++++ sources | 2 +- 4 files changed, 106 insertions(+), 3 deletions(-) create mode 100644 mono-traversable-1.0.10.0.cabal diff --git a/.gitignore b/.gitignore index 26bbb19..95449d0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /mono-traversable-1.0.2.tar.gz /mono-traversable-1.0.7.0.tar.gz /mono-traversable-1.0.8.1.tar.gz +/mono-traversable-1.0.10.0.tar.gz diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 0e7724d..5b812d4 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -7,14 +7,15 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.0.8.1 -Release: 3%{?dist} +Version: 1.0.10.0 +Release: 1%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers 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: @@ -68,6 +69,7 @@ This package provides the Haskell %{pkg_name} library development documentation. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} +cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -114,6 +116,9 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %endif %changelog +* Thu Feb 21 2019 Jens Petersen - 1.0.10.0-1 +- update to 1.0.10.0 + * Sun Feb 17 2019 Jens Petersen - 1.0.8.1-3 - refresh to cabal-rpm-0.13 diff --git a/mono-traversable-1.0.10.0.cabal b/mono-traversable-1.0.10.0.cabal new file mode 100644 index 0000000..32e8771 --- /dev/null +++ b/mono-traversable-1.0.10.0.cabal @@ -0,0 +1,97 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.30.0. +-- +-- see: https://github.com/sol/hpack +-- +-- hash: dd6993a12a11dc33b47bd2f3d81ac5ab62e3168ad8a01582458b74b64f971031 + +name: mono-traversable +version: 1.0.10.0 +x-revision: 1 +synopsis: Type classes for mapping, folding, and traversing monomorphic containers +description: Please see the README at +category: Data +homepage: https://github.com/snoyberg/mono-traversable#readme +bug-reports: https://github.com/snoyberg/mono-traversable/issues +author: Michael Snoyman, John Wiegley, Greg Weber +maintainer: michael@snoyman.com +license: MIT +license-file: LICENSE +build-type: Simple +extra-source-files: + README.md + ChangeLog.md + +source-repository head + type: git + location: https://github.com/snoyberg/mono-traversable + +library + hs-source-dirs: + src + ghc-options: -Wall + build-depends: + base >=4.9 && <5 + , bytestring >=0.9 + , containers >=0.5.8 + , hashable + , split >=0.2 + , text >=0.11 + , transformers >=0.3 + , unordered-containers >=0.2 + , vector >=0.10 + , vector-algorithms >=0.6 + if impl(ghc <8.0) + build-depends: + semigroups >=0.10 + exposed-modules: + Data.Containers + Data.MonoTraversable + Data.MonoTraversable.Unprefixed + Data.NonNull + Data.Sequences + other-modules: + Paths_mono_traversable + default-language: Haskell2010 + +test-suite test + type: exitcode-stdio-1.0 + main-is: main.hs + hs-source-dirs: + test + ghc-options: -O0 + build-depends: + HUnit + , QuickCheck + , base + , bytestring + , containers + , foldl + , hspec + , mono-traversable + , semigroups + , text + , transformers + , unordered-containers + , vector + other-modules: + Spec + Paths_mono_traversable + default-language: Haskell2010 + +benchmark sorting + type: exitcode-stdio-1.0 + main-is: sorting.hs + hs-source-dirs: + bench + ghc-options: -Wall -O2 + build-depends: + base + , gauge + , mono-traversable + , mwc-random + , vector + other-modules: + Paths_mono_traversable + default-language: Haskell2010 diff --git a/sources b/sources index ec15280..8e083f9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mono-traversable-1.0.8.1.tar.gz) = cb3ea7efd1995be5f3af2b71cb8ed105801de6e2496fdd2644f90b223a33aa9b1e2e70837acaf3289aa4354ec217daf9bb77b44e7b745c3c84866ec40be5e062 +SHA512 (mono-traversable-1.0.10.0.tar.gz) = eb229938885dfef4e74da810c30205bba6c27de5139b32983f478a5572e1bf588c95babc4a7bb4798ca200711119861b40ce628f0e11364615bef3a9aac0b476 From ee677b512547f85458241a2e6590bead34075c7d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 02:46:06 +0000 Subject: [PATCH 13/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 5b812d4..9b611fe 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.10.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -116,6 +116,9 @@ grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-dev %endif %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 1.0.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Feb 21 2019 Jens Petersen - 1.0.10.0-1 - update to 1.0.10.0 From 765feee3d6de71c3096901e5adb8566ff23e73c6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:24:45 +0000 Subject: [PATCH 14/32] refresh to cabal-rpm-1.0.0: lib doc/prof subpkgs and bin static BRs --- ghc-mono-traversable.spec | 59 ++++++++++++++++++++++----------------- 1 file changed, 34 insertions(+), 25 deletions(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 9b611fe..b7d039b 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.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 mono-traversable @@ -20,6 +20,12 @@ Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal# # 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-bytestring-devel BuildRequires: ghc-containers-devel @@ -46,11 +52,8 @@ Please see the README at . %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} @@ -58,12 +61,24 @@ Requires: %{name}%{?_isa} = %{version}-%{release} This package provides the Haskell %{pkg_name} library development files. -%package devel-doc -Summary: Haskell %{pkg_name} library development documentation -BuildArch: noarch -%description devel-doc -This package provides the Haskell %{pkg_name} library development documentation. +%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 @@ -83,38 +98,32 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal # Begin cabal-rpm install %ghc_lib_install # End cabal-rpm install -grep -v "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-nodoc.files -%if %{undefined without_haddock} -grep "%{_docdir}/ghc/html/libraries/%{pkgver}" %{name}-devel.files > %{name}-devel-doc.files -%endif %check %cabal_test -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE # End cabal-rpm files -%files devel -f %{name}-devel-nodoc.files +%files devel -f %{name}-devel.files %doc ChangeLog.md README.md -%if %{undefined without_haddock} -%files devel-doc -f %{name}-devel-doc.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 * Thu Jul 25 2019 Fedora Release Engineering - 1.0.10.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 124541885a9fb86cd6a71f690180618102bc8e91 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 16:15:14 +0000 Subject: [PATCH 15/32] update to 1.0.11.0 --- .gitignore | 1 + ghc-mono-traversable.spec | 9 +-- mono-traversable-1.0.10.0.cabal | 97 --------------------------------- sources | 2 +- 4 files changed, 7 insertions(+), 102 deletions(-) delete mode 100644 mono-traversable-1.0.10.0.cabal diff --git a/.gitignore b/.gitignore index 95449d0..f72abde 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /mono-traversable-1.0.7.0.tar.gz /mono-traversable-1.0.8.1.tar.gz /mono-traversable-1.0.10.0.tar.gz +/mono-traversable-1.0.11.0.tar.gz diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index b7d039b..fbc4687 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -7,15 +7,14 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.0.10.0 -Release: 2%{?dist} +Version: 1.0.11.0 +Release: 1%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers 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: @@ -84,7 +83,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -125,6 +123,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jul 25 2019 Jens Petersen - 1.0.11.0-1 +- update to 1.0.11.0 + * Thu Jul 25 2019 Fedora Release Engineering - 1.0.10.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/mono-traversable-1.0.10.0.cabal b/mono-traversable-1.0.10.0.cabal deleted file mode 100644 index 32e8771..0000000 --- a/mono-traversable-1.0.10.0.cabal +++ /dev/null @@ -1,97 +0,0 @@ -cabal-version: 1.12 - --- This file has been generated from package.yaml by hpack version 0.30.0. --- --- see: https://github.com/sol/hpack --- --- hash: dd6993a12a11dc33b47bd2f3d81ac5ab62e3168ad8a01582458b74b64f971031 - -name: mono-traversable -version: 1.0.10.0 -x-revision: 1 -synopsis: Type classes for mapping, folding, and traversing monomorphic containers -description: Please see the README at -category: Data -homepage: https://github.com/snoyberg/mono-traversable#readme -bug-reports: https://github.com/snoyberg/mono-traversable/issues -author: Michael Snoyman, John Wiegley, Greg Weber -maintainer: michael@snoyman.com -license: MIT -license-file: LICENSE -build-type: Simple -extra-source-files: - README.md - ChangeLog.md - -source-repository head - type: git - location: https://github.com/snoyberg/mono-traversable - -library - hs-source-dirs: - src - ghc-options: -Wall - build-depends: - base >=4.9 && <5 - , bytestring >=0.9 - , containers >=0.5.8 - , hashable - , split >=0.2 - , text >=0.11 - , transformers >=0.3 - , unordered-containers >=0.2 - , vector >=0.10 - , vector-algorithms >=0.6 - if impl(ghc <8.0) - build-depends: - semigroups >=0.10 - exposed-modules: - Data.Containers - Data.MonoTraversable - Data.MonoTraversable.Unprefixed - Data.NonNull - Data.Sequences - other-modules: - Paths_mono_traversable - default-language: Haskell2010 - -test-suite test - type: exitcode-stdio-1.0 - main-is: main.hs - hs-source-dirs: - test - ghc-options: -O0 - build-depends: - HUnit - , QuickCheck - , base - , bytestring - , containers - , foldl - , hspec - , mono-traversable - , semigroups - , text - , transformers - , unordered-containers - , vector - other-modules: - Spec - Paths_mono_traversable - default-language: Haskell2010 - -benchmark sorting - type: exitcode-stdio-1.0 - main-is: sorting.hs - hs-source-dirs: - bench - ghc-options: -Wall -O2 - build-depends: - base - , gauge - , mono-traversable - , mwc-random - , vector - other-modules: - Paths_mono_traversable - default-language: Haskell2010 diff --git a/sources b/sources index 8e083f9..40a744c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mono-traversable-1.0.10.0.tar.gz) = eb229938885dfef4e74da810c30205bba6c27de5139b32983f478a5572e1bf588c95babc4a7bb4798ca200711119861b40ce628f0e11364615bef3a9aac0b476 +SHA512 (mono-traversable-1.0.11.0.tar.gz) = 2be2ed59bd90140cfff5247ce8fb2a4ba1356e471af51b3507fe3cfa1db59a008b71312ddbd5a9e4faeda18305f3117bed1edd1a3eeeeb5fbbca578cce9f2135 From 4f478d777ca37ddb1122331cd3b5bc16ab6e6c2d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:30:42 +0800 Subject: [PATCH 16/32] BR prof for lib and static for executable --- ghc-mono-traversable.spec | 28 ++++++++++++---------------- 1 file changed, 12 insertions(+), 16 deletions(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index fbc4687..36e4b2d 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.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 mono-traversable @@ -19,22 +19,17 @@ 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-bytestring-devel -BuildRequires: ghc-containers-devel -BuildRequires: ghc-hashable-devel -BuildRequires: ghc-split-devel -BuildRequires: ghc-text-devel -BuildRequires: ghc-transformers-devel -BuildRequires: ghc-unordered-containers-devel -BuildRequires: ghc-vector-algorithms-devel -BuildRequires: ghc-vector-devel +BuildRequires: ghc-base-prof +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-containers-prof +BuildRequires: ghc-hashable-prof +BuildRequires: ghc-split-prof +BuildRequires: ghc-text-prof +BuildRequires: ghc-transformers-prof +BuildRequires: ghc-unordered-containers-prof +BuildRequires: ghc-vector-prof +BuildRequires: ghc-vector-algorithms-prof %if %{with tests} BuildRequires: ghc-HUnit-devel BuildRequires: ghc-QuickCheck-devel @@ -51,6 +46,7 @@ Please see the README at . %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 1d139bb7922bf54c8bb4b8c2e245ade90586425e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 21:05:13 +0000 Subject: [PATCH 17/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 36e4b2d..d1a44a8 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.11.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -119,6 +119,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 1.0.11.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Jens Petersen - 1.0.11.0-1 - update to 1.0.11.0 From acd6ba5c4d462c754ce1e4e3018fcb511297cf5d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:51:11 +0800 Subject: [PATCH 18/32] refresh to cabal-rpm-2.0.2 --- ghc-mono-traversable.spec | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index d1a44a8..1d2c6e3 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.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 mono-traversable @@ -60,6 +60,7 @@ 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. @@ -70,6 +71,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. @@ -98,6 +100,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 @@ -110,6 +122,7 @@ This package provides the Haskell %{pkg_name} profiling library. %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE %endif From f5f9ba05078c9e8bbb41f78ff3238683b55395b2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 14 Feb 2020 11:46:38 +0800 Subject: [PATCH 19/32] update to 1.0.15.1 --- .gitignore | 1 + ghc-mono-traversable.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f72abde..a272d34 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /mono-traversable-1.0.8.1.tar.gz /mono-traversable-1.0.10.0.tar.gz /mono-traversable-1.0.11.0.tar.gz +/mono-traversable-1.0.15.1.tar.gz diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 1d2c6e3..63bb61f 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.0.11.0 -Release: 2%{?dist} +Version: 1.0.15.1 +Release: 1%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -132,6 +132,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Feb 14 2020 Jens Petersen - 1.0.15.1-1 +- update to 1.0.15.1 + * Tue Jan 28 2020 Fedora Release Engineering - 1.0.11.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 40a744c..0db13a5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mono-traversable-1.0.11.0.tar.gz) = 2be2ed59bd90140cfff5247ce8fb2a4ba1356e471af51b3507fe3cfa1db59a008b71312ddbd5a9e4faeda18305f3117bed1edd1a3eeeeb5fbbca578cce9f2135 +SHA512 (mono-traversable-1.0.15.1.tar.gz) = adf1af35b93af0605667d8b033415f318c6dab225499fdd1d9eab349fb1eedca2623c98f9dce83f94ed27db75b6f0aa88027daa748c7b3db05f47f68b505b0c8 From 8cb6cab88b331316d378a5807cdd1031819015dc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:27:27 +0800 Subject: [PATCH 20/32] refresh to cabal-rpm-2.0.5 --- ghc-mono-traversable.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 63bb61f..7b9fdbb 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.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 mono-traversable %global pkgver %{pkg_name}-%{version} From 0344d19e2c16d6be23f78160097b7f6c3f7bc3ab Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:56:04 +0800 Subject: [PATCH 21/32] refresh to cabal-rpm-2.0.6 --- ghc-mono-traversable.spec | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 7b9fdbb..667f2c4 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.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 mono-traversable @@ -100,16 +100,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 f459f59c55369beddb8e6ff0066368726cfac80e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 18:25:28 +0800 Subject: [PATCH 22/32] bump release --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 667f2c4..fed69fc 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.15.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -122,6 +122,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Jul 17 2020 Jens Petersen - 1.0.15.1-2 +- refresh to cabal-rpm-2.0.6 + * Fri Feb 14 2020 Jens Petersen - 1.0.15.1-1 - update to 1.0.15.1 From 712c8dfc4997234213bda5edad89910c839928de Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 19:25:47 +0000 Subject: [PATCH 23/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index fed69fc..dfbf3da 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.15.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -122,6 +122,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 1.0.15.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 1.0.15.1-2 - refresh to cabal-rpm-2.0.6 From ef736fcdf27d4b155f4f7e2a5acdecfa05096d23 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 01:15:07 +0000 Subject: [PATCH 24/32] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index dfbf3da..30d604e 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.15.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -122,6 +122,10 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Sat Aug 01 2020 Fedora Release Engineering - 1.0.15.1-4 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 1.0.15.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 753b75622590ed0047372a9a2b699c8af57102d1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:30:05 +0000 Subject: [PATCH 25/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 30d604e..8cf4e20 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.15.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -122,6 +122,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 1.0.15.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sat Aug 01 2020 Fedora Release Engineering - 1.0.15.1-4 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From ba33af773080e2caa33e974902123545bf9a3736 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 00:59:40 +0000 Subject: [PATCH 26/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 8cf4e20..b8aac74 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.15.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -122,6 +122,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1.0.15.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 1.0.15.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From d23ef82848ab4c44f0bede611fb7e3063124cce5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:12 +0800 Subject: [PATCH 27/32] refresh to cabal-rpm-2.0.9 --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index b8aac74..d112642 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.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 mono-traversable @@ -61,6 +61,7 @@ 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. @@ -97,7 +98,9 @@ This package provides the Haskell %{pkg_name} profiling library. %check +%if %{with tests} %cabal_test +%endif %files -f %{name}.files From 5d136efa51a8a50e4790d27589ff7e6ad40430d9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 5 Aug 2021 20:40:50 +0800 Subject: [PATCH 28/32] revise .cabal --- ghc-mono-traversable.spec | 2 + mono-traversable-1.0.15.1.cabal | 97 +++++++++++++++++++++++++++++++++ 2 files changed, 99 insertions(+) create mode 100644 mono-traversable-1.0.15.1.cabal diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index d112642..59aceed 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -15,6 +15,7 @@ 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: @@ -82,6 +83,7 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} +cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup diff --git a/mono-traversable-1.0.15.1.cabal b/mono-traversable-1.0.15.1.cabal new file mode 100644 index 0000000..74e3814 --- /dev/null +++ b/mono-traversable-1.0.15.1.cabal @@ -0,0 +1,97 @@ +cabal-version: 1.12 + +-- This file has been generated from package.yaml by hpack version 0.31.2. +-- +-- see: https://github.com/sol/hpack +-- +-- hash: b2ac08c2845dd12213a3bc3c6e01f805bb98a7693a588b0ae313ceadcb5ca592 + +name: mono-traversable +version: 1.0.15.1 +x-revision: 1 +synopsis: Type classes for mapping, folding, and traversing monomorphic containers +description: Please see the README at +category: Data +homepage: https://github.com/snoyberg/mono-traversable#readme +bug-reports: https://github.com/snoyberg/mono-traversable/issues +author: Michael Snoyman, John Wiegley, Greg Weber +maintainer: michael@snoyman.com +license: MIT +license-file: LICENSE +build-type: Simple +extra-source-files: + README.md + ChangeLog.md + +source-repository head + type: git + location: https://github.com/snoyberg/mono-traversable + +library + exposed-modules: + Data.Containers + Data.MonoTraversable + Data.MonoTraversable.Unprefixed + Data.NonNull + Data.Sequences + other-modules: + Paths_mono_traversable + hs-source-dirs: + src + ghc-options: -Wall + build-depends: + base >=4.10 && <5 + , bytestring >=0.9 + , containers >=0.5.8 + , hashable + , split >=0.2 + , text >=0.11 + , transformers >=0.3 && <0.6 + , unordered-containers >=0.2 + , vector >=0.10 + , vector-algorithms >=0.6 + if impl(ghc <8.0) + build-depends: + semigroups >=0.10 + default-language: Haskell2010 + +test-suite test + type: exitcode-stdio-1.0 + main-is: main.hs + other-modules: + Spec + Paths_mono_traversable + hs-source-dirs: + test + ghc-options: -O0 + build-depends: + HUnit + , QuickCheck + , base + , bytestring + , containers + , foldl + , hspec + , mono-traversable + , semigroups + , text + , transformers + , unordered-containers + , vector + default-language: Haskell2010 + +benchmark sorting + type: exitcode-stdio-1.0 + main-is: sorting.hs + other-modules: + Paths_mono_traversable + hs-source-dirs: + bench + ghc-options: -Wall -O2 + build-depends: + base + , gauge + , mono-traversable + , mwc-random + , vector + default-language: Haskell2010 From 42a582467e542be6382e8b7d12ed798f3449e965 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 6 Aug 2021 12:14:47 +0800 Subject: [PATCH 29/32] bump release --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 59aceed..6bf58f3 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.15.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -127,6 +127,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Fri Aug 06 2021 Jens Petersen - 1.0.15.1-7 +- rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 1.0.15.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 2206e6e805bd048f15dbb4e2d0a4ccdbd8b53c71 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 05:15:58 +0000 Subject: [PATCH 30/32] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-mono-traversable.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 6bf58f3..47fb1ee 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.15.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers License: MIT @@ -127,6 +127,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 1.0.15.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Aug 06 2021 Jens Petersen - 1.0.15.1-7 - rebuild From 23c0d8b2ca5d59632ad9329fc28fc1cc1c8d2919 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 7 Jun 2022 14:07:04 +0800 Subject: [PATCH 31/32] update to 1.0.15.3 --- .gitignore | 1 + ghc-mono-traversable.spec | 9 +-- mono-traversable-1.0.15.1.cabal | 97 --------------------------------- sources | 2 +- 4 files changed, 7 insertions(+), 102 deletions(-) delete mode 100644 mono-traversable-1.0.15.1.cabal diff --git a/.gitignore b/.gitignore index a272d34..b838741 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /mono-traversable-1.0.10.0.tar.gz /mono-traversable-1.0.11.0.tar.gz /mono-traversable-1.0.15.1.tar.gz +/mono-traversable-1.0.15.3.tar.gz diff --git a/ghc-mono-traversable.spec b/ghc-mono-traversable.spec index 47fb1ee..8b97b21 100644 --- a/ghc-mono-traversable.spec +++ b/ghc-mono-traversable.spec @@ -7,15 +7,14 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.0.15.1 -Release: 8%{?dist} +Version: 1.0.15.3 +Release: 1%{?dist} Summary: Type classes for mapping, folding, and traversing monomorphic containers 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: @@ -83,7 +82,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -cp -bp %{SOURCE1} %{pkg_name}.cabal # End cabal-rpm setup @@ -127,6 +125,9 @@ cp -bp %{SOURCE1} %{pkg_name}.cabal %changelog +* Tue Jun 07 2022 Jens Petersen - 1.0.15.3-1 +- https://hackage.haskell.org/package/mono-traversable-1.0.15.3/changelog + * Thu Jan 20 2022 Fedora Release Engineering - 1.0.15.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild diff --git a/mono-traversable-1.0.15.1.cabal b/mono-traversable-1.0.15.1.cabal deleted file mode 100644 index 74e3814..0000000 --- a/mono-traversable-1.0.15.1.cabal +++ /dev/null @@ -1,97 +0,0 @@ -cabal-version: 1.12 - --- This file has been generated from package.yaml by hpack version 0.31.2. --- --- see: https://github.com/sol/hpack --- --- hash: b2ac08c2845dd12213a3bc3c6e01f805bb98a7693a588b0ae313ceadcb5ca592 - -name: mono-traversable -version: 1.0.15.1 -x-revision: 1 -synopsis: Type classes for mapping, folding, and traversing monomorphic containers -description: Please see the README at -category: Data -homepage: https://github.com/snoyberg/mono-traversable#readme -bug-reports: https://github.com/snoyberg/mono-traversable/issues -author: Michael Snoyman, John Wiegley, Greg Weber -maintainer: michael@snoyman.com -license: MIT -license-file: LICENSE -build-type: Simple -extra-source-files: - README.md - ChangeLog.md - -source-repository head - type: git - location: https://github.com/snoyberg/mono-traversable - -library - exposed-modules: - Data.Containers - Data.MonoTraversable - Data.MonoTraversable.Unprefixed - Data.NonNull - Data.Sequences - other-modules: - Paths_mono_traversable - hs-source-dirs: - src - ghc-options: -Wall - build-depends: - base >=4.10 && <5 - , bytestring >=0.9 - , containers >=0.5.8 - , hashable - , split >=0.2 - , text >=0.11 - , transformers >=0.3 && <0.6 - , unordered-containers >=0.2 - , vector >=0.10 - , vector-algorithms >=0.6 - if impl(ghc <8.0) - build-depends: - semigroups >=0.10 - default-language: Haskell2010 - -test-suite test - type: exitcode-stdio-1.0 - main-is: main.hs - other-modules: - Spec - Paths_mono_traversable - hs-source-dirs: - test - ghc-options: -O0 - build-depends: - HUnit - , QuickCheck - , base - , bytestring - , containers - , foldl - , hspec - , mono-traversable - , semigroups - , text - , transformers - , unordered-containers - , vector - default-language: Haskell2010 - -benchmark sorting - type: exitcode-stdio-1.0 - main-is: sorting.hs - other-modules: - Paths_mono_traversable - hs-source-dirs: - bench - ghc-options: -Wall -O2 - build-depends: - base - , gauge - , mono-traversable - , mwc-random - , vector - default-language: Haskell2010 diff --git a/sources b/sources index 0db13a5..c50bb7c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (mono-traversable-1.0.15.1.tar.gz) = adf1af35b93af0605667d8b033415f318c6dab225499fdd1d9eab349fb1eedca2623c98f9dce83f94ed27db75b6f0aa88027daa748c7b3db05f47f68b505b0c8 +SHA512 (mono-traversable-1.0.15.3.tar.gz) = 55f469149b84ace246e6c0791de25fcc73317152986e4949c7ae9ae020bd6540586da090d58ba495ef7f251c4a3a02979a796af9fde975a54d3d1541527b7691 From 719ff949fff982afb9d13774f2103bd693ca423b Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 21:47:55 +0300 Subject: [PATCH 32/32] 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 c50bb7c..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (mono-traversable-1.0.15.3.tar.gz) = 55f469149b84ace246e6c0791de25fcc73317152986e4949c7ae9ae020bd6540586da090d58ba495ef7f251c4a3a02979a796af9fde975a54d3d1541527b7691