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

OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-lucid?expand=0&rev=29
This commit is contained in:
Peter Simons 2023-11-22 09:17:21 +00:00 committed by Git OBS Bridge
parent 3431542caa
commit ea7d6c7f6c
2 changed files with 99 additions and 104 deletions

View File

@ -1,8 +1,3 @@
-------------------------------------------------------------------
Thu Nov 16 13:26:30 UTC 2023 - Peter Simons <psimons@suse.com>
- Strip CRLF line endings from the bundled Cabal file.
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 29 16:08:49 UTC 2023 - Peter Simons <psimons@suse.com> Sun Oct 29 16:08:49 UTC 2023 - Peter Simons <psimons@suse.com>

View File

@ -1,99 +1,99 @@
name: lucid name: lucid
version: 2.11.20230408 version: 2.11.20230408
x-revision: 1 x-revision: 1
synopsis: Clear to write, read and edit DSL for HTML synopsis: Clear to write, read and edit DSL for HTML
description: description:
Clear to write, read and edit DSL for HTML. Clear to write, read and edit DSL for HTML.
. .
* Names are consistent, and do not conflict with base or are keywords (all have suffix @_@) * Names are consistent, and do not conflict with base or are keywords (all have suffix @_@)
. .
* Same combinator can be used for attributes and elements (e.g. 'style_') * Same combinator can be used for attributes and elements (e.g. 'style_')
. .
* For more, read <https://chrisdone.com/posts/lucid the blog post> * For more, read <https://chrisdone.com/posts/lucid the blog post>
. .
See the "Lucid" module for more documentation. See the "Lucid" module for more documentation.
homepage: https://github.com/chrisdone/lucid homepage: https://github.com/chrisdone/lucid
license: BSD3 license: BSD3
license-file: LICENSE license-file: LICENSE
author: Chris Done author: Chris Done
maintainer: chrisdone@gmail.com maintainer: chrisdone@gmail.com
copyright: 2014-2021 Chris Done copyright: 2014-2021 Chris Done
category: Web category: Web
build-type: Simple build-type: Simple
cabal-version: >=1.10 cabal-version: >=1.10
extra-source-files: README.md, CHANGELOG.md extra-source-files: README.md, CHANGELOG.md
tested-with: GHC==7.10.3,GHC==8.0.2,GHC==8.2.2,GHC==8.4.4,GHC==8.6.5,GHC==8.8.4,GHC==8.10.7,GHC==9.0.1,GHC==9.2.1, GHC==9.4.1, GHC==9.8 tested-with: GHC==7.10.3,GHC==8.0.2,GHC==8.2.2,GHC==8.4.4,GHC==8.6.5,GHC==8.8.4,GHC==8.10.7,GHC==9.0.1,GHC==9.2.1, GHC==9.4.1, GHC==9.8
library library
default-language: Haskell2010 default-language: Haskell2010
hs-source-dirs: src/ hs-source-dirs: src/
ghc-options: -Wall -O2 ghc-options: -Wall -O2
exposed-modules: Lucid exposed-modules: Lucid
Lucid.Base Lucid.Base
Lucid.Html5 Lucid.Html5
Lucid.Bootstrap Lucid.Bootstrap
-- GHC boot libraries -- GHC boot libraries
build-depends: base >=4.8 && <4.20 build-depends: base >=4.8 && <4.20
, bytestring >=0.10.6.0 , bytestring >=0.10.6.0
, containers >=0.5.6.2 , containers >=0.5.6.2
, transformers >=0.4.2.0 , transformers >=0.4.2.0
-- GHC boot libraries since 8.4. -- GHC boot libraries since 8.4.
build-depends: mtl >=2.2 build-depends: mtl >=2.2
, text >=1.2.0.2 , text >=1.2.0.2
-- compat packages -- compat packages
if !impl(ghc >= 8.0) if !impl(ghc >= 8.0)
build-depends: semigroups >=0.16.1 build-depends: semigroups >=0.16.1
-- other dependencies -- other dependencies
build-depends: blaze-builder >=0.4.0.0 build-depends: blaze-builder >=0.4.0.0
, hashable >=1.2.3.2 , hashable >=1.2.3.2
, mmorph >=1.0.3 , mmorph >=1.0.3
source-repository head source-repository head
type: git type: git
location: https://github.com/chrisdone/lucid.git location: https://github.com/chrisdone/lucid.git
test-suite test test-suite test
default-language: Haskell2010 default-language: Haskell2010
type: exitcode-stdio-1.0 type: exitcode-stdio-1.0
main-is: Main.hs main-is: Main.hs
hs-source-dirs: test hs-source-dirs: test
other-modules: Example1 other-modules: Example1
build-depends: base, build-depends: base,
lucid, lucid,
HUnit, HUnit,
hspec, hspec,
parsec, parsec,
bifunctors, bifunctors,
text, text,
mtl mtl
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: Main.hs main-is: Main.hs
other-modules: HtmlBenchmarks other-modules: HtmlBenchmarks
build-depends: base, build-depends: base,
deepseq, deepseq,
criterion, criterion,
blaze-builder, blaze-builder,
text, text,
bytestring, bytestring,
lucid lucid
ghc-options: -O2 ghc-options: -O2
benchmark bench-io benchmark bench-io
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: IO.hs main-is: IO.hs
build-depends: base, build-depends: base,
criterion, criterion,
transformers, transformers,
text, text,
lucid lucid
ghc-options: -O2 ghc-options: -O2