ats-pkg 2.0.0.9 → 2.0.0.10
raw patch · 2 files changed
+8/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- ats-pkg.cabal +1/−1
- src/Language/ATS/Package/Build.hs +7/−2
ats-pkg.cabal view
@@ -1,5 +1,5 @@ name: ats-pkg-version: 2.0.0.9+version: 2.0.0.10 synopsis: Package manager for ATS description: A collection of scripts to make building ATS projects easy. homepage: https://github.com/vmchale/ats-pkg#readme
src/Language/ATS/Package/Build.hs view
@@ -16,6 +16,7 @@ import Data.Maybe (fromMaybe) import Data.Semigroup (Semigroup (..)) import qualified Data.Text.Lazy as TL+import Data.Version hiding (Version (..)) import Development.Shake hiding (doesFileExist) import Development.Shake.ATS import Development.Shake.Check@@ -25,7 +26,8 @@ import Dhall hiding (bool) import Language.ATS.Package.Compiler import Language.ATS.Package.Dependency-import Language.ATS.Package.Type+import Language.ATS.Package.Type hiding (version)+import Paths_ats_pkg import System.Directory (doesFileExist, getCurrentDirectory) import qualified System.Environment as SE @@ -110,6 +112,9 @@ options = shakeOptions { shakeFiles = ".atspkg" , shakeThreads = 4 , shakeProgress = progressSimple+ , shakeLint = Just LintBasic+ , shakeColor = True+ , shakeVersion = showVersion version } cleanConfig :: (MonadIO m) => [String] -> m Pkg@@ -148,7 +153,7 @@ want [".atspkg/config"] let cdps = if any gc bs then libcAtomicOps : libcGC (Version [7,6,4]) : cds else cds- liftIO $ fetchDeps False setup ds cdps (null as) >> stopGlobalPool+ liftIO $ fetchDeps False setup ds cdps False >> stopGlobalPool let bins = TL.unpack . target <$> bs setTargets rs bins mt