From 71b1bd57c16ef3d1d61034b2c10b7f3327e345d9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 28 Apr 2014 12:07:14 +0000 Subject: [PATCH 01/44] 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 0e2aa202a0cf906ef0e66fb8aa9b1945657d843d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 30 Apr 2014 18:38:09 +0900 Subject: [PATCH 02/44] import (#1090802) --- .gitignore | 1 + ghc-streaming-commons.spec | 83 ++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 85 insertions(+) create mode 100644 ghc-streaming-commons.spec diff --git a/.gitignore b/.gitignore index e69de29..b1bcb1b 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/streaming-commons-0.1.2.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec new file mode 100644 index 0000000..7f0de9a --- /dev/null +++ b/ghc-streaming-commons.spec @@ -0,0 +1,83 @@ +# https://fedoraproject.org/wiki/Packaging:Haskell + +%global pkg_name streaming-commons + +Name: ghc-%{pkg_name} +Version: 0.1.2 +Release: 1%{?dist} +Summary: Common lower-level functions for streaming data libraries + +License: MIT +URL: http://hackage.haskell.org/package/%{pkg_name} +Source0: http://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-array-devel +BuildRequires: ghc-blaze-builder-devel +BuildRequires: ghc-bytestring-devel +BuildRequires: ghc-directory-devel +BuildRequires: ghc-network-devel +BuildRequires: ghc-text-devel +BuildRequires: ghc-transformers-devel +BuildRequires: ghc-unix-devel +BuildRequires: ghc-zlib-devel +# End cabal-rpm deps + +%description +Provides low-dependency functionality commonly needed by various streaming data +libraries, such as conduit and pipes. + + +%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} +# remove bundled zlib headers +mv include/text_cbits.h . +rm include/* +mv text_cbits.h include/ + + +%build +%ghc_lib_build + + +%install +%ghc_lib_install + + +%post devel +%ghc_pkg_recache + + +%postun devel +%ghc_pkg_recache + + +%files -f %{name}.files +%doc LICENSE + + +%files devel -f %{name}-devel.files + + +%changelog +* Thu Apr 24 2014 Jens Petersen - 0.1.2-1 +- shorten summary +- exclude bundled zlib headers + +* Thu Apr 24 2014 Fedora Haskell SIG - 0.1.2 +- spec file generated by cabal-rpm-0.8.11 diff --git a/sources b/sources index e69de29..f039996 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +2a45aec3d91a27d0bb32750362059160 streaming-commons-0.1.2.tar.gz From ed219a7c76414837348f9e09031eec5f88626a49 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 10:19:01 -0500 Subject: [PATCH 03/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 7f0de9a..d55fc19 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -4,7 +4,7 @@ Name: ghc-%{pkg_name} Version: 0.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -75,6 +75,9 @@ mv text_cbits.h include/ %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 0.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Thu Apr 24 2014 Jens Petersen - 0.1.2-1 - shorten summary - exclude bundled zlib headers From ed4daafdc783c710af8e1c28a0610584fdf0d510 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 13 Jun 2014 10:51:07 +0900 Subject: [PATCH 04/44] enable tests --- ghc-streaming-commons.spec | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index d55fc19..5f92ab1 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -2,9 +2,11 @@ %global pkg_name streaming-commons +%bcond_with tests + Name: ghc-%{pkg_name} Version: 0.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -23,6 +25,12 @@ BuildRequires: ghc-text-devel BuildRequires: ghc-transformers-devel BuildRequires: ghc-unix-devel BuildRequires: ghc-zlib-devel +%if %{with tests} +BuildRequires: ghc-QuickCheck-devel +BuildRequires: ghc-async-devel +BuildRequires: ghc-deepseq-devel +BuildRequires: ghc-hspec-devel +%endif # End cabal-rpm deps %description @@ -59,6 +67,12 @@ mv text_cbits.h include/ %ghc_lib_install +%check +%if %{with tests} +%cabal test +%endif + + %post devel %ghc_pkg_recache @@ -75,6 +89,9 @@ mv text_cbits.h include/ %changelog +* Fri Jun 13 2014 Jens Petersen - 0.1.2-3 +- enable tests: cblrpm-0.8.11 + * Sat Jun 07 2014 Fedora Release Engineering - 0.1.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From bd23e7b30eea72676474fe08ce5121e34cee60f3 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Sat, 16 Aug 2014 15:54:21 +0000 Subject: [PATCH 05/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 5f92ab1..fdc9d96 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -89,6 +89,9 @@ mv text_cbits.h include/ %changelog +* Sat Aug 16 2014 Fedora Release Engineering - 0.1.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Fri Jun 13 2014 Jens Petersen - 0.1.2-3 - enable tests: cblrpm-0.8.11 From 6cc6ce12f2ad2ef2e23a62fdacd40d565cd50fe0 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 12 Dec 2014 18:49:09 +0900 Subject: [PATCH 06/44] update to 0.1.7.3 --- .gitignore | 1 + ghc-streaming-commons.spec | 11 +++++++++-- sources | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index b1bcb1b..fe3a077 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /streaming-commons-0.1.2.tar.gz +/streaming-commons-0.1.7.3.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index fdc9d96..86b87cf 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -5,8 +5,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.2 -Release: 4%{?dist} +Version: 0.1.7.3 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -21,6 +21,9 @@ BuildRequires: ghc-blaze-builder-devel BuildRequires: ghc-bytestring-devel BuildRequires: ghc-directory-devel BuildRequires: ghc-network-devel +BuildRequires: ghc-process-devel +BuildRequires: ghc-random-devel +BuildRequires: ghc-stm-devel BuildRequires: ghc-text-devel BuildRequires: ghc-transformers-devel BuildRequires: ghc-unix-devel @@ -86,9 +89,13 @@ mv text_cbits.h include/ %files devel -f %{name}-devel.files +%doc README.md %changelog +* Fri Dec 12 2014 Jens Petersen - 0.1.7.3-1 +- update to 0.1.7.3 + * Sat Aug 16 2014 Fedora Release Engineering - 0.1.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/sources b/sources index f039996..ca69245 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2a45aec3d91a27d0bb32750362059160 streaming-commons-0.1.2.tar.gz +eda0b094e9a7c0c38fb1cb88d90e2e68 streaming-commons-0.1.7.3.tar.gz From d533888170c97d0fb420d9ade2140c4cdd321012 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 3 Mar 2015 23:00:54 +0900 Subject: [PATCH 07/44] update to 0.1.10.0 --- .gitignore | 1 + ghc-streaming-commons.spec | 5 ++++- sources | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index fe3a077..0e2a72f 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /streaming-commons-0.1.2.tar.gz /streaming-commons-0.1.7.3.tar.gz +/streaming-commons-0.1.10.0.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 86b87cf..a2ac194 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -5,7 +5,7 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.7.3 +Version: 0.1.10.0 Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries @@ -93,6 +93,9 @@ mv text_cbits.h include/ %changelog +* Tue Mar 03 2015 Jens Petersen - 0.1.10.0-1 +- update to 0.1.10.0 + * Fri Dec 12 2014 Jens Petersen - 0.1.7.3-1 - update to 0.1.7.3 diff --git a/sources b/sources index ca69245..cba8818 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -eda0b094e9a7c0c38fb1cb88d90e2e68 streaming-commons-0.1.7.3.tar.gz +078165d1e6de104ed22c53f71f4246c7 streaming-commons-0.1.10.0.tar.gz From efa986a165986200e256e5a5b32c5be4df1856d9 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 17 Jun 2015 08:00:43 +0000 Subject: [PATCH 08/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index a2ac194..d0dbdcd 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.10.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -93,6 +93,9 @@ mv text_cbits.h include/ %changelog +* Wed Jun 17 2015 Fedora Release Engineering - 0.1.10.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Tue Mar 03 2015 Jens Petersen - 0.1.10.0-1 - update to 0.1.10.0 From 2c60685a68a9ca2950ce465ddf3a1c44107172b6 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 21:45:16 +0000 Subject: [PATCH 09/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index d0dbdcd..db16999 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.10.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -93,6 +93,9 @@ mv text_cbits.h include/ %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 0.1.10.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Wed Jun 17 2015 Fedora Release Engineering - 0.1.10.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From bcf73f22535de43151e4122492908aa46cb1e0ed Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 23 Jun 2016 12:52:19 +0900 Subject: [PATCH 10/44] update to 0.1.15.5 --- .gitignore | 1 + ghc-streaming-commons.spec | 17 +++++++++++------ sources | 2 +- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 0e2a72f..d04badc 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /streaming-commons-0.1.2.tar.gz /streaming-commons-0.1.7.3.tar.gz /streaming-commons-0.1.10.0.tar.gz +/streaming-commons-0.1.15.5.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index db16999..880d10d 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -5,18 +5,19 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.10.0 -Release: 3%{?dist} +Version: 0.1.15.5 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT -URL: http://hackage.haskell.org/package/%{pkg_name} -Source0: http://hackage.haskell.org/package/%{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-array-devel +BuildRequires: ghc-async-devel BuildRequires: ghc-blaze-builder-devel BuildRequires: ghc-bytestring-devel BuildRequires: ghc-directory-devel @@ -30,7 +31,6 @@ BuildRequires: ghc-unix-devel BuildRequires: ghc-zlib-devel %if %{with tests} BuildRequires: ghc-QuickCheck-devel -BuildRequires: ghc-async-devel BuildRequires: ghc-deepseq-devel BuildRequires: ghc-hspec-devel %endif @@ -69,6 +69,8 @@ mv text_cbits.h include/ %install %ghc_lib_install +rm %{buildroot}%{ghc_pkgdocdir}/LICENSE + %check %if %{with tests} @@ -85,7 +87,7 @@ mv text_cbits.h include/ %files -f %{name}.files -%doc LICENSE +%license LICENSE %files devel -f %{name}-devel.files @@ -93,6 +95,9 @@ mv text_cbits.h include/ %changelog +* Thu Jun 23 2016 Jens Petersen - 0.1.15.5-1 +- update to 0.1.15.5 + * Wed Feb 03 2016 Fedora Release Engineering - 0.1.10.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild diff --git a/sources b/sources index cba8818..42f5d46 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -078165d1e6de104ed22c53f71f4246c7 streaming-commons-0.1.10.0.tar.gz +07cce0f04f43cea127c3789b9d7da956 streaming-commons-0.1.15.5.tar.gz From afb53f265205579c8a3e2a7794a18f926701cad7 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 27 Sep 2016 19:15:51 +0900 Subject: [PATCH 11/44] no longer remove license; use cabal_test --- ghc-streaming-commons.spec | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 880d10d..0b92b31 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -69,13 +69,9 @@ mv text_cbits.h include/ %install %ghc_lib_install -rm %{buildroot}%{ghc_pkgdocdir}/LICENSE - %check -%if %{with tests} -%cabal test -%endif +%cabal_test %post devel From a1630784f34e96186837a7ac5cafd6f71a4668b0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 10:50:02 +0000 Subject: [PATCH 12/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 0b92b31..d65d704 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -6,7 +6,7 @@ Name: ghc-%{pkg_name} Version: 0.1.15.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -91,6 +91,9 @@ mv text_cbits.h include/ %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 0.1.15.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Jun 23 2016 Jens Petersen - 0.1.15.5-1 - update to 0.1.15.5 From af039c69b392a88966f651e878bde559098f2f03 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 22 Feb 2017 21:29:29 +0900 Subject: [PATCH 13/44] update to 0.1.17 --- .gitignore | 1 + ghc-streaming-commons.spec | 15 ++++++++++----- sources | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index d04badc..9659967 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /streaming-commons-0.1.7.3.tar.gz /streaming-commons-0.1.10.0.tar.gz /streaming-commons-0.1.15.5.tar.gz +/streaming-commons-0.1.17.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index d65d704..d3d3cfd 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -1,17 +1,19 @@ +# generated by cabal-rpm-0.11.1 # https://fedoraproject.org/wiki/Packaging:Haskell %global pkg_name streaming-commons +%global pkgver %{pkg_name}-%{version} %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.15.5 -Release: 2%{?dist} +Version: 0.1.17 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT 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 @@ -55,7 +57,7 @@ files. %prep -%setup -q -n %{pkg_name}-%{version} +%setup -q -n %{pkgver} # remove bundled zlib headers mv include/text_cbits.h . rm include/* @@ -87,10 +89,13 @@ mv text_cbits.h include/ %files devel -f %{name}-devel.files -%doc README.md +%doc ChangeLog.md README.md %changelog +* Wed Feb 22 2017 Jens Petersen - 0.1.17-1 +- update to 0.1.17 + * Fri Feb 10 2017 Fedora Release Engineering - 0.1.15.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild diff --git a/sources b/sources index 42f5d46..91f4e2e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -07cce0f04f43cea127c3789b9d7da956 streaming-commons-0.1.15.5.tar.gz +SHA512 (streaming-commons-0.1.17.tar.gz) = 50042c2431036e4045ba33a11babe42d37e7f16668e66c871076720881cc2e5d5243efba1ea608b8aef88be464d7e2c39c73be759f362905367f92f2b281373e From 9c54a70177c1bb7391c52586cabd105c1a4a2d95 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 09:57:22 +0000 Subject: [PATCH 14/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index d3d3cfd..4bd7acb 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.17 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -93,6 +93,9 @@ mv text_cbits.h include/ %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 0.1.17-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Wed Feb 22 2017 Jens Petersen - 0.1.17-1 - update to 0.1.17 From 63905853e2d7a3fb3a9ee865100cb054d4437250 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 21:33:06 +0000 Subject: [PATCH 15/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 4bd7acb..72dce78 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.17 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -93,6 +93,9 @@ mv text_cbits.h include/ %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 0.1.17-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 0.1.17-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From b6f75b83705072ed39b7ceabb84879bf807b545a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 14:12:03 +0100 Subject: [PATCH 16/44] refresh to cabal-rpm-0.12.1 --- ghc-streaming-commons.spec | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 72dce78..6f0232d 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.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 streaming-commons @@ -46,9 +46,12 @@ libraries, such as conduit and pipes. %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 @@ -76,6 +79,12 @@ mv text_cbits.h include/ %cabal_test +%post -p /sbin/ldconfig + + +%postun -p /sbin/ldconfig + + %post devel %ghc_pkg_recache From 4f4254c05b3eee632a8cc62a6463c802492b4683 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 24 Jan 2018 15:54:06 +0100 Subject: [PATCH 17/44] update to 0.1.18 --- .gitignore | 1 + ghc-streaming-commons.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 9659967..41f70b8 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /streaming-commons-0.1.10.0.tar.gz /streaming-commons-0.1.15.5.tar.gz /streaming-commons-0.1.17.tar.gz +/streaming-commons-0.1.18.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 6f0232d..ba8e091 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.17 -Release: 3%{?dist} +Version: 0.1.18 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -102,6 +102,9 @@ mv text_cbits.h include/ %changelog +* Wed Jan 24 2018 Jens Petersen - 0.1.18-1 +- update to 0.1.18 + * Wed Aug 02 2017 Fedora Release Engineering - 0.1.17-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild diff --git a/sources b/sources index 91f4e2e..8b1e728 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (streaming-commons-0.1.17.tar.gz) = 50042c2431036e4045ba33a11babe42d37e7f16668e66c871076720881cc2e5d5243efba1ea608b8aef88be464d7e2c39c73be759f362905367f92f2b281373e +SHA512 (streaming-commons-0.1.18.tar.gz) = da9f4217241e41322b414c1e0171c9eb110fb04d3a593d5aa584b2296d564c77686e58ca6526e7b40d45ad83c64897a8b427b890cfd68667cad07bda21822fb1 From e75e456c1cc75d4cca2b6a7432b4accf9db70d64 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 4 Feb 2018 01:03:29 +0900 Subject: [PATCH 18/44] drop ldconfig scriptlets --- ghc-streaming-commons.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index ba8e091..3fc849a 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -79,12 +79,6 @@ mv text_cbits.h include/ %cabal_test -%post -p /sbin/ldconfig - - -%postun -p /sbin/ldconfig - - %post devel %ghc_pkg_recache From 2563a998bd888a8e01cbf66a5f88d32e52af8aca Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 12:11:00 +0000 Subject: [PATCH 19/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 3fc849a..caa2cd7 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.18 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -96,6 +96,9 @@ mv text_cbits.h include/ %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 0.1.18-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Wed Jan 24 2018 Jens Petersen - 0.1.18-1 - update to 0.1.18 From fa66b5d312e0c6672370dc5699722cf188d15982 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 13 Jul 2018 02:09:07 +0000 Subject: [PATCH 20/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index caa2cd7..c8e4628 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.18 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -96,6 +96,9 @@ mv text_cbits.h include/ %changelog +* Fri Jul 13 2018 Fedora Release Engineering - 0.1.18-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 0.1.18-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 1f86dcd41453a3af827ba1e50ba57d2d415eef07 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 22 Jul 2018 23:30:12 +0900 Subject: [PATCH 21/44] update to 0.1.19 --- .gitignore | 1 + ghc-streaming-commons.spec | 9 ++++++--- sources | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 41f70b8..0206ee4 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /streaming-commons-0.1.15.5.tar.gz /streaming-commons-0.1.17.tar.gz /streaming-commons-0.1.18.tar.gz +/streaming-commons-0.1.19.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index c8e4628..2ae3f36 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.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 streaming-commons @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.18 -Release: 3%{?dist} +Version: 0.1.19 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -96,6 +96,9 @@ mv text_cbits.h include/ %changelog +* Sun Jul 22 2018 Jens Petersen - 0.1.19-1 +- update to 0.1.19 + * Fri Jul 13 2018 Fedora Release Engineering - 0.1.18-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index 8b1e728..cbf86a3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (streaming-commons-0.1.18.tar.gz) = da9f4217241e41322b414c1e0171c9eb110fb04d3a593d5aa584b2296d564c77686e58ca6526e7b40d45ad83c64897a8b427b890cfd68667cad07bda21822fb1 +SHA512 (streaming-commons-0.1.19.tar.gz) = 218e31ca754aa9908303a1b1c4540e956dbcb301fca63b4fe20eaf121c7f6d52247c3eb065940c6a22b185c30161b6a134499cc80f2f0856235b119b9baf244d From 8cdb44c67c41e55233a1d6bf67832f5016d677b5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 22:03:27 +0000 Subject: [PATCH 22/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 2ae3f36..7405a0a 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.1.19 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -96,6 +96,9 @@ mv text_cbits.h include/ %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 0.1.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sun Jul 22 2018 Jens Petersen - 0.1.19-1 - update to 0.1.19 From b184b112efb146494dfed6cbbebd4c43c63e1b73 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sun, 17 Feb 2019 22:47:14 +0800 Subject: [PATCH 23/44] refresh to cabal-rpm-0.13 --- ghc-streaming-commons.spec | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 7405a0a..e641c99 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.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 streaming-commons @@ -8,16 +8,18 @@ Name: ghc-%{pkg_name} Version: 0.1.19 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +# End cabal-rpm sources +# Begin cabal-rpm deps: BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros -# Begin cabal-rpm deps: BuildRequires: ghc-array-devel BuildRequires: ghc-async-devel BuildRequires: ghc-blaze-builder-devel @@ -60,7 +62,9 @@ files. %prep +# Begin cabal-rpm setup: %setup -q -n %{pkgver} +# End cabal-rpm setup # remove bundled zlib headers mv include/text_cbits.h . rm include/* @@ -68,11 +72,15 @@ mv text_cbits.h include/ %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 @@ -88,7 +96,9 @@ mv text_cbits.h include/ %files -f %{name}.files +# Begin cabal-rpm files: %license LICENSE +# End cabal-rpm files %files devel -f %{name}-devel.files @@ -96,6 +106,9 @@ mv text_cbits.h include/ %changelog +* Sun Feb 17 2019 Jens Petersen - 0.1.19-3 +- refresh to cabal-rpm-0.13 + * Thu Jan 31 2019 Fedora Release Engineering - 0.1.19-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 14fec7503368b402bbb0d8e57ee54ff77f724fd5 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 21 Feb 2019 12:21:57 +0800 Subject: [PATCH 24/44] update to 0.2.1.0 --- .gitignore | 1 + ghc-streaming-commons.spec | 8 +++++--- sources | 2 +- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 0206ee4..fadc3c3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /streaming-commons-0.1.17.tar.gz /streaming-commons-0.1.18.tar.gz /streaming-commons-0.1.19.tar.gz +/streaming-commons-0.2.1.0.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index e641c99..0000e5c 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.1.19 -Release: 3%{?dist} +Version: 0.2.1.0 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -22,7 +22,6 @@ BuildRequires: ghc-Cabal-devel BuildRequires: ghc-rpm-macros BuildRequires: ghc-array-devel BuildRequires: ghc-async-devel -BuildRequires: ghc-blaze-builder-devel BuildRequires: ghc-bytestring-devel BuildRequires: ghc-directory-devel BuildRequires: ghc-network-devel @@ -106,6 +105,9 @@ mv text_cbits.h include/ %changelog +* Thu Feb 21 2019 Jens Petersen - 0.2.1.0-1 +- update to 0.2.1.0 + * Sun Feb 17 2019 Jens Petersen - 0.1.19-3 - refresh to cabal-rpm-0.13 diff --git a/sources b/sources index cbf86a3..8b6c633 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (streaming-commons-0.1.19.tar.gz) = 218e31ca754aa9908303a1b1c4540e956dbcb301fca63b4fe20eaf121c7f6d52247c3eb065940c6a22b185c30161b6a134499cc80f2f0856235b119b9baf244d +SHA512 (streaming-commons-0.2.1.0.tar.gz) = dab004b29152e4e0f6901942fa3791ab670e51f88bd3b5168ba6e99b56565696ca42f7909c99a3fb390602506ae26049eb9b020c88ff70d4c38eed8739559c32 From e599e86ff15408b3313bea884a349be8c08a058e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 25 Jul 2019 03:02:06 +0000 Subject: [PATCH 25/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 0000e5c..8c2c3db 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -105,6 +105,9 @@ mv text_cbits.h include/ %changelog +* Thu Jul 25 2019 Fedora Release Engineering - 0.2.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Feb 21 2019 Jens Petersen - 0.2.1.0-1 - update to 0.2.1.0 From 46b307b1cb833542f7717ef1317ac6901a7da055 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 04:25:59 +0000 Subject: [PATCH 26/44] refresh to cabal-rpm-1.0.0: lib doc/prof subpkgs and bin static BRs --- ghc-streaming-commons.spec | 48 ++++++++++++++++++++++++++++---------- 1 file changed, 36 insertions(+), 12 deletions(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 8c2c3db..db75b06 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.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 streaming-commons @@ -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-array-devel BuildRequires: ghc-async-devel @@ -47,11 +53,8 @@ libraries, such as conduit and pipes. %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} @@ -60,6 +63,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} @@ -86,14 +108,6 @@ mv text_cbits.h include/ %cabal_test -%post devel -%ghc_pkg_recache - - -%postun devel -%ghc_pkg_recache - - %files -f %{name}.files # Begin cabal-rpm files: %license LICENSE @@ -104,6 +118,16 @@ mv text_cbits.h include/ %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 Jul 25 2019 Fedora Release Engineering - 0.2.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 463bb2cbeb6c229c1f251a00280db63491112a22 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 25 Jul 2019 16:41:37 +0000 Subject: [PATCH 27/44] update to 0.2.1.1 --- .gitignore | 1 + ghc-streaming-commons.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index fadc3c3..93c7f4a 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ /streaming-commons-0.1.18.tar.gz /streaming-commons-0.1.19.tar.gz /streaming-commons-0.2.1.0.tar.gz +/streaming-commons-0.2.1.1.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index db75b06..7f8b580 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.2.1.0 -Release: 2%{?dist} +Version: 0.2.1.1 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -129,6 +129,9 @@ mv text_cbits.h include/ %changelog +* Thu Jul 25 2019 Jens Petersen - 0.2.1.1-1 +- update to 0.2.1.1 + * Thu Jul 25 2019 Fedora Release Engineering - 0.2.1.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild diff --git a/sources b/sources index 8b6c633..d4d90f7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (streaming-commons-0.2.1.0.tar.gz) = dab004b29152e4e0f6901942fa3791ab670e51f88bd3b5168ba6e99b56565696ca42f7909c99a3fb390602506ae26049eb9b020c88ff70d4c38eed8739559c32 +SHA512 (streaming-commons-0.2.1.1.tar.gz) = 2096bb5eb12fac46385aa01e2b42fdbcc795c955a3feb3ef11659e765f50a927c21baaac58c4813376c2449d263a14a3ef4c11725307487696076b3f92b0b70b From a383d79710e8449da92df9e6dcc7cfde891b8fc8 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Mon, 5 Aug 2019 18:31:59 +0800 Subject: [PATCH 28/44] BR prof for lib and static for executable --- ghc-streaming-commons.spec | 34 +++++++++++++++------------------- 1 file changed, 15 insertions(+), 19 deletions(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 7f8b580..139dd6c 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.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 streaming-commons @@ -19,25 +19,20 @@ 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-array-devel -BuildRequires: ghc-async-devel -BuildRequires: ghc-bytestring-devel -BuildRequires: ghc-directory-devel -BuildRequires: ghc-network-devel -BuildRequires: ghc-process-devel -BuildRequires: ghc-random-devel -BuildRequires: ghc-stm-devel -BuildRequires: ghc-text-devel -BuildRequires: ghc-transformers-devel -BuildRequires: ghc-unix-devel -BuildRequires: ghc-zlib-devel +BuildRequires: ghc-array-prof +BuildRequires: ghc-async-prof +BuildRequires: ghc-base-prof +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-directory-prof +BuildRequires: ghc-network-prof +BuildRequires: ghc-process-prof +BuildRequires: ghc-random-prof +BuildRequires: ghc-stm-prof +BuildRequires: ghc-text-prof +BuildRequires: ghc-transformers-prof +BuildRequires: ghc-unix-prof +BuildRequires: ghc-zlib-prof %if %{with tests} BuildRequires: ghc-QuickCheck-devel BuildRequires: ghc-deepseq-devel @@ -53,6 +48,7 @@ libraries, such as conduit and pipes. %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 a938daa0aa9f464ead94577da70a0638188f8bd1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 21:25:18 +0000 Subject: [PATCH 29/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 139dd6c..5b0ebab 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -125,6 +125,9 @@ mv text_cbits.h include/ %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 0.2.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Thu Jul 25 2019 Jens Petersen - 0.2.1.1-1 - update to 0.2.1.1 From 23ebcb992a2076ca50b8848b86251023a92f23bc Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Sat, 8 Feb 2020 22:52:07 +0800 Subject: [PATCH 30/44] refresh to cabal-rpm-2.0.2 --- ghc-streaming-commons.spec | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 5b0ebab..ffab297 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.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 streaming-commons @@ -62,6 +62,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. @@ -72,6 +73,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. @@ -104,6 +106,16 @@ mv text_cbits.h include/ %cabal_test +%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 @@ -116,6 +128,7 @@ mv text_cbits.h include/ %if %{with haddock} %files doc -f %{name}-doc.files +%license LICENSE %endif From 4392016d920490f001b08fd756d31b8158f404c6 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 14 Feb 2020 12:02:58 +0800 Subject: [PATCH 31/44] update to 0.2.1.2 --- .gitignore | 1 + ghc-streaming-commons.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 93c7f4a..ed25189 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ /streaming-commons-0.1.19.tar.gz /streaming-commons-0.2.1.0.tar.gz /streaming-commons-0.2.1.1.tar.gz +/streaming-commons-0.2.1.2.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index ffab297..1b48182 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.2.1.1 -Release: 2%{?dist} +Version: 0.2.1.2 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -138,6 +138,9 @@ mv text_cbits.h include/ %changelog +* Fri Feb 14 2020 Jens Petersen - 0.2.1.2-1 +- update to 0.2.1.2 + * Tue Jan 28 2020 Fedora Release Engineering - 0.2.1.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index d4d90f7..94d1c17 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (streaming-commons-0.2.1.1.tar.gz) = 2096bb5eb12fac46385aa01e2b42fdbcc795c955a3feb3ef11659e765f50a927c21baaac58c4813376c2449d263a14a3ef4c11725307487696076b3f92b0b70b +SHA512 (streaming-commons-0.2.1.2.tar.gz) = 7b6f39237f9ac13ca2d8205a43fee17c6edfe6609a1119903f8648aed151ef92779af7a8dfdfb108dea679cd26c83dfb5d21285d51f91dec0ad10debd100b8e7 From 6e1986e7c7c23c396e778a51d84b46d6daa88943 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Thu, 4 Jun 2020 19:28:22 +0800 Subject: [PATCH 32/44] refresh to cabal-rpm-2.0.5 --- ghc-streaming-commons.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 1b48182..18ff644 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.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 streaming-commons %global pkgver %{pkg_name}-%{version} From e93b7068379e6f0ff9a45a82222ccc20e5b12790 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 19 Jun 2020 16:57:00 +0800 Subject: [PATCH 33/44] refresh to cabal-rpm-2.0.6 --- ghc-streaming-commons.spec | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 18ff644..e2be476 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.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 streaming-commons @@ -106,16 +106,6 @@ mv text_cbits.h include/ %cabal_test -%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 d9aaf4f4af5ee8044d5382758b5313baccc4d5b9 Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 17 Jul 2020 18:39:09 +0800 Subject: [PATCH 34/44] bump release --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index e2be476..7b7a7e3 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -128,6 +128,9 @@ mv text_cbits.h include/ %changelog +* Fri Jul 17 2020 Jens Petersen - 0.2.1.2-2 +- refresh to cabal-rpm-2.0.6 + * Fri Feb 14 2020 Jens Petersen - 0.2.1.2-1 - update to 0.2.1.2 From 424b9a9bdcb7e9581f6a9bac7f18f084508bbc5c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 19:41:36 +0000 Subject: [PATCH 35/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 7b7a7e3..f7a166c 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -128,6 +128,9 @@ mv text_cbits.h include/ %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 0.2.1.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jul 17 2020 Jens Petersen - 0.2.1.2-2 - refresh to cabal-rpm-2.0.6 From c2238be624acf42b56ab6e2fa6274c4a6882b11a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 1 Aug 2020 01:30:51 +0000 Subject: [PATCH 36/44] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index f7a166c..5d1bf08 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -128,6 +128,10 @@ mv text_cbits.h include/ %changelog +* Sat Aug 01 2020 Fedora Release Engineering - 0.2.1.2-4 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 0.2.1.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 594ff46d62ddfa8e086e3a6e37cd7e5bf8f4547b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 26 Jan 2021 07:45:28 +0000 Subject: [PATCH 37/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 5d1bf08..564a355 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.2 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -128,6 +128,9 @@ mv text_cbits.h include/ %changelog +* Tue Jan 26 2021 Fedora Release Engineering - 0.2.1.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Sat Aug 01 2020 Fedora Release Engineering - 0.2.1.2-4 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From c757e809567734163f2593c8839d0be009a51fbf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 22 Jul 2021 01:17:05 +0000 Subject: [PATCH 38/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 564a355..002bda8 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.1.2 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -128,6 +128,9 @@ mv text_cbits.h include/ %changelog +* Thu Jul 22 2021 Fedora Release Engineering - 0.2.1.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Tue Jan 26 2021 Fedora Release Engineering - 0.2.1.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 17cd33ce53b57aba84cf307c27640585cb0b322c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 29 Jan 2021 10:52:30 +0800 Subject: [PATCH 39/44] update to 0.2.2.1 --- .gitignore | 1 + ghc-streaming-commons.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index ed25189..2cb4f5e 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ /streaming-commons-0.2.1.0.tar.gz /streaming-commons-0.2.1.1.tar.gz /streaming-commons-0.2.1.2.tar.gz +/streaming-commons-0.2.2.1.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 002bda8..0283c16 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.2.1.2 -Release: 6%{?dist} +Version: 0.2.2.1 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -128,6 +128,9 @@ mv text_cbits.h include/ %changelog +* Thu Aug 5 2021 Jens Petersen - 0.2.2.1-1 +- update to 0.2.2.1 + * Thu Jul 22 2021 Fedora Release Engineering - 0.2.1.2-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild diff --git a/sources b/sources index 94d1c17..3e1b402 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (streaming-commons-0.2.1.2.tar.gz) = 7b6f39237f9ac13ca2d8205a43fee17c6edfe6609a1119903f8648aed151ef92779af7a8dfdfb108dea679cd26c83dfb5d21285d51f91dec0ad10debd100b8e7 +SHA512 (streaming-commons-0.2.2.1.tar.gz) = 6dc1141070f28ca278ea1ec45a2b1b4fca34c06459dfe975dd2787e08a3e875aa22efbbb4ac905d3161e30b9af20df2d5d89325abe9e2181d7e50239388752a1 From 818c6089fbd0e6cc6b82cb00c478eb9ec0b09b1c Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Fri, 25 Jun 2021 13:44:07 +0800 Subject: [PATCH 40/44] cabal-rpm-2.0.9 --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 0283c16..172eb44 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.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 streaming-commons @@ -63,6 +63,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. @@ -103,7 +104,9 @@ mv text_cbits.h include/ %check +%if %{with tests} %cabal_test +%endif %files -f %{name}.files From 4807b65bbb891d6edd953581e73b16f90cf3bd32 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 20 Jan 2022 05:34:36 +0000 Subject: [PATCH 41/44] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 172eb44..c6d5c34 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -131,6 +131,9 @@ mv text_cbits.h include/ %changelog +* Thu Jan 20 2022 Fedora Release Engineering - 0.2.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Thu Aug 5 2021 Jens Petersen - 0.2.2.1-1 - update to 0.2.2.1 From 1c95ad19173acf68cd4cf6c8bd4a5e1d426ed10a Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Wed, 9 Mar 2022 00:28:27 +0800 Subject: [PATCH 42/44] bump release --- ghc-streaming-commons.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index c6d5c34..8c03359 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -8,7 +8,7 @@ Name: ghc-%{pkg_name} Version: 0.2.2.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -131,6 +131,9 @@ mv text_cbits.h include/ %changelog +* Tue Mar 08 2022 Jens Petersen - 0.2.2.1-3 +- rebuild + * Thu Jan 20 2022 Fedora Release Engineering - 0.2.2.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 1a3854c44f40f7873926ca8c940485ed4b32bf0d Mon Sep 17 00:00:00 2001 From: Jens Petersen Date: Tue, 7 Jun 2022 14:45:33 +0800 Subject: [PATCH 43/44] update to 0.2.2.4 --- .gitignore | 1 + ghc-streaming-commons.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 2cb4f5e..9059164 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ /streaming-commons-0.2.1.1.tar.gz /streaming-commons-0.2.1.2.tar.gz /streaming-commons-0.2.2.1.tar.gz +/streaming-commons-0.2.2.4.tar.gz diff --git a/ghc-streaming-commons.spec b/ghc-streaming-commons.spec index 8c03359..e70c7c5 100644 --- a/ghc-streaming-commons.spec +++ b/ghc-streaming-commons.spec @@ -7,8 +7,8 @@ %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.2.2.1 -Release: 3%{?dist} +Version: 0.2.2.4 +Release: 1%{?dist} Summary: Common lower-level functions for streaming data libraries License: MIT @@ -131,6 +131,9 @@ mv text_cbits.h include/ %changelog +* Tue Jun 07 2022 Jens Petersen - 0.2.2.4-1 +- https://hackage.haskell.org/package/streaming-commons-0.2.2.4/changelog + * Tue Mar 08 2022 Jens Petersen - 0.2.2.1-3 - rebuild diff --git a/sources b/sources index 3e1b402..ca0da18 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (streaming-commons-0.2.2.1.tar.gz) = 6dc1141070f28ca278ea1ec45a2b1b4fca34c06459dfe975dd2787e08a3e875aa22efbbb4ac905d3161e30b9af20df2d5d89325abe9e2181d7e50239388752a1 +SHA512 (streaming-commons-0.2.2.4.tar.gz) = e552bba766e5b816cbd448d1cec86c5c7593f3f13c6da42c74ebf2c9698be3a3174dd922cf70de1b4940b53e580f396a51cebff6b62db305fb0fb48a5c7658bb From 6302b86e363bfc308ab403d3f19e53a91280ca96 Mon Sep 17 00:00:00 2001 From: MSVSphere Packaging Team Date: Mon, 30 Oct 2023 21:57:10 +0300 Subject: [PATCH 44/44] 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 ca0da18..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (streaming-commons-0.2.2.4.tar.gz) = e552bba766e5b816cbd448d1cec86c5c7593f3f13c6da42c74ebf2c9698be3a3174dd922cf70de1b4940b53e580f396a51cebff6b62db305fb0fb48a5c7658bb