From 8f071f88481154f901d615584e7a560370cfc804 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 30 Nov 2010 15:17:10 +0000 Subject: [PATCH 01/60] Initial setup of the repo --- .gitignore | 0 sources | 0 2 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 .gitignore create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e69de29 diff --git a/sources b/sources new file mode 100644 index 0000000..e69de29 From 21ac2560510d32b5f8b8567eb812d2bb0cce74be Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 1 Dec 2010 20:42:34 -0500 Subject: [PATCH 02/60] Initial commit --- .gitignore | 1 + ghc-base64-bytestring.spec | 68 ++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 70 insertions(+) create mode 100644 ghc-base64-bytestring.spec diff --git a/.gitignore b/.gitignore index e69de29..530cd53 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/base64-bytestring-0.1.0.1.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec new file mode 100644 index 0000000..a018cc2 --- /dev/null +++ b/ghc-base64-bytestring.spec @@ -0,0 +1,68 @@ +%global pkg_name base64-bytestring + +%global common_summary Fast base64 encoding and decoding for ByteStrings + +%global common_description %{common_summary}. + +%bcond_without shared +%bcond_without hscolour + +# debuginfo is not useful for ghc +%global debug_package %{nil} + +Name: ghc-%{pkg_name} +Version: 0.1.0.1 +Release: 2%{?dist} +Summary: %{common_summary} + +Group: System Environment/Libraries +License: BSD +URL: http://hackage.haskell.org/package/%{pkg_name} +Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# fedora ghc archs: +ExclusiveArch: %{ix86} x86_64 ppc alpha +BuildRequires: ghc, ghc-doc, ghc-prof +BuildRequires: ghc-rpm-macros >= 0.8.1 +%if %{with hscolour} +BuildRequires: hscolour +%endif +%{?ghc_pkg_deps:BuildRequires: %{ghc_pkg_deps}, %(echo %{ghc_pkg_deps} | sed -e "s/\(ghc-[^, ]\+\)-devel/\1-doc,\1-prof/g")} +%{?ghc_pkg_c_deps:BuildRequires: %{ghc_pkg_c_deps}} + +%description +%{common_description} +%if %{with shared} +This package provides the shared library. +%endif + + +%prep +%setup -q -n %{pkg_name}-%{version} + + +%build +%ghc_lib_build + + +%install +rm -rf %{buildroot} +%ghc_lib_install + + +%clean +rm -rf %{buildroot} + + +%{?ghc_lib_package} + + +%changelog +* Mon Nov 29 2010 Ben Boeckel - 0.1.0.1-2 +- Fix spelling in %%summary + +* Sat Oct 30 2010 Ben Boeckel - 0.1.0.1-1 +- Initial package + +* Sat Oct 30 2010 Fedora Haskell SIG - 0.1.0.1-0 +- initial packaging for Fedora automatically generated by cabal2spec-0.22.2 diff --git a/sources b/sources index e69de29..c1e99e2 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +f0f9cb5a29a718bcca49e2c284378d62 base64-bytestring-0.1.0.1.tar.gz From 23a12f4f0f0d13facb8f5953ab6ae884e1275c53 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 15 Jan 2011 13:06:44 -0500 Subject: [PATCH 03/60] - Update to cabal2spec-0.22.4 - Rebuild --- ghc-base64-bytestring.spec | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index a018cc2..60c30d4 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -4,31 +4,23 @@ %global common_description %{common_summary}. -%bcond_without shared -%bcond_without hscolour - # debuginfo is not useful for ghc %global debug_package %{nil} Name: ghc-%{pkg_name} Version: 0.1.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: %{common_summary} Group: System Environment/Libraries License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) # fedora ghc archs: ExclusiveArch: %{ix86} x86_64 ppc alpha BuildRequires: ghc, ghc-doc, ghc-prof -BuildRequires: ghc-rpm-macros >= 0.8.1 -%if %{with hscolour} +BuildRequires: ghc-rpm-macros >= 0.7.3 BuildRequires: hscolour -%endif -%{?ghc_pkg_deps:BuildRequires: %{ghc_pkg_deps}, %(echo %{ghc_pkg_deps} | sed -e "s/\(ghc-[^, ]\+\)-devel/\1-doc,\1-prof/g")} -%{?ghc_pkg_c_deps:BuildRequires: %{ghc_pkg_c_deps}} %description %{common_description} @@ -46,18 +38,17 @@ This package provides the shared library. %install -rm -rf %{buildroot} %ghc_lib_install -%clean -rm -rf %{buildroot} - - %{?ghc_lib_package} %changelog +* Sat Jan 15 2011 Ben Boeckel - 0.1.0.1-3 +- Update to cabal2spec-0.22.4 +- Rebuild + * Mon Nov 29 2010 Ben Boeckel - 0.1.0.1-2 - Fix spelling in %%summary From 25749d0aee6f74df7f75ad2394fccd8b9fc65fd7 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 8 Feb 2011 19:01:04 -0600 Subject: [PATCH 04/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 60c30d4..5fc06f2 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -9,7 +9,7 @@ Name: ghc-%{pkg_name} Version: 0.1.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -45,6 +45,9 @@ This package provides the shared library. %changelog +* Tue Feb 08 2011 Fedora Release Engineering - 0.1.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sat Jan 15 2011 Ben Boeckel - 0.1.0.1-3 - Update to cabal2spec-0.22.4 - Rebuild From 7ce12596bfd5e197d551e9e715b2d777cb47a772 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 17 Feb 2011 00:35:40 -0500 Subject: [PATCH 05/60] Update to 0.1.0.2 --- ghc-base64-bytestring.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 5fc06f2..cd938c0 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,8 +8,8 @@ %global debug_package %{nil} Name: ghc-%{pkg_name} -Version: 0.1.0.1 -Release: 4%{?dist} +Version: 0.1.0.2 +Release: 1%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -45,6 +45,9 @@ This package provides the shared library. %changelog +* Thu Feb 17 2011 Ben Boeckel - 0.1.0.2-1 +- Update to 0.1.0.2 + * Tue Feb 08 2011 Fedora Release Engineering - 0.1.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 7adf41e20c960e6fffb7a129779a35ebdb19d4e4 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Thu, 17 Feb 2011 20:23:23 -0500 Subject: [PATCH 06/60] Upload new sources --- .gitignore | 1 + sources | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 530cd53..951e2cd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /base64-bytestring-0.1.0.1.tar.gz +/base64-bytestring-0.1.0.2.tar.gz diff --git a/sources b/sources index c1e99e2..31dc164 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f0f9cb5a29a718bcca49e2c284378d62 base64-bytestring-0.1.0.1.tar.gz +0719c17d505e13c55dad9d279f95bd80 base64-bytestring-0.1.0.2.tar.gz From 5d47a9883351415db19b66334ac5f89a8c434d50 Mon Sep 17 00:00:00 2001 From: "Fabio M. Di Nitto" Date: Thu, 10 Mar 2011 09:15:38 +0100 Subject: [PATCH 07/60] Enable build on sparcv9 Signed-off-by: Fabio M. Di Nitto --- ghc-base64-bytestring.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index cd938c0..0c43ed3 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -9,7 +9,7 @@ Name: ghc-%{pkg_name} Version: 0.1.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -17,7 +17,7 @@ License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz # fedora ghc archs: -ExclusiveArch: %{ix86} x86_64 ppc alpha +ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 BuildRequires: ghc, ghc-doc, ghc-prof BuildRequires: ghc-rpm-macros >= 0.7.3 BuildRequires: hscolour @@ -45,6 +45,9 @@ This package provides the shared library. %changelog +* Thu Mar 10 2011 Fabio M. Di Nitto - 0.1.0.2-2 +- Enable build on sparcv9 + * Thu Feb 17 2011 Ben Boeckel - 0.1.0.2-1 - Update to 0.1.0.2 From 0a0dfd56d57c54f4709cf9f14b5c13773bc3ab0e Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 10 May 2011 22:18:59 -0400 Subject: [PATCH 08/60] Update to cabal2spec-0.22.5 --- ghc-base64-bytestring.spec | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 0c43ed3..83e48d9 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -1,15 +1,16 @@ +# For Haskell Packaging Guidelines see: +# - https://fedoraproject.org/wiki/Packaging:Haskell +# - https://fedoraproject.org/wiki/PackagingDrafts/Haskell + %global pkg_name base64-bytestring %global common_summary Fast base64 encoding and decoding for ByteStrings %global common_description %{common_summary}. -# debuginfo is not useful for ghc -%global debug_package %{nil} - Name: ghc-%{pkg_name} Version: 0.1.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -19,14 +20,12 @@ Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{versio # fedora ghc archs: ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 BuildRequires: ghc, ghc-doc, ghc-prof +# macros for building haskell packages BuildRequires: ghc-rpm-macros >= 0.7.3 BuildRequires: hscolour %description %{common_description} -%if %{with shared} -This package provides the shared library. -%endif %prep @@ -41,10 +40,15 @@ This package provides the shared library. %ghc_lib_install -%{?ghc_lib_package} +# define the devel and prof subpkgs, devel post[un] scripts, and filelists: +# ghc-%pkg_name{,devel,prof}.files +%ghc_lib_package %changelog +* Tue May 10 2011 Ben Boeckel - 0.1.0.2-3 +- Update to cabal2spec-0.22.5 + * Thu Mar 10 2011 Fabio M. Di Nitto - 0.1.0.2-2 - Enable build on sparcv9 From 554c14f3a9da0c46587ec497d99cb6c148b01d07 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 10 May 2011 22:42:44 -0400 Subject: [PATCH 09/60] Update to cabal2spec-0.22.6 --- ghc-base64-bytestring.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 83e48d9..ea94866 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -10,7 +10,7 @@ Name: ghc-%{pkg_name} Version: 0.1.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -18,7 +18,7 @@ License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz # fedora ghc archs: -ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 +ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 ppc64 BuildRequires: ghc, ghc-doc, ghc-prof # macros for building haskell packages BuildRequires: ghc-rpm-macros >= 0.7.3 @@ -46,6 +46,9 @@ BuildRequires: hscolour %changelog +* Tue May 10 2011 Ben Boeckel - 0.1.0.2-4 +- Update to cabal2spec-0.22.6 + * Tue May 10 2011 Ben Boeckel - 0.1.0.2-3 - Update to cabal2spec-0.22.5 From b8ba9216d71c446639e3e8a3d2066753f29ee1f0 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Wed, 11 May 2011 21:14:24 -0400 Subject: [PATCH 10/60] Update to cabal2spec-0.22.7 --- ghc-base64-bytestring.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index ea94866..f8dc052 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -10,7 +10,7 @@ Name: ghc-%{pkg_name} Version: 0.1.0.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -41,11 +41,14 @@ BuildRequires: hscolour # define the devel and prof subpkgs, devel post[un] scripts, and filelists: -# ghc-%pkg_name{,devel,prof}.files +# ghc-%%pkg_name{,devel,prof}.files %ghc_lib_package %changelog +* Wed May 11 2011 Ben Boeckel - 0.1.0.2-5 +- Update to cabal2spec-0.22.7 + * Tue May 10 2011 Ben Boeckel - 0.1.0.2-4 - Update to cabal2spec-0.22.6 From ecf49ecdff8b791cad9b6c4e1d06a89e1766a979 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 24 Jun 2011 18:35:08 +0900 Subject: [PATCH 11/60] use BR ghc-Cabal-devel and update deps (cabal2spec-0.23.2) --- ghc-base64-bytestring.spec | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index f8dc052..3774923 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -10,19 +10,18 @@ Name: ghc-%{pkg_name} Version: 0.1.0.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: %{common_summary} Group: System Environment/Libraries License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz -# fedora ghc archs: -ExclusiveArch: %{ix86} x86_64 ppc alpha sparcv9 ppc64 -BuildRequires: ghc, ghc-doc, ghc-prof -# macros for building haskell packages -BuildRequires: ghc-rpm-macros >= 0.7.3 +ExclusiveArch: %{ghc_arches} +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros BuildRequires: hscolour +BuildRequires: ghc-bytestring-prof %description %{common_description} @@ -46,6 +45,9 @@ BuildRequires: hscolour %changelog +* Fri Jun 24 2011 Jens Petersen - 0.1.0.2-6 +- BR ghc-Cabal-devel instead of ghc-prof and use ghc_arches (cabal2spec-0.23.2) + * Wed May 11 2011 Ben Boeckel - 0.1.0.2-5 - Update to cabal2spec-0.22.7 From 3b2766a06429308078e019f8184d48b5857899f9 Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Sat, 9 Jul 2011 00:49:14 -0400 Subject: [PATCH 12/60] Update to cabal2spec-0.24 --- ghc-base64-bytestring.spec | 42 +++++++++++++++++++++++++++++++++----- 1 file changed, 37 insertions(+), 5 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 3774923..a02ea6b 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -10,23 +10,41 @@ Name: ghc-%{pkg_name} Version: 0.1.0.2 -Release: 6%{?dist} +Release: 7%{?dist} Summary: %{common_summary} Group: System Environment/Libraries License: BSD +# BEGIN: cabal2spec-0.24 URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz ExclusiveArch: %{ghc_arches} BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros BuildRequires: hscolour -BuildRequires: ghc-bytestring-prof +# END: cabal2spec-0.24 + +BuildRequires: ghc-bytestring-devel %description %{common_description} +%package -n ghc-%{pkg_name}-devel +Summary: Development files for %{common_summary} +Group: Development/Libraries +# BEGIN: cabal2spec-0.24 +%{?ghc_devel_requires} +Obsoletes: ghc-%{pkg_name}-prof < %{version}-%{release} +Provides: ghc-%{pkg_name}-prof = %{version}-%{release} +# END: cabal2spec-0.24 + +%description -n ghc-%{pkg_name}-devel +%{common_description} + +This package contains the development files. + + %prep %setup -q -n %{pkg_name}-%{version} @@ -39,12 +57,26 @@ BuildRequires: ghc-bytestring-prof %ghc_lib_install -# define the devel and prof subpkgs, devel post[un] scripts, and filelists: -# ghc-%%pkg_name{,devel,prof}.files -%ghc_lib_package +%post -n ghc-%{pkg_name}-devel +%ghc_pkg_recache + +%postun -n ghc-%{pkg_name}-devel +%ghc_pkg_recache + + +%if %{undefined ghc_without_shared} +%files -n ghc-%{pkg_name} -f ghc-%{pkg_name}.files +%defattr(-,root,root,-) +%endif + +%files -n ghc-%{pkg_name}-devel -f ghc-%{pkg_name}-devel.files +%defattr(-,root,root,-) %changelog +* Sat Jul 09 2011 Ben Boeckel - 0.1.0.2-7 +- Update to cabal2spec-0.24 + * Fri Jun 24 2011 Jens Petersen - 0.1.0.2-6 - BR ghc-Cabal-devel instead of ghc-prof and use ghc_arches (cabal2spec-0.23.2) From 71a518da9e813ea862576016de76edc6ed2a0e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Tue, 11 Oct 2011 10:16:21 +0200 Subject: [PATCH 13/60] rebuild with new gmp --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index a02ea6b..cdbd3e4 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -10,7 +10,7 @@ Name: ghc-%{pkg_name} Version: 0.1.0.2 -Release: 7%{?dist} +Release: 7%{?dist}.1 Summary: %{common_summary} Group: System Environment/Libraries @@ -74,6 +74,9 @@ This package contains the development files. %changelog +* Tue Oct 11 2011 Peter Schiffer - 0.1.0.2-7.1 +- rebuild with new gmp + * Sat Jul 09 2011 Ben Boeckel - 0.1.0.2-7 - Update to cabal2spec-0.24 From 81b1b91be6475c1b42412cf219d7a549b5ae758d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Thu, 20 Oct 2011 20:35:08 +0200 Subject: [PATCH 14/60] rebuild with new gmp without compat lib --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index cdbd3e4..603db94 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -10,7 +10,7 @@ Name: ghc-%{pkg_name} Version: 0.1.0.2 -Release: 7%{?dist}.1 +Release: 7%{?dist}.2 Summary: %{common_summary} Group: System Environment/Libraries @@ -74,6 +74,9 @@ This package contains the development files. %changelog +* Thu Oct 20 2011 Marcela Mašláňová - 0.1.0.2-7.2 +- rebuild with new gmp without compat lib + * Tue Oct 11 2011 Peter Schiffer - 0.1.0.2-7.1 - rebuild with new gmp From 0f7a07a9a2002a4b22e5b719b2bf9b1f8a5d4954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marcela=20Ma=C5=A1l=C3=A1=C5=88ov=C3=A1?= Date: Mon, 24 Oct 2011 09:02:34 +0200 Subject: [PATCH 15/60] rebuild with new gmp without compat lib --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 603db94..9449b19 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -10,7 +10,7 @@ Name: ghc-%{pkg_name} Version: 0.1.0.2 -Release: 7%{?dist}.2 +Release: 7%{?dist}.3 Summary: %{common_summary} Group: System Environment/Libraries @@ -74,6 +74,9 @@ This package contains the development files. %changelog +* Mon Oct 24 2011 Marcela Mašláňová - 0.1.0.2-7.3 +- rebuild with new gmp without compat lib + * Thu Oct 20 2011 Marcela Mašláňová - 0.1.0.2-7.2 - rebuild with new gmp without compat lib From 7ca7a204776a4f4425a74d4fb0246a7734bf921f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 4 Jan 2012 21:50:40 +0900 Subject: [PATCH 16/60] update to 0.1.0.3 and cabal2spec-0.25.2 --- .gitignore | 1 + ghc-base64-bytestring.spec | 54 ++++++++++++++------------------------ sources | 2 +- 3 files changed, 21 insertions(+), 36 deletions(-) diff --git a/.gitignore b/.gitignore index 951e2cd..a943f41 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /base64-bytestring-0.1.0.1.tar.gz /base64-bytestring-0.1.0.2.tar.gz +/base64-bytestring-0.1.0.3.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 9449b19..6fbc9e7 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -1,6 +1,6 @@ -# For Haskell Packaging Guidelines see: -# - https://fedoraproject.org/wiki/Packaging:Haskell -# - https://fedoraproject.org/wiki/PackagingDrafts/Haskell +# cabal2spec-0.25.2 +# https://fedoraproject.org/wiki/Packaging:Haskell +# https://fedoraproject.org/wiki/PackagingDrafts/Haskell %global pkg_name base64-bytestring @@ -9,20 +9,19 @@ %global common_description %{common_summary}. Name: ghc-%{pkg_name} -Version: 0.1.0.2 -Release: 7%{?dist}.3 +Version: 0.1.0.3 +Release: 1%{?dist} Summary: %{common_summary} Group: System Environment/Libraries License: BSD -# BEGIN: cabal2spec-0.24 +# BEGIN cabal2spec URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz ExclusiveArch: %{ghc_arches} BuildRequires: ghc-Cabal-devel -BuildRequires: ghc-rpm-macros -BuildRequires: hscolour -# END: cabal2spec-0.24 +BuildRequires: ghc-rpm-macros %{!?without_hscolour:hscolour} +# END cabal2spec BuildRequires: ghc-bytestring-devel @@ -30,21 +29,6 @@ BuildRequires: ghc-bytestring-devel %{common_description} -%package -n ghc-%{pkg_name}-devel -Summary: Development files for %{common_summary} -Group: Development/Libraries -# BEGIN: cabal2spec-0.24 -%{?ghc_devel_requires} -Obsoletes: ghc-%{pkg_name}-prof < %{version}-%{release} -Provides: ghc-%{pkg_name}-prof = %{version}-%{release} -# END: cabal2spec-0.24 - -%description -n ghc-%{pkg_name}-devel -%{common_description} - -This package contains the development files. - - %prep %setup -q -n %{pkg_name}-%{version} @@ -57,23 +41,23 @@ This package contains the development files. %ghc_lib_install -%post -n ghc-%{pkg_name}-devel -%ghc_pkg_recache +%ghc_devel_package + +%ghc_devel_description -%postun -n ghc-%{pkg_name}-devel -%ghc_pkg_recache +%ghc_devel_post_postun -%if %{undefined ghc_without_shared} -%files -n ghc-%{pkg_name} -f ghc-%{pkg_name}.files -%defattr(-,root,root,-) -%endif -%files -n ghc-%{pkg_name}-devel -f ghc-%{pkg_name}-devel.files -%defattr(-,root,root,-) +%ghc_files +%doc README.markdown %changelog +* Wed Jan 4 2012 Jens Petersen - 0.1.0.3-1 +- update to 0.1.0.3 and cabal2spec-0.25.2 +- add README file + * Mon Oct 24 2011 Marcela Mašláňová - 0.1.0.2-7.3 - rebuild with new gmp without compat lib @@ -112,7 +96,7 @@ This package contains the development files. - Rebuild * Mon Nov 29 2010 Ben Boeckel - 0.1.0.1-2 -- Fix spelling in %%summary +- Fix spelling in summary * Sat Oct 30 2010 Ben Boeckel - 0.1.0.1-1 - Initial package diff --git a/sources b/sources index 31dc164..363c63d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0719c17d505e13c55dad9d279f95bd80 base64-bytestring-0.1.0.2.tar.gz +f98ee49ffba7724cac6e2ae9489c7de9 base64-bytestring-0.1.0.3.tar.gz From 637cabdd1281847d3e211083bc9d1e007aadf11e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 8 Feb 2012 01:22:37 +0900 Subject: [PATCH 17/60] update to 0.1.1.0 --- .gitignore | 1 + ghc-base64-bytestring.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index a943f41..014dd97 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /base64-bytestring-0.1.0.1.tar.gz /base64-bytestring-0.1.0.2.tar.gz /base64-bytestring-0.1.0.3.tar.gz +/base64-bytestring-0.1.1.0.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 6fbc9e7..55af4a2 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -9,7 +9,7 @@ %global common_description %{common_summary}. Name: ghc-%{pkg_name} -Version: 0.1.0.3 +Version: 0.1.1.0 Release: 1%{?dist} Summary: %{common_summary} @@ -54,6 +54,9 @@ BuildRequires: ghc-bytestring-devel %changelog +* Tue Feb 7 2012 Jens Petersen - 0.1.1.0-1 +- update to 0.1.1.0 + * Wed Jan 4 2012 Jens Petersen - 0.1.0.3-1 - update to 0.1.0.3 and cabal2spec-0.25.2 - add README file diff --git a/sources b/sources index 363c63d..e624c01 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -f98ee49ffba7724cac6e2ae9489c7de9 base64-bytestring-0.1.0.3.tar.gz +de322541576ef75d59656a5497085b1b base64-bytestring-0.1.1.0.tar.gz From c3d791fc1dbcac38efb2013a003c6678773444cd Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 22 Mar 2012 18:03:30 +0900 Subject: [PATCH 18/60] update to 0.1.1.1 --- .gitignore | 1 + ghc-base64-bytestring.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 014dd97..38c48f7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /base64-bytestring-0.1.0.2.tar.gz /base64-bytestring-0.1.0.3.tar.gz /base64-bytestring-0.1.1.0.tar.gz +/base64-bytestring-0.1.1.1.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 55af4a2..8c77dbb 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -9,7 +9,7 @@ %global common_description %{common_summary}. Name: ghc-%{pkg_name} -Version: 0.1.1.0 +Version: 0.1.1.1 Release: 1%{?dist} Summary: %{common_summary} @@ -49,11 +49,14 @@ BuildRequires: ghc-bytestring-devel %ghc_devel_post_postun -%ghc_files +%ghc_files LICENSE %doc README.markdown %changelog +* Thu Mar 22 2012 Jens Petersen - 0.1.1.1-1 +- update to 0.1.1.1 + * Tue Feb 7 2012 Jens Petersen - 0.1.1.0-1 - update to 0.1.1.0 diff --git a/sources b/sources index e624c01..efb13c4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -de322541576ef75d59656a5497085b1b base64-bytestring-0.1.1.0.tar.gz +68e50f280a67378aff73d687088d9841 base64-bytestring-0.1.1.1.tar.gz From 51a34622f1731bfc5d124846ce1aa9718751e79d Mon Sep 17 00:00:00 2001 From: Ben Boeckel Date: Tue, 19 Jun 2012 22:54:28 -0400 Subject: [PATCH 19/60] Update to 0.1.1.3 --- .gitignore | 1 + ghc-base64-bytestring.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 38c48f7..98f86b3 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /base64-bytestring-0.1.0.3.tar.gz /base64-bytestring-0.1.1.0.tar.gz /base64-bytestring-0.1.1.1.tar.gz +/base64-bytestring-0.1.1.3.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 8c77dbb..9976778 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -9,7 +9,7 @@ %global common_description %{common_summary}. Name: ghc-%{pkg_name} -Version: 0.1.1.1 +Version: 0.1.1.3 Release: 1%{?dist} Summary: %{common_summary} @@ -54,6 +54,9 @@ BuildRequires: ghc-bytestring-devel %changelog +* Tue Jun 19 2012 Ben Boeckel - 0.1.1.3-1 +- Update to 0.1.1.3 + * Thu Mar 22 2012 Jens Petersen - 0.1.1.1-1 - update to 0.1.1.1 diff --git a/sources b/sources index efb13c4..286f6b0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -68e50f280a67378aff73d687088d9841 base64-bytestring-0.1.1.1.tar.gz +76d05ad8f54bf4e90efcf79200f8ffec base64-bytestring-0.1.1.3.tar.gz From 528faa4f004a2b0c628520d17619511b4dac0966 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 19 Jul 2012 00:21:32 -0500 Subject: [PATCH 20/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 9976778..f35771c 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -10,7 +10,7 @@ Name: ghc-%{pkg_name} Version: 0.1.1.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: %{common_summary} Group: System Environment/Libraries @@ -54,6 +54,9 @@ BuildRequires: ghc-bytestring-devel %changelog +* Thu Jul 19 2012 Fedora Release Engineering - 0.1.1.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Tue Jun 19 2012 Ben Boeckel - 0.1.1.3-1 - Update to 0.1.1.3 From b0df153cd7e9386def9dc8e4b8dde65b0951c074 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 6 Nov 2012 18:33:33 +0900 Subject: [PATCH 21/60] update to 1.0.0.0 --- .gitignore | 1 + ghc-base64-bytestring.spec | 18 +++++++++--------- sources | 2 +- 3 files changed, 11 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index 98f86b3..22c8fb5 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /base64-bytestring-0.1.1.0.tar.gz /base64-bytestring-0.1.1.1.tar.gz /base64-bytestring-0.1.1.3.tar.gz +/base64-bytestring-1.0.0.0.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index f35771c..e14032c 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -1,4 +1,3 @@ -# cabal2spec-0.25.2 # https://fedoraproject.org/wiki/Packaging:Haskell # https://fedoraproject.org/wiki/PackagingDrafts/Haskell @@ -9,21 +8,19 @@ %global common_description %{common_summary}. Name: ghc-%{pkg_name} -Version: 0.1.1.3 -Release: 2%{?dist} +Version: 1.0.0.0 +Release: 1%{?dist} Summary: %{common_summary} -Group: System Environment/Libraries License: BSD -# BEGIN cabal2spec URL: http://hackage.haskell.org/package/%{pkg_name} Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz -ExclusiveArch: %{ghc_arches} -BuildRequires: ghc-Cabal-devel -BuildRequires: ghc-rpm-macros %{!?without_hscolour:hscolour} -# END cabal2spec +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +# Begin cabal-rpm deps: BuildRequires: ghc-bytestring-devel +# End cabal-rpm deps %description %{common_description} @@ -54,6 +51,9 @@ BuildRequires: ghc-bytestring-devel %changelog +* Tue Nov 06 2012 Jens Petersen - 1.0.0.0-1 +- update to 1.0.0.0 + * Thu Jul 19 2012 Fedora Release Engineering - 0.1.1.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild diff --git a/sources b/sources index 286f6b0..7709d4d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -76d05ad8f54bf4e90efcf79200f8ffec base64-bytestring-0.1.1.3.tar.gz +8b4605109619d036dabe858f6a6c4835 base64-bytestring-1.0.0.0.tar.gz From 92eb097ec0471b3297cbb0842af3068dd4779454 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 13 Feb 2013 16:57:25 -0600 Subject: [PATCH 22/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index e14032c..9fe15f5 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -9,7 +9,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: %{common_summary} License: BSD @@ -51,6 +51,9 @@ BuildRequires: ghc-bytestring-devel %changelog +* Wed Feb 13 2013 Fedora Release Engineering - 1.0.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Tue Nov 06 2012 Jens Petersen - 1.0.0.0-1 - update to 1.0.0.0 From ba5bbe8b9be13ac2a224b9e895ca55141dbe360b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 11 Mar 2013 23:23:39 +0900 Subject: [PATCH 23/60] update to 1.0.0.1 --- .gitignore | 1 + ghc-base64-bytestring.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 22c8fb5..8eac105 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /base64-bytestring-0.1.1.1.tar.gz /base64-bytestring-0.1.1.3.tar.gz /base64-bytestring-1.0.0.0.tar.gz +/base64-bytestring-1.0.0.1.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 9fe15f5..1d8e294 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,8 +8,8 @@ %global common_description %{common_summary}. Name: ghc-%{pkg_name} -Version: 1.0.0.0 -Release: 2%{?dist} +Version: 1.0.0.1 +Release: 1%{?dist} Summary: %{common_summary} License: BSD @@ -51,6 +51,9 @@ BuildRequires: ghc-bytestring-devel %changelog +* Mon Mar 11 2013 Jens Petersen - 1.0.0.1-1 +- update to 1.0.0.1 + * Wed Feb 13 2013 Fedora Release Engineering - 1.0.0.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild diff --git a/sources b/sources index 7709d4d..3a7a50a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8b4605109619d036dabe858f6a6c4835 base64-bytestring-1.0.0.0.tar.gz +bfe70cca4c75f09f02a8299e19421afc base64-bytestring-1.0.0.1.tar.gz From f7be3441acfd0d95aeb1ab12294d82b6bdd5b470 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 7 Jun 2013 12:48:11 +0900 Subject: [PATCH 24/60] update to new simplified Haskell Packaging Guidelines --- ghc-base64-bytestring.spec | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 1d8e294..85987ff 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -1,16 +1,11 @@ # https://fedoraproject.org/wiki/Packaging:Haskell -# https://fedoraproject.org/wiki/PackagingDrafts/Haskell %global pkg_name base64-bytestring -%global common_summary Fast base64 encoding and decoding for ByteStrings - -%global common_description %{common_summary}. - Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 1%{?dist} -Summary: %{common_summary} +Release: 2%{?dist} +Summary: Fast base64 encoding and decoding for ByteStrings License: BSD URL: http://hackage.haskell.org/package/%{pkg_name} @@ -23,7 +18,18 @@ BuildRequires: ghc-bytestring-devel # End cabal-rpm deps %description -%{common_description} +Fast base64 encoding and decoding for ByteStrings. + + +%package devel +Summary: Haskell %{pkg_name} library development files +Requires: ghc-compiler = %{ghc_version} +Requires(post): ghc-compiler = %{ghc_version} +Requires(postun): ghc-compiler = %{ghc_version} +Requires: %{name} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. %prep @@ -38,19 +44,26 @@ BuildRequires: ghc-bytestring-devel %ghc_lib_install -%ghc_devel_package +%post devel +%ghc_pkg_recache + -%ghc_devel_description +%postun devel +%ghc_pkg_recache -%ghc_devel_post_postun +%files -f %{name}.files +%doc LICENSE -%ghc_files LICENSE +%files devel -f %{name}-devel.files %doc README.markdown %changelog +* Fri Jun 07 2013 Jens Petersen - 1.0.0.1-2 +- update to new simplified Haskell Packaging Guidelines + * Mon Mar 11 2013 Jens Petersen - 1.0.0.1-1 - update to 1.0.0.1 From ac6826218cef99f1ea82480f5221e0362e1d2b35 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 3 Aug 2013 08:23:44 -0500 Subject: [PATCH 25/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 85987ff..b00c4c3 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -61,6 +61,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.0.0.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Jun 07 2013 Jens Petersen - 1.0.0.1-2 - update to new simplified Haskell Packaging Guidelines From af586dea04f83ffd01c2ed99a66827dfd05d60a0 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 09:29:59 -0500 Subject: [PATCH 26/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index b00c4c3..c16d38f 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -61,6 +61,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.0.0.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering - 1.0.0.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From b22601796538f0017a3a448f67338a0629cce8b2 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sat, 16 Aug 2014 14:41:54 +0000 Subject: [PATCH 27/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index c16d38f..b105d5e 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -61,6 +61,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sat Aug 16 2014 Fedora Release Engineering - 1.0.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.0.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 63e00977f20db7218f4ea85a9e9592de9badc220 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 28 Jan 2015 14:49:28 +0900 Subject: [PATCH 28/60] cblrpm refresh --- ghc-base64-bytestring.spec | 31 ++++++++++++++++++++++++++----- 1 file changed, 26 insertions(+), 5 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index b105d5e..c405d6c 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -2,19 +2,29 @@ %global pkg_name base64-bytestring +%bcond_with tests + Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD -URL: http://hackage.haskell.org/package/%{pkg_name} -Source0: http://hackage.haskell.org/packages/archive/%{pkg_name}/%{version}/%{pkg_name}-%{version}.tar.gz +Url: https://hackage.haskell.org/package/%{pkg_name} +Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros # Begin cabal-rpm deps: BuildRequires: ghc-bytestring-devel +%if %{with tests} +BuildRequires: ghc-HUnit-devel +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-containers-devel +BuildRequires: ghc-test-framework-devel +BuildRequires: ghc-test-framework-hunit-devel +BuildRequires: ghc-test-framework-quickcheck2-devel +%endif # End cabal-rpm deps %description @@ -23,13 +33,15 @@ Fast base64 encoding and decoding for ByteStrings. %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} = %{version}-%{release} +Requires: %{name}%{?_isa} = %{version}-%{release} %description devel -This package provides the Haskell %{pkg_name} library development files. +This package provides the Haskell %{pkg_name} library development +files. %prep @@ -44,6 +56,12 @@ This package provides the Haskell %{pkg_name} library development files. %ghc_lib_install +%check +%if %{with tests} +%cabal test +%endif + + %post devel %ghc_pkg_recache @@ -61,6 +79,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Jan 28 2015 Jens Petersen - 1.0.0.1-6 +- cblrpm refresh + * Sat Aug 16 2014 Fedora Release Engineering - 1.0.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 6c14f175fbb1cf3c041dbb025a64cfd79035c28d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 07:32:07 +0000 Subject: [PATCH 29/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index c405d6c..4fa094f 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -79,6 +79,9 @@ files. %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 1.0.0.1-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed Jan 28 2015 Jens Petersen - 1.0.0.1-6 - cblrpm refresh From 895225887963fb4cbbebb4fbe56f3ffd12760563 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 21:25:40 +0000 Subject: [PATCH 30/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 4fa094f..9854a7d 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -79,6 +79,9 @@ files. %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 1.0.0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 1.0.0.1-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 5a6407752af978be5a681157aef2146c8ad88054 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 27 Sep 2016 19:15:27 +0900 Subject: [PATCH 31/60] use cabal_test --- ghc-base64-bytestring.spec | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 9854a7d..147f9d6 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -57,9 +57,7 @@ files. %check -%if %{with tests} -%cabal test -%endif +%cabal_test %post devel From df92b4713bdc872d3e04e053546f0d175eabcf09 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 28 Sep 2016 18:32:21 +0900 Subject: [PATCH 32/60] use %license --- ghc-base64-bytestring.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 147f9d6..b6f840e 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -69,7 +69,7 @@ files. %files -f %{name}.files -%doc LICENSE +%license LICENSE %files devel -f %{name}-devel.files From b95e2a279669fcb2e192e16a58ed5aa57f2f4bae Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 10:33:43 +0000 Subject: [PATCH 33/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index b6f840e..e0179df 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -77,6 +77,9 @@ files. %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 1.0.0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Feb 03 2016 Fedora Release Engineering - 1.0.0.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From c7214ac5e545f921506606d39a7e415f2efebb1a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 24 Feb 2017 17:48:09 +0900 Subject: [PATCH 34/60] refresh to cabal-rpm-0.11.1 --- ghc-base64-bytestring.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index e0179df..8eaf83c 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -1,17 +1,19 @@ +# generated by cabal-rpm-0.11.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name base64-bytestring +%global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD Url: https://hackage.haskell.org/package/%{pkg_name} -Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros @@ -45,7 +47,7 @@ files. %prep -%setup -q -n %{pkg_name}-%{version} +%setup -q -n %{pkgver} %build @@ -77,6 +79,9 @@ files. %changelog +* Fri Feb 24 2017 Jens Petersen - 1.0.0.1-10 +- refresh to cabal-rpm-0.11.1 + * Fri Feb 10 2017 Fedora Release Engineering - 1.0.0.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 186eebc3aef44e76a2bbb4cd3b5b9efa733852dd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 09:35:13 +0000 Subject: [PATCH 35/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 8eaf83c..65042a8 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -79,6 +79,9 @@ files. %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 1.0.0.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 24 2017 Jens Petersen - 1.0.0.1-10 - refresh to cabal-rpm-0.11.1 From 5f31fc074338c277d17d873cd3816c77c7e00dd7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 21:13:22 +0000 Subject: [PATCH 36/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 65042a8..9fc912e 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -79,6 +79,9 @@ files. %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 1.0.0.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 1.0.0.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From d9d182dd825ec96ba881d0484218e496f98c8062 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:10:38 +0100 Subject: [PATCH 37/60] refresh to cabal-rpm-0.12.1 --- ghc-base64-bytestring.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 9fc912e..028e15d 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.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 base64-bytestring @@ -36,9 +36,12 @@ Fast base64 encoding and decoding for ByteStrings. %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 @@ -62,6 +65,12 @@ files. %cabal_test +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From 3a315b16bf99d0a95fc7b3bfbbadfd0a75561cc9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 26 Jan 2018 11:19:42 +0100 Subject: [PATCH 38/60] bump release --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 028e15d..adfb2ea 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -88,6 +88,9 @@ files. %changelog +* Fri Jan 26 2018 Jens Petersen - 1.0.0.1-13 +- rebuild + * Wed Aug 02 2017 Fedora Release Engineering - 1.0.0.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 0f837fccbb8c011ec0ac1aeb422fbff6b4a79d44 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:02:00 +0900 Subject: [PATCH 39/60] drop ldconfig scriptlets --- ghc-base64-bytestring.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index adfb2ea..c690d9a 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -65,12 +65,6 @@ files. %cabal_test -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From 4d20c7b28df0766b9c41837eb985086df2a0c190 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 11:20:39 +0000 Subject: [PATCH 40/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index c690d9a..8580987 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -82,6 +82,9 @@ files. %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.0.0.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Fri Jan 26 2018 Jens Petersen - 1.0.0.1-13 - rebuild From 2ea7a6eee24da120f53f37d88c0ba165883e016c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 01:34:43 +0000 Subject: [PATCH 41/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 8580987..61d7cb5 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -82,6 +82,9 @@ files. %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 1.0.0.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 1.0.0.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 2dcf82da9040f9a99f2173f5d73888ce3d85245b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 21:12:29 +0000 Subject: [PATCH 42/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 61d7cb5..cd64936 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -82,6 +82,9 @@ files. %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 1.0.0.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 1.0.0.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 3eaee6dc6a4e8db6b85e0845d20365e788624add Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:43:37 +0800 Subject: [PATCH 43/60] refresh to cabal-rpm-0.13 --- ghc-base64-bytestring.spec | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index cd64936..15acf21 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.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 base64-bytestring @@ -8,16 +8,18 @@ Name: ghc-%{pkg_name} Version: 1.0.0.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings 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 -# Begin cabal-rpm deps: BuildRequires: ghc-bytestring-devel %if %{with tests} BuildRequires: ghc-HUnit-devel @@ -50,15 +52,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 %check @@ -74,7 +82,9 @@ files. %files -f %{name}.files +# Begin cabal-rpm files: %license LICENSE +# End cabal-rpm files %files devel -f %{name}-devel.files @@ -82,6 +92,9 @@ files. %changelog +* Sun Feb 17 2019 Jens Petersen - 1.0.0.1-17 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 1.0.0.1-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From a2b504cb31b615cc6686a26383307252c5770aac Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 21 Feb 2019 10:06:42 +0800 Subject: [PATCH 44/60] update to 1.0.0.2 --- .gitignore | 1 + ghc-base64-bytestring.spec | 14 ++++++++++---- sources | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 8eac105..243cbc3 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /base64-bytestring-0.1.1.3.tar.gz /base64-bytestring-1.0.0.0.tar.gz /base64-bytestring-1.0.0.1.tar.gz +/base64-bytestring-1.0.0.2.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 15acf21..365d8bb 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.0.0.1 -Release: 17%{?dist} +Version: 1.0.0.2 +Release: 1%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -25,6 +25,7 @@ BuildRequires: ghc-bytestring-devel BuildRequires: ghc-HUnit-devel BuildRequires: ghc-QuickCheck-devel BuildRequires: ghc-containers-devel +BuildRequires: ghc-split-devel BuildRequires: ghc-test-framework-devel BuildRequires: ghc-test-framework-hunit-devel BuildRequires: ghc-test-framework-quickcheck2-devel @@ -32,7 +33,9 @@ BuildRequires: ghc-test-framework-quickcheck2-devel # End cabal-rpm deps %description -Fast base64 encoding and decoding for ByteStrings. +This package provides support for encoding and decoding binary data according +to 'base64' (see also ) for +strict and lazy ByteStrings. %package devel @@ -88,10 +91,13 @@ files. %files devel -f %{name}-devel.files -%doc README.markdown +%doc CHANGELOG.md README.md %changelog +* Thu Feb 21 2019 Jens Petersen - 1.0.0.2-1 +- update to 1.0.0.2 + * Sun Feb 17 2019 Jens Petersen - 1.0.0.1-17 - refresh to cabal-rpm-0.13 diff --git a/sources b/sources index 3a7a50a..ce76d54 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -bfe70cca4c75f09f02a8299e19421afc base64-bytestring-1.0.0.1.tar.gz +SHA512 (base64-bytestring-1.0.0.2.tar.gz) = 8d8880cf806aa3932068e0a6faecde084829e72e73cf0a6b4eac99ae852dffbd85f968918546e18920044dd34c65b67bed1c62b6fe71f48b118bc337d86030e4 From e598222e32328add21b2a3e94dc510fe21f304fc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 02:08:41 +0000 Subject: [PATCH 45/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 365d8bb..7a3531f 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -95,6 +95,9 @@ files. %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 1.0.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Feb 21 2019 Jens Petersen - 1.0.0.2-1 - update to 1.0.0.2 From c5dc35ef022104f40ca11df521568acda2d924e1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:21:42 +0000 Subject: [PATCH 46/60] cabal-rpm-1.0.0: add doc and prof subpkgs --- ghc-base64-bytestring.spec | 53 ++++++++++++++++++++++++++++---------- 1 file changed, 40 insertions(+), 13 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 7a3531f..368c4bd 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.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 base64-bytestring @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -19,6 +19,12 @@ Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel +%if %{with haddock} +BuildRequires: ghc-doc +%endif +%if %{with ghc_prof} +BuildRequires: ghc-prof +%endif BuildRequires: ghc-rpm-macros BuildRequires: ghc-bytestring-devel %if %{with tests} @@ -41,11 +47,8 @@ strict and lazy ByteStrings. %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} @@ -54,6 +57,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} @@ -76,14 +98,6 @@ files. %cabal_test -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -94,7 +108,20 @@ 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 Aug 01 2019 Jens Petersen - 1.0.0.2-3 +- add doc and prof subpackages (cabal-rpm-1.0.0) + * Thu Jul 25 2019 Fedora Release Engineering - 1.0.0.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 41520f51a4db743f31427eda50fefa18309019db Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:27:39 +0800 Subject: [PATCH 47/60] BR prof for lib and static for executable --- ghc-base64-bytestring.spec | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 368c4bd..f0c489c 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.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 base64-bytestring @@ -19,14 +19,9 @@ 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-base-prof +BuildRequires: ghc-bytestring-prof %if %{with tests} BuildRequires: ghc-HUnit-devel BuildRequires: ghc-QuickCheck-devel @@ -47,6 +42,7 @@ strict and lazy ByteStrings. %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 828f60754aff744ed07bf3ffc2d3681033e4e82f Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 20:18:46 +0000 Subject: [PATCH 48/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index f0c489c..7e1e570 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -115,6 +115,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 1.0.0.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Aug 01 2019 Jens Petersen - 1.0.0.2-3 - add doc and prof subpackages (cabal-rpm-1.0.0) From bba4f27c5a5bb9dabe2a88684e342c2f944ed52d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:49:04 +0800 Subject: [PATCH 49/60] refresh to cabal-rpm-2.0.2 --- ghc-base64-bytestring.spec | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 7e1e570..a0a0971 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -1,11 +1,9 @@ -# generated by cabal-rpm-1.0.1 +# generated by cabal-rpm-2.0.2 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name base64-bytestring %global pkgver %{pkg_name}-%{version} -%bcond_with tests - Name: ghc-%{pkg_name} Version: 1.0.0.2 Release: 4%{?dist} @@ -22,15 +20,6 @@ BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-base-prof BuildRequires: ghc-bytestring-prof -%if %{with tests} -BuildRequires: ghc-HUnit-devel -BuildRequires: ghc-QuickCheck-devel -BuildRequires: ghc-containers-devel -BuildRequires: ghc-split-devel -BuildRequires: ghc-test-framework-devel -BuildRequires: ghc-test-framework-hunit-devel -BuildRequires: ghc-test-framework-quickcheck2-devel -%endif # End cabal-rpm deps %description @@ -56,6 +45,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. @@ -66,6 +56,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. @@ -90,8 +81,14 @@ This package provides the Haskell %{pkg_name} profiling library. # End cabal-rpm install -%check -%cabal_test +%if 0%{?fedora} < 31 || 0%{?rhel} < 8 +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache +%endif %files -f %{name}.files @@ -106,6 +103,7 @@ This package provides the Haskell %{pkg_name} profiling library. %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE %endif From da3444ebc1bd3963318cbb5e2cb3a02cdf5ea45b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 9 Feb 2020 21:56:07 +0800 Subject: [PATCH 50/60] update to 1.0.0.3 --- .gitignore | 1 + ghc-base64-bytestring.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 243cbc3..4058f71 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /base64-bytestring-1.0.0.0.tar.gz /base64-bytestring-1.0.0.1.tar.gz /base64-bytestring-1.0.0.2.tar.gz +/base64-bytestring-1.0.0.3.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index a0a0971..b446787 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -5,8 +5,8 @@ %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 1.0.0.2 -Release: 4%{?dist} +Version: 1.0.0.3 +Release: 1%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -113,6 +113,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Sun Feb 09 2020 Jens Petersen - 1.0.0.3-1 +- update to 1.0.0.3 + * Tue Jan 28 2020 Fedora Release Engineering - 1.0.0.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index ce76d54..8f836b7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (base64-bytestring-1.0.0.2.tar.gz) = 8d8880cf806aa3932068e0a6faecde084829e72e73cf0a6b4eac99ae852dffbd85f968918546e18920044dd34c65b67bed1c62b6fe71f48b118bc337d86030e4 +SHA512 (base64-bytestring-1.0.0.3.tar.gz) = e4e244752491ac279a88afc4ceb0fe4c44b75fc369ff47ec29e3c99996b4be967051034c94f0c659d47a153d6b9e0b65a75ea419fdfd52fd50cdc0da2dca7db6 From 7acc73fe91d890fd6ac4d8b792948675dd574f66 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:25:19 +0800 Subject: [PATCH 51/60] refresh to cabal-rpm-2.0.5 --- ghc-base64-bytestring.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index b446787..386a599 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.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 base64-bytestring %global pkgver %{pkg_name}-%{version} @@ -78,6 +78,7 @@ This package provides the Haskell %{pkg_name} profiling library. %install # Begin cabal-rpm install %ghc_lib_install +chmod a-x CHANGELOG.md README.md # End cabal-rpm install From 1789ab99f277076091fb2c3b86c6e24bf5805399 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:53:57 +0800 Subject: [PATCH 52/60] refresh to cabal-rpm-2.0.6 --- ghc-base64-bytestring.spec | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 386a599..ed35b99 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -1,9 +1,11 @@ -# 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 base64-bytestring %global pkgver %{pkg_name}-%{version} +# testsuite missing deps: test-framework test-framework-hunit test-framework-quickcheck2 + Name: ghc-%{pkg_name} Version: 1.0.0.3 Release: 1%{?dist} @@ -66,6 +68,7 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} +chmod a-x CHANGELOG.md README.md # End cabal-rpm setup @@ -78,20 +81,9 @@ This package provides the Haskell %{pkg_name} profiling library. %install # Begin cabal-rpm install %ghc_lib_install -chmod a-x CHANGELOG.md README.md # 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 022307cddff6b02b6d22e05a6ccd9d7b88a8f34b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 17:53:27 +0800 Subject: [PATCH 53/60] bump release --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index ed35b99..98e9f62 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -106,6 +106,9 @@ chmod a-x CHANGELOG.md README.md %changelog +* Fri Jul 17 2020 Jens Petersen - 1.0.0.3-2 +- refresh to cabal-rpm-2.0.6 + * Sun Feb 09 2020 Jens Petersen - 1.0.0.3-1 - update to 1.0.0.3 From 91116258140f751ff469461c1c20af69ccecb96e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 18:49:34 +0000 Subject: [PATCH 54/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 98e9f62..3a54de8 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -106,6 +106,9 @@ chmod a-x CHANGELOG.md README.md %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 1.0.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 1.0.0.3-2 - refresh to cabal-rpm-2.0.6 From c0feca7e6445468fb984b7b1fd197ba26dc660c2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 06:53:52 +0000 Subject: [PATCH 55/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 3a54de8..08b01ad 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -106,6 +106,9 @@ chmod a-x CHANGELOG.md README.md %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 1.0.0.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 1.0.0.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 74016d70f4a9c4d5c0dca2c4c3f2546f1f7ee97e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 00:20:39 +0000 Subject: [PATCH 56/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 08b01ad..57a7fe1 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.0.0.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -106,6 +106,9 @@ chmod a-x CHANGELOG.md README.md %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 1.0.0.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 1.0.0.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 8cd118e105450c84de8815e323bd66185aefc463 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 5 Aug 2021 10:16:27 +0800 Subject: [PATCH 57/60] update to 1.1.0.0 --- .gitignore | 1 + ghc-base64-bytestring.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4058f71..287311d 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /base64-bytestring-1.0.0.1.tar.gz /base64-bytestring-1.0.0.2.tar.gz /base64-bytestring-1.0.0.3.tar.gz +/base64-bytestring-1.1.0.0.tar.gz diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 57a7fe1..2f0f155 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -7,8 +7,8 @@ # testsuite missing deps: test-framework test-framework-hunit test-framework-quickcheck2 Name: ghc-%{pkg_name} -Version: 1.0.0.3 -Release: 5%{?dist} +Version: 1.1.0.0 +Release: 1%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -106,6 +106,9 @@ chmod a-x CHANGELOG.md README.md %changelog +* Thu Aug 5 2021 Jens Petersen - 1.1.0.0-1 +- update to 1.1.0.0 + * Thu Jul 22 2021 Fedora Release Engineering - 1.0.0.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 8f836b7..fb7a379 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (base64-bytestring-1.0.0.3.tar.gz) = e4e244752491ac279a88afc4ceb0fe4c44b75fc369ff47ec29e3c99996b4be967051034c94f0c659d47a153d6b9e0b65a75ea419fdfd52fd50cdc0da2dca7db6 +SHA512 (base64-bytestring-1.1.0.0.tar.gz) = 62d52c80f8a480db376eae0260a452e51accb7126192d081a3784a0c8d598a0ceef67e6514066cf5d865c13b716a3399ad543ed474cf5d01e69638f5e9b2e2a5 From 8429159af1f1e075429046860c3d8f9932545699 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 4 May 2021 19:22:58 +0800 Subject: [PATCH 58/60] cabal-rpm-2.0.9 --- ghc-base64-bytestring.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 2f0f155..1138a50 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.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 base64-bytestring @@ -48,6 +48,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. @@ -68,7 +69,6 @@ This package provides the Haskell %{pkg_name} profiling library. %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} -chmod a-x CHANGELOG.md README.md # End cabal-rpm setup From c52886fdfe95409239402d1d2785c6479249ce8c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 04:33:07 +0000 Subject: [PATCH 59/60] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-base64-bytestring.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-base64-bytestring.spec b/ghc-base64-bytestring.spec index 1138a50..39c0cb5 100644 --- a/ghc-base64-bytestring.spec +++ b/ghc-base64-bytestring.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 1.1.0.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Fast base64 encoding and decoding for ByteStrings License: BSD @@ -106,6 +106,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 1.1.0.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Aug 5 2021 Jens Petersen - 1.1.0.0-1 - update to 1.1.0.0 From c2fdd73bf301acafb01b762742f93ea0295b7563 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 21:24:12 +0300 Subject: [PATCH 60/60] 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 fb7a379..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (base64-bytestring-1.1.0.0.tar.gz) = 62d52c80f8a480db376eae0260a452e51accb7126192d081a3784a0c8d598a0ceef67e6514066cf5d865c13b716a3399ad543ed474cf5d01e69638f5e9b2e2a5