packages feed

confsolve 0.3.8 → 0.4.1

raw patch · 3 files changed

+6/−5 lines, 3 filesdep ~system-filepath

Dependency ranges changed: system-filepath

Files

ConfsolveArgs.hs view
@@ -19,7 +19,7 @@    &= helpArg [explicit, name "help", name "h"]    &= versionArg [explicit, name "version", name "v", summary versionInfo ] -versionInfo = "confsolve version 0.3.8"+versionInfo = "confsolve version 0.4.1" summaryInfo = ""  confsolveArgs :: IO Confsolve
Wuala/FileNameParser.hs view
@@ -2,7 +2,7 @@  module Wuala.FileNameParser where -import Control.Applicative ((<*>), (<$>), (*>))+import Control.Applicative ((<*>), (<$>), (*>), (<*), (<|>), pure) import qualified Data.Attoparsec.Text as P import qualified Data.Text as T import Data.Char (isNumber)@@ -17,8 +17,9 @@ fileInfo :: P.Parser FileInfo fileInfo = FileInfo <$> (T.strip <$> tillLeftPar)                     <*> (P.string "(conflicting version " *> version)-                    <*> (P.string " from " *> tillRightPar)+                    <*> maybeHost    where+      maybeHost    = (P.string " from " *> tillRightPar) <|> (pure "" <* P.char ')')       version      = P.takeWhile1 isNumber       tillLeftPar  = P.takeWhile1 (/= '(')       tillRightPar = P.takeWhile1 (/= ')')
confsolve.cabal view
@@ -1,5 +1,5 @@ Name:          confsolve-Version:       0.3.8+Version:       0.4.1 License:       BSD3 License-file:  LICENSE Author:        Daniel Trstenjak@@ -26,4 +26,4 @@                  Wuala.FileNameParser                  ConfsolveArgs   ghc-options:   -funbox-strict-fields-  Build-Depends: base >= 3 && < 5, time, process, unordered-containers, text, attoparsec, system-filepath, system-fileio, cmdargs+  Build-Depends: base >= 3 && < 5, time, process, unordered-containers, text, attoparsec, system-filepath >= 0.4.8, system-fileio, cmdargs