Show More
@@ -1,193 +1,189 b'' | |||
|
1 | 1 | # install-dependencies.ps1 - Install Windows dependencies for building Mercurial |
|
2 | 2 | # |
|
3 | 3 | # Copyright 2019 Gregory Szorc <gregory.szorc@gmail.com> |
|
4 | 4 | # |
|
5 | 5 | # This software may be used and distributed according to the terms of the |
|
6 | 6 | # GNU General Public License version 2 or any later version. |
|
7 | 7 | |
|
8 | 8 | # This script can be used to bootstrap a Mercurial build environment on |
|
9 | 9 | # Windows. |
|
10 | 10 | # |
|
11 | 11 | # The script makes a lot of assumptions about how things should work. |
|
12 | 12 | # For example, the install location of Python is hardcoded to c:\hgdev\*. |
|
13 | 13 | # |
|
14 | 14 | # The script should be executed from a PowerShell with elevated privileges |
|
15 | 15 | # if you don't want to see a UAC prompt for various installers. |
|
16 | 16 | # |
|
17 | 17 | # The script is tested on Windows 10 and Windows Server 2019 (in EC2). |
|
18 | 18 | |
|
19 | 19 | $VS_BUILD_TOOLS_URL = "https://download.visualstudio.microsoft.com/download/pr/a1603c02-8a66-4b83-b821-811e3610a7c4/aa2db8bb39e0cbd23e9940d8951e0bc3/vs_buildtools.exe" |
|
20 | 20 | $VS_BUILD_TOOLS_SHA256 = "911E292B8E6E5F46CBC17003BDCD2D27A70E616E8D5E6E69D5D489A605CAA139" |
|
21 | 21 | |
|
22 | 22 | $PYTHON37_x86_URL = "https://www.python.org/ftp/python/3.7.9/python-3.7.9.exe" |
|
23 | 23 | $PYTHON37_x86_SHA256 = "769bb7c74ad1df6d7d74071cc16a984ff6182e4016e11b8949b93db487977220" |
|
24 | 24 | $PYTHON37_X64_URL = "https://www.python.org/ftp/python/3.7.9/python-3.7.9-amd64.exe" |
|
25 | 25 | $PYTHON37_x64_SHA256 = "e69ed52afb5a722e5c56f6c21d594e85c17cb29f12f18bb69751cf1714e0f987" |
|
26 | 26 | |
|
27 | 27 | $PYTHON38_x86_URL = "https://www.python.org/ftp/python/3.8.10/python-3.8.10.exe" |
|
28 | 28 | $PYTHON38_x86_SHA256 = "ad07633a1f0cd795f3bf9da33729f662281df196b4567fa795829f3bb38a30ac" |
|
29 | 29 | $PYTHON38_x64_URL = "https://www.python.org/ftp/python/3.8.10/python-3.8.10-amd64.exe" |
|
30 | 30 | $PYTHON38_x64_SHA256 = "7628244cb53408b50639d2c1287c659f4e29d3dfdb9084b11aed5870c0c6a48a" |
|
31 | 31 | |
|
32 | 32 | $PYTHON39_x86_URL = "https://www.python.org/ftp/python/3.9.5/python-3.9.5.exe" |
|
33 | 33 | $PYTHON39_x86_SHA256 = "505129081a839b699a6ab9064b441ad922ef03767b5dd4241fd0c2166baf64de" |
|
34 | 34 | $PYTHON39_x64_URL = "https://www.python.org/ftp/python/3.9.5/python-3.9.5-amd64.exe" |
|
35 | 35 | $PYTHON39_x64_SHA256 = "84d5243088ba00c11e51905c704dbe041040dfff044f4e1ce5476844ee2e6eac" |
|
36 | 36 | |
|
37 | 37 | # PIP 19.2.3. |
|
38 | 38 | $PIP_URL = "https://github.com/pypa/get-pip/raw/309a56c5fd94bd1134053a541cb4657a4e47e09d/get-pip.py" |
|
39 | 39 | $PIP_SHA256 = "57e3643ff19f018f8a00dfaa6b7e4620e3c1a7a2171fd218425366ec006b3bfe" |
|
40 | 40 | |
|
41 | $VIRTUALENV_URL = "https://files.pythonhosted.org/packages/66/f0/6867af06d2e2f511e4e1d7094ff663acdebc4f15d4a0cb0fed1007395124/virtualenv-16.7.5.tar.gz" | |
|
42 | $VIRTUALENV_SHA256 = "f78d81b62d3147396ac33fc9d77579ddc42cc2a98dd9ea38886f616b33bc7fb2" | |
|
43 | ||
|
44 | 41 | $INNO_SETUP_URL = "http://files.jrsoftware.org/is/5/innosetup-5.6.1-unicode.exe" |
|
45 | 42 | $INNO_SETUP_SHA256 = "27D49E9BC769E9D1B214C153011978DB90DC01C2ACD1DDCD9ED7B3FE3B96B538" |
|
46 | 43 | |
|
47 | 44 | $MINGW_BIN_URL = "https://osdn.net/frs/redir.php?m=constant&f=mingw%2F68260%2Fmingw-get-0.6.3-mingw32-pre-20170905-1-bin.zip" |
|
48 | 45 | $MINGW_BIN_SHA256 = "2AB8EFD7C7D1FC8EAF8B2FA4DA4EEF8F3E47768284C021599BC7435839A046DF" |
|
49 | 46 | |
|
50 |
$MERCURIAL_WHEEL_FILENAME = "mercurial-5. |
|
|
51 |
$MERCURIAL_WHEEL_URL = "https://files.pythonhosted.org/packages/ |
|
|
52 | $MERCURIAL_WHEEL_SHA256 = "1d18c7f6ca1456f0f62ee65c9a50c14cbba48ce6e924930cdb10537f5c9eaf5f" | |
|
47 | $MERCURIAL_WHEEL_FILENAME = "mercurial-5.8.1-cp39-cp39-win_amd64.whl" | |
|
48 | $MERCURIAL_WHEEL_URL = "https://files.pythonhosted.org/packages/5c/b5/a5fa664761eef29b6c90eb24cb09ab8fe2c9b4b86af41d42c17476aff29b/$MERCURIAL_WHEEL_FILENAME" | |
|
49 | $MERCURIAL_WHEEL_SHA256 = "cbf3efa68fd7ebf94691bd00d2c86bbd47ca73620c8faa4f18b6c394bf5f82b0" | |
|
53 | 50 | |
|
54 | 51 | $RUSTUP_INIT_URL = "https://static.rust-lang.org/rustup/archive/1.21.1/x86_64-pc-windows-gnu/rustup-init.exe" |
|
55 | 52 | $RUSTUP_INIT_SHA256 = "d17df34ba974b9b19cf5c75883a95475aa22ddc364591d75d174090d55711c72" |
|
56 | 53 | |
|
57 | 54 | $PYOXIDIZER_URL = "https://github.com/indygreg/PyOxidizer/releases/download/pyoxidizer%2F0.16.0/PyOxidizer-0.16.0-x64.msi" |
|
58 | 55 | $PYOXIDIZER_SHA256 = "2a9c58add9161c272c418d5e6dec13fbe648f624b5d26770190357e4d664f24e" |
|
59 | 56 | |
|
60 | 57 | # Writing progress slows down downloads substantially. So disable it. |
|
61 | 58 | $progressPreference = 'silentlyContinue' |
|
62 | 59 | |
|
63 | 60 | function Secure-Download($url, $path, $sha256) { |
|
64 | 61 | if (Test-Path -Path $path) { |
|
65 | 62 | Get-FileHash -Path $path -Algorithm SHA256 -OutVariable hash |
|
66 | 63 | |
|
67 | 64 | if ($hash.Hash -eq $sha256) { |
|
68 | 65 | Write-Output "SHA256 of $path verified as $sha256" |
|
69 | 66 | return |
|
70 | 67 | } |
|
71 | 68 | |
|
72 | 69 | Write-Output "hash mismatch on $path; downloading again" |
|
73 | 70 | } |
|
74 | 71 | |
|
75 | 72 | Write-Output "downloading $url to $path" |
|
76 | 73 | Invoke-WebRequest -Uri $url -OutFile $path |
|
77 | 74 | Get-FileHash -Path $path -Algorithm SHA256 -OutVariable hash |
|
78 | 75 | |
|
79 | 76 | if ($hash.Hash -ne $sha256) { |
|
80 | 77 | Remove-Item -Path $path |
|
81 | 78 | throw "hash mismatch when downloading $url; got $($hash.Hash), expected $sha256" |
|
82 | 79 | } |
|
83 | 80 | } |
|
84 | 81 | |
|
85 | 82 | function Invoke-Process($path, $arguments) { |
|
86 | 83 | echo "$path $arguments" |
|
87 | 84 | |
|
88 | 85 | $p = Start-Process -FilePath $path -ArgumentList $arguments -Wait -PassThru -WindowStyle Hidden |
|
89 | 86 | |
|
90 | 87 | if ($p.ExitCode -ne 0) { |
|
91 | 88 | throw "process exited non-0: $($p.ExitCode)" |
|
92 | 89 | } |
|
93 | 90 | } |
|
94 | 91 | |
|
95 | 92 | function Install-Python3($name, $installer, $dest, $pip) { |
|
96 | 93 | Write-Output "installing $name" |
|
97 | 94 | |
|
98 | 95 | # We hit this when running the script as part of Simple Systems Manager in |
|
99 | 96 | # EC2. The Python 3 installer doesn't seem to like per-user installs |
|
100 | 97 | # when running as the SYSTEM user. So enable global installs if executed in |
|
101 | 98 | # this mode. |
|
102 | 99 | if ($env:USERPROFILE -eq "C:\Windows\system32\config\systemprofile") { |
|
103 | 100 | Write-Output "running with SYSTEM account; installing for all users" |
|
104 | 101 | $allusers = "1" |
|
105 | 102 | } |
|
106 | 103 | else { |
|
107 | 104 | $allusers = "0" |
|
108 | 105 | } |
|
109 | 106 | |
|
110 | 107 | Invoke-Process $installer "/quiet TargetDir=${dest} InstallAllUsers=${allusers} AssociateFiles=0 CompileAll=0 PrependPath=0 Include_doc=0 Include_launcher=0 InstallLauncherAllUsers=0 Include_pip=0 Include_test=0" |
|
111 | 108 | Invoke-Process ${dest}\python.exe $pip |
|
112 | 109 | } |
|
113 | 110 | |
|
114 | 111 | function Install-Rust($prefix) { |
|
115 | 112 | Write-Output "installing Rust" |
|
116 | 113 | $Env:RUSTUP_HOME = "${prefix}\rustup" |
|
117 | 114 | $Env:CARGO_HOME = "${prefix}\cargo" |
|
118 | 115 | |
|
119 | 116 | Invoke-Process "${prefix}\assets\rustup-init.exe" "-y --default-host x86_64-pc-windows-msvc" |
|
120 | 117 | Invoke-Process "${prefix}\cargo\bin\rustup.exe" "target add i686-pc-windows-msvc" |
|
121 | 118 | Invoke-Process "${prefix}\cargo\bin\rustup.exe" "install 1.52.0" |
|
122 | 119 | Invoke-Process "${prefix}\cargo\bin\rustup.exe" "component add clippy" |
|
123 | 120 | } |
|
124 | 121 | |
|
125 | 122 | function Install-Dependencies($prefix) { |
|
126 | 123 | if (!(Test-Path -Path $prefix\assets)) { |
|
127 | 124 | New-Item -Path $prefix\assets -ItemType Directory |
|
128 | 125 | } |
|
129 | 126 | |
|
130 | 127 | $pip = "${prefix}\assets\get-pip.py" |
|
131 | 128 | |
|
132 | 129 | Secure-Download $PYTHON37_x86_URL ${prefix}\assets\python37-x86.exe $PYTHON37_x86_SHA256 |
|
133 | 130 | Secure-Download $PYTHON37_x64_URL ${prefix}\assets\python37-x64.exe $PYTHON37_x64_SHA256 |
|
134 | 131 | Secure-Download $PYTHON38_x86_URL ${prefix}\assets\python38-x86.exe $PYTHON38_x86_SHA256 |
|
135 | 132 | Secure-Download $PYTHON38_x64_URL ${prefix}\assets\python38-x64.exe $PYTHON38_x64_SHA256 |
|
136 | 133 | Secure-Download $PYTHON39_x86_URL ${prefix}\assets\python39-x86.exe $PYTHON39_x86_SHA256 |
|
137 | 134 | Secure-Download $PYTHON39_x64_URL ${prefix}\assets\python39-x64.exe $PYTHON39_x64_SHA256 |
|
138 | 135 | Secure-Download $PIP_URL ${pip} $PIP_SHA256 |
|
139 | Secure-Download $VIRTUALENV_URL ${prefix}\assets\virtualenv.tar.gz $VIRTUALENV_SHA256 | |
|
140 | 136 | Secure-Download $VS_BUILD_TOOLS_URL ${prefix}\assets\vs_buildtools.exe $VS_BUILD_TOOLS_SHA256 |
|
141 | 137 | Secure-Download $INNO_SETUP_URL ${prefix}\assets\InnoSetup.exe $INNO_SETUP_SHA256 |
|
142 | 138 | Secure-Download $MINGW_BIN_URL ${prefix}\assets\mingw-get-bin.zip $MINGW_BIN_SHA256 |
|
143 | 139 | Secure-Download $MERCURIAL_WHEEL_URL ${prefix}\assets\${MERCURIAL_WHEEL_FILENAME} $MERCURIAL_WHEEL_SHA256 |
|
144 | 140 | Secure-Download $RUSTUP_INIT_URL ${prefix}\assets\rustup-init.exe $RUSTUP_INIT_SHA256 |
|
145 | 141 | Secure-Download $PYOXIDIZER_URL ${prefix}\assets\PyOxidizer.msi $PYOXIDIZER_SHA256 |
|
146 | 142 | |
|
147 | 143 | Install-Python3 "Python 3.7 32-bit" ${prefix}\assets\python37-x86.exe ${prefix}\python37-x86 ${pip} |
|
148 | 144 | Install-Python3 "Python 3.7 64-bit" ${prefix}\assets\python37-x64.exe ${prefix}\python37-x64 ${pip} |
|
149 | 145 | Install-Python3 "Python 3.8 32-bit" ${prefix}\assets\python38-x86.exe ${prefix}\python38-x86 ${pip} |
|
150 | 146 | # Install-Python3 "Python 3.8 64-bit" ${prefix}\assets\python38-x64.exe ${prefix}\python38-x64 ${pip} |
|
151 | 147 | Install-Python3 "Python 3.9 32-bit" ${prefix}\assets\python39-x86.exe ${prefix}\python39-x86 ${pip} |
|
152 | 148 | Install-Python3 "Python 3.9 64-bit" ${prefix}\assets\python39-x64.exe ${prefix}\python39-x64 ${pip} |
|
153 | 149 | |
|
154 | 150 | Write-Output "installing Visual Studio 2017 Build Tools and SDKs" |
|
155 | 151 | Invoke-Process ${prefix}\assets\vs_buildtools.exe "--quiet --wait --norestart --nocache --channelUri https://aka.ms/vs/15/release/channel --add Microsoft.VisualStudio.Workload.MSBuildTools --add Microsoft.VisualStudio.Component.Windows10SDK.17763 --add Microsoft.VisualStudio.Workload.VCTools --add Microsoft.VisualStudio.Component.Windows10SDK --add Microsoft.VisualStudio.Component.VC.140" |
|
156 | 152 | |
|
157 | 153 | Write-Output "installing PyOxidizer" |
|
158 | 154 | Invoke-Process msiexec.exe "/i ${prefix}\assets\PyOxidizer.msi /l* ${prefix}\assets\PyOxidizer.log /quiet" |
|
159 | 155 | |
|
160 | 156 | Install-Rust ${prefix} |
|
161 | 157 | |
|
162 | 158 | Write-Output "installing Inno Setup" |
|
163 | 159 | Invoke-Process ${prefix}\assets\InnoSetup.exe "/SP- /VERYSILENT /SUPPRESSMSGBOXES" |
|
164 | 160 | |
|
165 | 161 | Write-Output "extracting MinGW base archive" |
|
166 | 162 | Expand-Archive -Path ${prefix}\assets\mingw-get-bin.zip -DestinationPath "${prefix}\MinGW" -Force |
|
167 | 163 | |
|
168 | 164 | Write-Output "updating MinGW package catalogs" |
|
169 | 165 | Invoke-Process ${prefix}\MinGW\bin\mingw-get.exe "update" |
|
170 | 166 | |
|
171 | 167 | Write-Output "installing MinGW packages" |
|
172 | 168 | Invoke-Process ${prefix}\MinGW\bin\mingw-get.exe "install msys-base msys-coreutils msys-diffutils msys-unzip" |
|
173 | 169 | |
|
174 | 170 | # Construct a virtualenv useful for bootstrapping. It conveniently contains a |
|
175 | 171 | # Mercurial install. |
|
176 | 172 | Write-Output "creating bootstrap virtualenv with Mercurial" |
|
177 |
Invoke-Process "$prefix\python |
|
|
173 | Invoke-Process "$prefix\python39-x64\python.exe" "-m venv ${prefix}\venv-bootstrap" | |
|
178 | 174 | Invoke-Process "${prefix}\venv-bootstrap\Scripts\pip.exe" "install ${prefix}\assets\${MERCURIAL_WHEEL_FILENAME}" |
|
179 | 175 | } |
|
180 | 176 | |
|
181 | 177 | function Clone-Mercurial-Repo($prefix, $repo_url, $dest) { |
|
182 | 178 | Write-Output "cloning $repo_url to $dest" |
|
183 | 179 | # TODO Figure out why CA verification isn't working in EC2 and remove |
|
184 | 180 | # --insecure. |
|
185 |
Invoke-Process "${prefix}\venv-bootstrap\Scripts\ |
|
|
181 | Invoke-Process "${prefix}\venv-bootstrap\Scripts\python.exe" "${prefix}\venv-bootstrap\Scripts\hg clone --insecure $repo_url $dest" | |
|
186 | 182 | |
|
187 | 183 | # Mark repo as non-publishing by default for convenience. |
|
188 | 184 | Add-Content -Path "$dest\.hg\hgrc" -Value "`n[phases]`npublish = false" |
|
189 | 185 | } |
|
190 | 186 | |
|
191 | 187 | $prefix = "c:\hgdev" |
|
192 | 188 | Install-Dependencies $prefix |
|
193 | 189 | Clone-Mercurial-Repo $prefix "https://www.mercurial-scm.org/repo/hg" $prefix\src |
General Comments 0
You need to be logged in to leave comments.
Login now