Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package ghc-lifted-async for openSUSE:Factory checked in at 2021-03-10 08:55:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-lifted-async (Old) and /work/SRC/openSUSE:Factory/.ghc-lifted-async.new.2378 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-lifted-async" Wed Mar 10 08:55:08 2021 rev:12 rq:877654 version:0.10.1.3 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-lifted-async/ghc-lifted-async.changes 2020-12-22 11:42:15.929659773 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-lifted-async.new.2378/ghc-lifted-async.changes 2021-03-10 08:57:16.686890396 +0100 @@ -1,0 +2,15 @@ +Sat Feb 27 13:14:16 UTC 2021 - psim...@suse.com + +- Update lifted-async to version 0.10.1.3. + ## v0.10.1.3 - 2021-02-26 + + * Support GHC 9.0.1 ([#33](https://github.com/maoe/lifted-async/pull/33)) + * Switch from Travis CI to GitHub Actions + * Switch from criterion to tasty-bench + +------------------------------------------------------------------- +Tue Feb 23 21:45:42 UTC 2021 - Ond??ej S??kup <mimi...@gmail.com> + +- relax dep on constraints + +------------------------------------------------------------------- Old: ---- lifted-async-0.10.1.2.tar.gz New: ---- lifted-async-0.10.1.3.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-lifted-async.spec ++++++ --- /var/tmp/diff_new_pack.tVcXPa/_old 2021-03-10 08:57:17.290891019 +0100 +++ /var/tmp/diff_new_pack.tVcXPa/_new 2021-03-10 08:57:17.294891023 +0100 @@ -1,7 +1,7 @@ # # spec file for package ghc-lifted-async # -# 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 lifted-async %bcond_with tests Name: ghc-%{pkg_name} -Version: 0.10.1.2 +Version: 0.10.1.3 Release: 0 Summary: Run lifted IO operations asynchronously and wait for their results License: BSD-3-Clause ++++++ lifted-async-0.10.1.2.tar.gz -> lifted-async-0.10.1.3.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lifted-async-0.10.1.2/CHANGELOG.md new/lifted-async-0.10.1.3/CHANGELOG.md --- old/lifted-async-0.10.1.2/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 +++ new/lifted-async-0.10.1.3/CHANGELOG.md 2001-09-09 03:46:40.000000000 +0200 @@ -1,5 +1,11 @@ # Revision history for lifted-async +## v0.10.1.3 - 2021-02-26 + +* Support GHC 9.0.1 ([#33](https://github.com/maoe/lifted-async/pull/33)) +* Switch from Travis CI to GitHub Actions +* Switch from criterion to tasty-bench + ## v0.10.1.2 - 2020-07-23 * Relax upper version bound for tasty-expected-failure diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lifted-async-0.10.1.2/README.md new/lifted-async-0.10.1.3/README.md --- old/lifted-async-0.10.1.2/README.md 2001-09-09 03:46:40.000000000 +0200 +++ new/lifted-async-0.10.1.3/README.md 2001-09-09 03:46:40.000000000 +0200 @@ -2,18 +2,12 @@ ========== [](https://hackage.haskell.org/package/lifted-async) [](http://packdeps.haskellers.com/feed?needle=lifted-async) -[](http://stackage.org/lts/package/lifted-async) -[](https://travis-ci.org/maoe/lifted-async) +[](http://stackage.org/lts/package/lifted-async) +[](https://github.com/maoe/lifted-async/actions/workflows/haskell-ci.yml) [](https://gitter.im/maoe/lifted-async?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) This package provides IO operations from [async](http://hackage.haskell.org/package/async) package lifted to any instance of `MonadBase` or `MonadBaseControl` from [monad-control](http://hackage.haskell.org/package/monad-control) package. -You can install this library using cabal: - -``` -cabal install lifted-async -``` - Contact information ========== diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lifted-async-0.10.1.2/benchmarks/Benchmarks.hs new/lifted-async-0.10.1.3/benchmarks/Benchmarks.hs --- old/lifted-async-0.10.1.2/benchmarks/Benchmarks.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/lifted-async-0.10.1.3/benchmarks/Benchmarks.hs 2001-09-09 03:46:40.000000000 +0200 @@ -1,7 +1,7 @@ module Main where import Control.Exception (SomeException(..)) -import Criterion.Main +import Test.Tasty.Bench (bench, bgroup, defaultMain, nfIO, whnfIO) import qualified Control.Concurrent.Async as A import qualified Control.Concurrent.Async.Lifted as L import qualified Control.Concurrent.Async.Lifted.Safe as LS @@ -13,11 +13,11 @@ , bench "lifted-async" $ whnfIO asyncWait_liftedAsync , bench "lifted-async-safe" $ whnfIO asyncWait_liftedAsyncSafe ] - , bgroup "async-cancel-waitCatch" - [ bench "async" $ whnfIO asyncCancelWaitCatch_async - , bench "lifted-async" $ whnfIO asyncCancelWaitCatch_liftedAsync - , bench "lifted-async-safe" $ whnfIO asyncCancelWaitCatch_liftedAsyncSafe - ] + -- , bgroup "async-cancel-waitCatch" + -- [ bench "async" $ whnfIO asyncCancelWaitCatch_async + -- , bench "lifted-async" $ whnfIO asyncCancelWaitCatch_liftedAsync + -- , bench "lifted-async-safe" $ whnfIO asyncCancelWaitCatch_liftedAsyncSafe + -- ] , bgroup "waitAny" [ bench "async" $ whnfIO waitAny_async , bench "lifted-async" $ whnfIO waitAny_liftedAsync diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lifted-async-0.10.1.2/lifted-async.cabal new/lifted-async-0.10.1.3/lifted-async.cabal --- old/lifted-async-0.10.1.2/lifted-async.cabal 2001-09-09 03:46:40.000000000 +0200 +++ new/lifted-async-0.10.1.3/lifted-async.cabal 2001-09-09 03:46:40.000000000 +0200 @@ -1,6 +1,6 @@ cabal-version: 1.24 name: lifted-async -version: 0.10.1.2 +version: 0.10.1.3 synopsis: Run lifted IO operations asynchronously and wait for their results homepage: https://github.com/maoe/lifted-async bug-reports: https://github.com/maoe/lifted-async/issues @@ -8,11 +8,12 @@ license-file: LICENSE author: Mitsutoshi Aoe maintainer: Mitsutoshi Aoe <m...@maoe.name> -copyright: Copyright (C) 2012-2020 Mitsutoshi Aoe +copyright: Copyright (C) 2012-2021 Mitsutoshi Aoe category: Concurrency build-type: Simple tested-with: - GHC == 8.10.1 + GHC == 9.0.1 + GHC == 8.10.3 GHC == 8.8.3 GHC == 8.6.5 GHC == 8.4.4 @@ -33,13 +34,13 @@ Control.Concurrent.Async.Lifted Control.Concurrent.Async.Lifted.Safe build-depends: - base >= 4.5 && < 4.15 + base >= 4.5 && < 4.16 , async >= 2.2 && < 2.3 , lifted-base >= 0.2 && < 0.3 , transformers-base >= 0.4 && < 0.5 , monad-control == 1.0.* if impl(ghc >= 7.8) - build-depends: constraints >= 0.2 && < 0.13 + build-depends: constraints >= 0.2 && < 0.14 else build-depends: constraints >= 0.2 && < 0.6 ghc-options: -Wall @@ -91,7 +92,7 @@ build-depends: base , async - , criterion + , tasty-bench < 0.3 , deepseq , lifted-async default-language: Haskell2010 @@ -104,7 +105,7 @@ build-depends: base , async - , criterion + , tasty-bench < 0.3 , deepseq , lifted-async default-language: Haskell2010 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lifted-async-0.10.1.2/src/Control/Concurrent/Async/Lifted/Safe.hs new/lifted-async-0.10.1.3/src/Control/Concurrent/Async/Lifted/Safe.hs --- old/lifted-async-0.10.1.2/src/Control/Concurrent/Async/Lifted/Safe.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/lifted-async-0.10.1.3/src/Control/Concurrent/Async/Lifted/Safe.hs 2001-09-09 03:46:40.000000000 +0200 @@ -98,7 +98,7 @@ #endif #if !MIN_VERSION_base(4, 8, 0) import Data.Monoid (Monoid(mappend, mempty)) -#elif MIN_VERSION_base(4, 9, 0) +#elif MIN_VERSION_base(4, 9, 0) && !MIN_VERSION_base(4, 13, 0) import Data.Semigroup (Semigroup((<>))) #endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lifted-async-0.10.1.2/src/Control/Concurrent/Async/Lifted.hs new/lifted-async-0.10.1.3/src/Control/Concurrent/Async/Lifted.hs --- old/lifted-async-0.10.1.2/src/Control/Concurrent/Async/Lifted.hs 2001-09-09 03:46:40.000000000 +0200 +++ new/lifted-async-0.10.1.3/src/Control/Concurrent/Async/Lifted.hs 2001-09-09 03:46:40.000000000 +0200 @@ -92,7 +92,7 @@ #endif #if !MIN_VERSION_base(4, 8, 0) import Data.Monoid (Monoid(mappend, mempty)) -#elif MIN_VERSION_base(4, 9, 0) +#elif MIN_VERSION_base(4, 9, 0) && !MIN_VERSION_base(4, 13, 0) import Data.Semigroup (Semigroup((<>))) #endif