forked from conda/constructor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathosxpkg.py
More file actions
694 lines (617 loc) · 27.9 KB
/
osxpkg.py
File metadata and controls
694 lines (617 loc) · 27.9 KB
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
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
"""
Logic to build PKG installers for macOS.
"""
import logging
import os
import shlex
import shutil
import subprocess
import sys
import xml.etree.ElementTree as ET
from os.path import abspath, dirname, exists, isdir, join
from pathlib import Path
from plistlib import dump as plist_dump
from tempfile import NamedTemporaryFile
from . import preconda
from .conda_interface import conda_context
from .construct import ns_platform, parse
from .imaging import write_images
from .jinja import render_template
from .signing import CodeSign
from .utils import (
DEFAULT_REVERSE_DOMAIN_ID,
add_condarc,
approx_size_kb,
copy_conda_exe,
explained_check_call,
get_final_channels,
parse_virtual_specs,
rm_rf,
shortcuts_flags,
)
OSX_DIR = join(dirname(__file__), "osx")
CACHE_DIR = PACKAGE_ROOT = PACKAGES_DIR = SCRIPTS_DIR = None
logger = logging.getLogger(__name__)
def calculate_install_dir(yaml_file, subdir=None):
contents = parse(yaml_file, subdir or conda_context.subdir)
if contents.get("installer_type") == "sh":
return contents["name"]
name = contents.get("pkg_name") or contents["name"]
location = contents.get("default_location_pkg")
if location:
return f"{location}/{name}"
return name
def write_readme(dst, info):
src = join(OSX_DIR, "readme_header.rtf")
with open(src) as fi:
data = fi.read()
# This is necessary for when installing on case-sensitive macOS filesystems.
data = data.replace("__NAME_LOWER__", info.get("pkg_name", info["name"]).lower())
data = data.replace("__NAME__", info["name"])
data = data.replace("__VERSION__", info["version"])
with open(dst, "w") as f:
f.write(data)
all_dists = info["_dists"].copy()
for env_info in info.get("_extra_envs_info", {}).values():
all_dists += env_info["_dists"]
all_dists = list({dist: None for dist in all_dists}) # de-duplicate
# TODO: Split output by env name
for dist in sorted(all_dists):
if dist.startswith("_"):
continue
f.write(
"{\\listtext\t\n\\f1 \\uc0\\u8259 \n\\f0 \t}%s %s\\\n"
% tuple(dist.rsplit("-", 2)[:2])
)
f.write("}")
def _detect_mimetype(path: str):
extension = Path(path).suffix.lower().strip(".")
if extension == "rtf":
return "richtext/rtf"
if extension in ("html", "htm"):
return "text/html"
# we assume it's plain text
return "text/plain"
def modify_xml(xml_path, info):
# See
# http://developer.apple.com/library/mac/#documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html#//apple_ref/doc/uid/TP40005370-CH100-SW20
# for all the options you can put here.
tree = ET.parse(xml_path)
root = tree.getroot()
title = ET.Element("title")
title.text = f"{info['name']} {info['version']}"
root.append(title)
license = ET.Element("license", file=info.get("license_file", "No license"))
root.append(license)
# -- BACKGROUND -- #
# Default setting for the background was using Anaconda's logo
# located at ./osx/MacInstaller.png. If `welcome_image` or
# `welcome_image_text` are not provided, this will still happen.
# However, if the user provides one of those, we will use that instead.
# If no background is desired, set `welcome_image` to None
if "welcome_image" in info:
if not info["welcome_image"]:
background_path = None
else:
write_images(info, PACKAGES_DIR, os="osx")
background_path = os.path.join(PACKAGES_DIR, "welcome.png")
elif "welcome_image_text" in info:
write_images(info, PACKAGES_DIR, os="osx")
background_path = os.path.join(PACKAGES_DIR, "welcome.png")
else:
# Default to Anaconda's logo if the keys above were not specified
background_path = join(OSX_DIR, "MacInstaller.png")
if background_path:
logger.info("Using background image: %s", background_path)
for key in ("background", "background-darkAqua"):
background = ET.Element(
key, file=background_path, scaling="proportional", alignment="center"
)
root.append(background)
# -- WELCOME -- #
# The endswith .nsi is for windows specifically. The nsi script will add in
# welcome pages if added.
if "welcome_file" in info and not info["welcome_file"].endswith(".nsi"):
welcome_path = info["welcome_file"]
elif "welcome_text" in info and info["welcome_text"]:
welcome_path = join(PACKAGES_DIR, "welcome.txt")
with open(welcome_path, "w") as f:
f.write(info["welcome_text"])
else:
welcome_path = None
if info.get("welcome_file", "").endswith(".nsi"):
logger.info("Warning: NSI welcome_file, %s, is ignored.", info["welcome_file"])
if welcome_path:
welcome = ET.Element(
"welcome", file=welcome_path, attrib={"mime-type": _detect_mimetype(welcome_path)}
)
root.append(welcome)
# -- CONCLUSION -- #
# The endswith .nsi is for windows specifically. The nsi script will add in
# conclusion pages if added.
if "conclusion_file" in info and not info["conclusion_file"].endswith(".nsi"):
conclusion_path = info["conclusion_file"]
elif "conclusion_text" in info:
if not info["conclusion_text"]:
conclusion_path = None
else:
conclusion_path = join(PACKAGES_DIR, "conclusion.txt")
with open(conclusion_path, "w") as f:
f.write(info["conclusion_text"])
else:
conclusion_path = join(OSX_DIR, "acloud.rtf")
if info.get("conclusion_file", "").endswith(".nsi"):
logger.warning("NSI conclusion_file '%s' is ignored.", info["conclusion_file"])
if conclusion_path:
conclusion = ET.Element(
"conclusion",
file=conclusion_path,
attrib={"mime-type": _detect_mimetype(conclusion_path)},
)
root.append(conclusion)
# when not provided, conclusion defaults to a system message
# -- README -- #
if "readme_file" in info:
readme_path = info["readme_file"]
elif "readme_text" in info:
if not info["readme_text"]:
readme_path = None
else:
readme_path = join(PACKAGES_DIR, "readme.txt")
with open(readme_path, "w") as f:
f.write(info["readme_text"])
else:
readme_path = join(PACKAGES_DIR, "readme.rtf")
write_readme(readme_path, info)
if readme_path:
readme = ET.Element(
"readme", file=readme_path, attrib={"mime-type": _detect_mimetype(readme_path)}
)
root.append(readme)
# -- __osx virtual package checks -- #
# Reference: https://developer.apple.com/library/archive/documentation/DeveloperTools/Reference/DistributionDefinitionRef/Chapters/Distribution_XML_Ref.html
osx_versions = parse_virtual_specs(info).get("__osx")
if osx_versions:
if "min" not in osx_versions:
raise ValueError("Specifying __osx requires a lower bound with `>=`")
allowed_os_versions = ET.Element("allowed-os-versions")
allowed_os_versions.append(ET.Element("os-version", osx_versions))
volume_check = ET.Element("volume-check")
volume_check.append(allowed_os_versions)
root.append(volume_check)
# See below for an explanation of the consequences of this
# customLocation value.
for options in root.findall("options"):
options.set("customize", "allow")
options.set("customLocation", "/")
# By default, the package builder puts all of our options under
# a single master choice. This deletes that master choice and
# allows the user to see all options without effort.
for choices_outline in root.findall("choices-outline"):
[child] = list(choices_outline)
choices_outline.extend(list(child))
choices_outline.remove(child)
for path_choice in root.findall("choice"):
ident = path_choice.get("id")
if ident == "default":
root.remove(path_choice)
elif ident.endswith("prepare_installation"):
path_choice.set("visible", "true")
path_choice.set("title", "Install {}".format(info["name"]))
path_choice.set("enabled", "false")
elif ident.endswith("run_installation"):
# We leave this one out on purpose! The user does not need to
# know we separated the installation in two steps to accommodate
# for the pre-install scripts optionality
path_choice.set("visible", "false")
path_choice.set("title", "Apply {}".format(info["name"]))
path_choice.set("enabled", "false")
elif ident.endswith("shortcuts"):
# Show this option if menu_packages was set to a non-empty value
# or if the option was not set at all. We don't show the option
# menu_packages was set to an empty list!
path_choice.set("visible", "true")
path_choice.set("title", "Create shortcuts")
path_choice.set("enabled", "true")
descr = "Create shortcuts for compatible packages"
menu_packages = info.get("menu_packages")
if menu_packages is None:
menu_packages = []
for extra_env in info.get("extra_envs", {}).values():
menu_packages += extra_env.get("menu_packages", [])
if menu_packages:
descr += f" ({', '.join(menu_packages)})"
path_choice.set("description", descr)
elif ident.endswith("user_pre_install") and info.get("pre_install_desc"):
path_choice.set("visible", "true")
path_choice.set("title", "Run the pre-install script")
path_choice.set("description", " ".join(info["pre_install_desc"].split()))
elif ident.endswith("user_post_install") and info.get("post_install_desc"):
path_choice.set("visible", "true")
path_choice.set("title", "Run the post-install script")
path_choice.set("description", " ".join(info["post_install_desc"].split()))
elif ident.endswith("run_conda_init"):
has_conda = info.get("_has_conda", True)
initialize_conda = info.get("initialize_conda", "classic")
path_choice.set("visible", "true" if has_conda else "false")
path_choice.set(
"start_selected",
"true" if has_conda and info.get("initialize_by_default", True) else "false",
)
if initialize_conda == "condabin":
path_choice.set("title", "Add condabin/ to PATH")
path_description = """
If this box is checked, this will enable you to run 'conda' anywhere,
without injecting a shell function. This will NOT change the command prompt
or activate your environment on shell startup. You can undo this by running
`conda init --condabin --reverse`. If unchecked, you must run this initialization
yourself or activate the environment manually for each shell in which you wish
to use it.
"""
else:
path_choice.set("title", "Add conda initialization to the shell")
path_description = """
If this box is checked, conda will be automatically activated in your
preferred shell on startup. This will change the command prompt when
activated. If your prefer that conda's base environment not be activated
on startup, run `conda config --set auto_activate_base false`. You can
undo this by running `conda init --reverse ${SHELL}`.
If unchecked, you must run this initialization yourself or activate the
environment manually for each shell in which you wish to use it."""
path_choice.set("description", " ".join(path_description.split()))
elif ident.endswith("cacheclean"):
path_choice.set("visible", "true")
path_choice.set("title", "Clear the package cache")
path_choice.set("start_selected", "false" if info.get("keep_pkgs") else "true")
cache_size_mb = approx_size_kb(info, "tarballs") // 1024
size_text = f"~{cache_size_mb}MB" if cache_size_mb > 0 else "some space"
path_description = f"""
If this box is checked, the package cache will be cleaned after the
installer is complete, reclaiming {size_text}. If unchecked, the
package cache contents will be preserved.
"""
path_choice.set("description", " ".join(path_description.split()))
# The "customLocation" option is set above to "/", which
# means that the installer defaults to the following locations:
# - Install for all users: /<name>
# - Install for this user: /Users/<username>/<name>
# - Install on a specific disk: /<custom_root>/<name>
# On modern Mac systems, installing in root is not allowed. So
# we remove this option by not supplying enable_localSystem
# in the default value for pkg_domains. enable_localSystem
# should only be set to true if default_location_pkg is supplied
# in the construct.yaml file.
# Alternatively, we could have chosen not to set the
# value of customLocation and we would have obtained this:
# - Install for all users: /Applications/<name>
# - Install for this user: /Users/<username>/Applications/<name>
# - Install on a specific disk: /<custom_root>/<name>
# We have chosen not to do this so that this installer
# can produce the same results as a shell install.
domains = ET.Element("domains", **info["pkg_domains"])
root.append(domains)
tree.write(xml_path)
def move_script(src, dst, info, ensure_shebang=False, user_script_type=None):
"""
Fill template scripts checks_before_install.sh, prepare_installation.sh and others,
and move them to the installer workspace.
"""
assert user_script_type in (None, "pre_install", "post_install")
with open(src) as fi:
data = fi.read()
# ppd hosts the conditions for the #if/#else/#endif preprocessors on scripts
variables = ns_platform(info["_platform"])
variables["check_path_spaces"] = bool(info.get("check_path_spaces", True))
# This is necessary for when installing on case-sensitive macOS filesystems.
pkg_name_lower = info.get("pkg_name", info["name"]).lower()
default_path_exists_error_text = (
"'{CHOSEN_PATH}' already exists. Please, relaunch the installer and "
"choose another location in the Destination Select step."
)
path_exists_error_text = info.get(
"install_path_exists_error_text", default_path_exists_error_text
).format(CHOSEN_PATH=f"$2/{pkg_name_lower}")
# __osx is tested by the PKG metadata directly, no need to repeat
virtual_specs = [spec for spec in info.get("virtual_specs", ()) if "__osx" not in spec]
variables["pkg_name_lower"] = pkg_name_lower
variables["installer_name"] = info["name"]
variables["installer_version"] = info["version"]
variables["installer_platform"] = info["_platform"]
variables["final_channels"] = get_final_channels(info)
variables["write_condarc"] = list(add_condarc(info))
variables["path_exists_error_text"] = path_exists_error_text
variables["progress_notifications"] = info.get("progress_notifications", False)
variables["pre_or_post"] = user_script_type or "__PRE_OR_POST__"
variables["constructor_version"] = info["CONSTRUCTOR_VERSION"]
variables["shortcuts"] = shortcuts_flags(info)
variables["enable_shortcuts"] = str(info["_enable_shortcuts"]).lower()
variables["register_envs"] = str(info.get("register_envs", True)).lower()
variables["virtual_specs"] = shlex.join(virtual_specs)
variables["no_rcs_arg"] = info.get("_ignore_condarcs_arg", "")
variables["script_env_variables"] = info.get("script_env_variables", {})
variables["initialize_conda"] = info.get("initialize_conda", "classic")
data = render_template(data, **variables)
with open(dst, "w") as fo:
if (
ensure_shebang
and os.path.splitext(dst)[1] in ("", ".sh")
and not data.startswith(("#!/bin/bash", "#!/bin/sh"))
):
# Shell scripts provided by the user require a shebang, otherwise it
# will fail to start with error posix_spawn 8
# We only handle shell scripts this way
fo.write("#!/bin/bash\n")
fo.write(data)
os.chmod(dst, 0o755)
def fresh_dir(dir_path):
rm_rf(dir_path)
assert not exists(dir_path)
os.mkdir(dir_path)
def pkgbuild(name, identifier=None, version=None, install_location=None):
"see `man pkgbuild` for the meaning of optional arguments"
if identifier is None:
identifier = DEFAULT_REVERSE_DOMAIN_ID
args = [
"pkgbuild",
"--root",
PACKAGE_ROOT,
"--identifier",
"%s.pkg.%s" % (identifier, name),
"--ownership",
"preserve",
]
if isdir(SCRIPTS_DIR) and os.listdir(SCRIPTS_DIR):
args += ["--scripts", SCRIPTS_DIR]
if version:
args += ["--version", version]
if install_location is not None:
args += ["--install-location", install_location]
output = os.path.join(PACKAGES_DIR, f"{name}.pkg")
args += [output]
explained_check_call(args)
return output
def pkgbuild_prepare_installation(info):
pkg = pkgbuild(
"prepare_installation",
identifier=info.get("reverse_domain_identifier"),
version=info["version"],
install_location=info.get("default_location_pkg"),
)
approx_pkgs_size_kb = approx_size_kb(info, "pkgs")
if approx_pkgs_size_kb <= 0:
return pkg
# We need to patch the estimated install size because it's initially
# set to the sum of the compressed tarballs, which is not representative
try:
# expand to apply patches
explained_check_call(["pkgutil", "--expand", pkg, f"{pkg}.expanded"])
payload_xml = os.path.join(f"{pkg}.expanded", "PackageInfo")
tree = ET.parse(payload_xml)
root = tree.getroot()
payload = root.find("payload")
payload.set("installKBytes", str(approx_pkgs_size_kb))
tree.write(payload_xml)
# repack
explained_check_call(["pkgutil", "--flatten", f"{pkg}.expanded", pkg])
return pkg
finally:
shutil.rmtree(f"{pkg}.expanded")
def create_plugins(pages: list = None, codesigner: CodeSign = None):
def _build_xcode_projects(xcodeporj_dirs: list[Path]):
xcodebuild = shutil.which("xcodebuild")
if not xcodebuild:
raise RuntimeError(
"Plugin directory contains an uncompiled project, but xcodebuild is not available."
)
try:
subprocess.run([xcodebuild, "--help"], check=True, capture_output=True)
except subprocess.CalledSubprocessError:
raise RuntimeError(
"Plugin directory contains an uncompiled project, "
"but xcodebuild requires XCode to compile plugins."
)
for xcodeproj in xcodeproj_dirs:
build_cmd = [
xcodebuild,
"-project",
str(xcodeproj),
f"CONFIGURATION_BUILD_DIR={PLUGINS_DIR}",
# do not create dSYM debug symbols directory
"DEBUG_INFORMATION_FORMAT=",
]
explained_check_call(build_cmd)
if not pages:
return
elif isinstance(pages, str):
pages = [pages]
fresh_dir(PLUGINS_DIR)
for page in pages:
xcodeproj_dirs = [
file.resolve() for file in Path(page).iterdir() if file.suffix == ".xcodeproj"
]
if xcodeproj_dirs:
_build_xcode_projects(xcodeproj_dirs)
else:
plugin_name = os.path.basename(page)
page_in_plugins = join(PLUGINS_DIR, plugin_name)
shutil.copytree(page, page_in_plugins)
if codesigner:
with NamedTemporaryFile(suffix=".plist", delete=False) as entitlements:
plist = {
"com.apple.security.cs.allow-unsigned-executable-memory": True,
"com.apple.security.cs.disable-library-validation": True,
}
plist_dump(plist, entitlements)
for path in Path(PLUGINS_DIR).iterdir():
codesigner.sign_bundle(path, entitlements=entitlements.name)
os.unlink(entitlements.name)
plugins = [file.name for file in Path(PLUGINS_DIR).iterdir()]
with open(join(PLUGINS_DIR, "InstallerSections.plist"), "wb") as f:
plist = {
"SectionOrder": [
"Introduction",
"ReadMe",
"License",
"Target",
"PackageSelection",
"Install",
*plugins,
]
}
plist_dump(plist, f)
def pkgbuild_script(name, info, src, dst="postinstall", **kwargs):
fresh_dir(SCRIPTS_DIR)
fresh_dir(PACKAGE_ROOT)
move_script(join(OSX_DIR, src), join(SCRIPTS_DIR, dst), info, **kwargs)
pkgbuild(
name,
identifier=info.get("reverse_domain_identifier"),
install_location=info.get("default_location_pkg"),
)
if not info.get("_debug"):
rm_rf(SCRIPTS_DIR)
def create(info, verbose=False):
# Do some configuration checks
if info.get("check_path_spaces", True) is True:
for key in "default_location_pkg", "pkg_name":
if " " in info.get(key, ""):
sys.exit(
f"ERROR: 'check_path_spaces' is enabled, but '{key}' "
"contains spaces. This will always result in a failed "
"installation! Aborting!"
)
global CACHE_DIR, PACKAGE_ROOT, PACKAGES_DIR, PLUGINS_DIR, SCRIPTS_DIR
CACHE_DIR = info["_download_dir"]
SCRIPTS_DIR = join(CACHE_DIR, "scripts")
PACKAGE_ROOT = join(CACHE_DIR, "package_root")
PACKAGES_DIR = join(CACHE_DIR, "built_pkgs")
PLUGINS_DIR = join(CACHE_DIR, "plugins")
fresh_dir(PACKAGES_DIR)
prefix = join(PACKAGE_ROOT, info.get("pkg_name", info["name"]).lower())
# We need to split tasks in sub-PKGs so the GUI allows the user to enable/disable
# the ones marked as optional. Optionality is controlled in modify_xml() by
# patching the XML blocks corresponding to each sub-PKG name.
# See http://stackoverflow.com/a/11487658/161801 for how all this works.
# 1. Prepare installation
# The 'prepare_installation' package contains the prepopulated package cache, the modified
# conda-meta metadata staged into pkgs/conda-meta, _conda (conda-standalone),
# Optionally, extra files and the user-provided scripts.
# We first populate PACKAGE_ROOT with everything needed, and then run pkg build on that dir
fresh_dir(PACKAGE_ROOT)
fresh_dir(SCRIPTS_DIR)
pkgs_dir = join(prefix, "pkgs")
os.makedirs(pkgs_dir)
preconda.write_files(info, prefix)
preconda.copy_extra_files(info.get("extra_files", []), prefix)
# These are the user-provided scripts, maybe patched to have a shebang
# They will be called by a wrapping script added later, if present
if info.get("pre_install"):
move_script(
abspath(info["pre_install"]),
abspath(join(pkgs_dir, "user_pre_install")),
info,
ensure_shebang=True,
)
if info.get("post_install"):
move_script(
abspath(info["post_install"]),
abspath(join(pkgs_dir, "user_post_install")),
info,
ensure_shebang=True,
)
all_dists = info["_dists"].copy()
for env_info in info.get("_extra_envs_info", {}).values():
all_dists += env_info["_dists"]
all_dists = list({dist: None for dist in all_dists}) # de-duplicate
for dist in all_dists:
os.link(join(CACHE_DIR, dist), join(pkgs_dir, dist))
copy_conda_exe(prefix, "_conda", info["_conda_exe"])
# Sign conda-standalone so it can pass notarization
codesigner = None
if notarization_identity_name := info.get("notarization_identity_name"):
codesigner = CodeSign(
notarization_identity_name, prefix=info.get("reverse_domain_identifier", info["name"])
)
entitlements = {
"com.apple.security.cs.allow-jit": True,
"com.apple.security.cs.allow-unsigned-executable-memory": True,
"com.apple.security.cs.disable-executable-page-protection": True,
"com.apple.security.cs.disable-library-validation": True,
"com.apple.security.cs.allow-dyld-environment-variables": True,
}
codesigner.sign_bundle(join(prefix, "_conda"), entitlements=entitlements)
# This script checks to see if the install location already exists and/or contains spaces
# Not to be confused with the user-provided pre_install!
move_script(join(OSX_DIR, "checks_before_install.sh"), join(SCRIPTS_DIR, "preinstall"), info)
# This script populates the cache, mainly
move_script(join(OSX_DIR, "prepare_installation.sh"), join(SCRIPTS_DIR, "postinstall"), info)
pkgbuild_prepare_installation(info)
names = ["prepare_installation"]
# 2. (Optional) Run user-provided pre-install script
# The preinstall script is run _after_ the tarballs have been extracted!
if info.get("pre_install"):
pkgbuild_script(
"user_pre_install", info, "run_user_script.sh", user_script_type="pre_install"
)
names.append("user_pre_install")
# pre-3. Enable or disable shortcuts creation
if info["_enable_shortcuts"] is True:
pkgbuild_script("shortcuts", info, "check_shortcuts.sh")
names.append("shortcuts")
# 3. Run the installation
# This script-only package will run conda to link and install the packages
pkgbuild_script("run_installation", info, "run_installation.sh")
names.append("run_installation")
# 4. The user-supplied post-install script
if info.get("post_install"):
pkgbuild_script(
"user_post_install", info, "run_user_script.sh", user_script_type="post_install"
)
names.append("user_post_install")
# 5. The script to run conda init
if info.get("_has_conda") and info.get("initialize_conda", "classic"):
pkgbuild_script("run_conda_init", info, "run_conda_init.sh")
names.append("run_conda_init")
# 6. The script to clear the package cache
if not info.get("keep_pkgs"):
pkgbuild_script("cacheclean", info, "clean_cache.sh")
names.append("cacheclean")
# The default distribution file needs to be modified, so we create
# it to a temporary location, edit it, and supply it to the final call.
xml_path = join(PACKAGES_DIR, "distribution.xml")
# hardcode to system location to avoid accidental clobber in PATH
args = ["/usr/bin/productbuild", "--synthesize"]
for name in names:
args.extend(["--package", join(PACKAGES_DIR, "%s.pkg" % name)])
args.append(xml_path)
explained_check_call(args)
modify_xml(xml_path, info)
if plugins := info.get("post_install_pages"):
create_plugins(plugins, codesigner=codesigner)
identity_name = info.get("signing_identity_name")
build_cmd = [
"/usr/bin/productbuild",
"--distribution",
xml_path,
"--package-path",
PACKAGES_DIR,
"--identifier",
info.get("reverse_domain_identifier", info["name"]),
]
if plugins:
build_cmd.extend(["--plugins", PLUGINS_DIR])
build_cmd.append("tmp.pkg" if identity_name else info["_outpath"])
explained_check_call(build_cmd)
if identity_name:
explained_check_call(
[
# hardcode to system location to avoid accidental clobber in PATH
"/usr/bin/productsign",
"--sign",
identity_name,
"tmp.pkg",
info["_outpath"],
]
)
os.unlink("tmp.pkg")
logger.info("done")