osc copypac from project:devel:languages:haskell:lts:11 package:ghc-conduit-extra revision:3, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-conduit-extra?expand=0&rev=40
This commit is contained in:
parent
37e41f7358
commit
b7b0080835
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:1d5b66284703a4b9fb96a4c6a2213727208639871a675da9755e9a963fa230f6
|
||||
size 37014
|
3
conduit-extra-1.3.0.tar.gz
Normal file
3
conduit-extra-1.3.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2c41c925fc53d9ba2e640c7cdca72c492b28c0d45f1a82e94baef8dfa65922ae
|
||||
size 32716
|
@ -1,128 +0,0 @@
|
||||
Name: conduit-extra
|
||||
Version: 1.2.3.2
|
||||
x-revision: 1
|
||||
Synopsis: Batteries included conduit: adapters for common libraries.
|
||||
Description:
|
||||
The conduit package itself maintains relative small dependencies. The purpose of this package is to collect commonly used utility functions wrapping other library dependencies, without depending on heavier-weight dependencies. The basic idea is that this package should only depend on haskell-platform packages and conduit.
|
||||
License: MIT
|
||||
License-file: LICENSE
|
||||
Author: Michael Snoyman
|
||||
Maintainer: michael@snoyman.com
|
||||
Category: Data, Conduit
|
||||
Build-type: Simple
|
||||
Cabal-version: >=1.8
|
||||
Homepage: http://github.com/snoyberg/conduit
|
||||
extra-source-files:
|
||||
test/random
|
||||
test/filesystem/*.txt
|
||||
test/filesystem/bin/*.txt
|
||||
ChangeLog.md
|
||||
README.md
|
||||
|
||||
Library
|
||||
Exposed-modules: Data.Conduit.Attoparsec
|
||||
Data.Conduit.Binary
|
||||
Data.Conduit.Blaze
|
||||
Data.Conduit.ByteString.Builder
|
||||
Data.Conduit.Filesystem
|
||||
Data.Conduit.Foldl
|
||||
Data.Conduit.Lazy
|
||||
Data.Conduit.Network
|
||||
Data.Conduit.Network.UDP
|
||||
Data.Conduit.Process
|
||||
Data.Conduit.Text
|
||||
Data.Conduit.Zlib
|
||||
if !os(windows)
|
||||
Exposed-modules: Data.Conduit.Network.Unix
|
||||
if impl(ghc >= 7.8)
|
||||
Exposed-modules: Data.Conduit.Process.Typed
|
||||
|
||||
if arch(x86_64) || arch(i386)
|
||||
-- These architectures are able to perform unaligned memory accesses
|
||||
cpp-options: -DALLOW_UNALIGNED_ACCESS
|
||||
|
||||
Build-depends: base >= 4.5 && < 5
|
||||
, conduit >= 1.2.8 && < 1.3
|
||||
|
||||
, bytestring >= 0.10.2
|
||||
, exceptions
|
||||
, monad-control
|
||||
, text
|
||||
, transformers
|
||||
, transformers-base
|
||||
|
||||
, async
|
||||
, attoparsec >= 0.10
|
||||
, blaze-builder >= 0.3
|
||||
, directory
|
||||
, filepath
|
||||
, network >= 2.3
|
||||
, primitive >= 0.5
|
||||
, process
|
||||
, resourcet >= 1.1
|
||||
, stm
|
||||
, streaming-commons >= 0.1.16 && < 0.2
|
||||
, unliftio-core
|
||||
if impl(ghc >= 7.8)
|
||||
build-depends: typed-process >= 0.2
|
||||
|
||||
ghc-options: -Wall
|
||||
|
||||
test-suite test
|
||||
hs-source-dirs: test
|
||||
main-is: Spec.hs
|
||||
type: exitcode-stdio-1.0
|
||||
ghc-options: -threaded
|
||||
cpp-options: -DTEST
|
||||
build-depends: conduit
|
||||
, conduit-extra
|
||||
, base
|
||||
, hspec >= 1.3
|
||||
|
||||
, async
|
||||
, attoparsec
|
||||
, blaze-builder
|
||||
, bytestring-builder
|
||||
, bytestring
|
||||
, exceptions
|
||||
, process
|
||||
, resourcet
|
||||
, QuickCheck
|
||||
, stm
|
||||
, streaming-commons
|
||||
, text
|
||||
, transformers
|
||||
, transformers-base
|
||||
, directory
|
||||
ghc-options: -Wall
|
||||
if os(windows)
|
||||
cpp-options: -DWINDOWS
|
||||
other-modules: Data.Conduit.AttoparsecSpec
|
||||
Data.Conduit.BinarySpec
|
||||
Data.Conduit.ByteString.BuilderSpec
|
||||
Data.Conduit.ExtraSpec
|
||||
Data.Conduit.FilesystemSpec
|
||||
Data.Conduit.LazySpec
|
||||
Data.Conduit.NetworkSpec
|
||||
Data.Conduit.ProcessSpec
|
||||
Data.Conduit.Process.TypedSpec
|
||||
Data.Conduit.TextSpec
|
||||
Data.Conduit.ZlibSpec
|
||||
|
||||
benchmark blaze
|
||||
type: exitcode-stdio-1.0
|
||||
hs-source-dirs: bench
|
||||
build-depends: base
|
||||
, blaze-builder
|
||||
, conduit
|
||||
, conduit-extra
|
||||
, criterion
|
||||
, bytestring
|
||||
, bytestring-builder
|
||||
, transformers
|
||||
main-is: blaze.hs
|
||||
ghc-options: -Wall -O2 -rtsopts
|
||||
|
||||
source-repository head
|
||||
type: git
|
||||
location: git://github.com/snoyberg/conduit.git
|
@ -1,124 +1,6 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 8 03:01:50 UTC 2018 - psimons@suse.com
|
||||
Wed Mar 14 16:55:44 UTC 2018 - psimons@suse.com
|
||||
|
||||
- Update to version 1.2.3.2.
|
||||
- Update conduit-extra to version 1.3.0.
|
||||
A more detailed change log is not available.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 1 10:18:42 UTC 2018 - psimons@suse.com
|
||||
|
||||
- Update to version 1.2.3.1.
|
||||
A more detailed change log is not available.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Dec 27 16:58:37 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 1.2.3.
|
||||
A more detailed change log is not available.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 21 19:12:02 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 1.2.2.
|
||||
A more detailed change log is not available.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 13 06:59:04 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 1.1.17.
|
||||
A more detailed change log is not available.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 3 15:38:38 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Updated with latest spec-cleaner version 0.9.8-8-geadfbbf.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 22 08:08:55 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 1.1.16 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 27 12:41:01 UTC 2017 - psimons@suse.com
|
||||
|
||||
- Update to version 1.1.15 revision 1 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 14 09:30:04 UTC 2016 - psimons@suse.com
|
||||
|
||||
- Update to version 1.1.15 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 26 06:52:26 UTC 2016 - psimons@suse.com
|
||||
|
||||
- Update to version 1.1.13.3 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 17 13:17:59 UTC 2016 - psimons@suse.com
|
||||
|
||||
- Update to version 1.1.13.2 revision 0 with cabal2obs.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Jul 10 15:30:34 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.13.2
|
||||
* Fix alignment issues on non-X86 archs
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 3 15:14:52 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.13.1
|
||||
* Add sinkStorable and sinkStorableEx
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 31 08:36:42 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.12.1
|
||||
* Add sourceProcessWithStreams
|
||||
* Fix accidentally breaking change in sourceProcessWithConsumer type signature
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 7 09:32:33 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.11
|
||||
* withCheckedProcessCleanup
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 17 09:13:57 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.10.1
|
||||
* multiple combinator for Data.Conduit.Zlib
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 15 19:54:55 UTC 2016 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.9.3
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Dec 7 10:41:01 UTC 2015 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.9.2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 27 07:24:38 UTC 2015 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.9.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun May 31 20:31:58 UTC 2015 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.9
|
||||
* detectUtf
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun May 17 15:06:03 UTC 2015 - mimi.vx@gmail.com
|
||||
|
||||
- update to 1.1.8
|
||||
* Adding buffer size to sourceHandleRange [#213](https://github.com/snoyberg/conduit/pull/213)
|
||||
* Make Binary.lines O(n) instead of O(n^2) [#209](https://github.com/snoyberg/conduit/pull/209)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 22 08:23:09 UTC 2015 - mimi.vx@gmail.com
|
||||
|
||||
- initial commit
|
||||
|
||||
|
@ -19,24 +19,20 @@
|
||||
%global pkg_name conduit-extra
|
||||
%bcond_with tests
|
||||
Name: ghc-%{pkg_name}
|
||||
Version: 1.2.3.2
|
||||
Version: 1.3.0
|
||||
Release: 0
|
||||
Summary: Batteries included conduit: adapters for common libraries
|
||||
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-attoparsec-devel
|
||||
BuildRequires: ghc-blaze-builder-devel
|
||||
BuildRequires: ghc-bytestring-devel
|
||||
BuildRequires: ghc-conduit-devel
|
||||
BuildRequires: ghc-directory-devel
|
||||
BuildRequires: ghc-exceptions-devel
|
||||
BuildRequires: ghc-filepath-devel
|
||||
BuildRequires: ghc-monad-control-devel
|
||||
BuildRequires: ghc-network-devel
|
||||
BuildRequires: ghc-primitive-devel
|
||||
BuildRequires: ghc-process-devel
|
||||
@ -45,14 +41,15 @@ BuildRequires: ghc-rpm-macros
|
||||
BuildRequires: ghc-stm-devel
|
||||
BuildRequires: ghc-streaming-commons-devel
|
||||
BuildRequires: ghc-text-devel
|
||||
BuildRequires: ghc-transformers-base-devel
|
||||
BuildRequires: ghc-transformers-devel
|
||||
BuildRequires: ghc-typed-process-devel
|
||||
BuildRequires: ghc-unliftio-core-devel
|
||||
%if %{with tests}
|
||||
BuildRequires: ghc-QuickCheck-devel
|
||||
BuildRequires: ghc-bytestring-builder-devel
|
||||
BuildRequires: ghc-exceptions-devel
|
||||
BuildRequires: ghc-hspec-devel
|
||||
BuildRequires: ghc-transformers-base-devel
|
||||
%endif
|
||||
|
||||
%description
|
||||
@ -75,7 +72,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
|
||||
|
Loading…
x
Reference in New Issue
Block a user