Hello community, here is the log from the commit of package ghc-conduit-extra for openSUSE:Factory checked in at 2019-03-19 09:59:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-conduit-extra (Old) and /work/SRC/openSUSE:Factory/.ghc-conduit-extra.new.28833 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "ghc-conduit-extra" Tue Mar 19 09:59:37 2019 rev:19 rq:686007 version:1.3.1.1 Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-conduit-extra/ghc-conduit-extra.changes 2019-02-24 17:18:35.360416469 +0100 +++ /work/SRC/openSUSE:Factory/.ghc-conduit-extra.new.28833/ghc-conduit-extra.changes 2019-03-19 09:59:38.592054103 +0100 @@ -1,0 +2,10 @@ +Wed Mar 13 11:03:21 UTC 2019 - [email protected] + +- Update conduit-extra to version 1.3.1.1. + # ChangeLog for conduit-extra + + ## 1.3.1.1 + + * Attempt to fix a test suite failure [#385](https://github.com/snoyberg/conduit/issues/385) + +------------------------------------------------------------------- Old: ---- conduit-extra-1.3.1.tar.gz New: ---- conduit-extra-1.3.1.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-conduit-extra.spec ++++++ --- /var/tmp/diff_new_pack.ejolQb/_old 2019-03-19 09:59:39.040052009 +0100 +++ /var/tmp/diff_new_pack.ejolQb/_new 2019-03-19 09:59:39.044051990 +0100 @@ -19,7 +19,7 @@ %global pkg_name conduit-extra %bcond_with tests Name: ghc-%{pkg_name} -Version: 1.3.1 +Version: 1.3.1.1 Release: 0 Summary: Batteries included conduit: adapters for common libraries License: MIT ++++++ conduit-extra-1.3.1.tar.gz -> conduit-extra-1.3.1.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/conduit-extra-1.3.1/ChangeLog.md new/conduit-extra-1.3.1.1/ChangeLog.md --- old/conduit-extra-1.3.1/ChangeLog.md 2019-02-19 03:05:30.000000000 +0100 +++ new/conduit-extra-1.3.1.1/ChangeLog.md 2019-03-12 08:55:48.000000000 +0100 @@ -1,3 +1,9 @@ +# ChangeLog for conduit-extra + +## 1.3.1.1 + +* Attempt to fix a test suite failure [#385](https://github.com/snoyberg/conduit/issues/385) + ## 1.3.1 * Switched `gzip` to use zlib's default compression level. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/conduit-extra-1.3.1/conduit-extra.cabal new/conduit-extra-1.3.1.1/conduit-extra.cabal --- old/conduit-extra-1.3.1/conduit-extra.cabal 2019-02-19 03:05:30.000000000 +0100 +++ new/conduit-extra-1.3.1.1/conduit-extra.cabal 2019-03-12 08:55:27.000000000 +0100 @@ -1,5 +1,5 @@ Name: conduit-extra -Version: 1.3.1 +Version: 1.3.1.1 Synopsis: Batteries included conduit: adapters for common libraries. Description: The conduit package itself maintains relative small dependencies. The purpose of this package is to collect commonly used utility functions wrapping other library dependencies, without depending on heavier-weight dependencies. The basic idea is that this package should only depend on haskell-platform packages and conduit. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/conduit-extra-1.3.1/test/Data/Conduit/Process/TypedSpec.hs new/conduit-extra-1.3.1.1/test/Data/Conduit/Process/TypedSpec.hs --- old/conduit-extra-1.3.1/test/Data/Conduit/Process/TypedSpec.hs 2018-02-25 16:29:16.000000000 +0100 +++ new/conduit-extra-1.3.1.1/test/Data/Conduit/Process/TypedSpec.hs 2019-03-12 08:52:49.000000000 +0100 @@ -12,13 +12,15 @@ let fp = "ChangeLog.md" pc = setStdout createSource $ proc "cat" [fp] bs <- B.readFile fp - bss <- withProcess_ pc $ \p -> runConduit $ getStdout p .| CL.consume + bss <- withProcess_ pc $ \p -> + runConduit (getStdout p .| CL.consume) <* waitExitCode p B.concat bss `shouldBe` bs it "cat works with withLoggedProcess_" $ do let fp = "ChangeLog.md" pc = proc "cat" [fp] bs <- B.readFile fp - bss <- withLoggedProcess_ pc $ \p -> runConduit $ getStdout p .| CL.consume + bss <- withLoggedProcess_ pc $ \p -> + runConduit (getStdout p .| CL.consume) <* waitExitCode p B.concat bss `shouldBe` bs it "failing process throws" $ do (withLoggedProcess_ (proc "cat" ["does not exist"]) $ \p -> do
