osc copypac from project:devel:languages:haskell:ghc-9.6.x package:ghc-yaml revision:7, using keep-link

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-yaml?expand=0&rev=119
This commit is contained in:
Peter Simons 2023-11-22 09:17:23 +00:00 committed by Git OBS Bridge
parent 2a8ccab0a1
commit dce67e50af
2 changed files with 227 additions and 232 deletions

View File

@ -1,8 +1,3 @@
-------------------------------------------------------------------
Thu Nov 16 13:27:04 UTC 2023 - Peter Simons <psimons@suse.com>
- Strip CRLF line endings from the bundled Cabal file.
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Jul 4 04:42:08 UTC 2023 - Peter Simons <psimons@suse.com> Tue Jul 4 04:42:08 UTC 2023 - Peter Simons <psimons@suse.com>

View File

@ -1,227 +1,227 @@
cabal-version: 1.12 cabal-version: 1.12
-- This file has been generated from package.yaml by hpack version 0.35.1. -- This file has been generated from package.yaml by hpack version 0.35.1.
-- --
-- see: https://github.com/sol/hpack -- see: https://github.com/sol/hpack
name: yaml name: yaml
version: 0.11.11.2 version: 0.11.11.2
x-revision: 2 x-revision: 2
synopsis: Support for parsing and rendering YAML documents. synopsis: Support for parsing and rendering YAML documents.
description: README and API documentation are available at <https://www.stackage.org/package/yaml> description: README and API documentation are available at <https://www.stackage.org/package/yaml>
category: Data category: Data
stability: stable stability: stable
homepage: https://github.com/snoyberg/yaml#readme homepage: https://github.com/snoyberg/yaml#readme
bug-reports: https://github.com/snoyberg/yaml/issues bug-reports: https://github.com/snoyberg/yaml/issues
author: Michael Snoyman <michael@snoyman.com>, Anton Ageev <antage@gmail.com>,Kirill Simonov author: Michael Snoyman <michael@snoyman.com>, Anton Ageev <antage@gmail.com>,Kirill Simonov
maintainer: Michael Snoyman <michael@snoyman.com> maintainer: Michael Snoyman <michael@snoyman.com>
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
build-type: Simple build-type: Simple
extra-source-files: extra-source-files:
test/largest-string.yaml test/largest-string.yaml
test/json.yaml test/json.yaml
test/resources/foo.yaml test/resources/foo.yaml
test/resources/bar.yaml test/resources/bar.yaml
test/resources/baz.yaml test/resources/baz.yaml
test/resources/accent/foo.yaml test/resources/accent/foo.yaml
test/resources/loop/foo.yaml test/resources/loop/foo.yaml
test/resources/loop/bar.yaml test/resources/loop/bar.yaml
test/resources/empty.yaml test/resources/empty.yaml
test/resources/empty2.yaml test/resources/empty2.yaml
README.md README.md
ChangeLog.md ChangeLog.md
source-repository head source-repository head
type: git type: git
location: https://github.com/snoyberg/yaml location: https://github.com/snoyberg/yaml
flag no-examples flag no-examples
description: don't build the examples description: don't build the examples
manual: False manual: False
default: True default: True
flag no-exe flag no-exe
description: don't install the yaml2json or json2yaml executables description: don't install the yaml2json or json2yaml executables
manual: False manual: False
default: True default: True
library library
exposed-modules: exposed-modules:
Data.Yaml Data.Yaml
Data.Yaml.Aeson Data.Yaml.Aeson
Data.Yaml.Builder Data.Yaml.Builder
Data.Yaml.Config Data.Yaml.Config
Data.Yaml.Include Data.Yaml.Include
Data.Yaml.Internal Data.Yaml.Internal
Data.Yaml.Parser Data.Yaml.Parser
Data.Yaml.Pretty Data.Yaml.Pretty
Data.Yaml.TH Data.Yaml.TH
other-modules: other-modules:
Paths_yaml Paths_yaml
hs-source-dirs: hs-source-dirs:
src src
other-extensions: other-extensions:
LambdaCase LambdaCase
ghc-options: -Wall -Wcompat ghc-options: -Wall -Wcompat
build-depends: build-depends:
aeson >=0.11 aeson >=0.11
, attoparsec >=0.11.3.0 , attoparsec >=0.11.3.0
, base >=4.9.1 && <5 , base >=4.9.1 && <5
, bytestring >=0.9.1.4 , bytestring >=0.9.1.4
, conduit >=1.2.8 && <1.4 , conduit >=1.2.8 && <1.4
, containers , containers
, directory , directory
, filepath , filepath
, libyaml ==0.1.* , libyaml ==0.1.*
, mtl , mtl
, resourcet >=0.3 && <1.4 , resourcet >=0.3 && <1.4
, scientific >=0.3 , scientific >=0.3
, template-haskell , template-haskell
, text , text
, transformers >=0.1 , transformers >=0.1
, unordered-containers , unordered-containers
, vector , vector
default-language: Haskell2010 default-language: Haskell2010
executable examples executable examples
main-is: Main.hs main-is: Main.hs
other-modules: other-modules:
Config Config
Simple Simple
Paths_yaml Paths_yaml
hs-source-dirs: hs-source-dirs:
examples examples
ghc-options: -Wall -Wcompat ghc-options: -Wall -Wcompat
build-depends: build-depends:
aeson >=0.11 aeson >=0.11
, attoparsec >=0.11.3.0 , attoparsec >=0.11.3.0
, base >=4.9.1 && <5 , base >=4.9.1 && <5
, bytestring >=0.9.1.4 , bytestring >=0.9.1.4
, conduit >=1.2.8 && <1.4 , conduit >=1.2.8 && <1.4
, containers , containers
, directory , directory
, filepath , filepath
, libyaml ==0.1.* , libyaml ==0.1.*
, mtl , mtl
, resourcet >=0.3 && <1.4 , resourcet >=0.3 && <1.4
, scientific >=0.3 , scientific >=0.3
, template-haskell , template-haskell
, text , text
, transformers >=0.1 , transformers >=0.1
, unordered-containers , unordered-containers
, vector , vector
default-language: Haskell2010 default-language: Haskell2010
if flag(no-examples) if flag(no-examples)
buildable: False buildable: False
else else
build-depends: build-depends:
raw-strings-qq raw-strings-qq
, yaml , yaml
executable json2yaml executable json2yaml
main-is: json2yaml.hs main-is: json2yaml.hs
other-modules: other-modules:
Common Common
Paths_yaml Paths_yaml
hs-source-dirs: hs-source-dirs:
exe exe
ghc-options: -Wall -Wcompat ghc-options: -Wall -Wcompat
build-depends: build-depends:
aeson >=0.11 aeson >=0.11
, attoparsec >=0.11.3.0 , attoparsec >=0.11.3.0
, base >=4.9.1 && <5 , base >=4.9.1 && <5
, bytestring >=0.9.1.4 , bytestring >=0.9.1.4
, conduit >=1.2.8 && <1.4 , conduit >=1.2.8 && <1.4
, containers , containers
, directory , directory
, filepath , filepath
, libyaml ==0.1.* , libyaml ==0.1.*
, mtl , mtl
, optparse-applicative , optparse-applicative
, resourcet >=0.3 && <1.4 , resourcet >=0.3 && <1.4
, scientific >=0.3 , scientific >=0.3
, template-haskell , template-haskell
, text , text
, transformers >=0.1 , transformers >=0.1
, unordered-containers , unordered-containers
, vector , vector
, yaml , yaml
default-language: Haskell2010 default-language: Haskell2010
if flag(no-exe) if flag(no-exe)
buildable: False buildable: False
executable yaml2json executable yaml2json
main-is: yaml2json.hs main-is: yaml2json.hs
other-modules: other-modules:
Common Common
Paths_yaml Paths_yaml
hs-source-dirs: hs-source-dirs:
exe exe
other-extensions: other-extensions:
CPP CPP
LambdaCase LambdaCase
NamedFieldPuns NamedFieldPuns
ghc-options: -Wall -Wcompat ghc-options: -Wall -Wcompat
build-depends: build-depends:
aeson >=0.11 aeson >=0.11
, attoparsec >=0.11.3.0 , attoparsec >=0.11.3.0
, base >=4.9.1 && <5 , base >=4.9.1 && <5
, bytestring >=0.9.1.4 , bytestring >=0.9.1.4
, conduit >=1.2.8 && <1.4 , conduit >=1.2.8 && <1.4
, containers , containers
, directory , directory
, filepath , filepath
, libyaml ==0.1.* , libyaml ==0.1.*
, mtl , mtl
, optparse-applicative , optparse-applicative
, resourcet >=0.3 && <1.4 , resourcet >=0.3 && <1.4
, scientific >=0.3 , scientific >=0.3
, template-haskell , template-haskell
, text , text
, transformers >=0.1 , transformers >=0.1
, unordered-containers , unordered-containers
, vector , vector
, yaml , yaml
default-language: Haskell2010 default-language: Haskell2010
if flag(no-exe) if flag(no-exe)
buildable: False buildable: False
test-suite spec test-suite spec
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
main-is: Spec.hs main-is: Spec.hs
other-modules: other-modules:
Data.Yaml.IncludeSpec Data.Yaml.IncludeSpec
Data.Yaml.THSpec Data.Yaml.THSpec
Data.YamlSpec Data.YamlSpec
Paths_yaml Paths_yaml
hs-source-dirs: hs-source-dirs:
test test
ghc-options: -Wall -Wcompat -with-rtsopts=-K1K ghc-options: -Wall -Wcompat -with-rtsopts=-K1K
cpp-options: -DTEST cpp-options: -DTEST
build-depends: build-depends:
HUnit HUnit
, aeson >=0.11 , aeson >=0.11
, attoparsec >=0.11.3.0 , attoparsec >=0.11.3.0
, base >=4.9.1 && <5 , base >=4.9.1 && <5
, base-compat , base-compat
, bytestring >=0.9.1.4 , bytestring >=0.9.1.4
, conduit >=1.2.8 && <1.4 , conduit >=1.2.8 && <1.4
, containers , containers
, directory , directory
, filepath , filepath
, hspec >=1.3 , hspec >=1.3
, libyaml ==0.1.* , libyaml ==0.1.*
, mockery , mockery
, mtl , mtl
, raw-strings-qq , raw-strings-qq
, resourcet >=0.3 && <1.4 , resourcet >=0.3 && <1.4
, scientific >=0.3 , scientific >=0.3
, template-haskell , template-haskell
, temporary , temporary
, text , text
, transformers >=0.1 , transformers >=0.1
, unordered-containers , unordered-containers
, vector , vector
, yaml , yaml
default-language: Haskell2010 default-language: Haskell2010