commit
3be8b9a0fc
@ -0,0 +1 @@
|
|||||||
|
886757f8c15cd2da79abadde8dccb7c70af76dee SOURCES/zip-archive-0.4.2.1.tar.gz
|
@ -0,0 +1 @@
|
|||||||
|
SOURCES/zip-archive-0.4.2.1.tar.gz
|
@ -0,0 +1,105 @@
|
|||||||
|
Name: zip-archive
|
||||||
|
Version: 0.4.2.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 <http://www.pkware.com/documents/casestudies/APPNOTE.TXT>.
|
||||||
|
.
|
||||||
|
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
|
||||||
|
<http://hackage.haskell.org/package/zip zip>, 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 == 8.6.5, GHC == 8.8.1, GHC == 8.10.4, GHC == 9.0.1,
|
||||||
|
GHC == 8.8.3, GHC == 9.2.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.5 && < 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.5 && < 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
|
@ -0,0 +1,314 @@
|
|||||||
|
# generated by cabal-rpm-2.0.12
|
||||||
|
# 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.2.1
|
||||||
|
Release: 1%{?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
|
||||||
|
<http://www.pkware.com/documents/casestudies/APPNOTE.TXT>.
|
||||||
|
|
||||||
|
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
|
||||||
|
<http://hackage.haskell.org/package/zip zip>, 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
|
||||||
|
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
|
||||||
|
|
||||||
|
|
||||||
|
%check
|
||||||
|
%if %{with tests}
|
||||||
|
%cabal_test
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
|
%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 19 2023 Alexey Lyubimov <a.lyubimov@msvsphere.ru> - 0.4.2.1-1
|
||||||
|
- Rebuilt for MSVSphere 9.2
|
||||||
|
|
||||||
|
* Tue Jun 07 2022 Jens Petersen <petersen@redhat.com> - 0.4.2.1-1
|
||||||
|
- https://hackage.haskell.org/package/zip-archive-0.4.2.1/changelog
|
||||||
|
|
||||||
|
* Thu Mar 10 2022 Jens Petersen <petersen@redhat.com> - 0.4.1-11
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Thu Jan 20 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-10
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Aug 06 2021 Jens Petersen <petersen@redhat.com> - 0.4.1-9
|
||||||
|
- rebuild
|
||||||
|
|
||||||
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-8
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||||
|
|
||||||
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-7
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-6
|
||||||
|
- Second attempt - Rebuilt for
|
||||||
|
https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jul 17 2020 Jens Petersen <petersen@redhat.com> - 0.4.1-4
|
||||||
|
- refresh to cabal-rpm-2.0.6
|
||||||
|
|
||||||
|
* Wed Feb 19 2020 Jens Petersen <petersen@redhat.com> - 0.4.1-3
|
||||||
|
- refresh to cabal-rpm-2.0.2
|
||||||
|
|
||||||
|
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.4.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Jens Petersen <petersen@redhat.com> - 0.4.1-1
|
||||||
|
- update to 0.4.1
|
||||||
|
|
||||||
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.3-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Feb 17 2019 Jens Petersen <petersen@redhat.com> - 0.3.3-3
|
||||||
|
- refresh to cabal-rpm-0.13
|
||||||
|
|
||||||
|
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.3-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sun Jul 22 2018 Jens Petersen <petersen@redhat.com> - 0.3.3-1
|
||||||
|
- update to 0.3.3
|
||||||
|
|
||||||
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1.1-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.1.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 24 2018 Jens Petersen <petersen@redhat.com> - 0.3.1.1-1
|
||||||
|
- update to 0.3.1.1
|
||||||
|
|
||||||
|
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3.0.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 22 2017 Jens Petersen <petersen@redhat.com> - 0.3.0.5-1
|
||||||
|
- update to 0.3.0.5
|
||||||
|
|
||||||
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.3.5-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.2.3.5-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.2.3.5-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jan 23 2015 Jens Petersen <petersen@redhat.com> - 0.2.3.5-1
|
||||||
|
- update to 0.2.3.5
|
||||||
|
|
||||||
|
* Thu Oct 30 2014 Jens Petersen <petersen@redhat.com> - 0.2.3.4-1
|
||||||
|
- update to 0.2.3.4
|
||||||
|
- refresh to cblrpm-0.8.11
|
||||||
|
|
||||||
|
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.3.4-5
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.3.4-4
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||||
|
|
||||||
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.3.4-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||||
|
|
||||||
|
* Fri Jun 07 2013 Jens Petersen <petersen@redhat.com> - 0.1.3.4-2
|
||||||
|
- update to new simplified Haskell Packaging Guidelines
|
||||||
|
|
||||||
|
* Sun Mar 10 2013 Jens Petersen <petersen@redhat.com> - 0.1.3.4-1
|
||||||
|
- update to 0.1.3.4
|
||||||
|
|
||||||
|
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2.1-2
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
|
* Thu Nov 08 2012 Jens Petersen <petersen@redhat.com> - 0.1.2.1-1
|
||||||
|
- update to 0.1.2.1
|
||||||
|
- license is now BSD
|
||||||
|
|
||||||
|
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1.8-3
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||||
|
|
||||||
|
* Mon Jul 16 2012 Jens Petersen <petersen@redhat.com> - 0.1.1.8-2
|
||||||
|
- change prof BRs to devel
|
||||||
|
|
||||||
|
* Wed Jun 13 2012 Jens Petersen <petersen@redhat.com> - 0.1.1.8-1
|
||||||
|
- update to 0.1.1.8
|
||||||
|
|
||||||
|
* Fri Jan 6 2012 Jens Petersen <petersen@redhat.com> - 0.1.1.7-6
|
||||||
|
- update to cabal2spec-0.25.2
|
||||||
|
|
||||||
|
* Fri Oct 21 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.1.1.7-5.2
|
||||||
|
- rebuild with new gmp without compat lib
|
||||||
|
|
||||||
|
* Tue Oct 11 2011 Peter Schiffer <pschiffe@redhat.com> - 0.1.1.7-5.1
|
||||||
|
- rebuild with new gmp
|
||||||
|
|
||||||
|
* Fri Sep 30 2011 Jens Petersen <petersen@redhat.com> - 0.1.1.7-5
|
||||||
|
- rebuild against latest digest library
|
||||||
|
|
||||||
|
* Wed Jun 22 2011 Jens Petersen <petersen@redhat.com> - 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 <petersen@redhat.com> - 0.1.1.7-3
|
||||||
|
- update to cabal2spec-0.23: add ppc64
|
||||||
|
|
||||||
|
* Thu Mar 10 2011 Fabio M. Di Nitto <fdinitto@redhat.com> - 0.1.1.7-2
|
||||||
|
- Enable build on sparcv9
|
||||||
|
|
||||||
|
* Tue Feb 15 2011 Jens Petersen <petersen@redhat.com> - 0.1.1.7-1
|
||||||
|
- update to 0.1.1.7
|
||||||
|
|
||||||
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1.6-6
|
||||||
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
||||||
|
|
||||||
|
* Wed Jan 19 2011 Jens Petersen <petersen@redhat.com> - 0.1.1.6-5
|
||||||
|
- update to cabal2spec-0.22.4
|
||||||
|
|
||||||
|
* Tue Dec 21 2010 Jens Petersen <petersen@redhat.com> - 0.1.1.6-4
|
||||||
|
- install COPYING instead
|
||||||
|
|
||||||
|
* Fri Dec 10 2010 Jens Petersen <petersen@redhat.com> - 0.1.1.6-3
|
||||||
|
- include the COPYING file (#652573)
|
||||||
|
|
||||||
|
* Thu Dec 2 2010 Jens Petersen <petersen@redhat.com> - 0.1.1.6-2
|
||||||
|
- also depends on binary (#652573)
|
||||||
|
|
||||||
|
* Thu Dec 2 2010 Jens Petersen <petersen@redhat.com> - 0.1.1.6-1
|
||||||
|
- GPLv2+
|
||||||
|
- depends on digest, mtl, utf8-string, zlib
|
||||||
|
|
||||||
|
* Fri Nov 12 2010 Fedora Haskell SIG <haskell-devel@lists.fedoraproject.org> - 0.1.1.6-0
|
||||||
|
- initial packaging for Fedora automatically generated by cabal2spec-0.22.2
|
Loading…
Reference in new issue