Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package ghc-microstache for openSUSE:Factory 
checked in at 2021-12-19 17:34:47
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-microstache (Old)
 and      /work/SRC/openSUSE:Factory/.ghc-microstache.new.2520 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "ghc-microstache"

Sun Dec 19 17:34:47 2021 rev:3 rq:934287 version:1.0.2

Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-microstache/ghc-microstache.changes  
2021-11-11 21:36:58.796913067 +0100
+++ 
/work/SRC/openSUSE:Factory/.ghc-microstache.new.2520/ghc-microstache.changes    
    2021-12-19 17:35:04.640292022 +0100
@@ -1,0 +2,12 @@
+Sat Nov 20 17:30:52 UTC 2021 - [email protected]
+
+- Update microstache to version 1.0.2 revision 2.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------
+Mon Nov 15 06:58:14 UTC 2021 - [email protected]
+
+- Update microstache to version 1.0.2 revision 1.
+  Upstream has revised the Cabal build instructions on Hackage.
+
+-------------------------------------------------------------------

New:
----
  microstache.cabal

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ ghc-microstache.spec ++++++
--- /var/tmp/diff_new_pack.RxgPdM/_old  2021-12-19 17:35:05.072292326 +0100
+++ /var/tmp/diff_new_pack.RxgPdM/_new  2021-12-19 17:35:05.076292329 +0100
@@ -25,6 +25,7 @@
 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/2.cabal#/%{pkg_name}.cabal
 BuildRequires:  ghc-Cabal-devel
 BuildRequires:  ghc-aeson-devel
 BuildRequires:  ghc-containers-devel
@@ -61,6 +62,7 @@
 
 %prep
 %autosetup -n %{pkg_name}-%{version}
+cp -p %{SOURCE1} %{pkg_name}.cabal
 
 %build
 %ghc_lib_build

++++++ microstache.cabal ++++++
name:               microstache
version:            1.0.2
x-revision:         2
cabal-version:      >=1.10
license:            BSD3
license-file:       LICENSE
author:
  Mark Karpov <[email protected]>, Oleg Grenrus <[email protected]>

maintainer:         Oleg Grenrus<[email protected]>
homepage:           https://github.com/haskellari/microstache
bug-reports:        https://github.com/haskellari/microstache/issues
category:           Text
synopsis:           Mustache templates for Haskell
build-type:         Simple
description:
  Mustache templates for Haskell.
  .
  Based on @stache@ library, which uses @megaparsec@.
  This library uses @parsec@, thus the name: @microstache@.

extra-source-files:
  CHANGELOG.md
  README.md
  specification/comments.json
  specification/delimiters.json
  specification/interpolation.json
  specification/inverted.json
  specification/partials.json
  specification/sections.json

tested-with:
  GHC ==7.4.2
   || ==7.6.3
   || ==7.8.4
   || ==7.10.3
   || ==8.0.2
   || ==8.2.2
   || ==8.4.4
   || ==8.6.5
   || ==8.8.4
   || ==8.10.7
   || ==9.0.1
   || ==9.2.1

source-repository head
  type:     git
  location: https://github.com/haskellari/microstache.git

library
  build-depends:
      aeson                 >=0.11    && <1.6 || >=2.0.0.0 && <2.1
    , base                  >=4.5     && <4.17
    , containers            >=0.4.2.1 && <0.7
    , deepseq               >=1.3.0.0 && <1.5
    , directory             >=1.1.0.2 && <1.4
    , filepath              >=1.3.0.0 && <1.5
    , parsec                >=3.1.11  && <3.2
    , text                  >=1.2     && <1.3
    , transformers          >=0.3.0.0 && <0.6
    , unordered-containers  >=0.2.5   && <0.3
    , vector                >=0.11    && <0.13

  if impl(ghc <=7.6)
    build-depends: ghc-prim

  if !impl(ghc >=8.0)
    build-depends: semigroups >=0.18 && <0.21

  exposed-modules:
    Text.Microstache
    Text.Microstache.Compile
    Text.Microstache.Parser
    Text.Microstache.Render
    Text.Microstache.Type

  hs-source-dirs:   src
  ghc-options:      -Wall
  default-language: Haskell2010

test-suite tests
  main-is:          Spec.hs
  hs-source-dirs:   tests
  type:             exitcode-stdio-1.0
  build-depends:
      aeson
    , base
    , containers
    , hspec        >=2.0 && <3.0
    , microstache
    , parsec
    , text

  if !impl(ghc >=8.0)
    build-depends: semigroups

  other-modules:
    Text.Microstache.ParserSpec
    Text.Microstache.RenderSpec
    Text.Microstache.TypeSpec

  default-language: Haskell2010

test-suite mustache-spec
  main-is:          Spec.hs
  hs-source-dirs:   mustache-spec
  type:             exitcode-stdio-1.0
  build-depends:
      aeson
    , base
    , bytestring
    , containers
    , hspec
    , microstache
    , parsec
    , text

  default-language: Haskell2010

Reply via email to