commit ghc-wai-extra for openSUSE:Factory
Hello community, here is the log from the commit of package ghc-wai-extra for openSUSE:Factory checked in at 2016-04-30 23:30:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/ghc-wai-extra (Old) and /work/SRC/openSUSE:Factory/.ghc-wai-extra.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "ghc-wai-extra" Changes: -------- --- /work/SRC/openSUSE:Factory/ghc-wai-extra/ghc-wai-extra.changes 2016-03-31 13:02:45.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.ghc-wai-extra.new/ghc-wai-extra.changes 2016-04-30 23:30:51.000000000 +0200 @@ -1,0 +2,6 @@ +Tue Apr 26 09:19:11 UTC 2016 - mimi.vx@gmail.com + +- update to 3.0.15.1 +* don't use deprecated CRT functions on Windows + +------------------------------------------------------------------- Old: ---- wai-extra-3.0.15.tar.gz New: ---- wai-extra-3.0.15.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ ghc-wai-extra.spec ++++++ --- /var/tmp/diff_new_pack.qUEMFg/_old 2016-04-30 23:30:51.000000000 +0200 +++ /var/tmp/diff_new_pack.qUEMFg/_new 2016-04-30 23:30:51.000000000 +0200 @@ -21,7 +21,7 @@ %bcond_with tests Name: ghc-wai-extra -Version: 3.0.15 +Version: 3.0.15.1 Release: 0 Summary: Provides some basic WAI handlers and middleware License: MIT ++++++ wai-extra-3.0.15.tar.gz -> wai-extra-3.0.15.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wai-extra-3.0.15/ChangeLog.md new/wai-extra-3.0.15.1/ChangeLog.md --- old/wai-extra-3.0.15/ChangeLog.md 2016-03-22 10:15:32.000000000 +0100 +++ new/wai-extra-3.0.15.1/ChangeLog.md 2016-04-25 15:20:48.000000000 +0200 @@ -1,3 +1,7 @@ +## 3.0.15.1 + +* don't use deprecated CRT functions on Windows [#544](https://github.com/yesodweb/wai/pull/544) + ## 3.0.15 * add requestSizeCheck [#525](https://github.com/yesodweb/wai/pull/525) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wai-extra-3.0.15/Network/Wai/Handler/SCGI.hs new/wai-extra-3.0.15.1/Network/Wai/Handler/SCGI.hs --- old/wai-extra-3.0.15/Network/Wai/Handler/SCGI.hs 2016-03-22 10:15:32.000000000 +0100 +++ new/wai-extra-3.0.15.1/Network/Wai/Handler/SCGI.hs 2016-04-25 15:20:34.000000000 +0200 @@ -1,4 +1,4 @@ -{-# LANGUAGE ForeignFunctionInterface #-} +{-# LANGUAGE CPP, ForeignFunctionInterface #-} module Network.Wai.Handler.SCGI ( run , runSendfile @@ -86,6 +86,16 @@ foreign import ccall unsafe "accept" c'accept :: CInt -> Ptr a -> Ptr a -> IO CInt +#if WINDOWS +foreign import ccall unsafe "_close" + c'close :: CInt -> IO CInt + +foreign import ccall unsafe "_write" + c'write :: CInt -> Ptr CChar -> CInt -> IO CInt + +foreign import ccall unsafe "_read" + c'read :: CInt -> Ptr CChar -> CInt -> IO CInt +#else foreign import ccall unsafe "close" c'close :: CInt -> IO CInt @@ -94,3 +104,4 @@ foreign import ccall unsafe "read" c'read :: CInt -> Ptr CChar -> CInt -> IO CInt +#endif diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wai-extra-3.0.15/wai-extra.cabal new/wai-extra-3.0.15.1/wai-extra.cabal --- old/wai-extra-3.0.15/wai-extra.cabal 2016-03-22 10:15:32.000000000 +0100 +++ new/wai-extra-3.0.15.1/wai-extra.cabal 2016-04-25 15:20:53.000000000 +0200 @@ -1,5 +1,5 @@ Name: wai-extra -Version: 3.0.15 +Version: 3.0.15.1 Synopsis: Provides some basic WAI handlers and middleware. description: Provides basic WAI handler and middleware functionality: @@ -82,7 +82,7 @@ README.md Library - Build-Depends: base >= 4 && < 5 + Build-Depends: base >= 4.6 && < 5 , bytestring >= 0.9.1.4 , wai >= 3.0.3.0 && < 3.3 , old-locale >= 1.0.0.2 && < 1.1 @@ -95,8 +95,8 @@ , text >= 0.7 , case-insensitive >= 0.2 , data-default-class - , fast-logger >= 2.1 && < 2.5 - , wai-logger >= 2.0 && < 2.3 + , fast-logger >= 2.4.5 && < 2.5 + , wai-logger >= 2.2.6 && < 2.3 , ansi-terminal , resourcet >= 0.4.6 && < 1.2 , void >= 0.5
participants (1)
-
root@hilbert.suse.de