diff --git a/ghc-zip-archive.changes b/ghc-zip-archive.changes index cebb4f6..a320a7a 100644 --- a/ghc-zip-archive.changes +++ b/ghc-zip-archive.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Mon Jan 29 11:25:53 UTC 2018 - psimons@suse.com + +- Update zip-archive to version 0.3.2.2. + A more detailed change log is not available. + ------------------------------------------------------------------- Mon Aug 14 03:01:28 UTC 2017 - psimons@suse.com diff --git a/ghc-zip-archive.spec b/ghc-zip-archive.spec index 7fe45b4..2fd2f75 100644 --- a/ghc-zip-archive.spec +++ b/ghc-zip-archive.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-zip-archive # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,14 +19,13 @@ %global pkg_name zip-archive %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.3.1.1 +Version: 0.3.2.2 Release: 0 Summary: Library for creating and modifying zip archives License: BSD-3-Clause Group: Development/Libraries/Haskell URL: https://hackage.haskell.org/package/%{pkg_name} Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz -Source1: https://hackage.haskell.org/package/%{pkg_name}-%{version}/revision/1.cabal#/%{pkg_name}.cabal BuildRequires: ghc-Cabal-devel BuildRequires: ghc-array-devel BuildRequires: ghc-binary-devel @@ -66,7 +65,6 @@ This package provides the Haskell %{pkg_name} library development files. %prep %setup -q -n %{pkg_name}-%{version} -cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build diff --git a/zip-archive-0.3.1.1.tar.gz b/zip-archive-0.3.1.1.tar.gz deleted file mode 100644 index 1b00f60..0000000 --- a/zip-archive-0.3.1.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:9e868e649e6fd06cf50c2f0f1e480ce36640494449e415abf2509f9347f08325 -size 16107 diff --git a/zip-archive-0.3.2.2.tar.gz b/zip-archive-0.3.2.2.tar.gz new file mode 100644 index 0000000..5a3d477 --- /dev/null +++ b/zip-archive-0.3.2.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:2c5571390503615551e9bfd8148dff56c3ae17ebce5f2e31cae098c1aa5acaf7 +size 18212 diff --git a/zip-archive.cabal b/zip-archive.cabal deleted file mode 100644 index 6d6ed0b..0000000 --- a/zip-archive.cabal +++ /dev/null @@ -1,76 +0,0 @@ -Name: zip-archive -Version: 0.3.1.1 -x-revision: 1 -Cabal-Version: >= 1.10 -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. -Category: Codec -Tested-with: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.2 -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" - -Source-repository head - type: git - location: git://github.com/jgm/zip-archive.git - -flag splitBase - Description: Choose the new, smaller, split-up base package. - Default: True -flag executable - Description: Build the Zip executable. - Default: False - -Library - if flag(splitBase) - Build-depends: base >= 3 && < 5, pretty, containers - else - Build-depends: base < 3 - Build-depends: binary >= 0.6, zlib, filepath, bytestring >= 0.10.0, - array, mtl, text >= 0.11, old-time, digest >= 0.0.0.1, - directory, 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 - 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, bytestring >= 0.9.0, process, time, old-time, - HUnit, zip-archive, temporary - Default-Language: Haskell98 - Ghc-Options: -Wall - if os(windows) - cpp-options: -D_WINDOWS - else - Build-depends: unix