cabal-install 1.18.1.0 → 1.18.2.0
raw patch · 3 files changed
+6/−6 lines, 3 files
Files
- Distribution/Client/SetupWrapper.hs +3/−3
- bootstrap.sh +1/−1
- cabal-install.cabal +2/−2
Distribution/Client/SetupWrapper.hs view
@@ -257,8 +257,6 @@ installedCabalVersion :: SetupScriptOptions -> Compiler -> ProgramConfiguration -> IO Version- installedCabalVersion _ _ _ | packageName pkg == PackageName "Cabal" =- return (packageVersion pkg) installedCabalVersion options' comp conf = do index <- maybeGetInstalledPackages options' comp conf let cabalDep = Dependency (PackageName "Cabal") (useCabalVersion options')@@ -423,7 +421,9 @@ , ghcOptObjDir = Flag setupDir , ghcOptHiDir = Flag setupDir , ghcOptSourcePathClear = Flag True- , ghcOptSourcePath = [workingDir]+ , ghcOptSourcePath = case bt of+ Custom -> [workingDir]+ _ -> [] , ghcOptPackageDBs = usePackageDB options'' , ghcOptPackages = maybe []
bootstrap.sh view
@@ -53,7 +53,7 @@ DEEPSEQ_VER="1.3.0.2"; DEEPSEQ_VER_REGEXP="1\.[1-9]\." # >= 1.1 && < 2 TEXT_VER="1.1.0.0"; TEXT_VER_REGEXP="((1\.[01]\.)|(0\.([2-9]|(1[0-1]))\.))" # >= 0.2 && < 1.2 NETWORK_VER="2.6.0.2"; NETWORK_VER_REGEXP="2\." # == 2.*-CABAL_VER="1.18.1.6"; CABAL_VER_REGEXP="1\.1[89]\." # >= 1.18 && < 1.20+CABAL_VER="1.18.1.7"; CABAL_VER_REGEXP="1\.1[89]\." # >= 1.18 && < 1.20 TRANS_VER="0.3.0.0"; TRANS_VER_REGEXP="0\.[23]\." # >= 0.2.* && < 0.4.* MTL_VER="2.1.2"; MTL_VER_REGEXP="[2]\." # == 2.* HTTP_VER="4000.2.16.1"; HTTP_VER_REGEXP="4000\.[012]\." # == 4000.0.* || 4000.1.* || 4000.2.*
cabal-install.cabal view
@@ -1,5 +1,5 @@ Name: cabal-install-Version: 1.18.1.0+Version: 1.18.2.0 Synopsis: The command-line interface for Cabal and Hackage. Description: The \'cabal\' command-line program simplifies the process of managing@@ -119,7 +119,7 @@ -- in bootstrap.sh. build-depends: array >= 0.1 && < 0.6,- base >= 4 && < 5,+ base >= 4 && < 4.8, bytestring >= 0.9 && < 1, Cabal >= 1.18.0 && < 1.19, containers >= 0.1 && < 0.6,