osc copypac from project:devel:languages:haskell:ghc-8.6.x package:ghc-unliftio revision:3, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-unliftio?expand=0&rev=22
This commit is contained in:
Peter Simons 2018-10-18 09:53:19 +00:00 committed by Git OBS Bridge
parent bc6fcf4525
commit cd84904aad
5 changed files with 27 additions and 13 deletions

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Thu Oct 4 15:40:13 UTC 2018 - psimons@suse.com
- Update unliftio to version 0.2.8.1.
## 0.2.8.1
* Support for `stm-2.5.0.0`
## 0.2.8.0
* Add 'UnliftIO.Memoize'
-------------------------------------------------------------------
Thu Aug 30 15:29:11 UTC 2018 - psimons@suse.com

View File

@ -12,14 +12,14 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
%global pkg_name unliftio
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 0.2.7.1
Version: 0.2.8.1
Release: 0
Summary: The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)
License: MIT

View File

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

3
unliftio-0.2.8.1.tar.gz Normal file
View File

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

View File

@ -1,13 +1,13 @@
cabal-version: >= 1.10
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.29.6.
-- This file has been generated from package.yaml by hpack version 0.30.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: 80f98ec8618eddf5cd9e60732404c2af04ec9c97f9edefb9aa7b236b776e10ea
-- hash: b929fccb27c59fc9bc0f46c3f81f101436a852090cd8bc99591e2a71d53e65f1
name: unliftio
version: 0.2.7.1
version: 0.2.8.1
x-revision: 1
synopsis: The MonadUnliftIO typeclass for unlifting monads to IO (batteries included)
description: Please see the documentation and README at <https://www.stackage.org/package/unliftio>
@ -20,20 +20,20 @@ license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
ChangeLog.md
README.md
ChangeLog.md
library
hs-source-dirs:
src
build-depends:
async >2.1.1
, base >=4.7 && <5
, base >=4.8 && <5
, deepseq >= 1.1.0.0
, directory
, filepath
, process >=1.2.0.0
, stm >=2.4.3 && <2.5
, stm >=2.4.3 && <2.6
, time
, transformers
, unliftio-core >=0.1.1.0
@ -61,6 +61,7 @@ library
UnliftIO.Foreign
UnliftIO.IO
UnliftIO.IORef
UnliftIO.Memoize
UnliftIO.MVar
UnliftIO.Process
UnliftIO.STM
@ -83,7 +84,7 @@ test-suite unliftio-spec
, filepath
, hspec
, process >=1.2.0.0
, stm >=2.4.3 && <2.5
, stm >=2.4.3 && <2.6
, time
, transformers
, unliftio
@ -94,5 +95,6 @@ test-suite unliftio-spec
other-modules:
UnliftIO.ExceptionSpec
UnliftIO.IOSpec
UnliftIO.MemoizeSpec
Paths_unliftio
default-language: Haskell2010