Extra 1.46.1 → 1.46.2
raw patch · 1 files changed
+19/−13 lines, 1 filesdep +network-uriPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependencies added: network-uri
API changes (from Hackage documentation)
- Extra.Lock: awaitLock :: (Num a, Ord a) => a -> Int -> [Char] -> IO b -> IO b
+ Extra.Lock: awaitLock :: (Ord a, Num a) => a -> Int -> FilePath -> IO b -> IO b
- Extra.URI: setURIPort :: [Char] -> URI -> URI
+ Extra.URI: setURIPort :: String -> URI -> URI
Files
- Extra.cabal +19/−13
Extra.cabal view
@@ -1,5 +1,5 @@ Name: Extra-Version: 1.46.1+Version: 1.46.2 License: BSD3 License-File: COPYING Author: David Fox@@ -7,7 +7,15 @@ Description: A hodge-podge of functions and modules that do not have a better home Maintainer: David Fox <david@seereason.com> Homepage: http://src.seereason.com/haskell-extra-Build-Depends:+Synopsis: A grab bag of modules.+Build-Type: Simple+Cabal-Version: >= 1.2+flag network-uri+ Description: Get Network.URI from the network-uri package+ Default: True++Library+ Build-Depends: base < 5, bytestring, bzlib,@@ -16,7 +24,6 @@ filepath, HUnit, mtl,- network >= 2.4, old-locale, old-time, pretty,@@ -29,12 +36,15 @@ unix, Unixutils >= 1.51, zlib-Synopsis: A grab bag of modules.-ghc-options: -O2 -W-C-Sources: cbits/gwinsz.c-Include-Dirs: cbits-Install-Includes: gwinsz.h-Exposed-modules:+ if flag(network-uri)+ Build-Depends: network-uri >= 2.6+ else+ Build-Depends: network >= 2.4+ ghc-options: -O2 -W+ C-Sources: cbits/gwinsz.c+ Include-Dirs: cbits+ Install-Includes: gwinsz.h+ Exposed-modules: Extra.Bool, Extra.CIO, Extra.Either,@@ -55,7 +65,3 @@ Test.QUnit, Test.QuickCheck.Properties, Extra.IOThread-Build-Type: Simple---- For more complex build options see:--- http://www.haskell.org/ghc/docs/latest/html/Cabal/