maccatcher 1.0.0 → 1.0.1
raw patch · 2 files changed
+10/−5 lines, 2 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- System/Info/MAC/Fetch.hs +2/−1
- maccatcher.cabal +8/−4
System/Info/MAC/Fetch.hs view
@@ -43,8 +43,9 @@ win32 :: IO (Maybe MAC) win32 = do (_, o, _, h) <- runInteractiveCommand "ipconfig /all"- waitForProcess h outputs <- hGetContents o+ seq (length outputs) (return ())+ waitForProcess h return $ join $ ipconfig outputs where -- Maybe we don't need this?
maccatcher.cabal view
@@ -1,10 +1,10 @@ name: maccatcher-version: 1.0.0+version: 1.0.1 category: Text license: BSD3 license-file: LICENSE author: Jason Dusek-maintainer: jason.dusek@gmail.com+maintainer: oss@solidsnack.be synopsis: Obtain the host MAC address on *NIX and Windows. description: Obtain the host MAC address on *NIX and Windows.@@ -16,10 +16,14 @@ , CONTRIBUTORS , samples +flag split-base library- build-depends: base- , haskell98+ if flag(split-base)+ build-depends: base >= 4 && < 5+ else+ build-depends: base < 4+ build-depends: haskell98 , binary , process , parsec