From c4c705fb1f518f9b9a02166634eb4031b8556a91 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Fri, 10 Nov 2017 19:45:49 +0000 Subject: [PATCH 01/26] 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..274392b --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ghc-quickcheck-io + +The ghc-quickcheck-io package \ No newline at end of file From 7250d8d7c72f6e684e6f953fea1dd4c34d77a854 Mon Sep 17 00:00:00 2001 From: David Shea Date: Fri, 10 Nov 2017 15:17:03 -0500 Subject: [PATCH 02/26] New package ghc-quickcheck-io --- .gitignore | 1 + README.md | 3 -- ghc-quickcheck-io.spec | 69 ++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 71 insertions(+), 3 deletions(-) create mode 100644 .gitignore delete mode 100644 README.md create mode 100644 ghc-quickcheck-io.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..086fc7c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/quickcheck-io-0.2.0.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 274392b..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# ghc-quickcheck-io - -The ghc-quickcheck-io package \ No newline at end of file diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec new file mode 100644 index 0000000..8ccd976 --- /dev/null +++ b/ghc-quickcheck-io.spec @@ -0,0 +1,69 @@ +# generated by cabal-rpm-0.11.1 +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name quickcheck-io +%global pkgver %{pkg_name}-%{version} + +Name: ghc-%{pkg_name} +Version: 0.2.0 +Release: 1%{?dist} +Summary: Use HUnit assertions as QuickCheck properties + +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-HUnit-devel +BuildRequires: ghc-QuickCheck-devel +# End cabal-rpm deps + +%description +This package provides an orphan instance that allows you to use HUnit +assertions as QuickCheck properties. + + +%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 %{pkgver} + + +%build +%ghc_lib_build + + +%install +%ghc_lib_install + + +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache + + +%files -f %{name}.files +%license LICENSE + + +%files devel -f %{name}-devel.files + + +%changelog +* Fri Jul 28 2017 Fedora Haskell SIG - 0.2.0-1 +- spec file generated by cabal-rpm-0.11.1 diff --git a/sources b/sources new file mode 100644 index 0000000..889214c --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (quickcheck-io-0.2.0.tar.gz) = 02e1f40bac8f31f27c21d1d2df9f226816f9da871092b09f0451a8321e250c9e94887f94889be421c9d0034e0a27b02c907d16eb7da5a4376df42c7c1fbd01df From ae8578e420fd7a6629485733befbafb699ac3965 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:11:49 +0100 Subject: [PATCH 03/26] refresh to cabal-rpm-0.12.1 --- ghc-quickcheck-io.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 8ccd976..604c663 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.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 quickcheck-io @@ -28,9 +28,12 @@ assertions as QuickCheck properties. %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 @@ -49,6 +52,12 @@ This package provides the Haskell %{pkg_name} library development files. %ghc_lib_install +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From 8ec791dbd33dabc112be8f6c8c28118fee1d80a5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 26 Jan 2018 11:51:48 +0100 Subject: [PATCH 04/26] bump release --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 604c663..f2935b6 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -74,5 +74,8 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Jan 26 2018 Jens Petersen - 0.2.0-2 +- rebuild + * Fri Jul 28 2017 Fedora Haskell SIG - 0.2.0-1 - spec file generated by cabal-rpm-0.11.1 From 0169a03f47c2e1c717c410bd81f72c9a3848a56f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:03:15 +0900 Subject: [PATCH 05/26] drop ldconfig scriptlets --- ghc-quickcheck-io.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index f2935b6..8121ce0 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -52,12 +52,6 @@ This package provides the Haskell %{pkg_name} library development files. %ghc_lib_install -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From 5a1d8372459d53111a153781d3fe4e059f64c9b1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 12:01:40 +0000 Subject: [PATCH 06/26] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 8121ce0..7972738 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -68,6 +68,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Fri Jan 26 2018 Jens Petersen - 0.2.0-2 - rebuild From 187e84cda9556e0e6a36b90b326acb6e03c1b52d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 02:03:37 +0000 Subject: [PATCH 07/26] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 7972738..62ec262 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -68,6 +68,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 0.2.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 16345ac6fc00f4d4aab67fdf4316c2c4134651c9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 29 Jul 2018 01:05:25 +0900 Subject: [PATCH 08/26] rebuild --- ghc-quickcheck-io.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 62ec262..68c1783 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.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 quickcheck-io @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -68,6 +68,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sat Jul 28 2018 Jens Petersen - 0.2.0-5 +- rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 0.2.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From bf34fe115976c8a0d6dfa8fb4edb0d96c4c2470e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 21:54:14 +0000 Subject: [PATCH 09/26] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 68c1783..d6beaf3 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -68,6 +68,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 0.2.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 28 2018 Jens Petersen - 0.2.0-5 - rebuild From 2a586fb5147ad0f8ffad45187dae100847c7261c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:46:46 +0800 Subject: [PATCH 10/26] refresh to cabal-rpm-0.13 --- ghc-quickcheck-io.spec | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index d6beaf3..f54b8eb 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.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 quickcheck-io @@ -6,16 +6,18 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Use HUnit assertions as QuickCheck properties 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-HUnit-devel BuildRequires: ghc-QuickCheck-devel # End cabal-rpm deps @@ -41,15 +43,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 %post devel @@ -61,13 +69,18 @@ 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 %changelog +* Sun Feb 17 2019 Jens Petersen - 0.2.0-7 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 0.2.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From c8e3f3235929c4c72d5a6b68d2ccc8b820821e74 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 02:53:06 +0000 Subject: [PATCH 11/26] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index f54b8eb..33834d9 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -78,6 +78,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.2.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 17 2019 Jens Petersen - 0.2.0-7 - refresh to cabal-rpm-0.13 From b1bea9a3905cbe6f82425ed3e23bb2e1429951b7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:25:20 +0000 Subject: [PATCH 12/26] cabal-rpm-1.0.0: add doc and prof subpkgs --- ghc-quickcheck-io.spec | 53 +++++++++++++++++++++++++++++++----------- 1 file changed, 40 insertions(+), 13 deletions(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 33834d9..fdabd41 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.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 quickcheck-io @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -17,6 +17,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-HUnit-devel BuildRequires: ghc-QuickCheck-devel @@ -30,11 +36,8 @@ assertions as QuickCheck properties. %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} @@ -42,6 +45,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} @@ -60,14 +82,6 @@ This package provides the Haskell %{pkg_name} library development files. # End cabal-rpm install -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -77,7 +91,20 @@ This package provides the Haskell %{pkg_name} library development files. %files devel -f %{name}-devel.files +%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 - 0.2.0-9 +- add doc and prof subpackages (cabal-rpm-1.0.0) + * Thu Jul 25 2019 Fedora Release Engineering - 0.2.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 09263dfda05622d7d4f1904ffa7e7c075288888c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:31:16 +0800 Subject: [PATCH 13/26] BR prof for lib and static for executable --- ghc-quickcheck-io.spec | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index fdabd41..4ff3364 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.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 quickcheck-io @@ -17,15 +17,10 @@ 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-HUnit-devel -BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-HUnit-prof +BuildRequires: ghc-QuickCheck-prof +BuildRequires: ghc-base-prof # End cabal-rpm deps %description @@ -36,6 +31,7 @@ assertions as QuickCheck properties. %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 1fca57a300dc5716563d0bb700b4c6b7657b0af6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 21:14:28 +0000 Subject: [PATCH 14/26] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 4ff3364..2ee762a 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -98,6 +98,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 0.2.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Aug 02 2019 Jens Petersen - 0.2.0-9 - add doc and prof subpackages (cabal-rpm-1.0.0) From a6125ff3f27686ab3c60ea6148a2dbcc93df7658 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:51:37 +0800 Subject: [PATCH 15/26] refresh to cabal-rpm-2.0.2 --- ghc-quickcheck-io.spec | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 2ee762a..3e958b4 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.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 quickcheck-io @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -44,6 +44,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. @@ -54,6 +55,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. @@ -78,6 +80,16 @@ This package provides the Haskell %{pkg_name} profiling library. # End cabal-rpm install +%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 @@ -89,6 +101,7 @@ This package provides the Haskell %{pkg_name} profiling library. %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE %endif @@ -98,6 +111,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Wed Feb 19 2020 Jens Petersen - 0.2.0-11 +- refresh to cabal-rpm-2.0.2 + * Tue Jan 28 2020 Fedora Release Engineering - 0.2.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From e5255c45a8777f4778f3bebe9b366b61a7391ca2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:27:52 +0800 Subject: [PATCH 16/26] refresh to cabal-rpm-2.0.5 --- ghc-quickcheck-io.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 3e958b4..1697d21 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.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 quickcheck-io %global pkgver %{pkg_name}-%{version} From 79670c31d08e97764e1e238ab3c8e9436fd73456 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:56:30 +0800 Subject: [PATCH 17/26] refresh to cabal-rpm-2.0.6 --- ghc-quickcheck-io.spec | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 1697d21..2c57f1b 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.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 quickcheck-io @@ -80,16 +80,6 @@ This package provides the Haskell %{pkg_name} profiling library. # End cabal-rpm install -%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 624a56e1c65bf0d5902417427ce0501ba7b278a8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 18:31:45 +0800 Subject: [PATCH 18/26] bump release --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 2c57f1b..23723b3 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -101,6 +101,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Jul 17 2020 Jens Petersen - 0.2.0-12 +- refresh to cabal-rpm-2.0.6 + * Wed Feb 19 2020 Jens Petersen - 0.2.0-11 - refresh to cabal-rpm-2.0.2 From b39d9af54bdff6c7815c1fb6a9273396a89d6c00 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 19:33:03 +0000 Subject: [PATCH 19/26] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 23723b3..5b4b676 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -101,6 +101,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 0.2.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 0.2.0-12 - refresh to cabal-rpm-2.0.6 From 36240e6576312c707a73d8e8f71683ae3daa6d9a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 01:22:03 +0000 Subject: [PATCH 20/26] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 5b4b676..16c65fb 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -101,6 +101,10 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Sat Aug 01 2020 Fedora Release Engineering - 0.2.0-14 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 0.2.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From fc27e27d247bd25768a1eabf22f71b91de75f375 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:37:17 +0000 Subject: [PATCH 21/26] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 16c65fb..0eaa1e3 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -101,6 +101,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.2.0-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sat Aug 01 2020 Fedora Release Engineering - 0.2.0-14 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 7ce2929d50c73e08a8274273e7f85da20a2449e3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 01:07:17 +0000 Subject: [PATCH 22/26] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 0eaa1e3..5f4026b 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -101,6 +101,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.2.0-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.2.0-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From da43fd52ded21a68a64a6b836c19acd98972d8f4 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:13 +0800 Subject: [PATCH 23/26] refresh to cabal-rpm-2.0.9 --- ghc-quickcheck-io.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 5f4026b..3c8a680 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.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 quickcheck-io @@ -45,6 +45,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. From 220724df7ec07df531a08f858ed46d6a0139b017 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 6 Aug 2021 12:20:47 +0800 Subject: [PATCH 24/26] bump release --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 3c8a680..73cf661 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -102,6 +102,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Aug 06 2021 Jens Petersen - 0.2.0-17 +- rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 0.2.0-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From cc9624e5c7234438743f8c483f48271b1b588a74 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 05:24:03 +0000 Subject: [PATCH 25/26] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-quickcheck-io.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-quickcheck-io.spec b/ghc-quickcheck-io.spec index 73cf661..cbbe0bf 100644 --- a/ghc-quickcheck-io.spec +++ b/ghc-quickcheck-io.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.2.0 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Use HUnit assertions as QuickCheck properties License: MIT @@ -102,6 +102,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.2.0-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Aug 06 2021 Jens Petersen - 0.2.0-17 - rebuild From 75e8db64e7ba3cacb8e33237919a28b0dec89ffd Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 21:52:02 +0300 Subject: [PATCH 26/26] 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 889214c..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (quickcheck-io-0.2.0.tar.gz) = 02e1f40bac8f31f27c21d1d2df9f226816f9da871092b09f0451a8321e250c9e94887f94889be421c9d0034e0a27b02c907d16eb7da5a4376df42c7c1fbd01df