Script 'mail_helper' called by obssrc
Hello community,
here is the log from the commit of package ghc-typed-process for
openSUSE:Factory checked in at 2022-02-11 23:08:07
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/ghc-typed-process (Old)
and /work/SRC/openSUSE:Factory/.ghc-typed-process.new.1956 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-typed-process"
Fri Feb 11 23:08:07 2022 rev:18 rq:953406 version:0.2.8.0
Changes:
--------
--- /work/SRC/openSUSE:Factory/ghc-typed-process/ghc-typed-process.changes
2021-11-11 21:37:33.728938544 +0100
+++
/work/SRC/openSUSE:Factory/.ghc-typed-process.new.1956/ghc-typed-process.changes
2022-02-11 23:10:02.547055809 +0100
@@ -1,0 +2,8 @@
+Sat Nov 27 17:31:10 UTC 2021 - Peter Simons <[email protected]>
+
+- Update typed-process to version 0.2.8.0.
+ ## 0.2.8.0
+
+ * Re-export `ExitCode`, `ExitSuccess` and `ExitFailure`.
+
+-------------------------------------------------------------------
Old:
----
typed-process-0.2.7.0.tar.gz
New:
----
typed-process-0.2.8.0.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ ghc-typed-process.spec ++++++
--- /var/tmp/diff_new_pack.ulwsTX/_old 2022-02-11 23:10:03.091057383 +0100
+++ /var/tmp/diff_new_pack.ulwsTX/_new 2022-02-11 23:10:03.095057394 +0100
@@ -19,7 +19,7 @@
%global pkg_name typed-process
%bcond_with tests
Name: ghc-%{pkg_name}
-Version: 0.2.7.0
+Version: 0.2.8.0
Release: 0
Summary: Run external processes, with strong typing of streams
License: MIT
++++++ typed-process-0.2.7.0.tar.gz -> typed-process-0.2.8.0.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed-process-0.2.7.0/ChangeLog.md
new/typed-process-0.2.8.0/ChangeLog.md
--- old/typed-process-0.2.7.0/ChangeLog.md 2021-10-31 07:59:14.000000000
+0100
+++ new/typed-process-0.2.8.0/ChangeLog.md 2001-09-09 03:46:40.000000000
+0200
@@ -1,5 +1,9 @@
# ChangeLog for typed-process
+## 0.2.8.0
+
+* Re-export `ExitCode`, `ExitSuccess` and `ExitFailure`.
+
## 0.2.7.0
* Include empty argument in the show instance.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed-process-0.2.7.0/src/System/Process/Typed.hs
new/typed-process-0.2.8.0/src/System/Process/Typed.hs
--- old/typed-process-0.2.7.0/src/System/Process/Typed.hs 2021-10-31
07:59:14.000000000 +0100
+++ new/typed-process-0.2.8.0/src/System/Process/Typed.hs 2001-09-09
03:46:40.000000000 +0200
@@ -116,6 +116,10 @@
-- * Exceptions
, ExitCodeException (..)
, ByteStringOutputException (..)
+
+ -- * Re-exports
+ , ExitCode (..)
+
-- * Unsafe functions
, unsafeProcessHandle
-- * Deprecated functions
@@ -136,7 +140,7 @@
import Control.Concurrent (threadDelay)
import Control.Concurrent.Async (async, asyncWithUnmask, cancel, waitCatch)
import Control.Concurrent.STM (newEmptyTMVarIO, atomically, putTMVar, TMVar,
readTMVar, tryReadTMVar, STM, tryPutTMVar, throwSTM, catchSTM)
-import System.Exit (ExitCode (ExitSuccess))
+import System.Exit (ExitCode (ExitSuccess, ExitFailure))
import System.Process.Typed.Internal
import qualified Data.ByteString.Lazy as L
import qualified Data.ByteString.Lazy.Char8 as L8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/typed-process-0.2.7.0/typed-process.cabal
new/typed-process-0.2.8.0/typed-process.cabal
--- old/typed-process-0.2.7.0/typed-process.cabal 2021-10-31
07:59:21.000000000 +0100
+++ new/typed-process-0.2.8.0/typed-process.cabal 2001-09-09
03:46:40.000000000 +0200
@@ -5,7 +5,7 @@
-- see: https://github.com/sol/hpack
name: typed-process
-version: 0.2.7.0
+version: 0.2.8.0
synopsis: Run external processes, with strong typing of streams
description: Please see the tutorial at
<https://github.com/fpco/typed-process#readme>
category: System