Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-tasty-quickcheck for
openSUSE:Factory checked in at 2022-02-11 23:09:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-tasty-quickcheck (Old)
and /work/SRC/openSUSE:Factory/.ghc-tasty-quickcheck.new.1956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-tasty-quickcheck"
Fri Feb 11 23:09:44 2022 rev:4 rq:953539 version:0.10.2
Changes:
--------
---
/work/SRC/openSUSE:Factory/ghc-tasty-quickcheck/ghc-tasty-quickcheck.changes
2020-12-22 11:47:03.081891231 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-tasty-quickcheck.new.1956/ghc-tasty-quickcheck.changes
2022-02-11 23:11:42.563345084 +0100
@@ -1,0 +2,9 @@
+Sat Nov 20 19:17:46 UTC 2021 - Peter Simons <[email protected]>
+
+- Update tasty-quickcheck to version 0.10.2.
+ Upstream has edited the change log file since the last release in
+ a non-trivial way, i.e. they did more than just add a new entry
+ at the top. You can review the file at:
+ http://hackage.haskell.org/package/tasty-quickcheck-0.10.2/src/CHANGELOG.md
+
+-------------------------------------------------------------------
Old:
----
tasty-quickcheck-0.10.1.2.tar.gz
New:
----
tasty-quickcheck-0.10.2.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-tasty-quickcheck.spec ++++++
--- /var/tmp/diff_new_pack.7VK4kq/_old 2022-02-11 23:11:42.915346102 +0100
+++ /var/tmp/diff_new_pack.7VK4kq/_new 2022-02-11 23:11:42.915346102 +0100
@@ -1,7 +1,7 @@
#
# spec file for package ghc-tasty-quickcheck
#
-# 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,7 +19,7 @@
%global pkg_name tasty-quickcheck
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.10.1.2
+Version: 0.10.2
Release: 0
Summary: QuickCheck support for the Tasty test framework
License: MIT
++++++ tasty-quickcheck-0.10.1.2.tar.gz -> tasty-quickcheck-0.10.2.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/tasty-quickcheck-0.10.1.2/CHANGELOG.md
new/tasty-quickcheck-0.10.2/CHANGELOG.md
--- old/tasty-quickcheck-0.10.1.2/CHANGELOG.md 2020-12-18 10:36:55.000000000
+0100
+++ new/tasty-quickcheck-0.10.2/CHANGELOG.md 2021-11-20 20:06:26.000000000
+0100
@@ -1,11 +1,16 @@
Changes
=======
+Version 0.10.2
+--------------
+
+Export `QuickCheckMaxShrinks`
+
Version 0.10.1.2
----------------
The only point of this release is to introduce compatibility with GHCs back to
7.0
-(see https://github.com/feuerbach/tasty/pull/287).
+(see https://github.com/UnkindPartition/tasty/pull/287).
Note, however, that these changes are not merged to the master branch, and the
future releases will only support the GHC/base versions from the last 5 years,
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/tasty-quickcheck-0.10.1.2/Test/Tasty/QuickCheck.hs
new/tasty-quickcheck-0.10.2/Test/Tasty/QuickCheck.hs
--- old/tasty-quickcheck-0.10.1.2/Test/Tasty/QuickCheck.hs 2020-12-18
10:24:59.000000000 +0100
+++ new/tasty-quickcheck-0.10.2/Test/Tasty/QuickCheck.hs 2021-11-20
20:06:23.000000000 +0100
@@ -9,6 +9,8 @@
, QuickCheckMaxSize(..)
, QuickCheckMaxRatio(..)
, QuickCheckVerbose(..)
+ , QuickCheckMaxShrinks(..)
+ -- * Re-export of Test.QuickCheck
, module Test.QuickCheck
-- * Internal
-- | If you are building a test suite, you don't need these functions.
@@ -45,8 +47,7 @@
, verboseCheckAll
)
-import Data.Proxy (Proxy(..))
-import Data.Typeable (Typeable)
+import Data.Typeable
import Data.List
import Text.Printf
import Test.QuickCheck.Random (mkQCGen)
@@ -74,7 +75,7 @@
-- | Number of test cases for QuickCheck to generate
newtype QuickCheckTests = QuickCheckTests Int
- deriving (Num, Ord, Eq, Real, Enum, Integral, Show, Typeable)
+ deriving (Num, Ord, Eq, Real, Enum, Integral, Typeable)
newtype QuickCheckReplay = QuickCheckReplay (Maybe Int)
deriving (Typeable)
@@ -85,25 +86,27 @@
-- | Size of the biggest test cases
newtype QuickCheckMaxSize = QuickCheckMaxSize Int
- deriving (Num, Ord, Eq, Real, Enum, Integral, Show, Typeable)
+ deriving (Num, Ord, Eq, Real, Enum, Integral, Typeable)
-- | Maximum number of of discarded tests per successful test before giving up.
newtype QuickCheckMaxRatio = QuickCheckMaxRatio Int
- deriving (Num, Ord, Eq, Real, Enum, Integral, Show, Typeable)
+ deriving (Num, Ord, Eq, Real, Enum, Integral, Typeable)
-- | Show the test cases that QuickCheck generates
newtype QuickCheckVerbose = QuickCheckVerbose Bool
deriving (Typeable)
-- | Number of shrinks allowed before QuickCheck will fail a test.
+--
+-- @since 0.10.2
newtype QuickCheckMaxShrinks = QuickCheckMaxShrinks Int
- deriving (Num, Ord, Eq, Real, Enum, Integral, Show, Typeable)
+ deriving (Num, Ord, Eq, Real, Enum, Integral, Typeable)
instance IsOption QuickCheckTests where
defaultValue = 100
parseValue =
-- We allow numeric underscores for readability; see
- -- https://github.com/feuerbach/tasty/issues/263
+ -- https://github.com/UnkindPartition/tasty/issues/263
fmap QuickCheckTests . safeRead . filter (/= '_')
optionName = return "quickcheck-tests"
optionHelp = return "Number of test cases for QuickCheck to generate.
Underscores accepted: e.g. 10_000_000"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/tasty-quickcheck-0.10.1.2/tasty-quickcheck.cabal
new/tasty-quickcheck-0.10.2/tasty-quickcheck.cabal
--- old/tasty-quickcheck-0.10.1.2/tasty-quickcheck.cabal 2020-12-18
10:37:45.000000000 +0100
+++ new/tasty-quickcheck-0.10.2/tasty-quickcheck.cabal 2021-11-20
20:09:53.000000000 +0100
@@ -2,7 +2,7 @@
-- documentation, see http://haskell.org/cabal/users-guide/
name: tasty-quickcheck
-version: 0.10.1.2
+version: 0.10.2
synopsis: QuickCheck support for the Tasty test framework.
description: QuickCheck support for the Tasty test framework.
license: MIT
@@ -10,8 +10,8 @@
author: Roman Cheplyaka <[email protected]>
maintainer: Roman Cheplyaka <[email protected]>
-- copyright:
-homepage: https://github.com/feuerbach/tasty
-bug-reports: https://github.com/feuerbach/tasty/issues
+homepage: https://github.com/UnkindPartition/tasty
+bug-reports: https://github.com/UnkindPartition/tasty/issues
category: Testing
build-type: Simple
extra-source-files: CHANGELOG.md
@@ -19,14 +19,14 @@
Source-repository head
type: git
- location: git://github.com/feuerbach/tasty.git
+ location: git://github.com/UnkindPartition/tasty.git
subdir: quickcheck
library
exposed-modules: Test.Tasty.QuickCheck
-- other-modules:
other-extensions: GeneralizedNewtypeDeriving, DeriveDataTypeable
- build-depends: base >= 4.3 && < 5, tagged, tasty >= 1.0.1, random,
QuickCheck >= 2.10,
+ build-depends: base >= 4.8 && < 5, tagged, tasty >= 1.0.1, random,
QuickCheck >= 2.10,
optparse-applicative
-- hs-source-dirs: