diff --git a/ghc-lucid.changes b/ghc-lucid.changes index c32c1ce..8a02724 100644 --- a/ghc-lucid.changes +++ b/ghc-lucid.changes @@ -1,3 +1,11 @@ +------------------------------------------------------------------- +Tue Mar 2 09:33:12 UTC 2021 - psimons@suse.com + +- Update lucid to version 2.9.12.1. + ## 2.9.12.1 + + * Allow different orderings of attributes in test-suite + ------------------------------------------------------------------- Thu Dec 17 12:20:00 UTC 2020 - Ondřej Súkup diff --git a/ghc-lucid.spec b/ghc-lucid.spec index 79508fe..2a0535f 100644 --- a/ghc-lucid.spec +++ b/ghc-lucid.spec @@ -1,7 +1,7 @@ # # spec file for package ghc-lucid # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,13 +19,12 @@ %global pkg_name lucid %bcond_with tests Name: ghc-%{pkg_name} -Version: 2.9.12 +Version: 2.9.12.1 Release: 0 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 @@ -70,7 +69,6 @@ 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-2.9.12.1.tar.gz b/lucid-2.9.12.1.tar.gz new file mode 100644 index 0000000..0f15d3b --- /dev/null +++ b/lucid-2.9.12.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:41e0e76df02737c1ef19dfad88482fbac3918d9e206939de440299d6f1257e5a +size 19988 diff --git a/lucid-2.9.12.tar.gz b/lucid-2.9.12.tar.gz deleted file mode 100644 index 08c40c4..0000000 --- a/lucid-2.9.12.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:304bc31b4b5d65b0e7bc4ad88ca2a2c84f64e92fa9aee7f3591486d67cb4dc94 -size 20264 diff --git a/lucid.cabal b/lucid.cabal deleted file mode 100644 index 9946f5a..0000000 --- a/lucid.cabal +++ /dev/null @@ -1,92 +0,0 @@ -name: lucid -version: 2.9.12 -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, oleg.grenrus@iki.fi -copyright: 2014-2017 Chris Done -category: Web -build-type: Simple -cabal-version: >=1.8 -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.3,GHC==8.10.1 - -library - 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.15 - , 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 - , unordered-containers >=0.2.5.1 - -test-suite test - 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 - 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 - type: exitcode-stdio-1.0 - hs-source-dirs: benchmarks - main-is: IO.hs - build-depends: base, - criterion, - transformers, - text, - lucid - ghc-options: -O2