Hello community, here is the log from the commit of package ghc-turtle for openSUSE:Factory checked in at 2016-05-31 12:25:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-turtle (Old) and /work/SRC/openSUSE:Factory/.ghc-turtle.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-turtle" Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-turtle/ghc-turtle.changes 2016-04-30 23:30:43.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-turtle.new/ghc-turtle.changes 2016-05-31 12:25:09.000000000 +0200 @@ -1,0 +2,5 @@ +Mon May 30 09:59:57 UTC 2016 - mimi...@gmail.com + +- update to 1.2.8 + +------------------------------------------------------------------- Old: ---- turtle-1.2.7.tar.gz New: ---- turtle-1.2.8.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-turtle.spec ++++++ --- /var/tmp/diff_new_pack.Gcx2Vm/_old 2016-05-31 12:25:10.000000000 +0200 +++ /var/tmp/diff_new_pack.Gcx2Vm/_new 2016-05-31 12:25:10.000000000 +0200 @@ -20,7 +20,7 @@ %bcond_with tests Name: ghc-turtle -Version: 1.2.7 +Version: 1.2.8 Release: 0 Summary: Shell programming, Haskell-style Group: System/Libraries ++++++ turtle-1.2.7.tar.gz -> turtle-1.2.8.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/turtle-1.2.7/src/Turtle/Options.hs new/turtle-1.2.8/src/Turtle/Options.hs --- old/turtle-1.2.7/src/Turtle/Options.hs 2016-03-28 01:16:25.000000000 +0200 +++ new/turtle-1.2.8/src/Turtle/Options.hs 2016-05-28 19:42:58.000000000 +0200 @@ -37,11 +37,11 @@ module Turtle.Options ( -- * Types Parser - , ArgName - , CommandName + , ArgName(..) + , CommandName(..) , ShortName - , Description - , HelpMessage + , Description(..) + , HelpMessage(..) -- * Flag-based option parsers , switch diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/turtle-1.2.7/src/Turtle/Prelude.hs new/turtle-1.2.8/src/Turtle/Prelude.hs --- old/turtle-1.2.7/src/Turtle/Prelude.hs 2016-03-28 00:38:05.000000000 +0200 +++ new/turtle-1.2.8/src/Turtle/Prelude.hs 2016-05-28 19:46:34.000000000 +0200 @@ -1481,7 +1481,7 @@ The `Num` instance for `Size` interprets numeric literals as bytes -} -newtype Size = Size { _bytes :: Integer } deriving (Num) +newtype Size = Size { _bytes :: Integer } deriving (Eq, Ord, Num) instance Show Size where show = show . _bytes diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/turtle-1.2.7/turtle.cabal new/turtle-1.2.8/turtle.cabal --- old/turtle-1.2.7/turtle.cabal 2016-04-25 02:54:40.000000000 +0200 +++ new/turtle-1.2.8/turtle.cabal 2016-05-29 03:00:44.000000000 +0200 @@ -1,5 +1,5 @@ Name: turtle -Version: 1.2.7 +Version: 1.2.8 Cabal-Version: >=1.10 Build-Type: Simple License: BSD3 @@ -7,6 +7,7 @@ Copyright: 2015 Gabriel Gonzalez Author: Gabriel Gonzalez Maintainer: gabriel...@gmail.com +Tested-With: GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.2, GHC == 8.0.1 Bug-Reports: https://github.com/Gabriel439/Haskell-Turtle-Library/issues Synopsis: Shell programming, Haskell-style Description: @turtle@ is a reimplementation of the Unix command line environment @@ -46,7 +47,7 @@ Library HS-Source-Dirs: src Build-Depends: - base >= 4.5 && < 5 , + base >= 4.6 && < 5 , async >= 2.0.0.0 && < 2.2, clock >= 0.4.1.2 && < 0.8, directory >= 1.0.7 && < 1.3, @@ -59,8 +60,8 @@ stm < 2.5, temporary < 1.3, text < 1.3, - time < 1.6, - transformers >= 0.2.0.0 && < 0.5, + time < 1.7, + transformers >= 0.2.0.0 && < 0.6, optparse-applicative >= 0.11 && < 0.13, optional-args >= 1.0 && < 2.0 if os(windows) @@ -75,18 +76,18 @@ Turtle.Options, Turtle.Prelude, Turtle.Tutorial - GHC-Options: -O2 -Wall + GHC-Options: -Wall Default-Language: Haskell2010 test-suite tests Type: exitcode-stdio-1.0 HS-Source-Dirs: test Main-Is: Main.hs - GHC-Options: -O2 -Wall + GHC-Options: -Wall Default-Language: Haskell2010 Build-Depends: - base >= 4 && < 5 , - doctest >= 0.9.12 && < 0.12 + base >= 4 && < 5 , + doctest >= 0.7 && < 0.12 benchmark bench Type: exitcode-stdio-1.0 @@ -95,7 +96,7 @@ GHC-Options: -O2 -Wall -threaded Default-Language: Haskell2010 Build-Depends: - base >= 4 && < 5 , - criterion >= 1.1.0.0 && < 2 , - text < 1.3, + base >= 4 && < 5 , + criterion >= 0.4 && < 2 , + text < 1.3, turtle