Hello community, here is the log from the commit of package ghc-shakespeare for openSUSE:Factory checked in at 2016-12-06 14:25:44 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-shakespeare (Old) and /work/SRC/openSUSE:Factory/.ghc-shakespeare.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-shakespeare" Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-shakespeare/ghc-shakespeare.changes 2016-11-02 12:45:20.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-shakespeare.new/ghc-shakespeare.changes 2016-12-06 14:25:47.000000000 +0100 @@ -1,0 +2,5 @@ +Tue Nov 22 16:06:46 UTC 2016 - [email protected] + +- Update to version 2.0.11.2 with cabal2obs. + +------------------------------------------------------------------- Old: ---- shakespeare-2.0.11.1.tar.gz New: ---- shakespeare-2.0.11.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-shakespeare.spec ++++++ --- /var/tmp/diff_new_pack.mcA1jS/_old 2016-12-06 14:25:49.000000000 +0100 +++ /var/tmp/diff_new_pack.mcA1jS/_new 2016-12-06 14:25:49.000000000 +0100 @@ -19,7 +19,7 @@ %global pkg_name shakespeare %bcond_with tests Name: ghc-%{pkg_name} -Version: 2.0.11.1 +Version: 2.0.11.2 Release: 0 Summary: A toolkit for making compile-time interpolated templates License: MIT ++++++ shakespeare-2.0.11.1.tar.gz -> shakespeare-2.0.11.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shakespeare-2.0.11.1/ChangeLog.md new/shakespeare-2.0.11.2/ChangeLog.md --- old/shakespeare-2.0.11.1/ChangeLog.md 2016-09-02 08:01:55.000000000 +0200 +++ new/shakespeare-2.0.11.2/ChangeLog.md 2016-11-17 21:00:16.000000000 +0100 @@ -1,3 +1,7 @@ +### 2.0.11.2 + +* Support for template-haskell 2.12.0 [#196](https://github.com/yesodweb/shakespeare/pull/196) + ### 2.0.11.1 * Handle parsing of trailing semicolon after mixins [#194](https://github.com/yesodweb/shakespeare/issues/194) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shakespeare-2.0.11.1/Text/MkSizeType.hs new/shakespeare-2.0.11.2/Text/MkSizeType.hs --- old/shakespeare-2.0.11.1/Text/MkSizeType.hs 2016-09-02 08:01:55.000000000 +0200 +++ new/shakespeare-2.0.11.2/Text/MkSizeType.hs 2016-11-17 21:00:16.000000000 +0100 @@ -22,10 +22,13 @@ dataDec :: Name -> Q Dec dataDec name = -#if MIN_VERSION_template_haskell(2,11,0) - DataD [] name [] Nothing [constructor] <$> mapM conT derives +#if MIN_VERSION_template_haskell(2,12,0) + return $ + DataD [] name [] Nothing [constructor] [DerivClause Nothing (map ConT derives)] +#elif MIN_VERSION_template_haskell(2,11,0) + DataD [] name [] Nothing [constructor] <$> mapM conT derives #else - return $ DataD [] name [] [constructor] derives + return $ DataD [] name [] [constructor] derives #endif where constructor = NormalC name [(notStrict, ConT $ mkName "Rational")] derives = map mkName ["Eq", "Ord"] diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/shakespeare-2.0.11.1/shakespeare.cabal new/shakespeare-2.0.11.2/shakespeare.cabal --- old/shakespeare-2.0.11.1/shakespeare.cabal 2016-09-02 08:01:55.000000000 +0200 +++ new/shakespeare-2.0.11.2/shakespeare.cabal 2016-11-17 21:00:16.000000000 +0100 @@ -1,5 +1,5 @@ name: shakespeare -version: 2.0.11.1 +version: 2.0.11.2 license: MIT license-file: LICENSE author: Michael Snoyman <[email protected]>
