-
Notifications
You must be signed in to change notification settings - Fork 27
/
Setup.hs
113 lines (95 loc) · 4.3 KB
/
Setup.hs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{-|
Module : Main
Description : Custom setup script
Copyright : (c) Eric Mertens, 2016
License : ISC
Maintainer : [email protected]
This is a default setup script except that it checks that all
transitive dependencies of this package use free licenses and
generates a Build module detailing the versions of build tools
and transitive library dependencies.
-}
module Main (main) where
import Control.Monad (unless)
import Data.Char (isAlphaNum)
import Distribution.InstalledPackageInfo (InstalledPackageInfo, sourcePackageId, license)
import Distribution.PackageDescription hiding (license)
import Distribution.Simple
import Distribution.Simple.LocalBuildInfo (LocalBuildInfo, installedPkgs, withLibLBI)
import Distribution.Simple.PackageIndex (allPackages)
import Distribution.Simple.Setup (configVerbosity, fromFlag)
import Distribution.Simple.Utils (createDirectoryIfMissingVerbose, rewriteFileEx)
import Distribution.Verbosity (Verbosity)
import System.FilePath ((</>), (<.>))
import Distribution.Simple.BuildPaths (autogenComponentModulesDir)
-- | Default Setup main extended to generate a Build module and to validate
-- the licenses of transitive dependencies.
main :: IO ()
main = defaultMainWithHooks simpleUserHooks
{ postConf = \args flags pkg lbi ->
do let pkgs = allPackages (installedPkgs lbi)
validateLicenses pkgs
generateBuildModule (fromFlag (configVerbosity flags)) pkg lbi pkgs
postConf simpleUserHooks args flags pkg lbi
}
-- | Compute the name of the Build module for a given package
buildModuleName ::
PackageDescription {- ^ package description -} ->
String {- ^ module name -}
buildModuleName pkg = "Build_" ++ map clean (unPackageName (pkgName (package pkg)))
where
clean x | isAlphaNum x = x
| otherwise = '_'
-- | Generate the Build_package module for the given package information.
--
-- This module will export `deps :: [(String,[Int])]`
generateBuildModule ::
Verbosity {- ^ build verbosity -} ->
PackageDescription {- ^ package description -} ->
LocalBuildInfo {- ^ local build information -} ->
[InstalledPackageInfo] {- ^ transitive package dependencies -} ->
IO ()
generateBuildModule verbosity pkg lbi pkgs =
withLibLBI pkg lbi $ \_lib clbi ->
do let dir = autogenComponentModulesDir lbi clbi
modname = buildModuleName pkg
file = dir </> modname <.> "hs"
createDirectoryIfMissingVerbose verbosity True dir
rewriteFileEx verbosity file
$ unlines
[ "{-|"
, "Module : " ++ modname
, "Description : Dynamically generated configuration module"
, "-}"
, "module " ++ modname ++ " (deps) where"
, ""
, "-- | Transitive dependencies for this package computed at configure-time"
, "deps :: [(String,[Int])] -- ^ package name, version number"
, "deps = " ++ renderDeps pkgs
]
-- | Render the transitive package dependencies as a Haskell expression
renderDeps ::
[InstalledPackageInfo] {- ^ transitive package dependencies -} ->
String {- ^ haskell syntax -}
renderDeps pkgs =
show [ (unPackageName (pkgName p), versionNumbers (pkgVersion p))
| p <- sourcePackageId <$> pkgs
]
-- | Check that all transitive dependencies are available under an acceptable
-- license. Raises a user-error on failure.
validateLicenses ::
[InstalledPackageInfo] {- ^ transitive package dependencies -} ->
IO ()
validateLicenses pkgs =
do let toLicense = either licenseFromSPDX id
isBad pkg = toLicense (license pkg) `notElem` freeLicenses
&& pkgName (sourcePackageId pkg) `notElem` exemptions
badPkgs = filter isBad pkgs
exemptions = [mkPackageName "system-cxx-std-lib"]
unless (null badPkgs) $
do mapM_ print [ (sourcePackageId pkg, toLicense (license pkg)) | pkg <- badPkgs ]
fail "BAD LICENSE"
-- | The set of permissive licenses that are acceptable for transitive dependencies
-- of this package: BSD2, BSD3, ISC, MIT, PublicDomain
freeLicenses :: [License]
freeLicenses = [BSD2, BSD3, ISC, MIT, PublicDomain, UnknownLicense "LicenseRefPublicDomain"]