From 2a2dcfdf3d1bf27026c446f381ce622b5210d506 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 15 Nov 2017 15:20:51 +0000 Subject: [PATCH 01/25] 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..6bce1d7 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ghc-unbounded-delays + +The ghc-unbounded-delays package \ No newline at end of file From 11802123d47e83c2c7ea48f7ee3144bb9e72e9d5 Mon Sep 17 00:00:00 2001 From: David Shea Date: Wed, 15 Nov 2017 13:35:30 -0500 Subject: [PATCH 02/25] New package ghc-unbounded-delays --- .gitignore | 1 + README.md | 3 -- ghc-unbounded-delays.spec | 68 +++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 70 insertions(+), 3 deletions(-) create mode 100644 .gitignore delete mode 100644 README.md create mode 100644 ghc-unbounded-delays.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7a5b0a7 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/unbounded-delays-0.1.1.0.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 6bce1d7..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# ghc-unbounded-delays - -The ghc-unbounded-delays package \ No newline at end of file diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec new file mode 100644 index 0000000..87233ca --- /dev/null +++ b/ghc-unbounded-delays.spec @@ -0,0 +1,68 @@ +# generated by cabal-rpm-0.11.2 +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name unbounded-delays +%global pkgver %{pkg_name}-%{version} + +Name: ghc-%{pkg_name} +Version: 0.1.1.0 +Release: 1%{?dist} +Summary: Unbounded thread delays and timeouts + +License: BSD +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 + +%description +The 'threadDelay' and 'timeout' functions from the 'base' library use the +bounded 'Int' type for specifying the delay or timeout period. This packages +provides alternatives which use the unbounded 'Integer' type. + + +%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 +%doc README.markdown + + +%changelog +* Mon Oct 2 2017 Fedora Haskell SIG - 0.1.1.0-1 +- spec file generated by cabal-rpm-0.11.2 diff --git a/sources b/sources new file mode 100644 index 0000000..a143f12 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (unbounded-delays-0.1.1.0.tar.gz) = 70e26055abe40b38e20bc5dadc3ae32b699613698d0fc36bbd519fe011128fbdda7e963a69f25375b4e8a26b2ebfa2cdd4496d9d045e9f19672224654e5e7948 From dc42b1a195453389535aa74609d576732dfae1a3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:12:13 +0100 Subject: [PATCH 03/25] refresh to cabal-rpm-0.12.1 --- ghc-unbounded-delays.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 87233ca..cbe4caf 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.11.2 +# generated by cabal-rpm-0.12.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name unbounded-delays @@ -25,9 +25,12 @@ provides alternatives which use the unbounded 'Integer' type. %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 @@ -47,6 +50,12 @@ files. %ghc_lib_install +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From e3de67a942721c6cb5cc0c98b342613da6569cb3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 26 Jan 2018 12:02:08 +0100 Subject: [PATCH 04/25] bump release --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index cbe4caf..4dcc21d 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -73,5 +73,8 @@ files. %changelog +* Fri Jan 26 2018 Jens Petersen - 0.1.1.0-2 +- rebuild + * Mon Oct 2 2017 Fedora Haskell SIG - 0.1.1.0-1 - spec file generated by cabal-rpm-0.11.2 From d3ab9fbb505375eb2a4b8bb7fb4fef41af8c3487 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:03:39 +0900 Subject: [PATCH 05/25] drop ldconfig scriptlets --- ghc-unbounded-delays.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 4dcc21d..c572d9f 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -50,12 +50,6 @@ files. %ghc_lib_install -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From b1cbdfa23eceba84c4ad3b0df8cc16f4982405ae Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 12:16:50 +0000 Subject: [PATCH 06/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index c572d9f..7922c54 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -67,6 +67,9 @@ files. %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.1.1.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Fri Jan 26 2018 Jens Petersen - 0.1.1.0-2 - rebuild From a6c593e229b72ebb8714737281bfe90f7a00bdfb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 02:13:06 +0000 Subject: [PATCH 07/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 7922c54..7d0b0ae 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -67,6 +67,9 @@ files. %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.1.1.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 0.1.1.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From c3c20b28fe56f9d03b89287f65e11595befe28a7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 22:09:27 +0000 Subject: [PATCH 08/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 7d0b0ae..e88886f 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -67,6 +67,9 @@ files. %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 0.1.1.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 0.1.1.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 8579b59c0f4dda5b445eafde804b07daf6002255 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:47:35 +0800 Subject: [PATCH 09/25] refresh to cabal-rpm-0.13 --- ghc-unbounded-delays.spec | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index e88886f..c733efd 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.1 +# generated by cabal-rpm-0.13 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name unbounded-delays @@ -6,15 +6,19 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Unbounded thread delays and timeouts License: BSD 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 +# End cabal-rpm deps %description The 'threadDelay' and 'timeout' functions from the 'base' library use the @@ -39,15 +43,21 @@ 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 @@ -59,7 +69,9 @@ files. %files -f %{name}.files +# Begin cabal-rpm files: %license LICENSE +# End cabal-rpm files %files devel -f %{name}-devel.files @@ -67,6 +79,9 @@ files. %changelog +* Sun Feb 17 2019 Jens Petersen - 0.1.1.0-6 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 0.1.1.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 9ab8aaa11424f9082309de7923800e8e57b25535 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 03:08:52 +0000 Subject: [PATCH 10/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index c733efd..33c2b82 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -79,6 +79,9 @@ files. %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.1.1.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 17 2019 Jens Petersen - 0.1.1.0-6 - refresh to cabal-rpm-0.13 From 8e30f762e618bf745fcf16fb32861e4e9b8d4971 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:26:33 +0000 Subject: [PATCH 11/25] cabal-rpm-1.0.0: add doc and prof subpkgs --- ghc-unbounded-delays.spec | 53 +++++++++++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 13 deletions(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 33c2b82..4488ae6 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.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 unbounded-delays @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -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 # End cabal-rpm deps @@ -29,11 +35,8 @@ provides alternatives which use the unbounded 'Integer' type. %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 @@ 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 @@ 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 @@ -78,7 +92,20 @@ files. %doc README.markdown +%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.1.1.0-8 +- add doc and prof subpackages (cabal-rpm-1.0.0) + * Thu Jul 25 2019 Fedora Release Engineering - 0.1.1.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From b9bfd2fa1dcd3ccf6f3929c95240a61c816ae0db Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:32:31 +0800 Subject: [PATCH 12/25] BR prof for lib and static for executable --- ghc-unbounded-delays.spec | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 4488ae6..9809e53 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.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 unbounded-delays @@ -17,13 +17,8 @@ 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-base-prof # End cabal-rpm deps %description @@ -35,6 +30,7 @@ provides alternatives which use the unbounded 'Integer' type. %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 8357b01ee97cecb49ce2d8e3c209cce724b1d8d2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 21:34:55 +0000 Subject: [PATCH 13/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 9809e53..3bb5cd8 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -99,6 +99,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 0.1.1.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Aug 02 2019 Jens Petersen - 0.1.1.0-8 - add doc and prof subpackages (cabal-rpm-1.0.0) From c796a0157a4cf716007394597bfc31fa5aeca9cc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:52:32 +0800 Subject: [PATCH 14/25] refresh to cabal-rpm-2.0.2 --- ghc-unbounded-delays.spec | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 3bb5cd8..7e6bb78 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.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 unbounded-delays @@ -44,6 +44,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. @@ -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 @@ -90,6 +102,7 @@ This package provides the Haskell %{pkg_name} profiling library. %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE %endif From 8361291d87862cbd6c4431b2a87b6d306a860e10 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:28:45 +0800 Subject: [PATCH 15/25] refresh to cabal-rpm-2.0.5 --- ghc-unbounded-delays.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 7e6bb78..70b6871 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.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 unbounded-delays %global pkgver %{pkg_name}-%{version} From f7e76d51794e670f385adb027eb5efed098443f3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:57:24 +0800 Subject: [PATCH 16/25] refresh to cabal-rpm-2.0.6 --- ghc-unbounded-delays.spec | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 70b6871..4948ba5 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.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 unbounded-delays @@ -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 fa20ce1c98d645210f64e978516ab22205720a7d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 18:44:51 +0800 Subject: [PATCH 17/25] bump release --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 4948ba5..ffa3d77 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -102,6 +102,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Jul 17 2020 Jens Petersen - 0.1.1.0-10 +- refresh to cabal-rpm-2.0.6 + * Tue Jan 28 2020 Fedora Release Engineering - 0.1.1.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 6680b7cf6ec42ff4f540a8fad002d438daa99097 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 19:47:54 +0000 Subject: [PATCH 18/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index ffa3d77..bb08ef1 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -102,6 +102,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 0.1.1.0-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 0.1.1.0-10 - refresh to cabal-rpm-2.0.6 From bac154f27f9b78c2f988e4ba4636a4934a08f6bb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 01:37:40 +0000 Subject: [PATCH 19/25] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index bb08ef1..7d7e758 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -102,6 +102,10 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Sat Aug 01 2020 Fedora Release Engineering - 0.1.1.0-12 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 0.1.1.0-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 421bcbf52e1e8f85a81cab1b332f0f72a1beeaab Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:51:39 +0000 Subject: [PATCH 20/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 7d7e758..3f05069 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -102,6 +102,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.1.1.0-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sat Aug 01 2020 Fedora Release Engineering - 0.1.1.0-12 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 437a2cdd7aeefde80a9410d564a952f8a5c096e9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 01:23:52 +0000 Subject: [PATCH 21/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 3f05069..b3dcaa2 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.0 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -102,6 +102,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.1.1.0-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.1.1.0-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From a86b43dcd319fdd2584a6279712c7b95cc0f246c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 29 Jan 2021 11:00:09 +0800 Subject: [PATCH 22/25] update to 0.1.1.1 --- .gitignore | 1 + ghc-unbounded-delays.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 7a5b0a7..03d0b17 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /unbounded-delays-0.1.1.0.tar.gz +/unbounded-delays-0.1.1.1.tar.gz diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index b3dcaa2..0fac021 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -5,8 +5,8 @@ %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 0.1.1.0 -Release: 14%{?dist} +Version: 0.1.1.1 +Release: 1%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -102,6 +102,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Aug 5 2021 Jens Petersen - 0.1.1.1-1 +- update to 0.1.1.1 + * Thu Jul 22 2021 Fedora Release Engineering - 0.1.1.0-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index a143f12..1bf9c37 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (unbounded-delays-0.1.1.0.tar.gz) = 70e26055abe40b38e20bc5dadc3ae32b699613698d0fc36bbd519fe011128fbdda7e963a69f25375b4e8a26b2ebfa2cdd4496d9d045e9f19672224654e5e7948 +SHA512 (unbounded-delays-0.1.1.1.tar.gz) = 7439c8976498bd84e966b7e08e8d868d65debe3ffc7fd77dc6de345258b4532f2203415abf9530fdaa5feba0bfdc1031303b343502d1f3dc401058125babd41b From 40a7fd0a138e9cdf20df8550f8721a31ac45e05c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:14 +0800 Subject: [PATCH 23/25] refresh to cabal-rpm-2.0.9 --- ghc-unbounded-delays.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 0fac021..1c321db 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.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 unbounded-delays @@ -45,6 +45,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. From 5b5ace731a4ad0ad20907fe4772d246fdd584599 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 05:42:39 +0000 Subject: [PATCH 24/25] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-unbounded-delays.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-unbounded-delays.spec b/ghc-unbounded-delays.spec index 1c321db..3f1e9b8 100644 --- a/ghc-unbounded-delays.spec +++ b/ghc-unbounded-delays.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Unbounded thread delays and timeouts License: BSD @@ -103,6 +103,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.1.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Aug 5 2021 Jens Petersen - 0.1.1.1-1 - update to 0.1.1.1 From 2483c6bdcf935a6cd6c8b5a4f0e9457acc1b7480 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:06:23 +0300 Subject: [PATCH 25/25] 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 1bf9c37..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (unbounded-delays-0.1.1.1.tar.gz) = 7439c8976498bd84e966b7e08e8d868d65debe3ffc7fd77dc6de345258b4532f2203415abf9530fdaa5feba0bfdc1031303b343502d1f3dc401058125babd41b