mirror of
https://github.com/commercialhaskell/stackage.git
synced 2026-01-12 07:18:31 +01:00
58 lines
1.9 KiB
Haskell
58 lines
1.9 KiB
Haskell
#!/usr/bin/env stack
|
|
-- stack --resolver lts-19.33 script
|
|
|
|
-- Utility to remove old libs installed under .stack-work/ to save diskspace
|
|
|
|
-- Should be run in:
|
|
-- work/*/unpack-dir/.stack-work/install/x86_64-linux/*/*/lib/x86_64-linux-ghc-*
|
|
|
|
import Data.List
|
|
import System.Directory
|
|
import System.FilePath
|
|
import Text.Regex.TDFA
|
|
|
|
-- keep 2 latest builds
|
|
keepBuilds :: Int
|
|
keepBuilds = 2
|
|
|
|
main = do
|
|
files <- sort <$> listDirectory "."
|
|
let (dynlibs,libdirs) = partition (".so" `isExtensionOf`) files
|
|
pkglibdirs = groupBy samePkgLibDir libdirs
|
|
pkgdynlibs = groupBy samePkgDynLib dynlibs
|
|
mapM_ (removeOlder removeDirectoryRecursive) pkglibdirs
|
|
mapM_ (removeOlder removeFile) pkgdynlibs
|
|
where
|
|
samePkgLibDir l1 l2 = pkgDirName l1 == pkgDirName l2
|
|
where
|
|
pkgDirName p =
|
|
if length p < 25
|
|
then error $ p ++ " too short to be in correct name-version-hash format"
|
|
else extractNameInternal p
|
|
|
|
extractNameInternal :: String -> String
|
|
extractNameInternal p =
|
|
let (name,match,internal) = p =~ "-[0-9.]+-[0-9A-Za-z]{19,22}" :: (String, String, String)
|
|
in if null match || null name then error $ p ++ " not in correct name-version-hash format"
|
|
else name ++ internal
|
|
|
|
samePkgDynLib d1 d2 = pkgDynName d1 == pkgDynName d2
|
|
where
|
|
pkgDynName p =
|
|
if length p < 42
|
|
then error $ p ++ " too short to be libHSname-version-hash-ghc*.so format"
|
|
else (extractNameInternal . removeDashSegment) p
|
|
|
|
removeDashSegment = dropWhileEnd (/= '-')
|
|
|
|
removeOlder remover files = do
|
|
oldfiles <- drop keepBuilds . reverse <$> sortByAge files
|
|
mapM_ remover oldfiles
|
|
|
|
sortByAge files = do
|
|
timestamps <- mapM getModificationTime files
|
|
let fileTimes = zip files timestamps
|
|
return $ map fst $ sortBy compareSnd fileTimes
|
|
|
|
compareSnd (_,t1) (_,t2) = compare t1 t2
|