From 647e7d7b6aa996177be74536b1a706f7a1ce5563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Thu, 15 Oct 2020 01:08:43 +0200 Subject: [PATCH] RHEL 9.0.0 Alpha bootstrap The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/ghc-dlist#d6cda72afc0cb596672472c284335c085bdf562b --- .gitignore | 10 ++ dlist-0.8.0.6.cabal | 55 +++++++++++ ghc-dlist.spec | 223 ++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 4 files changed, 289 insertions(+) create mode 100644 dlist-0.8.0.6.cabal create mode 100644 ghc-dlist.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..e80f4aa 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,10 @@ +/dlist-0.5.tar.gz +/dlist-0.7.1.tar.gz +/dlist-0.7.1.2.tar.gz +/dlist-0.8.0.2.tar.gz +/dlist-0.8.0.3.tar.gz +/dlist-0.8.0.4.tar.gz +/dlist-0.8.0.5.tar.gz +/dlist-0.8.0.6.tar.gz +/dlist-0.8.0.7.tar.gz +/dlist-0.8.0.8.tar.gz diff --git a/dlist-0.8.0.6.cabal b/dlist-0.8.0.6.cabal new file mode 100644 index 0000000..a4e2a44 --- /dev/null +++ b/dlist-0.8.0.6.cabal @@ -0,0 +1,55 @@ +name: dlist +version: 0.8.0.6 +x-revision: 1 +synopsis: Difference lists +description: + Difference lists are a list-like type supporting O(1) append. This is + particularly useful for efficient logging and pretty printing (e.g. with the + Writer monad), where list append quickly becomes too expensive. +category: Data +license: BSD3 +license-file: LICENSE +author: Don Stewart +maintainer: Sean Leather +copyright: 2006-2009 Don Stewart, 2013-2016 Sean Leather +homepage: https://github.com/spl/dlist +bug-reports: https://github.com/spl/dlist/issues +extra-source-files: README.md, + ChangeLog.md +build-type: Simple +cabal-version: >= 1.9.2 +tested-with: GHC==7.0.4 + GHC==7.2.2 + GHC==7.4.2 + GHC==7.6.3 + GHC==7.8.4 + GHC==7.10.3 + GHC==8.0.1 + +source-repository head + type: git + location: git://github.com/spl/dlist.git + +library + -- fail is not a method of Monad in base-4.13 + build-depends: base <4.13 + + build-depends: + base >= 4 && < 5, + deepseq >= 1.1 && < 2 + extensions: CPP + exposed-modules: Data.DList + ghc-options: -Wall + +test-suite test + type: exitcode-stdio-1.0 + main-is: Main.hs + other-modules: OverloadedStrings + hs-source-dirs: tests + build-depends: dlist, + base, + Cabal, + -- QuickCheck-2.10 is the first version supporting + -- base-4.9 (ghc-8) without the Arbitrary NonEmpty + -- instance, which we include ourselves. + QuickCheck >= 2.10 && < 2.14 diff --git a/ghc-dlist.spec b/ghc-dlist.spec new file mode 100644 index 0000000..a1873cb --- /dev/null +++ b/ghc-dlist.spec @@ -0,0 +1,223 @@ +# generated by cabal-rpm-2.0.6 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name dlist +%global pkgver %{pkg_name}-%{version} + +%bcond_without tests + +Name: ghc-%{pkg_name} +Version: 0.8.0.8 +Release: 2%{?dist} +Summary: Difference lists + +License: BSD +Url: https://hackage.haskell.org/package/%{pkg_name} +# Begin cabal-rpm sources: +Source0: https://hackage.haskell.org/package/%{pkgver}/%{pkgver}.tar.gz +# End cabal-rpm sources + +# Begin cabal-rpm deps: +BuildRequires: ghc-Cabal-devel +BuildRequires: ghc-rpm-macros +BuildRequires: ghc-base-prof +BuildRequires: ghc-deepseq-prof +%if %{with tests} +BuildRequires: ghc-QuickCheck-devel +%endif +# End cabal-rpm deps + +%description +Difference lists are a list-like type supporting O(1) append. This is +particularly useful for efficient logging and pretty printing (e.g. +with the Writer monad), where list append quickly becomes too expensive. + + +%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 + +%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} +# End cabal-rpm setup + + +%build +# Begin cabal-rpm build: +%ghc_lib_build +# End cabal-rpm build + + +%install +# Begin cabal-rpm install +%ghc_lib_install +# End cabal-rpm install + + +%check +%cabal_test + + +%files -f %{name}.files +# Begin cabal-rpm files: +%license LICENSE +# End cabal-rpm files + + +%files devel -f %{name}-devel.files +%doc ChangeLog.md README.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 +* Mon Jul 27 2020 Fedora Release Engineering - 0.8.0.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Sun Jun 07 2020 Jens Petersen - 0.8.0.8-1 +- update to 0.8.0.8 + +* Fri Feb 14 2020 Jens Petersen - 0.8.0.7-1 +- update to 0.8.0.7 + +* Tue Jan 28 2020 Fedora Release Engineering - 0.8.0.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jul 25 2019 Jens Petersen - 0.8.0.6-1 +- update to 0.8.0.6 + +* Thu Jul 25 2019 Fedora Release Engineering - 0.8.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Thu Feb 21 2019 Jens Petersen - 0.8.0.5-1 +- update to 0.8.0.5 + +* Sun Feb 17 2019 Jens Petersen - 0.8.0.4-3 +- refresh to cabal-rpm-0.13 + +* Thu Jan 31 2019 Fedora Release Engineering - 0.8.0.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jul 22 2018 Jens Petersen - 0.8.0.4-1 +- update to 0.8.0.4 + +* Fri Jul 13 2018 Fedora Release Engineering - 0.8.0.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 0.8.0.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 24 2018 Jens Petersen - 0.8.0.3-1 +- update to 0.8.0.3 + +* Wed Aug 02 2017 Fedora Release Engineering - 0.8.0.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 0.8.0.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Tue Feb 21 2017 Jens Petersen - 0.8.0.2-1 +- update to 0.8.0.2 + +* Fri Feb 10 2017 Fedora Release Engineering - 0.7.1.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Thu Jun 16 2016 Jens Petersen - 0.7.1.2-1 +- update to 0.7.1.2 + +* Wed Feb 03 2016 Fedora Release Engineering - 0.7.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 0.7.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Oct 29 2014 Jens Petersen - 0.7.1-1 +- update to 0.7.1 + +* Sat Aug 16 2014 Fedora Release Engineering - 0.5-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.5-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sat Aug 03 2013 Fedora Release Engineering - 0.5-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Jun 07 2013 Jens Petersen - 0.5-10 +- update to new simplified Haskell Packaging Guidelines + +* Wed Feb 13 2013 Fedora Release Engineering - 0.5-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sat Nov 17 2012 Jens Petersen - 0.5-8 +- update with cabal-rpm + +* Thu Jul 19 2012 Fedora Release Engineering - 0.5-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sun Mar 18 2012 Jens Petersen - 0.5-6 +- update to cabal2spec-0.25 + +* Fri Jan 13 2012 Fedora Release Engineering - 0.5-5.2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Oct 20 2011 Marcela Mašláňová - 0.5-4.2 +- rebuild with new gmp without compat lib + +* Tue Oct 11 2011 Peter Schiffer - 0.5-4.1 +- rebuild with new gmp + +* Tue Jun 21 2011 Lakshmi Narasimhan T V - 0.5-4 +- Update to cabal2spec-0.23.2 + +* Sat May 21 2011 Lakshmi Narasimhan T V - 0.5-3 +- Update to cabal2spec 0.22.7 + +* Sun Apr 3 2011 Lakshmi Narasimhan T V - 0.5-2 +- Update to cabal2spec 0.22.5 + +* Sun Dec 19 2010 Lakshmi Narasimhan T V - 0.5-1 +- Modified summary and description. License is BSD + +* Sun Dec 19 2010 Fedora Haskell SIG - 0.5-0 +- initial packaging for Fedora automatically generated by cabal2spec-0.22.3 diff --git a/sources b/sources new file mode 100644 index 0000000..4b5cc80 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (dlist-0.8.0.8.tar.gz) = 07f144525835e07d26ec6345f12b9173b47345dfd8233db1b958fca1e3292f48583f95d21ce6934ae588b1dc5f9efd73413e616577a589a91fddff2de5ec32d6