osc copypac from project:devel:languages:haskell:ghc-8.4.x package:ghc-enclosed-exceptions revision:2, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-enclosed-exceptions?expand=0&rev=2
This commit is contained in:
Peter Simons 2018-07-18 01:01:29 +00:00 committed by Git OBS Bridge
parent 02dcbdf348
commit 2fbc6f82c4
5 changed files with 13 additions and 53 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7b9beab82d219c0dd879dfdef70fb74a4a7595b4dbd0baf7adb12cdbbe8189f1
size 5266

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:af6d93f113ac92b89a32af1fed52f445f492afcc0be93980cbadc5698f94f0b9
size 5748

View File

@ -1,47 +0,0 @@
name: enclosed-exceptions
version: 1.0.2
x-revision: 1
synopsis: Catching all exceptions from within an enclosed computation
description: Catching all exceptions raised within an enclosed computation,
while remaining responsive to (external) asynchronous exceptions.
For more information on the technique, please see:
<https://www.fpcomplete.com/user/snoyberg/general-haskell/exceptions/catching-all-exceptions>
homepage: https://github.com/jcristovao/enclosed-exceptions
license: MIT
license-file: LICENSE
author: Michael Snoyman, João Cristóvão
maintainer: jmacristovao@gmail.com, michael@snoyman.com
category: Control
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Control.Exception.Enclosed
hs-source-dirs: src
build-depends: base >= 4.6 && < 5
, transformers
, lifted-base >= 0.2
, monad-control
, deepseq
, transformers-base
ghc-options: -Wall -fno-warn-orphans
test-suite test
hs-source-dirs: src, test
main-is: main.hs
type: exitcode-stdio-1.0
build-depends: base
, lifted-base >= 0.2
, monad-control
, async >= 2.0
, deepseq
, hspec >= 1.3
, QuickCheck
, stm
, transformers
, transformers-base
ghc-options: -Wall
source-repository head
type: git
location: git://github.com/jcristovao/enclosed-exceptions.git

View File

@ -1,3 +1,11 @@
-------------------------------------------------------------------
Tue Jul 17 19:31:26 UTC 2018 - psimons@suse.com
- Update enclosed-exceptions to version 1.0.3.
Upstream added a new change log file in this release. With no
previous version to compare against, the automatic updater cannot
reliable determine the relevante entries for this release.
-------------------------------------------------------------------
Mon Jul 9 19:45:07 UTC 2018 - psimons@suse.com

View File

@ -19,14 +19,13 @@
%global pkg_name enclosed-exceptions
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 1.0.2
Version: 1.0.3
Release: 0
Summary: Catching all exceptions from within an enclosed computation
License: MIT
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-deepseq-devel
BuildRequires: ghc-lifted-base-devel
@ -61,7 +60,6 @@ files.
%prep
%setup -q -n %{pkg_name}-%{version}
cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
@ -82,5 +80,6 @@ cp -p %{SOURCE1} %{pkg_name}.cabal
%license LICENSE
%files devel -f %{name}-devel.files
%doc ChangeLog.md README.md
%changelog