From 95c5af34ca95348d2b21fce7c50f2b4214bd6017 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Fri, 10 Nov 2017 19:50:11 +0000 Subject: [PATCH 01/30] 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..7257412 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# ghc-hspec-discover + +The ghc-hspec-discover package \ No newline at end of file From a145c970457de62ccd44e79eb2b87e1a3c47aa2b Mon Sep 17 00:00:00 2001 From: David Shea Date: Fri, 10 Nov 2017 15:40:21 -0500 Subject: [PATCH 02/30] New package ghc-hspec-discover --- .gitignore | 1 + README.md | 3 -- ghc-hspec-discover.spec | 81 +++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 83 insertions(+), 3 deletions(-) create mode 100644 .gitignore delete mode 100644 README.md create mode 100644 ghc-hspec-discover.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9b2f71c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/hspec-discover-2.4.4.tar.gz diff --git a/README.md b/README.md deleted file mode 100644 index 7257412..0000000 --- a/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# ghc-hspec-discover - -The ghc-hspec-discover package \ No newline at end of file diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec new file mode 100644 index 0000000..5fc793f --- /dev/null +++ b/ghc-hspec-discover.spec @@ -0,0 +1,81 @@ +# generated by cabal-rpm-0.11.1 +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name hspec-discover +%global pkgver %{pkg_name}-%{version} + +%bcond_with tests + +Name: ghc-%{pkg_name} +Version: 2.4.4 +Release: 1%{?dist} +Summary: Automatically discover and run Hspec tests + +License: MIT +Url: https://hackage.haskell.org/package/%{pkg_name} +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz + +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +# Begin cabal-rpm deps: +BuildRequires: chrpath +BuildRequires: ghc-directory-devel +BuildRequires: ghc-filepath-devel +%if %{with tests} +BuildRequires: ghc-hspec-meta-devel +%endif +# End cabal-rpm deps + +%description +Automatically discover and run Hspec tests + + +%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 +%ghc_fix_rpath %{pkgver} + + +%check +%cabal_test + + +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache + + +%files -f %{name}.files +%license LICENSE + + +%files devel -f %{name}-devel.files +%{_bindir}/%{pkg_name} + + +%changelog +* Fri Nov 10 2017 David Shea - 2.4.4-2 +- spec file generated by cabal-rpm-0.11.1 +- Remove the URL from the %%description diff --git a/sources b/sources new file mode 100644 index 0000000..d8912ed --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (hspec-discover-2.4.4.tar.gz) = f8d589b3769427c6738e64ed3412d67c9352dac9dc16c769470c5dc17cda4dd4282e42d03573dedbc8532051d756009a6b33e42bc1b4dea3a0c77d29cc08a5d9 From f0da9bf7156c032a30ce8edf7557924fcea0de1b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:11:20 +0100 Subject: [PATCH 03/30] refresh to cabal-rpm-0.12.1 --- ghc-hspec-discover.spec | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 5fc793f..d47a4a6 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.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 hspec-discover @@ -29,13 +29,18 @@ BuildRequires: ghc-hspec-meta-devel %description Automatically discover and run Hspec tests +. + %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 @@ -59,6 +64,12 @@ This package provides the Haskell %{pkg_name} library development files. %cabal_test +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From 0f06b9a0ed5e9f1ebb561bfe1fb4aa109b2944fe Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 26 Jan 2018 11:39:08 +0100 Subject: [PATCH 04/30] bump release --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index d47a4a6..c4208cf 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.4.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -87,6 +87,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Jan 26 2018 Jens Petersen - 2.4.4-2 +- rebuild + * Fri Nov 10 2017 David Shea - 2.4.4-2 - spec file generated by cabal-rpm-0.11.1 - Remove the URL from the %%description From 4e02afeeab58ddc46a208188f030274d58cfe21e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:02:45 +0900 Subject: [PATCH 05/30] drop ldconfig scriptlets --- ghc-hspec-discover.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index c4208cf..7ef8688 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -64,12 +64,6 @@ This package provides the Haskell %{pkg_name} library development files. %cabal_test -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From 73d28c93a8e82c6aadc54362aab9a91fdf8ed63b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 11:45:37 +0000 Subject: [PATCH 06/30] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 7ef8688..4c50ff1 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.4.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -81,6 +81,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 2.4.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Fri Jan 26 2018 Jens Petersen - 2.4.4-2 - rebuild From ced2f354ebb7bf78e462796949183bab90342f04 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 01:52:47 +0000 Subject: [PATCH 07/30] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 4c50ff1..8a76924 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.4.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -81,6 +81,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 2.4.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 2.4.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From a9acc4f439a161f0da02405698b06ff2b168d34e Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 22 Jul 2018 23:10:04 +0900 Subject: [PATCH 08/30] update to 2.4.8 --- .gitignore | 1 + ghc-hspec-discover.spec | 10 +++++++--- sources | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 9b2f71c..f55711f 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /hspec-discover-2.4.4.tar.gz +/hspec-discover-2.4.8.tar.gz diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 8a76924..9d4c1a2 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.1 +# generated by cabal-rpm-0.12.5 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name hspec-discover @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 2.4.4 -Release: 4%{?dist} +Version: 2.4.8 +Release: 1%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -22,6 +22,7 @@ BuildRequires: chrpath BuildRequires: ghc-directory-devel BuildRequires: ghc-filepath-devel %if %{with tests} +BuildRequires: ghc-QuickCheck-devel BuildRequires: ghc-hspec-meta-devel %endif # End cabal-rpm deps @@ -81,6 +82,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sun Jul 22 2018 Jens Petersen - 2.4.8-1 +- update to 2.4.8 + * Fri Jul 13 2018 Fedora Release Engineering - 2.4.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index d8912ed..a3a381a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (hspec-discover-2.4.4.tar.gz) = f8d589b3769427c6738e64ed3412d67c9352dac9dc16c769470c5dc17cda4dd4282e42d03573dedbc8532051d756009a6b33e42bc1b4dea3a0c77d29cc08a5d9 +SHA512 (hspec-discover-2.4.8.tar.gz) = c845e9c5bdb0889508e8ff41c55eb4311da26a9edad65b55ebaddb772af2859928bd828063e13197f4f83a60aacc572cfa67a5afc5746394b7c87df04e047490 From 66ac6a4b2ed0cdbd160c5d9462660d2ca9a7ccb3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 21:38:46 +0000 Subject: [PATCH 09/30] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 9d4c1a2..4d7e4ee 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.4.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -82,6 +82,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 2.4.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sun Jul 22 2018 Jens Petersen - 2.4.8-1 - update to 2.4.8 From 927a486b01958f4f27b4807f5e110517bf0362d5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:45:11 +0800 Subject: [PATCH 10/30] refresh to cabal-rpm-0.13 --- ghc-hspec-discover.spec | 21 ++++++++++++++++----- 1 file changed, 16 insertions(+), 5 deletions(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 4d7e4ee..11b540c 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-0.12.5 +# generated by cabal-rpm-0.13 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name hspec-discover @@ -8,17 +8,18 @@ Name: ghc-%{pkg_name} Version: 2.4.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Automatically discover and run Hspec tests License: MIT Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +# End cabal-rpm sources +# Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros -# Begin cabal-rpm deps: -BuildRequires: chrpath BuildRequires: ghc-directory-devel BuildRequires: ghc-filepath-devel %if %{with tests} @@ -49,16 +50,21 @@ This package provides the Haskell %{pkg_name} library development files. %prep +# Begin cabal-rpm setup: %setup -q -n %{pkgver} +# End cabal-rpm setup %build +# Begin cabal-rpm build: %ghc_lib_build +# End cabal-rpm build %install +# Begin cabal-rpm install %ghc_lib_install -%ghc_fix_rpath %{pkgver} +# End cabal-rpm install %check @@ -74,7 +80,9 @@ This package provides the Haskell %{pkg_name} library development files. %files -f %{name}.files +# Begin cabal-rpm files: %license LICENSE +# End cabal-rpm files %files devel -f %{name}-devel.files @@ -82,6 +90,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sun Feb 17 2019 Jens Petersen - 2.4.8-3 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 2.4.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From a02bfbae38fae13de434e76327769c53f087a1f1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 21 Feb 2019 10:30:06 +0800 Subject: [PATCH 11/30] update to 2.5.5 --- .gitignore | 1 + ghc-hspec-discover.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index f55711f..8d5a8c8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /hspec-discover-2.4.4.tar.gz /hspec-discover-2.4.8.tar.gz +/hspec-discover-2.5.5.tar.gz diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 11b540c..6d7b6b3 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 2.4.8 -Release: 3%{?dist} +Version: 2.5.5 +Release: 1%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -90,6 +90,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Feb 21 2019 Jens Petersen - 2.5.5-1 +- update to 2.5.5 + * Sun Feb 17 2019 Jens Petersen - 2.4.8-3 - refresh to cabal-rpm-0.13 diff --git a/sources b/sources index a3a381a..27459ac 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (hspec-discover-2.4.8.tar.gz) = c845e9c5bdb0889508e8ff41c55eb4311da26a9edad65b55ebaddb772af2859928bd828063e13197f4f83a60aacc572cfa67a5afc5746394b7c87df04e047490 +SHA512 (hspec-discover-2.5.5.tar.gz) = 922511709402a063eba16f2bb2b85e42b6183d8004d78af00ddf692cfcc6c3172c9ce925f395c28b04bbe2289693c437923bd769f0289e00c589890e4475700e From 86c5789273689e2871eaafe2bc7fa624389b2481 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 02:36:04 +0000 Subject: [PATCH 12/30] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 6d7b6b3..7805b75 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.5.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -90,6 +90,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 2.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Feb 21 2019 Jens Petersen - 2.5.5-1 - update to 2.5.5 From 2ac493ebbd24d7289e37859230c309a1d2538e26 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:23:56 +0000 Subject: [PATCH 13/30] refresh to cabal-rpm-1.0.0: lib doc/prof subpkgs and bin static BRs --- ghc-hspec-discover.spec | 48 ++++++++++++++++++++++++++++++----------- 1 file changed, 36 insertions(+), 12 deletions(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 7805b75..404f49f 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.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 hspec-discover @@ -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-directory-devel BuildRequires: ghc-filepath-devel @@ -37,11 +43,8 @@ Automatically discover and run Hspec tests %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} @@ -49,6 +52,25 @@ Requires: %{name}%{?_isa} = %{version}-%{release} This package provides the Haskell %{pkg_name} library development files. +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation + +%description doc +This package provides the Haskell %{pkg_name} library documentation. +%endif + + +%if %{with ghc_prof} +%package prof +Summary: Haskell %{pkg_name} profiling library +Requires: %{name}-devel%{?_isa} = %{version}-%{release} + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + %prep # Begin cabal-rpm setup: %setup -q -n %{pkgver} @@ -71,14 +93,6 @@ This package provides the Haskell %{pkg_name} library development files. %cabal_test -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -89,6 +103,16 @@ This package provides the Haskell %{pkg_name} library development files. %{_bindir}/%{pkg_name} +%if %{with haddock} +%files doc -f %{name}-doc.files +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + %changelog * Thu Jul 25 2019 Fedora Release Engineering - 2.5.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 49f9fa08f7215af3caca100f3b77b000496c0746 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 15:58:11 +0000 Subject: [PATCH 14/30] update to 2.6.1 --- .gitignore | 1 + ghc-hspec-discover.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 8d5a8c8..2c16391 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /hspec-discover-2.4.4.tar.gz /hspec-discover-2.4.8.tar.gz /hspec-discover-2.5.5.tar.gz +/hspec-discover-2.6.1.tar.gz diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 404f49f..f6537b7 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 2.5.5 -Release: 2%{?dist} +Version: 2.6.1 +Release: 1%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -114,6 +114,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jul 25 2019 Jens Petersen - 2.6.1-1 +- update to 2.6.1 + * Thu Jul 25 2019 Fedora Release Engineering - 2.5.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 27459ac..3a1cb77 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (hspec-discover-2.5.5.tar.gz) = 922511709402a063eba16f2bb2b85e42b6183d8004d78af00ddf692cfcc6c3172c9ce925f395c28b04bbe2289693c437923bd769f0289e00c589890e4475700e +SHA512 (hspec-discover-2.6.1.tar.gz) = 23791f7132881e2ba7e2501e76d5ce3db1c9da5379526453c0a8e56199ba66abc82f88c003297f384150bfd6fd454775bd18525913ca37bad011cb1fad7992ef From c875163cfefcace98f1d35380b3088e869f2e6a3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:29:52 +0800 Subject: [PATCH 15/30] BR prof for lib and static for executable --- ghc-hspec-discover.spec | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index f6537b7..7c0bff5 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.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 hspec-discover @@ -19,15 +19,10 @@ Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz # Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel -%if %{with haddock} -BuildRequires: ghc-doc -%endif -%if %{with ghc_prof} -BuildRequires: ghc-prof -%endif BuildRequires: ghc-rpm-macros -BuildRequires: ghc-directory-devel -BuildRequires: ghc-filepath-devel +BuildRequires: ghc-base-prof +BuildRequires: ghc-directory-prof +BuildRequires: ghc-filepath-prof %if %{with tests} BuildRequires: ghc-QuickCheck-devel BuildRequires: ghc-hspec-meta-devel @@ -43,6 +38,7 @@ Automatically discover and run Hspec tests %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 8475d8e5ff8b6b11724ba9a6302b9f42d0740d2b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 20:52:39 +0000 Subject: [PATCH 16/30] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 7c0bff5..add3d3d 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -110,6 +110,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 2.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Jens Petersen - 2.6.1-1 - update to 2.6.1 From cea578e5585131efe62b73faeafddc5c07be7050 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:50:35 +0800 Subject: [PATCH 17/30] refresh to cabal-rpm-2.0.2 --- ghc-hspec-discover.spec | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index add3d3d..ae4ea77 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.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 hspec-discover %global pkgver %{pkg_name}-%{version} -%bcond_with tests - Name: ghc-%{pkg_name} Version: 2.6.1 Release: 2%{?dist} @@ -23,10 +21,6 @@ BuildRequires: ghc-rpm-macros BuildRequires: ghc-base-prof BuildRequires: ghc-directory-prof BuildRequires: ghc-filepath-prof -%if %{with tests} -BuildRequires: ghc-QuickCheck-devel -BuildRequires: ghc-hspec-meta-devel -%endif # End cabal-rpm deps %description @@ -51,6 +45,7 @@ This package provides the Haskell %{pkg_name} library development files. %if %{with haddock} %package doc Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch %description doc This package provides the Haskell %{pkg_name} library documentation. @@ -61,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. @@ -85,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 @@ -101,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 4c3fa67b887d00d604ebee7903ede86d9c83d610 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 14 Feb 2020 11:38:15 +0800 Subject: [PATCH 18/30] update to 2.7.1 --- .gitignore | 1 + ghc-hspec-discover.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2c16391..4501e3b 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /hspec-discover-2.4.8.tar.gz /hspec-discover-2.5.5.tar.gz /hspec-discover-2.6.1.tar.gz +/hspec-discover-2.7.1.tar.gz diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index ae4ea77..ec83b5d 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -5,8 +5,8 @@ %global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} -Version: 2.6.1 -Release: 2%{?dist} +Version: 2.7.1 +Release: 1%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -113,6 +113,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Feb 14 2020 Jens Petersen - 2.7.1-1 +- update to 2.7.1 + * Tue Jan 28 2020 Fedora Release Engineering - 2.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index 3a1cb77..5e7afee 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (hspec-discover-2.6.1.tar.gz) = 23791f7132881e2ba7e2501e76d5ce3db1c9da5379526453c0a8e56199ba66abc82f88c003297f384150bfd6fd454775bd18525913ca37bad011cb1fad7992ef +SHA512 (hspec-discover-2.7.1.tar.gz) = b07e7be5bd81f2e116b63f27e307ac628b6d678cc24dfb519bed7dcc1c27f772ff5d4a18c801474a425d4450337e809b9563b4ee1ca397830dfc7f9a92d7359f From 0c4924f2394ce930cafc012fc7bb7a0eafe2532d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:26:52 +0800 Subject: [PATCH 19/30] refresh to cabal-rpm-2.0.5 --- ghc-hspec-discover.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index ec83b5d..9a8ef9c 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.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 hspec-discover %global pkgver %{pkg_name}-%{version} From 38859f04377c00615c0d502c331f6545faa6a964 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:55:29 +0800 Subject: [PATCH 20/30] refresh to cabal-rpm-2.0.6 --- ghc-hspec-discover.spec | 14 +++----------- 1 file changed, 3 insertions(+), 11 deletions(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 9a8ef9c..dfd8351 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.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 hspec-discover %global pkgver %{pkg_name}-%{version} +# testsuite missing deps: hspec-meta + Name: ghc-%{pkg_name} Version: 2.7.1 Release: 1%{?dist} @@ -81,16 +83,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 18613e2e030a1639825ae7838adb2e662bb309e6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 18:16:33 +0800 Subject: [PATCH 21/30] bump release --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index dfd8351..2f085c1 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.7.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -105,6 +105,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Jul 17 2020 Jens Petersen - 2.7.1-2 +- refresh to cabal-rpm-2.0.6 + * Fri Feb 14 2020 Jens Petersen - 2.7.1-1 - update to 2.7.1 From 72576821dd61547c1a01017d7714bc9ff3fce2e2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 19:15:50 +0000 Subject: [PATCH 22/30] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 2f085c1..e7e5aa5 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.7.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -105,6 +105,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 2.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 2.7.1-2 - refresh to cabal-rpm-2.0.6 From 9ac9198154eb7ee438975ab1efa3e1bb6e134f7d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:19:31 +0000 Subject: [PATCH 23/30] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index e7e5aa5..793c88a 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.7.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -105,6 +105,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 2.7.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 2.7.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 10d1ba6f0f4230b1e8d22660aa4a3b1cfd92e85d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 00:48:09 +0000 Subject: [PATCH 24/30] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 793c88a..6d95497 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.7.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -105,6 +105,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 2.7.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 2.7.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From cee7d3812a3fadda378bf1dd204a1793c759fadf Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 28 Jan 2021 21:13:22 +0800 Subject: [PATCH 25/30] update to 2.7.8 --- .gitignore | 1 + ghc-hspec-discover.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 4501e3b..f96a622 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /hspec-discover-2.5.5.tar.gz /hspec-discover-2.6.1.tar.gz /hspec-discover-2.7.1.tar.gz +/hspec-discover-2.7.8.tar.gz diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 6d95497..7880bdd 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -7,8 +7,8 @@ # testsuite missing deps: hspec-meta Name: ghc-%{pkg_name} -Version: 2.7.1 -Release: 5%{?dist} +Version: 2.7.8 +Release: 1%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -105,6 +105,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Aug 5 2021 Jens Petersen - 2.7.8-1 +- update to 2.7.8 + * Thu Jul 22 2021 Fedora Release Engineering - 2.7.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 5e7afee..6995e8a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (hspec-discover-2.7.1.tar.gz) = b07e7be5bd81f2e116b63f27e307ac628b6d678cc24dfb519bed7dcc1c27f772ff5d4a18c801474a425d4450337e809b9563b4ee1ca397830dfc7f9a92d7359f +SHA512 (hspec-discover-2.7.8.tar.gz) = f403877035a968cbd49d8b7d8964bd9e01bcf1ed34de94ed2c4f7f6fc36d6b17e85f8fbc44600427713cb48980cc5651b269c07276ae972ce16660771b9729a3 From c863c1383fba3d3919e5c2b3cc118c7365dd1ff6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:11 +0800 Subject: [PATCH 26/30] refresh to cabal-rpm-2.0.9 --- ghc-hspec-discover.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 7880bdd..a899eaa 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.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 hspec-discover @@ -48,6 +48,7 @@ This package provides the Haskell %{pkg_name} library development files. %package doc Summary: Haskell %{pkg_name} library documentation BuildArch: noarch +Requires: ghc-filesystem %description doc This package provides the Haskell %{pkg_name} library documentation. From 855750647a3f5a8e9a3366bdd865d6a0819b71ec Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 5 Aug 2021 18:56:48 +0800 Subject: [PATCH 27/30] update to 2.7.10 --- .gitignore | 1 + ghc-hspec-discover.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index f96a622..c9c5fdb 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /hspec-discover-2.6.1.tar.gz /hspec-discover-2.7.1.tar.gz /hspec-discover-2.7.8.tar.gz +/hspec-discover-2.7.10.tar.gz diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index a899eaa..79485d3 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -7,7 +7,7 @@ # testsuite missing deps: hspec-meta Name: ghc-%{pkg_name} -Version: 2.7.8 +Version: 2.7.10 Release: 1%{?dist} Summary: Automatically discover and run Hspec tests @@ -106,6 +106,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Aug 5 2021 Jens Petersen - 2.7.10-1 +- update to 2.7.10 + * Thu Aug 5 2021 Jens Petersen - 2.7.8-1 - update to 2.7.8 diff --git a/sources b/sources index 6995e8a..fa35227 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (hspec-discover-2.7.8.tar.gz) = f403877035a968cbd49d8b7d8964bd9e01bcf1ed34de94ed2c4f7f6fc36d6b17e85f8fbc44600427713cb48980cc5651b269c07276ae972ce16660771b9729a3 +SHA512 (hspec-discover-2.7.10.tar.gz) = 83ac2e5b0a1732ca7f99c25d57158aa08f9cc9cdcc45d61bc5f21425a652fdec09985937146b7c77e4b7cf89607e252d2cef19ff9dfba0804fbfe8da296751f7 From 1972f494c8817b30d618dd0769cef0e93827de3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Sat, 8 Jan 2022 11:11:31 +0100 Subject: [PATCH 28/30] Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34 --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index 79485d3..ddb2313 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.7.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -106,6 +106,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Sat Jan 08 2022 Miro Hrončok - 2.7.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34 + * Thu Aug 5 2021 Jens Petersen - 2.7.10-1 - update to 2.7.10 From fd74dc527a1311d14ef953535dbe9310a7ae9eaf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 05:02:01 +0000 Subject: [PATCH 29/30] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-hspec-discover.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-hspec-discover.spec b/ghc-hspec-discover.spec index ddb2313..d9248b4 100644 --- a/ghc-hspec-discover.spec +++ b/ghc-hspec-discover.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 2.7.10 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Automatically discover and run Hspec tests License: MIT @@ -106,6 +106,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 2.7.10-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Sat Jan 08 2022 Miro Hrončok - 2.7.10-2 - Rebuilt for https://fedoraproject.org/wiki/Changes/LIBFFI34 From 23c627a2a0024b0ca65e4a7b1553ac24996c1e6b Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 21:43:34 +0300 Subject: [PATCH 30/30] 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 fa35227..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (hspec-discover-2.7.10.tar.gz) = 83ac2e5b0a1732ca7f99c25d57158aa08f9cc9cdcc45d61bc5f21425a652fdec09985937146b7c77e4b7cf89607e252d2cef19ff9dfba0804fbfe8da296751f7