Accepting request 607959 from devel:languages:haskell
Update ghc-zip-archive to the latest version. OBS-URL: https://build.opensuse.org/request/show/607959 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-zip-archive?expand=0&rev=10
This commit is contained in:
commit
7f09c44ec1
@ -1,3 +1,23 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon May 14 17:02:11 UTC 2018 - psimons@suse.com
|
||||||
|
|
||||||
|
- Update zip-archive to version 0.3.2.4.
|
||||||
|
* Use createSymbolicLink instead of createFileLink in tests. This allows
|
||||||
|
us to lower the directory lower bound (#40).
|
||||||
|
|
||||||
|
* Fixes for handling of symbolic links (#39, Tommaso Piazza).
|
||||||
|
|
||||||
|
* Fixes for symbolic link tests, and additional tests.
|
||||||
|
|
||||||
|
* Add ZipOption to preserve symbolic links (#37, Tommaso Piazza).
|
||||||
|
Add OptPreserveSymbolicLinks constructor to ZipOption. If this option
|
||||||
|
is set, symbolic links will be preserved. Symbolic links are not
|
||||||
|
supported on Windows.
|
||||||
|
|
||||||
|
* Require binary >= 0.6 (#36).
|
||||||
|
|
||||||
|
* Improve exit handling in zip-archive program.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jun 25 18:41:35 UTC 2017 - psimons@suse.com
|
Sun Jun 25 18:41:35 UTC 2017 - psimons@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package ghc-zip-archive
|
# 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
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -19,12 +19,12 @@
|
|||||||
%global pkg_name zip-archive
|
%global pkg_name zip-archive
|
||||||
%bcond_with tests
|
%bcond_with tests
|
||||||
Name: ghc-%{pkg_name}
|
Name: ghc-%{pkg_name}
|
||||||
Version: 0.3.1.1
|
Version: 0.3.2.4
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Library for creating and modifying zip archives
|
Summary: Library for creating and modifying zip archives
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
Group: Development/Languages/Other
|
Group: Development/Libraries/Haskell
|
||||||
Url: https://hackage.haskell.org/package/%{pkg_name}
|
URL: https://hackage.haskell.org/package/%{pkg_name}
|
||||||
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
Source0: https://hackage.haskell.org/package/%{pkg_name}-%{version}/%{pkg_name}-%{version}.tar.gz
|
||||||
BuildRequires: ghc-Cabal-devel
|
BuildRequires: ghc-Cabal-devel
|
||||||
BuildRequires: ghc-array-devel
|
BuildRequires: ghc-array-devel
|
||||||
@ -42,7 +42,7 @@ BuildRequires: ghc-text-devel
|
|||||||
BuildRequires: ghc-time-devel
|
BuildRequires: ghc-time-devel
|
||||||
BuildRequires: ghc-unix-devel
|
BuildRequires: ghc-unix-devel
|
||||||
BuildRequires: ghc-zlib-devel
|
BuildRequires: ghc-zlib-devel
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRequires: unzip
|
||||||
%if %{with tests}
|
%if %{with tests}
|
||||||
BuildRequires: ghc-HUnit-devel
|
BuildRequires: ghc-HUnit-devel
|
||||||
BuildRequires: ghc-process-devel
|
BuildRequires: ghc-process-devel
|
||||||
@ -55,7 +55,7 @@ extracting files from zip archives.
|
|||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Haskell %{pkg_name} library development files
|
Summary: Haskell %{pkg_name} library development files
|
||||||
Group: Development/Libraries/Other
|
Group: Development/Libraries/Haskell
|
||||||
Requires: %{name} = %{version}-%{release}
|
Requires: %{name} = %{version}-%{release}
|
||||||
Requires: ghc-compiler = %{ghc_version}
|
Requires: ghc-compiler = %{ghc_version}
|
||||||
Requires(post): ghc-compiler = %{ghc_version}
|
Requires(post): ghc-compiler = %{ghc_version}
|
||||||
@ -83,11 +83,9 @@ This package provides the Haskell %{pkg_name} library development files.
|
|||||||
%ghc_pkg_recache
|
%ghc_pkg_recache
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,-)
|
%license LICENSE
|
||||||
%doc LICENSE
|
|
||||||
|
|
||||||
%files devel -f %{name}-devel.files
|
%files devel -f %{name}-devel.files
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%doc README.markdown changelog
|
%doc README.markdown changelog
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9e868e649e6fd06cf50c2f0f1e480ce36640494449e415abf2509f9347f08325
|
|
||||||
size 16107
|
|
3
zip-archive-0.3.2.4.tar.gz
Normal file
3
zip-archive-0.3.2.4.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:20612ed34d8d14deef120440c75f951a5c92c9f39f0de1b82ebac6d5923b3785
|
||||||
|
size 18370
|
Loading…
Reference in New Issue
Block a user