forked from haskell/cabal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
release.py
executable file
·338 lines (273 loc) · 10.9 KB
/
release.py
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
release.py - build the release of cabal-install"
"""
USAGE = """
This utility is only intended for use in building cabal-install
binary distributions on platforms with existing cabal-install.
"""
# TODO, by using v2-install we build from sdists, which is good
# But we cannot get plan.json, to get dependency-receipt
# https://github.com/haskell/cabal/issues/6988
# TODO provide DWARF enabled builds?
# We don't build documentation, its well built by readthedocs.
# We cannot make tarball, as the private key for signing should be on the builder machine.
# We also don't use caching, this way we have one moving part less.
import os
import platform
import shutil
import subprocess
from pathlib import Path
from textwrap import dedent
from typing import NamedTuple
DEFAULT_INDEXSTATE='2020-07-23T11:14:13Z'
Args = NamedTuple('Args', [
('compiler', Path),
('cabal', Path),
('indexstate', str),
('builddir', Path),
('static', bool),
('ofdlocking', bool),
('tarlib', Path),
('tarsolver', Path),
('tarexe', Path),
])
# utils
#######################################################################
def subprocess_run(args, **kwargs):
"Like subprocess.run, but also print what we run"
args = list(map(str, args)) # For Windows, https://www.scivision.dev/windows-python-pathlib-subprocess-bug/
args_str = ' '.join(map(str, args))
extras = ''
if 'cwd' in kwargs:
extras += f' cwd={kwargs["cwd"]}'
print(f'%{extras} {args_str}')
return subprocess.run(args, **kwargs)
# archive name
#######################################################################
def linuxname(i, r):
i = i.strip() # id
r = r.strip() # release
if i == '': return 'linux'
else: return f"{i}-{r}".lower()
def macname(macver):
# https://en.wikipedia.org/wiki/MacOS_version_history#Releases
if macver.startswith('10.12.'): return 'sierra'
if macver.startswith('10.13.'): return 'high-sierra'
if macver.startswith('10.14.'): return 'mojave'
if macver.startswith('10.15.'): return 'catalina'
if macver.startswith('11.0.'): return 'big-sur'
else: return macver
def archive_name(cabalversion):
# Ask platform information
machine = platform.machine().lower()
if machine == '': machine = "unknown"
if machine == 'amd64': machine = "x86_64"
system = platform.system().lower()
if system == '': system = "unknown"
version = system
if system == 'linux':
try:
i = subprocess_run(['lsb_release', '-si'], stdout=subprocess.PIPE, encoding='UTF-8')
r = subprocess_run(['lsb_release', '-sr'], stdout=subprocess.PIPE, encoding='UTF-8')
version = linuxname(i.stdout, r.stdout)
except:
try:
with open('/etc/alpine-release') as f:
alpinever = f.read().strip()
version = f'alpine-{alpinever}'
except:
pass
elif system == 'darwin':
version = 'darwin-' + macname(platform.mac_ver()[0])
elif system == 'freebsd':
version = 'freebsd-' + platform.release().lower()
return f'cabal-install-{cabalversion}-{machine}-{version}'
# Steps
#######################################################################
def step_makedirs(args: Args):
(args.builddir / 'bin').mkdir(parents=True, exist_ok=True)
(args.builddir / 'cabal').mkdir(parents=True, exist_ok=True)
def step_config(args: Args):
splitsections = ''
if platform.system() == 'Linux':
splitsections = 'split-sections: True'
# https://github.com/Mistuke/CabalChoco/blob/d0e1d2fd8ce13ab4271c4b906ca0bde3b710a310/3.2.0.0/cabal/tools/chocolateyInstall.ps1#L289
extraprogpath = str(args.builddir / 'bin')
if platform.system() == 'Windows':
msysbin = Path('C:\\tools\\msys64\\usr\\bin')
if msysbin.is_dir():
extraprogpath = extraprogpath + "," + str(msysbin)
# cabal.config
config = dedent(f"""
repository hackage.haskell.org
url: http://hackage.haskell.org/
remote-build-reporting: anonymous
remote-repo-cache: {args.builddir}/cabal/packages
write-ghc-environment-files: never
install-method: copy
overwrite-policy: always
documentation: False
{splitsections}
build-summary: {args.builddir}/cabal/logs/build.log
installdir: {args.builddir}/bin
logs-dir: {args.builddir}/cabal/logs
store-dir: {args.builddir}/cabal/store
symlink-bindir: {args.builddir}/bin
extra-prog-path: {extraprogpath}
jobs: 1
install-dirs user
prefix: {args.builddir}
""")
with open(args.builddir / 'cabal' / 'config', 'w') as f:
f.write(config)
# cabal.project
cabal_project = dedent(f"""
packages: {args.tarlib}
packages: {args.tarexe}
packages: {args.tarsolver}
tests: False
benchmarks: False
optimization: True
package Cabal
ghc-options: -fexpose-all-unfoldings -fspecialise-aggressively
package parsec
ghc-options: -fexpose-all-unfoldings
""")
if args.static:
# --enable-executable-static doesn't affect "non local" executables, as in v2-install project
cabal_project += dedent("""
package cabal-install
executable-static: True
""")
cabal_project += dedent(f"""
package lukko
flags: {'+' if args.ofdlocking else '-'}ofd_locking
""")
with open(args.builddir / 'cabal.project', 'w') as f:
f.write(cabal_project)
def make_env(args: Args):
env = {
'PATH': os.environ['PATH'],
'CABAL_DIR': str(args.builddir),
'CABAL_CONFIG': str(args.builddir / 'cabal' / 'config'),
}
# https://superuser.com/questions/1079017/is-there-an-environment-variable-for-c-users-username-appdata-local-temp-in-w
# In particular, we surely need 'TEMP'
# And also SYSTEMROOT to make 'curl' work!
envvars = [
'LANG',
'HOME', 'HOMEDRIVE', 'HOMEPATH',
'TMP', 'TEMP',
'PATHEXT', 'APPDATA', 'LOCALAPPDATA', 'SYSTEMROOT',
]
for key in envvars:
if key in os.environ:
env[key] = os.environ[key]
return env
def step_cabal_update(args: Args):
env = make_env(args)
subprocess_run([
args.cabal,
'v2-update',
'-v',
f'--index-state={args.indexstate}',
], cwd=args.builddir, check=True, env=env)
def step_cabal_install(args: Args):
env = make_env(args)
subprocess_run([
args.cabal,
'v2-install',
'-v',
'cabal-install:exe:cabal',
'--project-file=cabal.project',
f'--with-compiler={args.compiler}',
], cwd=args.builddir, check=True, env=env)
def step_make_archive(args: Args):
import tempfile
print(f'Creating distribution tarball')
# Get bootstrapped cabal version
# This also acts as smoke test
cabal_path = args.builddir / 'bin' / 'cabal'
if platform.system() == 'Windows':
cabal_path = cabal_path.with_suffix('.exe')
p = subprocess_run([cabal_path, '--numeric-version'], stdout=subprocess.PIPE, check=True, encoding='UTF-8')
cabalversion = p.stdout.replace('\n', '').strip()
# Archive name
name = archive_name(cabalversion)
if args.static:
name = name + "-static"
if not args.ofdlocking:
name = name + "-noofd"
basename = args.builddir / 'artifacts' / name
# In temporary directory, create a directory which we will archive
tmpdir = args.builddir / 'tmp'
tmpdir.mkdir(parents=True, exist_ok=True)
rootdir = Path(tempfile.mkdtemp(dir=tmpdir))
shutil.copy(cabal_path, rootdir / 'cabal')
# Make archive...
fmt = 'xztar'
if platform.system() == 'Windows': fmt = 'zip'
archivename = shutil.make_archive(basename, fmt, rootdir)
return archivename
# Main procedure
#######################################################################
def main():
import argparse
parser = argparse.ArgumentParser(
description="release packaging utility for cabal-install.",
epilog = USAGE,
formatter_class = argparse.RawDescriptionHelpFormatter)
class EnableDisable(argparse.Action):
def __call__(self, parser, namespace, values, option_string=None):
value = option_string.startswith('--enable')
setattr(namespace, self.dest, value)
parser.add_argument('-w', '--with-compiler', type=str, default='ghc', help='path to GHC')
parser.add_argument('-C', '--with-cabal', type=str, default='cabal', help='path to cabal-install')
parser.add_argument('-i', '--index-state', type=str, default=DEFAULT_INDEXSTATE, help='index state of Hackage to use')
parser.add_argument('--enable-static-executable', '--disable-static-executable', dest='static', nargs=0, default=False, action=EnableDisable, help='Statically link cabal executable')
parser.add_argument('--enable-ofd-locking', '--disable-ofd-locking', dest='ofd_locking', nargs=0, default=True, action=EnableDisable, help='OFD locking (lukko)')
parser.add_argument('--tarlib', dest='tarlib', required=True, metavar='LIBTAR', help='path to Cabal-version.tar.gz')
parser.add_argument('--tarsolver', dest='tarsolver', required=True, metavar='SOLVERTAR', help='path to cabal-install-solver-version.tar.gz')
parser.add_argument('--tarexe', dest='tarexe', required=True, metavar='EXETAR', help='path to cabal-install-version.tar.gz')
parser.add_argument('--builddir', dest='builddir', type=str, default='_build', help='build directory')
args = parser.parse_args()
args = Args(
compiler = Path(shutil.which(args.with_compiler)),
cabal = Path(shutil.which(args.with_cabal)),
indexstate = args.index_state,
builddir = Path(args.builddir).resolve(),
static = args.static,
ofdlocking = args.ofd_locking,
tarlib = Path(args.tarlib).resolve(),
tarexe = Path(args.tarexe).resolve(),
tarsolver = Path(args.tarsolver).resolve()
)
print(dedent(f"""
compiler: {args.compiler}
cabal: {args.cabal}
index-state: {args.indexstate}
builddir: {args.builddir}
static: {args.static}
ofd-locking: {args.ofdlocking}
lib-tarball: {args.tarlib}
solver-tarball: {args.tarsolver}
exe-tarball: {args.tarexe}
"""))
# Check tools
subprocess_run([args.compiler, '--version'], check=True)
subprocess_run([args.compiler, '--print-project-git-commit-id'], check=True)
subprocess_run([args.cabal, '--version'], check=True)
step_makedirs(args)
step_config(args)
step_cabal_update(args)
step_cabal_install(args)
archivename = step_make_archive(args)
print(dedent(f'''
Packaging finished!
Distribution have been archived in
{archivename}
'''))
if __name__ == '__main__':
main()