1
0

osc copypac from project:devel:languages:haskell:lts:11 package:ghc-lifted-base revision:4, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-lifted-base?expand=0&rev=22
This commit is contained in:
Peter Simons 2018-04-02 14:58:52 +00:00 committed by Git OBS Bridge
parent d2dcc17cc3
commit 8e62500dc0
5 changed files with 11 additions and 138 deletions

View File

@ -1,41 +1,12 @@
-------------------------------------------------------------------
Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com
Mon Mar 19 11:32:41 UTC 2018 - psimons@suse.com
- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
- Update lifted-base to version 0.2.3.12.
A more detailed change log is not available.
-------------------------------------------------------------------
Wed May 31 14:05:42 UTC 2017 - psimons@suse.com
Wed Mar 14 16:57:00 UTC 2018 - psimons@suse.com
- Update to version 0.2.3.11.
-------------------------------------------------------------------
Mon Feb 20 08:41:44 UTC 2017 - psimons@suse.com
- Update to version 0.2.3.10 with cabal2obs.
-------------------------------------------------------------------
Mon Jul 25 11:22:32 UTC 2016 - psimons@suse.com
- Update to version 0.2.3.8 revision 0 with cabal2obs.
-------------------------------------------------------------------
Fri Jul 22 06:06:17 UTC 2016 - psimons@suse.com
- Update to version 0.2.3.7 revision 0 with cabal2obs.
-------------------------------------------------------------------
Sun Jul 10 17:16:12 UTC 2016 - psimons@suse.com
- Update to version 0.2.3.6 revision 0 with cabal2obs.
-------------------------------------------------------------------
Tue Apr 21 19:42:56 UTC 2015 - mimi.vx@gmail.com
- update to 0.2.3.6
* no upstream changelog
-------------------------------------------------------------------
Sun Oct 6 21:50:28 UTC 2013 - sbahling@suse.com
- Initial package - version 0.2.1.0
- Update lifted-base to version 0.2.3.11 revision 1.
A more detailed change log is not available.

View File

@ -1,7 +1,7 @@
#
# spec file for package ghc-lifted-base
#
# 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
# remain the property of their copyright owners, unless otherwise agreed
@ -19,14 +19,13 @@
%global pkg_name lifted-base
%bcond_with tests
Name: ghc-%{pkg_name}
Version: 0.2.3.11
Version: 0.2.3.12
Release: 0
Summary: Lifted IO operations from the base library
License: BSD-3-Clause
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-monad-control-devel
BuildRequires: ghc-rpm-macros
@ -62,7 +61,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

View File

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

View File

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

View File

@ -1,96 +0,0 @@
Name: lifted-base
Version: 0.2.3.11
x-revision: 1
Synopsis: lifted IO operations from the base library
License: BSD3
License-file: LICENSE
Author: Bas van Dijk, Anders Kaseorg
Maintainer: Bas van Dijk <v.dijk.bas@gmail.com>
Copyright: (c) 2011-2012 Bas van Dijk, Anders Kaseorg
Homepage: https://github.com/basvandijk/lifted-base
Bug-reports: https://github.com/basvandijk/lifted-base/issues
Category: Control
Build-type: Simple
Cabal-version: >= 1.8
Description: @lifted-base@ exports IO operations from the base library lifted to
any instance of 'MonadBase' or 'MonadBaseControl'.
.
Note that not all modules from @base@ are converted yet. If
you need a lifted version of a function from @base@, just
ask me to add it or send me a patch.
.
The package includes a copy of the @monad-peel@ testsuite written
by Anders Kaseorg The tests can be performed using @cabal test@.
extra-source-files: README.markdown, NEWS
extra-source-files: include/inlinable.h
--------------------------------------------------------------------------------
source-repository head
type: git
location: https://github.com/basvandijk/lifted-base.git
--------------------------------------------------------------------------------
Library
Exposed-modules: Control.Exception.Lifted
Control.Concurrent.MVar.Lifted
Control.Concurrent.Chan.Lifted
Control.Concurrent.QSem.Lifted
Control.Concurrent.QSemN.Lifted
Control.Concurrent.Lifted
Data.IORef.Lifted
Foreign.Marshal.Utils.Lifted
System.Timeout.Lifted
if impl(ghc < 7.8)
Exposed-modules:
Control.Concurrent.SampleVar.Lifted
Build-depends: base >= 3 && < 5
, transformers-base >= 0.4 && < 0.5
, monad-control >= 0.3 && < 1.1
Include-dirs: include
Includes: inlinable.h
Ghc-options: -Wall
--------------------------------------------------------------------------------
test-suite test-lifted-base
type: exitcode-stdio-1.0
main-is: test.hs
hs-source-dirs: test
build-depends: lifted-base
, base >= 3 && < 5
, transformers >= 0.3 && < 0.6
, transformers-base >= 0.4.4 && < 0.5
, transformers-compat >= 0.3 && < 0.6
, monad-control >= 1.0.0.3 && < 1.1
, HUnit >= 1.2.2 && < 1.5
, test-framework >= 0.2.4 && < 0.9
, test-framework-hunit >= 0.2.4 && < 0.4
Include-dirs: include
Includes: inlinable.h
ghc-options: -Wall
--------------------------------------------------------------------------------
benchmark bench-lifted-base
type: exitcode-stdio-1.0
main-is: bench.hs
hs-source-dirs: bench
ghc-options: -O2
build-depends: lifted-base
, base >= 3 && < 5
, transformers >= 0.2 && < 0.6
, criterion >= 1 && < 1.4
, monad-control >= 0.3 && < 1.1
, monad-peel >= 0.1 && < 0.3