Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-tasty-rerun for openSUSE:Factory
checked in at 2023-09-21 22:23:19
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-tasty-rerun (Old)
and /work/SRC/openSUSE:Factory/.ghc-tasty-rerun.new.1770 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-tasty-rerun"
Thu Sep 21 22:23:19 2023 rev:10 rq:1112768 version:1.1.19
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-tasty-rerun/ghc-tasty-rerun.changes
2023-04-04 21:24:03.918435400 +0200
+++
/work/SRC/openSUSE:Factory/.ghc-tasty-rerun.new.1770/ghc-tasty-rerun.changes
2023-09-21 22:23:52.570667711 +0200
@@ -1,0 +2,8 @@
+Sun Sep 10 00:17:00 UTC 2023 - Peter Simons <[email protected]>
+
+- Update tasty-rerun to version 1.1.19.
+ # 1.1.19
+
+ * Support tasty 1.5.
+
+-------------------------------------------------------------------
Old:
----
tasty-rerun-1.1.18.tar.gz
tasty-rerun.cabal
New:
----
tasty-rerun-1.1.19.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-tasty-rerun.spec ++++++
--- /var/tmp/diff_new_pack.cf0NG5/_old 2023-09-21 22:23:53.650706902 +0200
+++ /var/tmp/diff_new_pack.cf0NG5/_new 2023-09-21 22:23:53.654707047 +0200
@@ -19,13 +19,12 @@
%global pkg_name tasty-rerun
%global pkgver %{pkg_name}-%{version}
Name: ghc-%{pkg_name}
-Version: 1.1.18
+Version: 1.1.19
Release: 0
Summary: Rerun only tests which failed in a previous test run
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/4.cabal#/%{pkg_name}.cabal
BuildRequires: ghc-Cabal-devel
BuildRequires: ghc-base-devel
BuildRequires: ghc-base-prof
@@ -82,7 +81,6 @@
%prep
%autosetup -n %{pkg_name}-%{version}
-cp -p %{SOURCE1} %{pkg_name}.cabal
%build
%ghc_lib_build
++++++ tasty-rerun-1.1.18.tar.gz -> tasty-rerun-1.1.19.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/tasty-rerun-1.1.18/Changelog.md
new/tasty-rerun-1.1.19/Changelog.md
--- old/tasty-rerun-1.1.18/Changelog.md 2020-10-28 20:00:25.000000000 +0100
+++ new/tasty-rerun-1.1.19/Changelog.md 2001-09-09 03:46:40.000000000 +0200
@@ -1,3 +1,7 @@
+# 1.1.19
+
+* Support tasty 1.5.
+
# 1.1.18
* Support tasty 1.4.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/tasty-rerun-1.1.18/src/Test/Tasty/Ingredients/Rerun.hs
new/tasty-rerun-1.1.19/src/Test/Tasty/Ingredients/Rerun.hs
--- old/tasty-rerun-1.1.18/src/Test/Tasty/Ingredients/Rerun.hs 2020-10-27
11:40:43.000000000 +0100
+++ new/tasty-rerun-1.1.19/src/Test/Tasty/Ingredients/Rerun.hs 2001-09-09
03:46:40.000000000 +0200
@@ -57,21 +57,30 @@
, rerunningTests
) where
-import Prelude hiding (filter, mempty)
+import Prelude (Enum, Bounded, minBound, maxBound, error, (+))
-import Control.Applicative
+import Control.Applicative (Const(..), (<$>), pure, (<$))
import Control.Arrow ((>>>))
-import Control.Monad (when)
+import Control.Monad (when, return, fmap, mapM, (>>=))
import Control.Monad.Trans.Class (lift)
+import Data.Bool (Bool (..), otherwise, not, (&&))
import Data.Char (isSpace, toLower)
+import Data.Eq (Eq)
import Data.Foldable (asum)
-import Data.List (intercalate)
+import Data.Function ((.), ($), flip, const)
+import Data.Int (Int)
+import Data.List (intercalate, lookup, map, (++), reverse, dropWhile)
import Data.List.Split (endBy)
-import Data.Maybe (fromMaybe)
-import Data.Monoid (Any(..), mempty)
+import Data.Maybe (fromMaybe, Maybe(..), maybe)
+import Data.Monoid (Any(..), Monoid(..))
+import Data.Ord (Ord)
import Data.Proxy (Proxy(..))
+import Data.String (String)
import Data.Typeable (Typeable)
-import System.IO.Error (catchIOError, isDoesNotExistError)
+import System.IO (FilePath, IO, readFile, writeFile)
+import System.IO.Error (catchIOError, isDoesNotExistError, ioError)
+import Text.Read (Read, read)
+import Text.Show (Show, show)
import qualified Control.Concurrent.STM as STM
import qualified Control.Monad.State as State
@@ -317,7 +326,9 @@
in Tasty.trivialFold
{ Tasty.foldSingle = foldSingle
-#if MIN_VERSION_tasty(1,4,0)
+#if MIN_VERSION_tasty(1,5,0)
+ , Tasty.foldGroup = const (\name -> foldGroup name . mconcat)
+#elif MIN_VERSION_tasty(1,4,0)
, Tasty.foldGroup = const foldGroup
#else
, Tasty.foldGroup = foldGroup
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/tasty-rerun-1.1.18/tasty-rerun.cabal
new/tasty-rerun-1.1.19/tasty-rerun.cabal
--- old/tasty-rerun-1.1.18/tasty-rerun.cabal 2020-10-28 20:00:35.000000000
+0100
+++ new/tasty-rerun-1.1.19/tasty-rerun.cabal 2001-09-09 03:46:40.000000000
+0200
@@ -1,5 +1,5 @@
name: tasty-rerun
-version: 1.1.18
+version: 1.1.19
homepage: http://github.com/ocharles/tasty-rerun
license: BSD3
license-file: LICENSE
@@ -25,20 +25,29 @@
This may be useful in many scenarios,
especially when a test suite grows large.
-tested-with: GHC==8.10.2, GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2,
GHC==8.0.2, GHC==7.10.3, GHC==7.8.4, GHC==7.6.3
+tested-with:
+ GHC==9.8.1, GHC==9.6.2, GHC==9.4.5, GHC==9.2.8, GHC==9.0.2, GHC==8.10.7,
+ GHC==8.8.4, GHC==8.6.5, GHC==8.4.4, GHC==8.2.2, GHC==8.0.2, GHC==7.10.3,
+ GHC==7.8.4, GHC==7.6.3
+
+source-repository head
+ type: git
+ location: https://github.com/ocharles/tasty-rerun
library
exposed-modules: Test.Tasty.Ingredients.Rerun
build-depends:
- base >=4.6 && <4.15,
- containers >= 0.5.0.0,
- mtl >= 2.1.2,
- optparse-applicative >= 0.6,
+ base >=4.6 && <4.19,
+ containers >= 0.5.0.0 && < 0.7,
+ mtl >= 2.1.2 && < 2.4,
+ optparse-applicative >= 0.6 && < 0.19,
split >= 0.1 && < 0.3,
- stm >= 2.4.2,
+ stm >= 2.4.2 && < 2.6,
tagged >= 0.7 && <0.9,
- tasty >=1.2 && <1.5,
- transformers >= 0.3.0.0
+ tasty >=1.2 && <1.6,
+ transformers >= 0.3.0.0 && < 0.7
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
+ if impl(ghc >= 8.0)
+ ghc-options: -Wcompat