From 38c934efc73f443173b792c6b1e529f061ca5a4ebddad88eb89dbf990d9963f7 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 6 Oct 2022 14:46:24 +0000 Subject: [PATCH] osc copypac from project:devel:languages:haskell:ghc-8.10.x package:ghc-lucid revision:16, using keep-link OBS-URL: https://build.opensuse.org/package/show/devel:languages:haskell/ghc-lucid?expand=0&rev=17 --- ghc-lucid.changes | 6 +++ ghc-lucid.spec | 2 + lucid.cabal | 99 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 107 insertions(+) create mode 100644 lucid.cabal diff --git a/ghc-lucid.changes b/ghc-lucid.changes index 91ff606..687763a 100644 --- a/ghc-lucid.changes +++ b/ghc-lucid.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Sep 27 20:18:07 UTC 2022 - Peter Simons + +- Update lucid to version 2.11.1 revision 1. + Upstream has revised the Cabal build instructions on Hackage. + ------------------------------------------------------------------- Sun May 8 10:49:30 UTC 2022 - Peter Simons diff --git a/ghc-lucid.spec b/ghc-lucid.spec index acff5d7..513e2a0 100644 --- a/ghc-lucid.spec +++ b/ghc-lucid.spec @@ -25,6 +25,7 @@ Summary: Clear to write, read and edit DSL for HTML License: BSD-3-Clause 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-blaze-builder-devel BuildRequires: ghc-bytestring-devel @@ -68,6 +69,7 @@ This package provides the Haskell %{pkg_name} library development files. %prep %autosetup -n %{pkg_name}-%{version} +cp -p %{SOURCE1} %{pkg_name}.cabal %build %ghc_lib_build diff --git a/lucid.cabal b/lucid.cabal new file mode 100644 index 0000000..1dc9535 --- /dev/null +++ b/lucid.cabal @@ -0,0 +1,99 @@ +name: lucid +version: 2.11.1 +x-revision: 1 +synopsis: Clear to write, read and edit DSL for HTML +description: + Clear to write, read and edit DSL for HTML. + . + * 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_') + . + * For more, read + . + See the "Lucid" module for more documentation. +homepage: https://github.com/chrisdone/lucid +license: BSD3 +license-file: LICENSE +author: Chris Done +maintainer: chrisdone@gmail.com +copyright: 2014-2021 Chris Done +category: Web +build-type: Simple +cabal-version: >=1.10 +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 + +library + default-language: Haskell2010 + hs-source-dirs: src/ + ghc-options: -Wall -O2 + exposed-modules: Lucid + Lucid.Base + Lucid.Html5 + Lucid.Bootstrap + + -- GHC boot libraries + build-depends: base >=4.8 && <4.18 + , bytestring >=0.10.6.0 + , containers >=0.5.6.2 + , transformers >=0.4.2.0 + + -- GHC boot libraries since 8.4. + build-depends: mtl >=2.2 + , text >=1.2.0.2 + + -- compat packages + if !impl(ghc >= 8.0) + build-depends: semigroups >=0.16.1 + + -- other dependencies + build-depends: blaze-builder >=0.4.0.0 + , hashable >=1.2.3.2 + , mmorph >=1.0.3 + +source-repository head + type: git + location: https://github.com/chrisdone/lucid.git + +test-suite test + default-language: Haskell2010 + type: exitcode-stdio-1.0 + main-is: Main.hs + hs-source-dirs: test + other-modules: Example1 + build-depends: base, + lucid, + HUnit, + hspec, + parsec, + bifunctors, + text, + mtl + +benchmark bench + default-language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: benchmarks + main-is: Main.hs + other-modules: HtmlBenchmarks + build-depends: base, + deepseq, + criterion, + blaze-builder, + text, + bytestring, + lucid + ghc-options: -O2 + +benchmark bench-io + default-language: Haskell2010 + type: exitcode-stdio-1.0 + hs-source-dirs: benchmarks + main-is: IO.hs + build-depends: base, + criterion, + transformers, + text, + lucid + ghc-options: -O2