From 6a0df5df13be1e747e555af9d59a2b55bc8cb523 Mon Sep 17 00:00:00 2001 From: Alexey Lyubimov Date: Fri, 18 Aug 2023 21:15:55 +0300 Subject: [PATCH] import ghc-async-2.2.4-1.el9 --- .ghc-async.metadata | 1 + .gitignore | 1 + SOURCES/async-2.2.4.cabal | 112 ++++++++++++++++++++ SPECS/ghc-async.spec | 215 ++++++++++++++++++++++++++++++++++++++ 4 files changed, 329 insertions(+) create mode 100644 .ghc-async.metadata create mode 100644 .gitignore create mode 100644 SOURCES/async-2.2.4.cabal create mode 100644 SPECS/ghc-async.spec diff --git a/.ghc-async.metadata b/.ghc-async.metadata new file mode 100644 index 0000000..ff45b50 --- /dev/null +++ b/.ghc-async.metadata @@ -0,0 +1 @@ +61b597f7781c601178b11e59862f8144b7b40412 SOURCES/async-2.2.4.tar.gz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dfdb355 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/async-2.2.4.tar.gz diff --git a/SOURCES/async-2.2.4.cabal b/SOURCES/async-2.2.4.cabal new file mode 100644 index 0000000..66ef9d5 --- /dev/null +++ b/SOURCES/async-2.2.4.cabal @@ -0,0 +1,112 @@ +name: async +version: 2.2.4 +x-revision: 1 +-- don't forget to update ./changelog.md! +synopsis: Run IO operations asynchronously and wait for their results + +description: + This package provides a higher-level interface over + threads, in which an @Async a@ is a concurrent + thread that will eventually deliver a value of + type @a@. The package provides ways to create + @Async@ computations, wait for their results, and + cancel them. + . + Using @Async@ is safer than using threads in two + ways: + . + * When waiting for a thread to return a result, + if the thread dies with an exception then the + caller must either re-throw the exception + ('wait') or handle it ('waitCatch'); the + exception cannot be ignored. + . + * The API makes it possible to build a tree of + threads that are automatically killed when + their parent dies (see 'withAsync'). + +license: BSD3 +license-file: LICENSE +author: Simon Marlow +maintainer: Simon Marlow +copyright: (c) Simon Marlow 2012 +category: Concurrency +build-type: Simple +cabal-version: >=1.10 +homepage: https://github.com/simonmar/async +bug-reports: https://github.com/simonmar/async/issues +tested-with: + GHC == 9.2.0.20210821 + GHC == 9.0.1 + GHC == 8.10.4 + GHC == 8.8.4 + GHC == 8.6.5 + GHC == 8.4.4 + GHC == 8.2.2 + GHC == 8.0.2 + GHC == 7.10.3 + GHC == 7.8.4 + GHC == 7.6.3 + GHC == 7.4.2 + GHC == 7.2.2 + GHC == 7.0.4 + +extra-source-files: + changelog.md + bench/race.hs + +source-repository head + type: git + location: https://github.com/simonmar/async.git + +library + default-language: Haskell2010 + other-extensions: CPP, MagicHash, RankNTypes, UnboxedTuples + if impl(ghc>=7.1) + other-extensions: Trustworthy + exposed-modules: Control.Concurrent.Async + build-depends: base >= 4.3 && < 4.17, + hashable >= 1.1.2.0 && < 1.5, + stm >= 2.2 && < 2.6 + +test-suite test-async + default-language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: test + main-is: test-async.hs + build-depends: base >= 4.3 && < 4.17, + async, + stm, + test-framework, + test-framework-hunit, + HUnit + +flag bench + default: False + +executable concasync + if !flag(bench) + buildable: False + default-language: Haskell2010 + hs-source-dirs: bench + main-is: concasync.hs + build-depends: base, async, stm + ghc-options: -O2 + +executable conccancel + if !flag(bench) + buildable: False + default-language: Haskell2010 + hs-source-dirs: bench + main-is: conccancel.hs + build-depends: base, async, stm + ghc-options: -O2 -threaded + +executable race + if !flag(bench) + buildable: False + default-language: Haskell2010 + hs-source-dirs: bench + main-is: race.hs + build-depends: base, async, stm + ghc-options: -O2 -threaded diff --git a/SPECS/ghc-async.spec b/SPECS/ghc-async.spec new file mode 100644 index 0000000..a1f3d85 --- /dev/null +++ b/SPECS/ghc-async.spec @@ -0,0 +1,215 @@ +# generated by cabal-rpm-2.0.9 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name async +%global pkgver %{pkg_name}-%{version} + +# testsuite missing deps: test-framework test-framework-hunit + +Name: ghc-%{pkg_name} +Version: 2.2.4 +Release: 1%{?dist} +Summary: Run IO operations asynchronously and wait for their results + +License: BSD +Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +Source1: https://hackage.haskell.org/package/%{pkgver}/%{pkg_name}.cabal#/%{pkgver}.cabal +# End cabal-rpm sources + +# Begin cabal-rpm deps: +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-base-prof +BuildRequires: ghc-hashable-prof +BuildRequires: ghc-stm-prof +# End cabal-rpm deps + +%description +This package provides a higher-level interface over threads, in which an +'Async a' is a concurrent thread that will eventually deliver a value of +type 'a'. The package provides ways to create "Async" computations, +wait for their results, and cancel them. + +Using 'Async' is safer than using threads in two ways: + +* When waiting for a thread to return a result, if the thread dies with an +exception then the caller must either re-throw the exception ('wait') or handle +it ('waitCatch'); the exception cannot be ignored. + +* The API makes it possible to build a tree of threads that are automatically +killed when their parent dies (see 'withAsync'). + + +%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 +Requires: %{name}%{?_isa} = %{version}-%{release} + +%description devel +This package provides the Haskell %{pkg_name} library development files. + + +%if %{with haddock} +%package doc +Summary: Haskell %{pkg_name} library documentation +BuildArch: noarch +Requires: ghc-filesystem + +%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} +Supplements: (%{name}-devel and ghc-prof) + +%description prof +This package provides the Haskell %{pkg_name} profiling library. +%endif + + +%prep +# Begin cabal-rpm setup: +%setup -q -n %{pkgver} +cp -bp %{SOURCE1} %{pkg_name}.cabal +# 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 + + +%files -f %{name}.files +# Begin cabal-rpm files: +%license LICENSE +# End cabal-rpm files + + +%files devel -f %{name}-devel.files +%doc changelog.md + + +%if %{with haddock} +%files doc -f %{name}-doc.files +%license LICENSE +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + +%changelog +* Fri Aug 18 2023 Alexey Lyubimov - 2.2.4-1 +- Rebuilt for MSVSphere 9.2 + +* Tue Jun 07 2022 Jens Petersen - 2.2.4-1 +- https://hackage.haskell.org/package/async-2.2.4/changelog + +* Tue Mar 08 2022 Jens Petersen - 2.2.3-3 +- rebuild + +* Thu Jan 20 2022 Fedora Release Engineering - 2.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Thu Aug 5 2021 Jens Petersen - 2.2.3-1 +- update to 2.2.3 + +* Thu Jul 22 2021 Fedora Release Engineering - 2.2.2-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Tue Jan 26 2021 Fedora Release Engineering - 2.2.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 2.2.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Jul 17 2020 Jens Petersen - 2.2.2-3 +- refresh to cabal-rpm-2.0.6 + +* Tue Jan 28 2020 Fedora Release Engineering - 2.2.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jul 25 2019 Jens Petersen - 2.2.2-1 +- update to 2.2.2 + +* Thu Jul 25 2019 Fedora Release Engineering - 2.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu Feb 21 2019 Jens Petersen - 2.2.1-1 +- update to 2.2.1 + +* Sun Feb 17 2019 Jens Petersen - 2.1.1.1-6 +- refresh to cabal-rpm-0.13 + +* Thu Jan 31 2019 Fedora Release Engineering - 2.1.1.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Jul 28 2018 Jens Petersen - 2.1.1.1-4 +- rebuild + +* Fri Jul 13 2018 Fedora Release Engineering - 2.1.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 2.1.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 24 2018 Jens Petersen - 2.1.1.1-1 +- update to 2.1.1.1 + +* Wed Aug 02 2017 Fedora Release Engineering - 2.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 2.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Feb 22 2017 Jens Petersen - 2.1.1-1 +- update to 2.1.1 + +* Fri Feb 10 2017 Fedora Release Engineering - 2.1.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Jun 23 2016 Jens Petersen - 2.1.0-1 +- update to 2.1.0 + +* Tue Jun 7 2016 Jens Petersen - 2.0.2-1 +- update to 2.0.2 + +* Wed Feb 03 2016 Fedora Release Engineering - 2.0.1.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 2.0.1.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Fri Aug 8 2014 Jens Petersen - 2.0.1.5-1 +- update to 2.0.1.5 + +* Tue Jul 8 2014 Jens Petersen - 2.0.1.4-31 +- f21 rebuild + +* Tue Feb 4 2014 Jens Petersen - 2.0.1.4-30 +- bump release over current haskell-platform + +* Thu Nov 28 2013 Jens Petersen - 2.0.1.4-27 +- separate source package from haskell-platform + +* Thu Nov 28 2013 Fedora Haskell SIG - 2.0.1.4 +- spec file generated by cabal-rpm-0.8.7