1
0

osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-bsb-http-chunked revision:6, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-bsb-http-chunked?expand=0&rev=19
This commit is contained in:
Peter Simons 2023-11-22 09:17:19 +00:00 committed by Git OBS Bridge
parent 9cdc703aa0
commit 9360f508ce
2 changed files with 80 additions and 85 deletions

View File

@ -1,80 +1,80 @@
Name: bsb-http-chunked Name: bsb-http-chunked
Version: 0.0.0.4 Version: 0.0.0.4
x-revision: 4 x-revision: 4
Synopsis: Chunked HTTP transfer encoding for bytestring builders Synopsis: Chunked HTTP transfer encoding for bytestring builders
Description: This library contains functions for encoding [bytestring Description: This library contains functions for encoding [bytestring
builders](http://hackage.haskell.org/package/bytestring/docs/Data-ByteString-Builder.html#t:Builder) builders](http://hackage.haskell.org/package/bytestring/docs/Data-ByteString-Builder.html#t:Builder)
for [chunked HTTP\/1.1 transfer](https://en.wikipedia.org/wiki/Chunked_transfer_encoding). for [chunked HTTP\/1.1 transfer](https://en.wikipedia.org/wiki/Chunked_transfer_encoding).
. .
This functionality was extracted from This functionality was extracted from
the [blaze-builder](http://hackage.haskell.org/package/blaze-builder) the [blaze-builder](http://hackage.haskell.org/package/blaze-builder)
package. package.
Author: Jasper Van der Jeugt, Simon Meier, Leon P Smith, Simon Jakobi Author: Jasper Van der Jeugt, Simon Meier, Leon P Smith, Simon Jakobi
Copyright: (c) 2010-2014 Simon Meier Copyright: (c) 2010-2014 Simon Meier
(c) 2010 Jasper Van der Jeugt (c) 2010 Jasper Van der Jeugt
(c) 2013-2015 Leon P Smith (c) 2013-2015 Leon P Smith
(c) 2018 Simon Jakobi (c) 2018 Simon Jakobi
Maintainer: Simon Jakobi <simon.jakobi@gmail.com> Maintainer: Simon Jakobi <simon.jakobi@gmail.com>
License: BSD3 License: BSD3
License-file: LICENSE License-file: LICENSE
Homepage: http://github.com/sjakobi/bsb-http-chunked Homepage: http://github.com/sjakobi/bsb-http-chunked
Bug-Reports: http://github.com/sjakobi/bsb-http-chunked/issues Bug-Reports: http://github.com/sjakobi/bsb-http-chunked/issues
Stability: Provisional Stability: Provisional
Category: Data, Network Category: Data, Network
Build-type: Simple Build-type: Simple
Cabal-version: >= 1.8 Cabal-version: >= 1.8
Extra-source-files: CHANGELOG.md Extra-source-files: CHANGELOG.md
Source-repository head Source-repository head
Type: git Type: git
Location: https://github.com/sjakobi/bsb-http-chunked.git Location: https://github.com/sjakobi/bsb-http-chunked.git
Library Library
exposed-modules: Data.ByteString.Builder.HTTP.Chunked exposed-modules: Data.ByteString.Builder.HTTP.Chunked
build-depends: base >= 4.8 && < 5, build-depends: base >= 4.8 && < 5,
bytestring >= 0.10.2 && < 0.13 bytestring >= 0.10.2 && < 0.13
ghc-options: -Wall -O2 ghc-options: -Wall -O2
if impl(ghc >= 8.0) if impl(ghc >= 8.0)
ghc-options: -Wcompat ghc-options: -Wcompat
test-suite tests test-suite tests
hs-source-dirs: tests hs-source-dirs: tests
main-is: Tests.hs main-is: Tests.hs
build-depends: attoparsec build-depends: attoparsec
, base , base
, bsb-http-chunked , bsb-http-chunked
, blaze-builder >= 0.2.1.4 , blaze-builder >= 0.2.1.4
, bytestring , bytestring
, hedgehog , hedgehog
, tasty , tasty
, tasty-hedgehog , tasty-hedgehog
, tasty-hunit , tasty-hunit
ghc-options: -Wall -rtsopts ghc-options: -Wall -rtsopts
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
test-suite doctests test-suite doctests
hs-source-dirs: tests hs-source-dirs: tests
main-is: Doctests.hs main-is: Doctests.hs
build-depends: base build-depends: base
, doctest >= 0.8 , doctest >= 0.8
ghc-options: -Wall ghc-options: -Wall
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
benchmark bench benchmark bench
hs-source-dirs: bench hs-source-dirs: bench
main-is: Bench.hs main-is: Bench.hs
build-depends: base build-depends: base
, blaze-builder , blaze-builder
, bsb-http-chunked , bsb-http-chunked
, bytestring , bytestring
, deepseq , deepseq
, gauge , gauge
, semigroups , semigroups
ghc-options: -O2 -Wall -rtsopts ghc-options: -O2 -Wall -rtsopts
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0

View File

@ -1,8 +1,3 @@
-------------------------------------------------------------------
Thu Nov 16 13:26:12 UTC 2023 - Peter Simons <psimons@suse.com>
- Strip CRLF line endings from the bundled Cabal file.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Nov 7 17:50:39 UTC 2023 - Peter Simons <psimons@suse.com> Tue Nov 7 17:50:39 UTC 2023 - Peter Simons <psimons@suse.com>