From 2a9ba2a8f123b01f782e2c27a820fb405c60e41c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 19 Mar 2015 13:06:22 +0000 Subject: [PATCH 01/36] 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 f456730d92bed6441eb0eef9142396f8c9de659b Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 20 Mar 2015 09:51:54 +0900 Subject: [PATCH 02/36] import (#1196960) --- .gitignore | 1 + ghc-tf-random.spec | 110 +++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 112 insertions(+) create mode 100644 ghc-tf-random.spec diff --git a/.gitignore b/.gitignore index e69de29..e336600 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/tf-random-0.5.tar.gz diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec new file mode 100644 index 0000000..b0b42b6 --- /dev/null +++ b/ghc-tf-random.spec @@ -0,0 +1,110 @@ +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name tf-random + +Name: ghc-%{pkg_name} +Version: 0.5 +Release: 2%{?dist} +Summary: High-quality splittable pseudorandom number generator + +# main license is BSD +# brg_types.h is BSD and optionally GPL+ +# C code by Doug Whiting is Public Domain +License: BSD and Public Domain +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-primitive-devel +BuildRequires: ghc-random-devel +BuildRequires: ghc-time-devel +# End cabal-rpm deps + +%description +This package contains an implementation of a high-quality splittable +pseudorandom number generator. The generator is based on a cryptographic hash +function built on top of the ThreeFish block cipher. See the paper /Splittable +Pseudorandom Number Generators Using Cryptographic Hashing/ by Claessen, Pałka +for details and the rationale of the design. + +The package provides the following: + +* A splittable PRNG that implements the standard 'System.Random.RandomGen' +class. + +* The generator also implements an alternative version of the +'System.Random.TF.Gen.RandomGen' class (exported from "System.Random.TF.Gen"), +which requires the generator to return pseudorandom integers from the full +32-bit range, and contains an n-way split function. + +* An alternative version of the 'Random' class is provided, which is linked to +the new 'RandomGen' class, together with 'Random' instances for some integral +types. + +* Two functions for initialising the generator with a non-deterministic seed: +one using the system time, and one using the '/dev/urandom' UNIX special file. + +The package uses an adapted version of the reference C implementation of +ThreeFish from the reference package of the Skein hash function +(), originally written by Doug Whiting. + +Please note that even though the generator provides very high-quality +pseudorandom numbers, it has not been designed with cryptographic applications +in mind. + + +%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 %{pkg_name}-%{version} + + +%build +# for haddock +export LANG=en_US.utf8 +%ghc_lib_build + + +%install +%ghc_lib_install + +rm %{buildroot}/%{_pkgdocdir}/LICENSE + + +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache + + +%files -f %{name}.files +%license LICENSE LICENSE.tf LICENSE.brg + + +%files devel -f %{name}-devel.files +%doc ChangeLog + + +%changelog +* Tue Mar 3 2015 Jens Petersen - 0.5-2 +- some of the C code is Public Domain (#1196960) + +* Fri Feb 27 2015 Jens Petersen - 0.5-1 +- improve filelists + +* Mon Feb 9 2015 Fedora Haskell SIG - 0.5 +- spec file generated by cabal-rpm-0.9.3 diff --git a/sources b/sources index e69de29..6d84fed 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +569f8acb14d09227f136a53ffd84b7b2 tf-random-0.5.tar.gz From 63e866f1bcf4d492cc0210fc564fc1f41f08c426 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 08:02:44 +0000 Subject: [PATCH 03/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index b0b42b6..1d7df46 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -100,6 +100,9 @@ rm %{buildroot}/%{_pkgdocdir}/LICENSE %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Tue Mar 3 2015 Jens Petersen - 0.5-2 - some of the C code is Public Domain (#1196960) From e46de080e09ece343d0760ccaf2d685e79c04b70 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 21:46:40 +0000 Subject: [PATCH 04/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 1d7df46..61b3278 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -100,6 +100,9 @@ rm %{buildroot}/%{_pkgdocdir}/LICENSE %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 0.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 0.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From fe87ac52d61101569e0491c8da3fd9b4d980c3d0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Dec 2016 06:34:48 +0900 Subject: [PATCH 05/36] use ghc_pkgdocdir --- ghc-tf-random.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 61b3278..4411830 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -80,7 +80,7 @@ export LANG=en_US.utf8 %install %ghc_lib_install -rm %{buildroot}/%{_pkgdocdir}/LICENSE +rm %{buildroot}/%{ghc_pkgdocdir}/LICENSE %post devel From fbfca4bd63d54acf91eba8a3b61337d26fdd98c3 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 5 Jan 2017 11:11:18 +0900 Subject: [PATCH 06/36] no longer need to remove LICENSE or set LANG --- ghc-tf-random.spec | 4 ---- 1 file changed, 4 deletions(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 4411830..c1fa5d1 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -72,16 +72,12 @@ This package provides the Haskell %{pkg_name} library development files. %build -# for haddock -export LANG=en_US.utf8 %ghc_lib_build %install %ghc_lib_install -rm %{buildroot}/%{ghc_pkgdocdir}/LICENSE - %post devel %ghc_pkg_recache From dcd1741de630c68a844bc755622b353dbf7b3fa6 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 10:51:15 +0000 Subject: [PATCH 07/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index c1fa5d1..d91fd8d 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 4%{?dist} +Release: 5%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -96,6 +96,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.5-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Feb 03 2016 Fedora Release Engineering - 0.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From dc2c2bbe0fe7209912e3798e6559464596072e61 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 24 Feb 2017 17:48:24 +0900 Subject: [PATCH 08/36] refresh to cabal-rpm-0.11.1 --- ghc-tf-random.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index d91fd8d..ac1ef86 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -1,10 +1,12 @@ +# generated by cabal-rpm-0.11.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name tf-random +%global pkgver %{pkg_name}-%{version} Name: ghc-%{pkg_name} Version: 0.5 -Release: 5%{?dist} +Release: 6%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -12,7 +14,7 @@ Summary: High-quality splittable pseudorandom number generator # C code by Doug Whiting is Public Domain License: BSD and Public Domain 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 @@ -68,7 +70,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep -%setup -q -n %{pkg_name}-%{version} +%setup -q -n %{pkgver} %build @@ -96,6 +98,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Feb 24 2017 Jens Petersen - 0.5-6 +- refresh to cabal-rpm-0.11.1 + * Fri Feb 10 2017 Fedora Release Engineering - 0.5-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 3e375c3b8423f95e61830b0afd32a8c48267e7fe Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 09:58:52 +0000 Subject: [PATCH 09/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index ac1ef86..6061c2e 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 6%{?dist} +Release: 7%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -98,6 +98,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 24 2017 Jens Petersen - 0.5-6 - refresh to cabal-rpm-0.11.1 From 9278b1801a429027e1006832b83d6681e7ce075e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 21:34:37 +0000 Subject: [PATCH 10/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 6061c2e..9d9649a 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 7%{?dist} +Release: 8%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -98,6 +98,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 0.5-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.5-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 8b9ca5e9138c76b37130a0502bbf32ecacc6e18a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:12:09 +0100 Subject: [PATCH 11/36] refresh to cabal-rpm-0.12.1 --- ghc-tf-random.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 9d9649a..a523b79 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.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 tf-random @@ -60,9 +60,12 @@ in mind. %package devel Summary: Haskell %{pkg_name} library development files Provides: %{name}-static = %{version}-%{release} +Provides: %{name}-doc = %{version}-%{release} +%if %{defined ghc_version} Requires: ghc-compiler = %{ghc_version} Requires(post): ghc-compiler = %{ghc_version} Requires(postun): ghc-compiler = %{ghc_version} +%endif Requires: %{name}%{?_isa} = %{version}-%{release} %description devel @@ -81,6 +84,12 @@ This package provides the Haskell %{pkg_name} library development files. %ghc_lib_install +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From 7a19a898b8951761f1bc1640b80a4a67d6331c64 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 26 Jan 2018 12:00:50 +0100 Subject: [PATCH 12/36] bump release --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index a523b79..9fc5788 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 8%{?dist} +Release: 9%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -107,6 +107,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Jan 26 2018 Jens Petersen - 0.5-9 +- rebuild + * Wed Aug 02 2017 Fedora Release Engineering - 0.5-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 410108358a1f86fb91f048603e744435b331fd3f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:03:36 +0900 Subject: [PATCH 13/36] drop ldconfig scriptlets --- ghc-tf-random.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 9fc5788..feae2cd 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -84,12 +84,6 @@ This package provides the Haskell %{pkg_name} library development files. %ghc_lib_install -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From 73b5424f04eba6b6c8fd5799303fb0c1b2052782 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 12:14:42 +0000 Subject: [PATCH 14/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index feae2cd..30b5d89 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 9%{?dist} +Release: 10%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -101,6 +101,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.5-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Fri Jan 26 2018 Jens Petersen - 0.5-9 - rebuild From 1cb51cdc7d0d3b5291729a69f3d2c4a387953d3e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 02:11:47 +0000 Subject: [PATCH 15/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 30b5d89..b3d4ce7 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 10%{?dist} +Release: 11%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -101,6 +101,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 0.5-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From ba2547546e3750710e44a66adc42e00c069b7276 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 29 Jul 2018 01:05:24 +0900 Subject: [PATCH 16/36] rebuild --- ghc-tf-random.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index b3d4ce7..02b94f2 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.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 tf-random @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 11%{?dist} +Release: 12%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -101,6 +101,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sat Jul 28 2018 Jens Petersen - 0.5-12 +- rebuild + * Fri Jul 13 2018 Fedora Release Engineering - 0.5-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From a4ba6794450ccf6c1a1ec8d88ea6408a7f7b3833 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 22:07:23 +0000 Subject: [PATCH 17/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 02b94f2..011b405 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 12%{?dist} +Release: 13%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -101,6 +101,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 0.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 28 2018 Jens Petersen - 0.5-12 - rebuild From 2d3c71243c13bbad7866a56c3b41c16a1e4ff1c2 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:47:28 +0800 Subject: [PATCH 18/36] refresh to cabal-rpm-0.13 --- ghc-tf-random.spec | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 011b405..0cef27e 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.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 tf-random @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 13%{?dist} +Release: 14%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -14,11 +14,13 @@ Summary: High-quality splittable pseudorandom number generator # C code by Doug Whiting is Public Domain License: BSD and Public Domain 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-primitive-devel BuildRequires: ghc-random-devel BuildRequires: ghc-time-devel @@ -73,15 +75,21 @@ This package provides the Haskell %{pkg_name} library development files. %prep +# Begin cabal-rpm setup: %setup -q -n %{pkgver} +# End cabal-rpm setup %build +# Begin cabal-rpm build: %ghc_lib_build +# End cabal-rpm build %install +# Begin cabal-rpm install %ghc_lib_install +# End cabal-rpm install %post devel @@ -93,7 +101,11 @@ This package provides the Haskell %{pkg_name} library development files. %files -f %{name}.files -%license LICENSE LICENSE.tf LICENSE.brg +# Begin cabal-rpm files: +%license LICENSE +%license LICENSE.brg +%license LICENSE.tf +# End cabal-rpm files %files devel -f %{name}-devel.files @@ -101,6 +113,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Sun Feb 17 2019 Jens Petersen - 0.5-14 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 0.5-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From bb464fb409fb3f10106d4ff4c592606af3905c6b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 03:05:56 +0000 Subject: [PATCH 19/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 0cef27e..08564e0 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 14%{?dist} +Release: 15%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -113,6 +113,9 @@ This package provides the Haskell %{pkg_name} library development files. %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.5-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 17 2019 Jens Petersen - 0.5-14 - refresh to cabal-rpm-0.13 From 6a20851501635b8b72bb90dddda033ce73a1140a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:26:18 +0000 Subject: [PATCH 20/36] cabal-rpm-1.0.0: add doc and prof subpkgs --- ghc-tf-random.spec | 53 ++++++++++++++++++++++++++++++++++------------ 1 file changed, 40 insertions(+), 13 deletions(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 08564e0..7b3ce00 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.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 tf-random @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 15%{?dist} +Release: 16%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -20,6 +20,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-primitive-devel BuildRequires: ghc-random-devel @@ -62,11 +68,8 @@ in mind. %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} @@ -74,6 +77,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} @@ -92,14 +114,6 @@ This package provides the Haskell %{pkg_name} library development files. # End cabal-rpm install -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -112,7 +126,20 @@ This package provides the Haskell %{pkg_name} library development files. %doc ChangeLog +%if %{with haddock} +%files doc -f %{name}-doc.files +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + %changelog +* Fri Aug 02 2019 Jens Petersen - 0.5-16 +- add doc and prof subpackages (cabal-rpm-1.0.0) + * Thu Jul 25 2019 Fedora Release Engineering - 0.5-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From bf028296b8b4f20970123cc0d31d82635f45c2a1 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:32:17 +0800 Subject: [PATCH 21/36] BR prof for lib and static for executable --- ghc-tf-random.spec | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 7b3ce00..55c35e5 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.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 tf-random @@ -20,16 +20,11 @@ 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-primitive-devel -BuildRequires: ghc-random-devel -BuildRequires: ghc-time-devel +BuildRequires: ghc-base-prof +BuildRequires: ghc-primitive-prof +BuildRequires: ghc-random-prof +BuildRequires: ghc-time-prof # End cabal-rpm deps %description @@ -68,6 +63,7 @@ in mind. %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 6fe13d456484762c2ed7e3a08e3a91598e6a7cb3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 21:30:45 +0000 Subject: [PATCH 22/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 55c35e5..28b3d1f 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 16%{?dist} +Release: 17%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -133,6 +133,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 0.5-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Fri Aug 02 2019 Jens Petersen - 0.5-16 - add doc and prof subpackages (cabal-rpm-1.0.0) From 01801a79a4dacbdff3aa7b52ed4fcb6cdf0ac54a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:52:21 +0800 Subject: [PATCH 23/36] refresh to cabal-rpm-2.0.2 --- ghc-tf-random.spec | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 28b3d1f..02db2e5 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-1.0.1 +# generated by cabal-rpm-2.0.2 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name tf-random @@ -76,6 +76,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. @@ -86,6 +87,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. @@ -110,6 +112,16 @@ This package provides the Haskell %{pkg_name} profiling library. # End cabal-rpm install +%if 0%{?fedora} < 31 || 0%{?rhel} < 8 +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache +%endif + + %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -124,6 +136,9 @@ This package provides the Haskell %{pkg_name} profiling library. %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE +%license LICENSE.brg +%license LICENSE.tf %endif From 23d42390c562ab4bc7cfa068aa111b3dc799c423 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:28:36 +0800 Subject: [PATCH 24/36] refresh to cabal-rpm-2.0.5 --- ghc-tf-random.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 02db2e5..7c75629 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.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 tf-random %global pkgver %{pkg_name}-%{version} From 577f130aadf39b51f0ab9b683437991c8303213d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:57:13 +0800 Subject: [PATCH 25/36] refresh to cabal-rpm-2.0.6 --- ghc-tf-random.spec | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 7c75629..16d1130 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -1,4 +1,4 @@ -# generated by cabal-rpm-2.0.5 +# generated by cabal-rpm-2.0.6 # https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ %global pkg_name tf-random @@ -112,16 +112,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 39c7ac72f3d1a296719181c4ff8d53b0fb601f25 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 18:42:27 +0800 Subject: [PATCH 26/36] bump release --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 16d1130..f19090c 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 17%{?dist} +Release: 18%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -138,6 +138,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Jul 17 2020 Jens Petersen - 0.5-18 +- refresh to cabal-rpm-2.0.6 + * Tue Jan 28 2020 Fedora Release Engineering - 0.5-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 284ea219382732fb2d88b819feaa1204a037dcef Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 19:45:14 +0000 Subject: [PATCH 27/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index f19090c..7921b7c 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 18%{?dist} +Release: 19%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -138,6 +138,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 0.5-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 0.5-18 - refresh to cabal-rpm-2.0.6 From fa9b91ec5160fa13a2bdd92ea0da9f8e0cb222fa Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 01:34:45 +0000 Subject: [PATCH 28/36] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 7921b7c..52422e0 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 19%{?dist} +Release: 20%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -138,6 +138,10 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Sat Aug 01 2020 Fedora Release Engineering - 0.5-20 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 0.5-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 5dad9e2f8bde79e0a5fe966d9584f3bf1bb7c1c8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:48:58 +0000 Subject: [PATCH 29/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 52422e0..8e9f346 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 20%{?dist} +Release: 21%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -138,6 +138,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.5-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sat Aug 01 2020 Fedora Release Engineering - 0.5-20 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 42bab407878b7e319d1a59963a4cbd69e8b8b2a8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 01:20:48 +0000 Subject: [PATCH 30/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 8e9f346..aac5b7e 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 21%{?dist} +Release: 22%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -138,6 +138,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.5-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.5-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 9439924f03d39c8f1841643323bbe9368c139e49 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 8 Jul 2021 00:30:13 +0800 Subject: [PATCH 31/36] refresh to cabal-rpm-2.0.9 --- ghc-tf-random.spec | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index aac5b7e..65cc0f6 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.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 tf-random @@ -77,6 +77,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 e908b1c1f94234d4d605ac6f7313c8988265a585 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 6 Aug 2021 13:19:22 +0800 Subject: [PATCH 32/36] bump release --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 65cc0f6..2c13705 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 22%{?dist} +Release: 23%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -139,6 +139,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Fri Aug 06 2021 Jens Petersen - 0.5-23 +- rebuild + * Thu Jul 22 2021 Fedora Release Engineering - 0.5-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From f07882558f732ee08cbf066e1fbaca9eb39ff71c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 05:38:57 +0000 Subject: [PATCH 33/36] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index 2c13705..f895567 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 23%{?dist} +Release: 24%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -139,6 +139,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.5-24 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Aug 06 2021 Jens Petersen - 0.5-23 - rebuild From 3b6a39fc4a8dbe0aa31f96713d333bbb57ecab0f Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 10 Mar 2022 14:55:22 +0800 Subject: [PATCH 34/36] bump release --- ghc-tf-random.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-tf-random.spec b/ghc-tf-random.spec index f895567..235a7f3 100644 --- a/ghc-tf-random.spec +++ b/ghc-tf-random.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.5 -Release: 24%{?dist} +Release: 25%{?dist} Summary: High-quality splittable pseudorandom number generator # main license is BSD @@ -139,6 +139,9 @@ This package provides the Haskell %{pkg_name} profiling library. %changelog +* Thu Mar 10 2022 Jens Petersen - 0.5-25 +- rebuild + * Thu Jan 20 2022 Fedora Release Engineering - 0.5-24 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 1d7893ebb70f3f8c569095ba9ac0ef6b4dc870bc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 10 Mar 2022 15:03:43 +0800 Subject: [PATCH 35/36] updates sources file to use sha512 --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index 6d84fed..4d6a813 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -569f8acb14d09227f136a53ffd84b7b2 tf-random-0.5.tar.gz +SHA512 (tf-random-0.5.tar.gz) = a766909571b4b37daaaaa9fa1aa9739bd2db8c32c0f64452fd7c3717f4578090e5227b763772858c6c311c5f366dd461421ffc3beb295455902fea1fb133deb7 From da9c3e44820491b64b88e45a45e074aeeab2c3da Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 22:02:38 +0300 Subject: [PATCH 36/36] 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 4d6a813..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (tf-random-0.5.tar.gz) = a766909571b4b37daaaaa9fa1aa9739bd2db8c32c0f64452fd7c3717f4578090e5227b763772858c6c311c5f366dd461421ffc3beb295455902fea1fb133deb7