From 0d85b3c1aed7a43bc21fa93f4fd7d001e1b7b29f40f4e7fa8d1386478e5e0352 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Tue, 28 Feb 2017 10:43:34 +0000 Subject: [PATCH 1/2] synchronize with lts-8 project from configuration b1f9faeb9ef431eed42de296b621d35661a39011 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-zip-archive?expand=0&rev=20 --- ghc-zip-archive.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/ghc-zip-archive.spec b/ghc-zip-archive.spec index efa6b43..e37705c 100644 --- a/ghc-zip-archive.spec +++ b/ghc-zip-archive.spec @@ -90,5 +90,6 @@ cp -p %{SOURCE1} %{pkg_name}.cabal %files devel -f %{name}-devel.files %defattr(-,root,root,-) +%doc README.markdown changelog %changelog From 3f59f85d57ebad7ccb44203b3190ab303462573c9556ec46d182c7e52ae5674e Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 3 May 2017 11:44:04 +0000 Subject: [PATCH 2/2] synchronize wit lts:8 from configuration bbbfb86d6e54c22066d348f5bc28d4fd96e6bfd6 OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-zip-archive?expand=0&rev=21 --- ghc-zip-archive.changes | 5 +++ ghc-zip-archive.spec | 4 +- zip-archive-0.3.0.5.tar.gz | 3 -- zip-archive-0.3.0.6.tar.gz | 3 ++ zip-archive.cabal | 75 -------------------------------------- 5 files changed, 9 insertions(+), 81 deletions(-) delete mode 100644 zip-archive-0.3.0.5.tar.gz create mode 100644 zip-archive-0.3.0.6.tar.gz delete mode 100644 zip-archive.cabal diff --git a/ghc-zip-archive.changes b/ghc-zip-archive.changes index d252a69..9f288ee 100644 --- a/ghc-zip-archive.changes +++ b/ghc-zip-archive.changes @@ -1,3 +1,8 @@ +------------------------------------------------------------------- +Wed May 3 08:14:06 UTC 2017 - psimons@suse.com + +- Update to version 0.3.0.6 with cabal2obs. + ------------------------------------------------------------------- Mon Jan 23 20:28:10 UTC 2017 - psimons@suse.com diff --git a/ghc-zip-archive.spec b/ghc-zip-archive.spec index e37705c..f24adb1 100644 --- a/ghc-zip-archive.spec +++ b/ghc-zip-archive.spec @@ -19,14 +19,13 @@ %global pkg_name zip-archive %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.3.0.5 +Version: 0.3.0.6 Release: 0 Summary: Library for creating and modifying zip archives License: BSD-3-Clause Group: Development/Languages/Other 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 @@ -67,7 +66,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.0.5.tar.gz b/zip-archive-0.3.0.5.tar.gz deleted file mode 100644 index e3972db..0000000 --- a/zip-archive-0.3.0.5.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:dc83366e44d735df4088eb174c02c35a522e6228c04fecc35fe9493299fc97c7 -size 15022 diff --git a/zip-archive-0.3.0.6.tar.gz b/zip-archive-0.3.0.6.tar.gz new file mode 100644 index 0000000..37769b4 --- /dev/null +++ b/zip-archive-0.3.0.6.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8140104a15d2961480c212a1e061a6d1b2af62357930de950e5debedb0abd5b6 +size 15164 diff --git a/zip-archive.cabal b/zip-archive.cabal deleted file mode 100644 index 66d81e0..0000000 --- a/zip-archive.cabal +++ /dev/null @@ -1,75 +0,0 @@ -Name: zip-archive -Version: 0.3.0.5 -x-revision: 1 -Cabal-Version: >= 1.10 -Build-type: Custom -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 - -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 - -custom-setup - setup-depends: base, Cabal - -Library - if flag(splitBase) - Build-depends: base >= 3 && < 5, pretty, containers - else - Build-depends: base < 3 - Build-depends: binary >= 0.5, zlib, filepath, bytestring >= 0.9.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 - if flag(executable) - Buildable: True - else - Buildable: False - Main-is: Zip.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 - Build-Tools: zip - if os(windows) - cpp-options: -D_WINDOWS - else - Build-depends: unix