From 3cf57d4d0353b9c10b9626c492300001eb87b9e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Petr=20=C5=A0abata?= Date: Thu, 15 Oct 2020 01:33:37 +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-zip-archive#a752bc35e1b902e7e280523d475bdfb30a490afa --- .gitignore | 11 ++ ghc-zip-archive.spec | 290 ++++++++++++++++++++++++++++++++++++++++ sources | 1 + zip-archive-0.4.1.cabal | 107 +++++++++++++++ 4 files changed, 409 insertions(+) create mode 100644 ghc-zip-archive.spec create mode 100644 sources create mode 100644 zip-archive-0.4.1.cabal diff --git a/.gitignore b/.gitignore index e69de29..4954092 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,11 @@ +/zip-archive-0.1.1.6.tar.gz +/zip-archive-0.1.1.7.tar.gz +/zip-archive-0.1.1.8.tar.gz +/zip-archive-0.1.2.1.tar.gz +/zip-archive-0.1.3.4.tar.gz +/zip-archive-0.2.3.4.tar.gz +/zip-archive-0.2.3.5.tar.gz +/zip-archive-0.3.0.5.tar.gz +/zip-archive-0.3.1.1.tar.gz +/zip-archive-0.3.3.tar.gz +/zip-archive-0.4.1.tar.gz diff --git a/ghc-zip-archive.spec b/ghc-zip-archive.spec new file mode 100644 index 0000000..9d65af8 --- /dev/null +++ b/ghc-zip-archive.spec @@ -0,0 +1,290 @@ +# generated by cabal-rpm-2.0.6 +# https://docs.fedoraproject.org/en-US/packaging-guidelines/Haskell/ + +%global pkg_name zip-archive +%global pkgver %{pkg_name}-%{version} + +%ifnarch armv7hl +%bcond_without tests +%endif + +Name: ghc-%{pkg_name} +Version: 0.4.1 +Release: 6%{?dist} +Summary: Library for creating and modifying zip archives + +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-array-prof +BuildRequires: ghc-base-prof +BuildRequires: ghc-binary-prof +BuildRequires: ghc-bytestring-prof +BuildRequires: ghc-containers-prof +BuildRequires: ghc-digest-prof +BuildRequires: ghc-directory-prof +BuildRequires: ghc-filepath-prof +BuildRequires: ghc-mtl-prof +BuildRequires: ghc-pretty-prof +BuildRequires: ghc-text-prof +BuildRequires: ghc-time-prof +BuildRequires: ghc-unix-prof +BuildRequires: ghc-zlib-prof +%if %{with tests} +BuildRequires: ghc-HUnit-devel +BuildRequires: ghc-process-devel +BuildRequires: ghc-temporary-devel +BuildRequires: unzip +%endif +# End cabal-rpm deps + +%description +The zip-archive library provides functions for creating, modifying, and +extracting files from zip archives. The zip archive format is documented in +. + +Certain simplifying assumptions are made about the zip archives: in particular, +there is no support for strong encryption, zip files that span multiple disks, +ZIP64, OS-specific file attributes, or compression methods other than Deflate. +However, the library should be able to read the most common zip archives, and +the archives it produces should be readable by all standard unzip programs. + +Archives are built and extracted in memory, so manipulating large zip files +will consume a lot of memory. If you work with large zip files or need features +not supported by this library, a better choice may be +, which uses a memory-efficient +streaming approach. However, zip can only read and write archives inside +instances of MonadIO, so zip-archive is a better choice if you want to +manipulate zip archives in "pure" contexts. + +As an example of the use of the library, a standalone zip archiver and +extracter is provided in the source distribution. + + +%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} +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 + + +%check +%cabal_test + + +%files -f %{name}.files +# Begin cabal-rpm files: +%license LICENSE +# End cabal-rpm files + + +%files devel -f %{name}-devel.files +%doc README.markdown changelog + + +%if %{with haddock} +%files doc -f %{name}-doc.files +%license LICENSE +%endif + + +%if %{with ghc_prof} +%files prof -f %{name}-prof.files +%endif + + +%changelog +* Sat Aug 01 2020 Fedora Release Engineering - 0.4.1-6 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 0.4.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Jul 17 2020 Jens Petersen - 0.4.1-4 +- refresh to cabal-rpm-2.0.6 + +* Wed Feb 19 2020 Jens Petersen - 0.4.1-3 +- refresh to cabal-rpm-2.0.2 + +* Tue Jan 28 2020 Fedora Release Engineering - 0.4.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jul 25 2019 Jens Petersen - 0.4.1-1 +- update to 0.4.1 + +* Thu Jul 25 2019 Fedora Release Engineering - 0.3.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 17 2019 Jens Petersen - 0.3.3-3 +- refresh to cabal-rpm-0.13 + +* Thu Jan 31 2019 Fedora Release Engineering - 0.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sun Jul 22 2018 Jens Petersen - 0.3.3-1 +- update to 0.3.3 + +* Fri Jul 13 2018 Fedora Release Engineering - 0.3.1.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Wed Feb 07 2018 Fedora Release Engineering - 0.3.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Wed Jan 24 2018 Jens Petersen - 0.3.1.1-1 +- update to 0.3.1.1 + +* Wed Aug 02 2017 Fedora Release Engineering - 0.3.0.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Wed Jul 26 2017 Fedora Release Engineering - 0.3.0.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Wed Feb 22 2017 Jens Petersen - 0.3.0.5-1 +- update to 0.3.0.5 + +* Fri Feb 10 2017 Fedora Release Engineering - 0.2.3.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Wed Feb 03 2016 Fedora Release Engineering - 0.2.3.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Wed Jun 17 2015 Fedora Release Engineering - 0.2.3.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Fri Jan 23 2015 Jens Petersen - 0.2.3.5-1 +- update to 0.2.3.5 + +* Thu Oct 30 2014 Jens Petersen - 0.2.3.4-1 +- update to 0.2.3.4 +- refresh to cblrpm-0.8.11 + +* Sat Aug 16 2014 Fedora Release Engineering - 0.1.3.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sat Jun 07 2014 Fedora Release Engineering - 0.1.3.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sat Aug 03 2013 Fedora Release Engineering - 0.1.3.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Jun 07 2013 Jens Petersen - 0.1.3.4-2 +- update to new simplified Haskell Packaging Guidelines + +* Sun Mar 10 2013 Jens Petersen - 0.1.3.4-1 +- update to 0.1.3.4 + +* Wed Feb 13 2013 Fedora Release Engineering - 0.1.2.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Nov 08 2012 Jens Petersen - 0.1.2.1-1 +- update to 0.1.2.1 +- license is now BSD + +* Thu Jul 19 2012 Fedora Release Engineering - 0.1.1.8-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Mon Jul 16 2012 Jens Petersen - 0.1.1.8-2 +- change prof BRs to devel + +* Wed Jun 13 2012 Jens Petersen - 0.1.1.8-1 +- update to 0.1.1.8 + +* Fri Jan 6 2012 Jens Petersen - 0.1.1.7-6 +- update to cabal2spec-0.25.2 + +* Fri Oct 21 2011 Marcela Mašláňová - 0.1.1.7-5.2 +- rebuild with new gmp without compat lib + +* Tue Oct 11 2011 Peter Schiffer - 0.1.1.7-5.1 +- rebuild with new gmp + +* Fri Sep 30 2011 Jens Petersen - 0.1.1.7-5 +- rebuild against latest digest library + +* Wed Jun 22 2011 Jens Petersen - 0.1.1.7-4 +- BR ghc-Cabal-devel instead of ghc-prof and use ghc_arches (cabal2spec-0.23.2) + +* Sat May 28 2011 Jens Petersen - 0.1.1.7-3 +- update to cabal2spec-0.23: add ppc64 + +* Thu Mar 10 2011 Fabio M. Di Nitto - 0.1.1.7-2 +- Enable build on sparcv9 + +* Tue Feb 15 2011 Jens Petersen - 0.1.1.7-1 +- update to 0.1.1.7 + +* Tue Feb 08 2011 Fedora Release Engineering - 0.1.1.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Jan 19 2011 Jens Petersen - 0.1.1.6-5 +- update to cabal2spec-0.22.4 + +* Tue Dec 21 2010 Jens Petersen - 0.1.1.6-4 +- install COPYING instead + +* Fri Dec 10 2010 Jens Petersen - 0.1.1.6-3 +- include the COPYING file (#652573) + +* Thu Dec 2 2010 Jens Petersen - 0.1.1.6-2 +- also depends on binary (#652573) + +* Thu Dec 2 2010 Jens Petersen - 0.1.1.6-1 +- GPLv2+ +- depends on digest, mtl, utf8-string, zlib + +* Fri Nov 12 2010 Fedora Haskell SIG - 0.1.1.6-0 +- initial packaging for Fedora automatically generated by cabal2spec-0.22.2 diff --git a/sources b/sources new file mode 100644 index 0000000..3fca3b2 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (zip-archive-0.4.1.tar.gz) = 216555bd73a46da5061291c2c071e9c71239bd5ae253ac06ee80ade65bb1871366cc8e4dffbad983c5b6a7f4b0cb2a1439dfa5971db3e183124fa90442a73f0c diff --git a/zip-archive-0.4.1.cabal b/zip-archive-0.4.1.cabal new file mode 100644 index 0000000..1f052d0 --- /dev/null +++ b/zip-archive-0.4.1.cabal @@ -0,0 +1,107 @@ +Name: zip-archive +Version: 0.4.1 +x-revision: 1 +Cabal-Version: 2.0 +Build-type: Simple +Synopsis: Library for creating and modifying zip archives. +Description: + The zip-archive library provides functions for creating, modifying, and + extracting files from zip archives. The zip archive format is + documented in . + . + Certain simplifying assumptions are made about the zip archives: in + particular, there is no support for strong encryption, zip files that + span multiple disks, ZIP64, OS-specific file attributes, or compression + methods other than Deflate. However, the library should be able to read + the most common zip archives, and the archives it produces should be + readable by all standard unzip programs. + . + Archives are built and extracted in memory, so manipulating large zip + files will consume a lot of memory. If you work with large zip files or + need features not supported by this library, a better choice may be + , which uses a + memory-efficient streaming approach. However, zip can only read and + write archives inside instances of MonadIO, so zip-archive is a better + choice if you want to manipulate zip archives in "pure" contexts. + . + As an example of the use of the library, a standalone zip archiver and + extracter is provided in the source distribution. +Category: Codec +Tested-with: GHC == 7.8.2, GHC == 7.10.3, GHC == 8.0.2, + GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.1 +License: BSD3 +License-file: LICENSE +Homepage: http://github.com/jgm/zip-archive +Author: John MacFarlane +Maintainer: jgm@berkeley.edu +Extra-Source-Files: changelog + README.markdown + tests/test4.zip + tests/test4/a.txt + tests/test4/b.bin + "tests/test4/c/with spaces.txt" + tests/zip_with_symlinks.zip + tests/zip_with_password.zip + tests/zip_with_evil_path.zip + +Source-repository head + type: git + location: git://github.com/jgm/zip-archive.git + +flag executable + Description: Build the Zip executable. + Default: False + +Library + Build-depends: base >= 4.5 && < 5, + pretty, + containers, + binary >= 0.6, + zlib, + filepath, + bytestring >= 0.10.0, + array, + mtl, + text >= 0.11, + digest >= 0.0.0.1, + directory >= 1.2.0, + time + Exposed-modules: Codec.Archive.Zip + Default-Language: Haskell98 + Hs-Source-Dirs: src + Ghc-Options: -Wall + if os(windows) + cpp-options: -D_WINDOWS + else + Build-depends: unix + +Executable zip-archive + if flag(executable) + Buildable: True + else + Buildable: False + Main-is: Main.hs + Hs-Source-Dirs: . + Build-Depends: base >= 4.2 && < 5, + directory >= 1.1, + bytestring >= 0.9.0, + zip-archive + Other-Modules: Paths_zip_archive + Autogen-Modules: Paths_zip_archive + Ghc-Options: -Wall + Default-Language: Haskell98 + +Test-Suite test-zip-archive + Type: exitcode-stdio-1.0 + Main-Is: test-zip-archive.hs + Hs-Source-Dirs: tests + Build-Depends: base >= 4.2 && < 5, + directory >= 1.3, bytestring >= 0.9.0, process, time, + HUnit, zip-archive, temporary, filepath + Default-Language: Haskell98 + Ghc-Options: -Wall + if os(windows) + cpp-options: -D_WINDOWS + else + Build-depends: unix + build-tools: unzip