Accepting request 642901 from devel:languages:haskell

version update

OBS-URL: https://build.opensuse.org/request/show/642901
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/ghc-unliftio?expand=0&rev=4
This commit is contained in:
Dominique Leuenberger 2018-10-25 06:19:10 +00:00 committed by Git OBS Bridge
commit 28420ca5c7
5 changed files with 119 additions and 5 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,20 +12,21 @@
# 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
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-async-devel
BuildRequires: ghc-deepseq-devel
@ -59,6 +60,7 @@ 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

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

100
unliftio.cabal Normal file
View File

@ -0,0 +1,100 @@
cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.30.0.
--
-- see: https://github.com/sol/hpack
--
-- hash: b929fccb27c59fc9bc0f46c3f81f101436a852090cd8bc99591e2a71d53e65f1
name: unliftio
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>
category: Control
homepage: https://github.com/fpco/unliftio/tree/master/unliftio#readme
author: Michael Snoyman, Francesco Mazzoli
maintainer: michael@snoyman.com
copyright: 2017 FP Complete
license: MIT
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
library
hs-source-dirs:
src
build-depends:
async >2.1.1
, base >=4.8 && <5
, deepseq >= 1.1.0.0
, directory
, filepath
, process >=1.2.0.0
, stm >=2.4.3 && <2.6
, time
, transformers
, unliftio-core >=0.1.1.0
if !os(Windows)
build-depends:
unix
if os(darwin)
c-sources:
cbits/time-osx.c
else
if os(windows)
c-sources:
cbits/time-windows.c
else
c-sources:
cbits/time-posix.c
exposed-modules:
UnliftIO
UnliftIO.Async
UnliftIO.Chan
UnliftIO.Concurrent
UnliftIO.Directory
UnliftIO.Environment
UnliftIO.Exception
UnliftIO.Foreign
UnliftIO.IO
UnliftIO.IORef
UnliftIO.Memoize
UnliftIO.MVar
UnliftIO.Process
UnliftIO.STM
UnliftIO.Temporary
UnliftIO.Timeout
other-modules:
Paths_unliftio
default-language: Haskell2010
test-suite unliftio-spec
type: exitcode-stdio-1.0
main-is: Spec.hs
hs-source-dirs:
test
build-depends:
async >2.1.1
, base >=4.7 && <5
, deepseq >= 1.1.0.0
, directory
, filepath
, hspec
, process >=1.2.0.0
, stm >=2.4.3 && <2.6
, time
, transformers
, unliftio
, unliftio-core >=0.1.1.0
if !os(Windows)
build-depends:
unix
other-modules:
UnliftIO.ExceptionSpec
UnliftIO.IOSpec
UnliftIO.MemoizeSpec
Paths_unliftio
default-language: Haskell2010