osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-base64 revision:6, using keep-link
OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-base64?expand=0&rev=22
This commit is contained in:
parent
47a6adc748
commit
f976a99035
202
base64.cabal
202
base64.cabal
@ -1,101 +1,101 @@
|
|||||||
cabal-version: 2.0
|
cabal-version: 2.0
|
||||||
name: base64
|
name: base64
|
||||||
version: 0.4.2.4
|
version: 0.4.2.4
|
||||||
x-revision: 4
|
x-revision: 4
|
||||||
synopsis: A modern RFC 4648-compliant Base64 library
|
synopsis: A modern RFC 4648-compliant Base64 library
|
||||||
description:
|
description:
|
||||||
RFC 4648-compliant Base64 with an eye towards performance and modernity (additional support for RFC 7049 standards)
|
RFC 4648-compliant Base64 with an eye towards performance and modernity (additional support for RFC 7049 standards)
|
||||||
|
|
||||||
homepage: https://github.com/emilypi/base64
|
homepage: https://github.com/emilypi/base64
|
||||||
bug-reports: https://github.com/emilypi/base64/issues
|
bug-reports: https://github.com/emilypi/base64/issues
|
||||||
license: BSD3
|
license: BSD3
|
||||||
license-file: LICENSE
|
license-file: LICENSE
|
||||||
author: Emily Pillmore
|
author: Emily Pillmore
|
||||||
maintainer: emilypi@cohomolo.gy
|
maintainer: emilypi@cohomolo.gy
|
||||||
copyright: (c) 2019-2022 Emily Pillmore
|
copyright: (c) 2019-2022 Emily Pillmore
|
||||||
category: Data
|
category: Data
|
||||||
build-type: Simple
|
build-type: Simple
|
||||||
extra-doc-files:
|
extra-doc-files:
|
||||||
CHANGELOG.md
|
CHANGELOG.md
|
||||||
README.md
|
README.md
|
||||||
|
|
||||||
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.1 || ==9.6.1
|
tested-with: GHC ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.1 || ==9.6.1
|
||||||
|
|
||||||
source-repository head
|
source-repository head
|
||||||
type: git
|
type: git
|
||||||
location: https://github.com/emilypi/base64.git
|
location: https://github.com/emilypi/base64.git
|
||||||
|
|
||||||
library
|
library
|
||||||
exposed-modules:
|
exposed-modules:
|
||||||
Data.ByteString.Base64
|
Data.ByteString.Base64
|
||||||
Data.ByteString.Base64.URL
|
Data.ByteString.Base64.URL
|
||||||
Data.ByteString.Lazy.Base64
|
Data.ByteString.Lazy.Base64
|
||||||
Data.ByteString.Lazy.Base64.URL
|
Data.ByteString.Lazy.Base64.URL
|
||||||
Data.ByteString.Short.Base64
|
Data.ByteString.Short.Base64
|
||||||
Data.ByteString.Short.Base64.URL
|
Data.ByteString.Short.Base64.URL
|
||||||
Data.Text.Encoding.Base64
|
Data.Text.Encoding.Base64
|
||||||
Data.Text.Encoding.Base64.Error
|
Data.Text.Encoding.Base64.Error
|
||||||
Data.Text.Encoding.Base64.URL
|
Data.Text.Encoding.Base64.URL
|
||||||
Data.Text.Lazy.Encoding.Base64
|
Data.Text.Lazy.Encoding.Base64
|
||||||
Data.Text.Lazy.Encoding.Base64.URL
|
Data.Text.Lazy.Encoding.Base64.URL
|
||||||
Data.Text.Short.Encoding.Base64
|
Data.Text.Short.Encoding.Base64
|
||||||
Data.Text.Short.Encoding.Base64.URL
|
Data.Text.Short.Encoding.Base64.URL
|
||||||
|
|
||||||
other-modules:
|
other-modules:
|
||||||
Data.ByteString.Base64.Internal
|
Data.ByteString.Base64.Internal
|
||||||
Data.ByteString.Base64.Internal.Head
|
Data.ByteString.Base64.Internal.Head
|
||||||
Data.ByteString.Base64.Internal.Tables
|
Data.ByteString.Base64.Internal.Tables
|
||||||
Data.ByteString.Base64.Internal.Tail
|
Data.ByteString.Base64.Internal.Tail
|
||||||
Data.ByteString.Base64.Internal.Utils
|
Data.ByteString.Base64.Internal.Utils
|
||||||
Data.ByteString.Base64.Internal.W16.Loop
|
Data.ByteString.Base64.Internal.W16.Loop
|
||||||
Data.ByteString.Base64.Internal.W32.Loop
|
Data.ByteString.Base64.Internal.W32.Loop
|
||||||
Data.ByteString.Base64.Internal.W64.Loop
|
Data.ByteString.Base64.Internal.W64.Loop
|
||||||
|
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.14 && <4.20
|
base >=4.14 && <4.20
|
||||||
, bytestring >=0.10 && <0.13
|
, bytestring >=0.10 && <0.13
|
||||||
, deepseq >=1.4.3.0 && <1.6
|
, deepseq >=1.4.3.0 && <1.6
|
||||||
, text >=1.2 && <1.3 || >=2.0 && <2.2
|
, text >=1.2 && <1.3 || >=2.0 && <2.2
|
||||||
, text-short ^>=0.1
|
, text-short ^>=0.1
|
||||||
|
|
||||||
hs-source-dirs: src
|
hs-source-dirs: src
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
ghc-options: -Wall
|
ghc-options: -Wall
|
||||||
|
|
||||||
test-suite tasty
|
test-suite tasty
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
hs-source-dirs: test
|
hs-source-dirs: test
|
||||||
other-modules: Internal
|
other-modules: Internal
|
||||||
main-is: Main.hs
|
main-is: Main.hs
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.14 && <4.20
|
base >=4.14 && <4.20
|
||||||
, base64
|
, base64
|
||||||
, base64-bytestring
|
, base64-bytestring
|
||||||
, bytestring
|
, bytestring
|
||||||
, QuickCheck
|
, QuickCheck
|
||||||
, random-bytestring
|
, random-bytestring
|
||||||
, tasty
|
, tasty
|
||||||
, tasty-hunit
|
, tasty-hunit
|
||||||
, tasty-quickcheck
|
, tasty-quickcheck
|
||||||
, text
|
, text
|
||||||
, text-short
|
, text-short
|
||||||
|
|
||||||
ghc-options: -Wall -threaded -with-rtsopts=-N
|
ghc-options: -Wall -threaded -with-rtsopts=-N
|
||||||
|
|
||||||
benchmark bench
|
benchmark bench
|
||||||
default-language: Haskell2010
|
default-language: Haskell2010
|
||||||
type: exitcode-stdio-1.0
|
type: exitcode-stdio-1.0
|
||||||
hs-source-dirs: benchmarks
|
hs-source-dirs: benchmarks
|
||||||
main-is: Base64Bench.hs
|
main-is: Base64Bench.hs
|
||||||
build-depends:
|
build-depends:
|
||||||
base >=4.14 && <4.20
|
base >=4.14 && <4.20
|
||||||
, base64
|
, base64
|
||||||
, base64-bytestring
|
, base64-bytestring
|
||||||
, bytestring
|
, bytestring
|
||||||
, criterion
|
, criterion
|
||||||
, deepseq
|
, deepseq
|
||||||
, random-bytestring
|
, random-bytestring
|
||||||
, text
|
, text
|
||||||
|
|
||||||
ghc-options: -Wall -rtsopts
|
ghc-options: -Wall -rtsopts
|
||||||
|
@ -1,8 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Thu Nov 16 13:26:11 UTC 2023 - Peter Simons <psimons@suse.com>
|
|
||||||
|
|
||||||
- Strip CRLF line endings from the bundled Cabal file.
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Nov 5 02:39:42 UTC 2023 - Peter Simons <psimons@suse.com>
|
Sun Nov 5 02:39:42 UTC 2023 - Peter Simons <psimons@suse.com>
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user