packages feed

fast-arithmetic 0.1.0.1 → 0.1.0.2

raw patch · 4 files changed

+6/−6 lines, 4 filessetup-changed

Files

Setup.hs view
@@ -21,9 +21,9 @@ main = defaultMainWithHooks myHooks      where myHooks = simpleUserHooks { preConf = buildScript-                                    , postReg = maybeCleanATS }+                                    , postBuild = maybeCleanATS } -maybeCleanATS :: Args -> RegisterFlags -> PackageDescription -> LocalBuildInfo -> IO ()+maybeCleanATS :: Args -> BuildFlags -> PackageDescription -> LocalBuildInfo -> IO () maybeCleanATS _ _ _ li =     let cf = configConfigurationsFlags (configFlags li) in @@ -65,5 +65,5 @@         needsMove <- doesDirectoryExist (dirName ++ "/package")         when needsMove $ do             renameDirectory (dirName ++ "/package") "tempdir"-            removeDirectory dirName+            removeDirectoryRecursive dirName             renameDirectory "tempdir" dirName
cbits/number-theory.c view
@@ -1,7 +1,7 @@ /* ** ** The C code is generated by [ATS/Postiats-0-3-8]-** The starting compilation time is: 2018-1-4:  1h:45m+** The starting compilation time is: 2018-1-4:  2h:26m ** */ 
cbits/numerics.c view
@@ -1,7 +1,7 @@ /* ** ** The C code is generated by [ATS/Postiats-0-3-8]-** The starting compilation time is: 2018-1-4:  1h:45m+** The starting compilation time is: 2018-1-4:  2h:26m ** */ 
fast-arithmetic.cabal view
@@ -1,5 +1,5 @@ name:                fast-arithmetic-version:             0.1.0.1+version:             0.1.0.2 synopsis:            Fast number-theoretic functions. description:         Fast number-theoretic code with a high level of safety guaranteed by ATS. homepage:            https://github.com/vmchale/fast-arithmetic#readme