-
Notifications
You must be signed in to change notification settings - Fork 426
/
render.py
1072 lines (936 loc) · 39.5 KB
/
render.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
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
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Copyright (C) 2014 Anaconda, Inc
# SPDX-License-Identifier: BSD-3-Clause
from __future__ import annotations
import json
import os
import random
import re
import string
import subprocess
import sys
import tarfile
from collections import OrderedDict, defaultdict
from contextlib import contextmanager
from functools import lru_cache
from os.path import (
isabs,
isdir,
isfile,
join,
normpath,
)
from pathlib import Path
from typing import TYPE_CHECKING
import yaml
from conda.base.context import context
from conda.cli.common import specs_from_url
from conda.core.package_cache_data import ProgressiveFetchExtract
from conda.exceptions import UnsatisfiableError
from conda.gateways.disk.create import TemporaryDirectory
from conda.models.records import PackageRecord
from conda.models.version import VersionOrder
from . import environ, exceptions, source, utils
from .exceptions import DependencyNeedsBuildingError
from .index import get_build_index
from .metadata import MetaData, MetaDataTuple, combine_top_level_metadata_with_output
from .utils import (
CONDA_PACKAGE_EXTENSION_V1,
CONDA_PACKAGE_EXTENSION_V2,
package_record_to_requirement,
)
from .variants import (
filter_by_key_value,
get_package_variants,
list_of_dicts_to_dict_of_lists,
)
if TYPE_CHECKING:
import os
from typing import Any, Iterable, Iterator
from .config import Config
def odict_representer(dumper, data):
return dumper.represent_dict(data.items())
yaml.add_representer(set, yaml.representer.SafeRepresenter.represent_list)
yaml.add_representer(tuple, yaml.representer.SafeRepresenter.represent_list)
yaml.add_representer(OrderedDict, odict_representer)
def bldpkg_path(m: MetaData) -> str:
"""
Returns path to built package's tarball given its ``Metadata``.
"""
subdir = "noarch" if m.noarch or m.noarch_python else m.config.host_subdir
if not hasattr(m, "type"):
if m.config.conda_pkg_format == "2":
pkg_type = "conda_v2"
else:
pkg_type = "conda"
else:
pkg_type = m.type
# the default case will switch over to conda_v2 at some point
if pkg_type == "conda":
path = join(
m.config.output_folder, subdir, f"{m.dist()}{CONDA_PACKAGE_EXTENSION_V1}"
)
elif pkg_type == "conda_v2":
path = join(
m.config.output_folder, subdir, f"{m.dist()}{CONDA_PACKAGE_EXTENSION_V2}"
)
else:
path = (
f"{m.type} file for {m.name()} in: {join(m.config.output_folder, subdir)}"
)
return path
def _categorize_deps(m, specs, exclude_pattern, variant):
subpackages = []
dependencies = []
pass_through_deps = []
dash_or_under = re.compile("[-_]")
# ones that get filtered from actual versioning, to exclude them from the hash calculation
for spec in specs:
if not exclude_pattern or not exclude_pattern.match(spec):
is_subpackage = False
spec_name = spec.split()[0]
for entry in m.get_section("outputs"):
name = entry.get("name")
if name == spec_name:
subpackages.append(" ".join((name, m.version())))
is_subpackage = True
if not is_subpackage:
dependencies.append(spec)
# fill in variant version iff no version at all is provided
for key, value in variant.items():
# for sake of comparison, ignore dashes and underscores
if dash_or_under.sub("", key) == dash_or_under.sub(
"", spec_name
) and not re.search(rf"{spec_name}\s+[0-9a-zA-Z\_\.\<\>\=\*]", spec):
dependencies.append(" ".join((spec_name, value)))
elif exclude_pattern.match(spec):
pass_through_deps.append(spec)
return subpackages, dependencies, pass_through_deps
def get_env_dependencies(
m: MetaData,
env,
variant,
exclude_pattern=None,
permit_unsatisfiable_variants=False,
merge_build_host_on_same_platform=True,
):
specs = m.get_depends_top_and_out(env)
# replace x.x with our variant's numpy version, or else conda tries to literally go get x.x
if env in ("build", "host"):
no_xx_specs = []
for spec in specs:
if " x.x" in spec:
pkg_name = spec.split()[0]
no_xx_specs.append(" ".join((pkg_name, variant.get(pkg_name, ""))))
else:
no_xx_specs.append(spec)
specs = no_xx_specs
subpackages, dependencies, pass_through_deps = _categorize_deps(
m, specs, exclude_pattern, variant
)
dependencies = set(dependencies)
unsat = None
random_string = "".join(
random.choice(string.ascii_uppercase + string.digits) for _ in range(10)
)
with TemporaryDirectory(prefix="_", suffix=random_string) as tmpdir:
try:
precs = environ.get_package_records(
tmpdir,
tuple(dependencies),
env,
subdir=getattr(m.config, f"{env}_subdir"),
debug=m.config.debug,
verbose=m.config.verbose,
locking=m.config.locking,
bldpkgs_dirs=tuple(m.config.bldpkgs_dirs),
timeout=m.config.timeout,
disable_pip=m.config.disable_pip,
max_env_retry=m.config.max_env_retry,
output_folder=m.config.output_folder,
channel_urls=tuple(m.config.channel_urls),
)
except (UnsatisfiableError, DependencyNeedsBuildingError) as e:
# we'll get here if the environment is unsatisfiable
if hasattr(e, "packages"):
unsat = ", ".join(e.packages)
else:
unsat = e.message
if permit_unsatisfiable_variants:
precs = []
else:
raise
specs = [package_record_to_requirement(prec) for prec in precs]
return (
utils.ensure_list(
(specs + subpackages + pass_through_deps)
or m.get_value(f"requirements/{env}", [])
),
precs,
unsat,
)
def strip_channel(spec_str):
if hasattr(spec_str, "decode"):
spec_str = spec_str.decode()
if ":" in spec_str:
spec_str = spec_str.split("::")[-1]
return spec_str
def get_pin_from_build(m, dep, build_dep_versions):
dep_split = dep.split()
dep_name = dep_split[0]
build = ""
if len(dep_split) >= 3:
build = dep_split[2]
pin = None
version = build_dep_versions.get(dep_name) or m.config.variant.get(dep_name)
if (
version
and dep_name in m.config.variant.get("pin_run_as_build", {})
and not (dep_name == "python" and (m.noarch or m.noarch_python))
and dep_name in build_dep_versions
):
pin_cfg = m.config.variant["pin_run_as_build"][dep_name]
if isinstance(pin_cfg, str):
# if pin arg is a single 'x.x', use the same value for min and max
pin_cfg = dict(min_pin=pin_cfg, max_pin=pin_cfg)
pin = utils.apply_pin_expressions(version.split()[0], **pin_cfg)
elif dep.startswith("numpy") and "x.x" in dep:
if not build_dep_versions.get(dep_name):
raise ValueError(
"numpy x.x specified, but numpy not in build requirements."
)
pin = utils.apply_pin_expressions(
version.split()[0], min_pin="x.x", max_pin="x.x"
)
if pin:
dep = " ".join((dep_name, pin, build)).strip()
return dep
def _filter_run_exports(specs, ignore_list):
filtered_specs = {}
for agent, specs_list in specs.items():
for spec in specs_list:
if hasattr(spec, "decode"):
spec = spec.decode()
if not any(
(
ignore_spec == "*"
or spec == ignore_spec
or spec.startswith(ignore_spec + " ")
)
for ignore_spec in ignore_list
):
filtered_specs[agent] = filtered_specs.get(agent, []) + [spec]
return filtered_specs
def find_pkg_dir_or_file_in_pkgs_dirs(
distribution: str, m: MetaData, files_only: bool = False
) -> str | None:
for cache in map(Path, (*context.pkgs_dirs, *m.config.bldpkgs_dirs)):
package = cache / (distribution + CONDA_PACKAGE_EXTENSION_V1)
if package.is_file():
return str(package)
directory = cache / distribution
if directory.is_dir():
if not files_only:
return str(directory)
# get the package's subdir
try:
subdir = json.loads((directory / "info" / "index.json").read_text())[
"subdir"
]
except (FileNotFoundError, KeyError):
subdir = m.config.host_subdir
# create the tarball on demand so testing on archives works
package = Path(
m.config.croot, subdir, distribution + CONDA_PACKAGE_EXTENSION_V1
)
with tarfile.open(package, "w:bz2") as archive:
for entry in directory.iterdir():
archive.add(entry, arcname=entry.name)
return str(package)
return None
@lru_cache(maxsize=None)
def _read_specs_from_package(pkg_loc, pkg_dist):
specs = {}
if pkg_loc and isdir(pkg_loc):
downstream_file = join(pkg_loc, "info/run_exports")
if isfile(downstream_file):
with open(downstream_file) as f:
specs = {"weak": [spec.rstrip() for spec in f.readlines()]}
# a later attempt: record more info in the yaml file, to support "strong" run exports
elif isfile(downstream_file + ".yaml"):
with open(downstream_file + ".yaml") as f:
specs = yaml.safe_load(f)
elif isfile(downstream_file + ".json"):
with open(downstream_file + ".json") as f:
specs = json.load(f)
if not specs and pkg_loc and isfile(pkg_loc):
# switching to json for consistency in conda-build 4
specs_yaml = utils.package_has_file(pkg_loc, "info/run_exports.yaml")
specs_json = utils.package_has_file(pkg_loc, "info/run_exports.json")
if hasattr(specs_json, "decode"):
specs_json = specs_json.decode("utf-8")
if specs_json:
specs = json.loads(specs_json)
elif specs_yaml:
specs = yaml.safe_load(specs_yaml)
else:
legacy_specs = utils.package_has_file(pkg_loc, "info/run_exports")
# exclude packages pinning themselves (makes no sense)
if legacy_specs:
weak_specs = set()
if hasattr(pkg_dist, "decode"):
pkg_dist = pkg_dist.decode("utf-8")
for spec in legacy_specs.splitlines():
if hasattr(spec, "decode"):
spec = spec.decode("utf-8")
if not spec.startswith(pkg_dist.rsplit("-", 2)[0]):
weak_specs.add(spec.rstrip())
specs = {"weak": sorted(list(weak_specs))}
return specs
def execute_download_actions(m, precs, env, package_subset=None, require_files=False):
subdir = getattr(m.config, f"{env}_subdir")
index, _, _ = get_build_index(
subdir=subdir,
bldpkgs_dir=m.config.bldpkgs_dir,
output_folder=m.config.output_folder,
clear_cache=False,
omit_defaults=False,
channel_urls=m.config.channel_urls,
debug=m.config.debug,
verbose=m.config.verbose,
locking=m.config.locking,
timeout=m.config.timeout,
)
# this should be just downloading packages. We don't need to extract them -
# NOTE: The following commented execute_actions is defunct
# (FETCH/EXTRACT were replaced by PROGRESSIVEFETCHEXTRACT).
#
# download_actions = {
# k: v for k, v in actions.items() if k in (FETCH, EXTRACT, PREFIX)
# }
# if FETCH in actions or EXTRACT in actions:
# # this is to force the download
# execute_actions(download_actions, index, verbose=m.config.debug)
pkg_files = {}
if isinstance(package_subset, PackageRecord):
package_subset = [package_subset]
else:
package_subset = utils.ensure_list(package_subset)
selected_packages = set()
if package_subset:
for pkg in package_subset:
if isinstance(pkg, PackageRecord):
prec = pkg
if prec in precs:
selected_packages.add(prec)
else:
pkg_name = pkg.split()[0]
for link_prec in precs:
if pkg_name == link_prec.name:
selected_packages.add(link_prec)
break
precs = selected_packages
for prec in precs:
pkg_dist = "-".join((prec.name, prec.version, prec.build))
pkg_loc = find_pkg_dir_or_file_in_pkgs_dirs(
pkg_dist, m, files_only=require_files
)
# ran through all pkgs_dirs, and did not find package or folder. Download it.
# TODO: this is a vile hack reaching into conda's internals. Replace with
# proper conda API when available.
if not pkg_loc:
link_prec = [
rec
for rec in index
if (rec.name, rec.version, rec.build)
== (prec.name, prec.version, prec.build)
][0]
pfe = ProgressiveFetchExtract(link_prefs=(link_prec,))
with utils.LoggingContext():
pfe.execute()
for pkg_dir in context.pkgs_dirs:
_loc = join(pkg_dir, prec.fn)
if isfile(_loc):
pkg_loc = _loc
break
pkg_files[prec] = pkg_loc, pkg_dist
return pkg_files
def get_upstream_pins(m: MetaData, precs, env):
"""Download packages from specs, then inspect each downloaded package for additional
downstream dependency specs. Return these additional specs."""
env_specs = m.get_value(f"requirements/{env}", [])
explicit_specs = [req.split(" ")[0] for req in env_specs] if env_specs else []
precs = [prec for prec in precs if prec.name in explicit_specs]
ignore_pkgs_list = utils.ensure_list(m.get_value("build/ignore_run_exports_from"))
ignore_list = utils.ensure_list(m.get_value("build/ignore_run_exports"))
additional_specs = {}
for prec in precs:
if any(prec.name in req.split(" ")[0] for req in ignore_pkgs_list):
continue
run_exports = None
if m.config.use_channeldata:
channeldata = utils.download_channeldata(prec.channel)
# only use channeldata if requested, channeldata exists and contains
# a packages key, otherwise use run_exports from the packages themselves
if "packages" in channeldata:
pkg_data = channeldata["packages"].get(prec.name, {})
run_exports = pkg_data.get("run_exports", {}).get(prec.version, {})
if run_exports is None:
loc, dist = execute_download_actions(
m,
precs,
env=env,
package_subset=[prec],
)[prec]
run_exports = _read_specs_from_package(loc, dist)
specs = _filter_run_exports(run_exports, ignore_list)
if specs:
additional_specs = utils.merge_dicts_of_lists(additional_specs, specs)
return additional_specs
def _read_upstream_pin_files(
m: MetaData,
env,
permit_unsatisfiable_variants,
exclude_pattern,
):
deps, precs, unsat = get_env_dependencies(
m,
env,
m.config.variant,
exclude_pattern,
permit_unsatisfiable_variants=permit_unsatisfiable_variants,
)
# extend host deps with strong build run exports. This is important for things like
# vc feature activation to work correctly in the host env.
extra_run_specs = get_upstream_pins(m, precs, env)
return (
list(set(deps)) or m.get_value(f"requirements/{env}", []),
unsat,
extra_run_specs,
)
def add_upstream_pins(m: MetaData, permit_unsatisfiable_variants, exclude_pattern):
"""Applies run_exports from any build deps to host and run sections"""
# if we have host deps, they're more important than the build deps.
requirements = m.get_section("requirements")
build_deps, build_unsat, extra_run_specs_from_build = _read_upstream_pin_files(
m, "build", permit_unsatisfiable_variants, exclude_pattern
)
# is there a 'host' section?
if m.is_cross:
# this must come before we read upstream pins, because it will enforce things
# like vc version from the compiler.
host_reqs = utils.ensure_list(m.get_value("requirements/host"))
# ensure host_reqs is present, so in-place modification below is actually in-place
requirements = m.meta.setdefault("requirements", {})
requirements["host"] = host_reqs
if not host_reqs:
matching_output = [
out for out in m.get_section("outputs") if out.get("name") == m.name()
]
if matching_output:
requirements = utils.expand_reqs(
matching_output[0].get("requirements", {})
)
matching_output[0]["requirements"] = requirements
host_reqs = requirements.setdefault("host", [])
# in-place modification of above thingie
host_reqs.extend(extra_run_specs_from_build.get("strong", []))
host_deps, host_unsat, extra_run_specs_from_host = _read_upstream_pin_files(
m, "host", permit_unsatisfiable_variants, exclude_pattern
)
if m.noarch or m.noarch_python:
extra_run_specs = set(extra_run_specs_from_host.get("noarch", []))
extra_run_constrained_specs = set()
else:
extra_run_specs = set(
extra_run_specs_from_host.get("strong", [])
+ extra_run_specs_from_host.get("weak", [])
+ extra_run_specs_from_build.get("strong", [])
)
extra_run_constrained_specs = set(
extra_run_specs_from_host.get("strong_constrains", [])
+ extra_run_specs_from_host.get("weak_constrains", [])
+ extra_run_specs_from_build.get("strong_constrains", [])
)
else:
host_deps = []
host_unsat = []
if m.noarch or m.noarch_python:
if m.build_is_host:
extra_run_specs = set(extra_run_specs_from_build.get("noarch", []))
extra_run_constrained_specs = set()
build_deps = set(build_deps or []).update(
extra_run_specs_from_build.get("noarch", [])
)
else:
extra_run_specs = set()
extra_run_constrained_specs = set()
build_deps = set(build_deps or [])
else:
extra_run_specs = set(extra_run_specs_from_build.get("strong", []))
extra_run_constrained_specs = set(
extra_run_specs_from_build.get("strong_constrains", [])
)
if m.build_is_host:
extra_run_specs.update(extra_run_specs_from_build.get("weak", []))
extra_run_constrained_specs.update(
extra_run_specs_from_build.get("weak_constrains", [])
)
build_deps = set(build_deps or []).update(
extra_run_specs_from_build.get("weak", [])
)
else:
host_deps = set(extra_run_specs_from_build.get("strong", []))
run_deps = extra_run_specs | set(utils.ensure_list(requirements.get("run")))
run_constrained_deps = extra_run_constrained_specs | set(
utils.ensure_list(requirements.get("run_constrained"))
)
for section, deps in (
("build", build_deps),
("host", host_deps),
("run", run_deps),
("run_constrained", run_constrained_deps),
):
if deps:
requirements[section] = list(deps)
m.meta["requirements"] = requirements
return build_unsat, host_unsat
def _simplify_to_exact_constraints(metadata):
"""
For metapackages that are pinned exactly, we want to bypass all dependencies that may
be less exact.
"""
requirements = metadata.meta.get("requirements", {})
# collect deps on a per-section basis
for section in "build", "host", "run":
deps = utils.ensure_list(requirements.get(section, []))
deps_dict = defaultdict(list)
for dep in deps:
spec_parts = utils.ensure_valid_spec(dep).split()
name = spec_parts[0]
if len(spec_parts) > 1:
deps_dict[name].append(spec_parts[1:])
else:
deps_dict[name].append([])
deps_list = []
for name, values in deps_dict.items():
exact_pins = []
for dep in values:
if len(dep) > 1:
version, build = dep[:2]
if not (any(c in version for c in (">", "<", "*")) or "*" in build):
exact_pins.append(dep)
if len(values) == 1 and not any(values):
deps_list.append(name)
elif exact_pins:
if not all(pin == exact_pins[0] for pin in exact_pins):
raise ValueError(f"Conflicting exact pins: {exact_pins}")
else:
deps_list.append(" ".join([name] + exact_pins[0]))
else:
deps_list.extend(" ".join([name] + dep) for dep in values if dep)
if section in requirements and deps_list:
requirements[section] = deps_list
metadata.meta["requirements"] = requirements
def finalize_metadata(
m: MetaData,
parent_metadata=None,
permit_unsatisfiable_variants=False,
):
"""Fully render a recipe. Fill in versions for build/host dependencies."""
if not parent_metadata:
parent_metadata = m
if m.skip():
m.final = True
else:
exclude_pattern = None
excludes = set(m.config.variant.get("ignore_version", []))
for key in m.config.variant.get("pin_run_as_build", {}).keys():
if key in excludes:
excludes.remove(key)
output_excludes = set()
if hasattr(m, "other_outputs"):
output_excludes = {name for (name, variant) in m.other_outputs.keys()}
if excludes or output_excludes:
exclude_pattern = re.compile(
r"|".join(
rf"(?:^{exc}(?:\s|$|\Z))" for exc in excludes | output_excludes
)
)
parent_recipe = m.get_value("extra/parent_recipe", {})
# extract the topmost section where variables are defined, and put it on top of the
# requirements for a particular output
# Re-parse the output from the original recipe, so that we re-consider any jinja2 stuff
output = parent_metadata.get_rendered_output(m.name(), variant=m.config.variant)
is_top_level = True
if output:
if "package" in output or "name" not in output:
# it's just a top-level recipe
output = {"name": m.name()}
else:
is_top_level = False
if not parent_recipe or parent_recipe["name"] == m.name():
combine_top_level_metadata_with_output(m, output)
requirements = utils.expand_reqs(output.get("requirements", {}))
m.meta["requirements"] = requirements
if requirements := m.get_section("requirements"):
utils.insert_variant_versions(requirements, m.config.variant, "build")
utils.insert_variant_versions(requirements, m.config.variant, "host")
m = parent_metadata.get_output_metadata(m.get_rendered_output(m.name()))
build_unsat, host_unsat = add_upstream_pins(
m, permit_unsatisfiable_variants, exclude_pattern
)
# getting this AFTER add_upstream_pins is important, because that function adds deps
# to the metadata.
requirements = m.get_section("requirements")
# here's where we pin run dependencies to their build time versions. This happens based
# on the keys in the 'pin_run_as_build' key in the variant, which is a list of package
# names to have this behavior.
if output_excludes:
exclude_pattern = re.compile(
r"|".join(rf"(?:^{exc}(?:\s|$|\Z))" for exc in output_excludes)
)
pinning_env = "host" if m.is_cross else "build"
build_reqs = requirements.get(pinning_env, [])
# if python is in the build specs, but doesn't have a specific associated
# version, make sure to add one
if build_reqs and "python" in build_reqs:
build_reqs.append("python {}".format(m.config.variant["python"]))
m.meta["requirements"][pinning_env] = build_reqs
full_build_deps, _, _ = get_env_dependencies(
m,
pinning_env,
m.config.variant,
exclude_pattern=exclude_pattern,
permit_unsatisfiable_variants=permit_unsatisfiable_variants,
)
full_build_dep_versions = {
dep.split()[0]: " ".join(dep.split()[1:]) for dep in full_build_deps
}
if isfile(m.requirements_path) and not requirements.get("run"):
requirements["run"] = specs_from_url(m.requirements_path)
run_deps = requirements.get("run", [])
versioned_run_deps = [
get_pin_from_build(m, dep, full_build_dep_versions) for dep in run_deps
]
versioned_run_deps = [
utils.ensure_valid_spec(spec, warn=True) for spec in versioned_run_deps
]
requirements[pinning_env] = full_build_deps
requirements["run"] = versioned_run_deps
m.meta["requirements"] = requirements
# append other requirements, such as python.app, appropriately
m.append_requirements()
if m.pin_depends == "strict":
m.meta["requirements"]["run"] = environ.get_pinned_deps(m, "run")
test_deps = m.get_value("test/requires")
if test_deps:
versioned_test_deps = list(
{
get_pin_from_build(m, dep, full_build_dep_versions)
for dep in test_deps
}
)
versioned_test_deps = [
utils.ensure_valid_spec(spec, warn=True) for spec in versioned_test_deps
]
m.meta["test"]["requires"] = versioned_test_deps
extra = m.get_section("extra")
extra["copy_test_source_files"] = m.config.copy_test_source_files
m.meta["extra"] = extra
# if source/path is relative, then the output package makes no sense at all. The next
# best thing is to hard-code the absolute path. This probably won't exist on any
# system other than the original build machine, but at least it will work there.
for source_dict in m.get_section("source"):
if (source_path := source_dict.get("path")) and not isabs(source_path):
source_dict["path"] = normpath(join(m.path, source_path))
elif (
(git_url := source_dict.get("git_url"))
# absolute paths are not relative paths
and not isabs(git_url)
# real urls are not relative paths
and ":" not in git_url
):
source_dict["git_url"] = normpath(join(m.path, git_url))
m.meta.setdefault("build", {})
_simplify_to_exact_constraints(m)
if build_unsat or host_unsat:
m.final = False
log = utils.get_logger(__name__)
log.warn(
f"Returning non-final recipe for {m.dist()}; one or more dependencies "
"was unsatisfiable:"
)
if build_unsat:
log.warn(f"Build: {build_unsat}")
if host_unsat:
log.warn(f"Host: {host_unsat}")
else:
m.final = True
if is_top_level:
parent_metadata = m
return m
def try_download(metadata, no_download_source, raise_error=False):
if not metadata.source_provided and not no_download_source:
# this try/catch is for when the tool to download source is actually in
# meta.yaml, and not previously installed in builder env.
try:
source.provide(metadata)
except subprocess.CalledProcessError as error:
print(
"Warning: failed to download source. If building, will try "
"again after downloading recipe dependencies."
)
print("Error was: ")
print(error)
if not metadata.source_provided:
if no_download_source:
raise ValueError(
"no_download_source specified, but can't fully render recipe without"
" downloading source. Please fix the recipe, or don't use "
"no_download_source."
)
elif raise_error:
raise RuntimeError(
"Failed to download or patch source. Please see build log for info."
)
def reparse(metadata):
"""Some things need to be parsed again after the build environment has been created
and activated."""
metadata.final = False
sys.path.insert(0, metadata.config.build_prefix)
sys.path.insert(0, metadata.config.host_prefix)
py_ver = ".".join(metadata.config.variant["python"].split(".")[:2])
sys.path.insert(0, utils.get_site_packages(metadata.config.host_prefix, py_ver))
metadata.parse_until_resolved()
metadata = finalize_metadata(metadata)
return metadata
def distribute_variants(
metadata: MetaData,
variants,
permit_unsatisfiable_variants: bool = False,
allow_no_other_outputs: bool = False,
bypass_env_check: bool = False,
) -> list[MetaDataTuple]:
rendered_metadata: dict[
tuple[str, str, tuple[tuple[str, str], ...]], MetaDataTuple
] = {}
need_source_download = True
# don't bother distributing python if it's a noarch package, and figure out
# which python version we prefer. `python_age` can use used to tweak which
# python gets used here.
if metadata.noarch or metadata.noarch_python:
# filter variants by the newest Python version
version = sorted(
{version for variant in variants if (version := variant.get("python"))},
key=lambda key: VersionOrder(key.split(" ")[0]),
)[-1]
variants = filter_by_key_value(
variants, "python", version, "noarch_python_reduction"
)
# store these for reference later
metadata.config.variants = variants
# These are always the full set. just 'variants' is the one that gets
# used mostly, and can be reduced
metadata.config.input_variants = variants
recipe_requirements = metadata.extract_requirements_text()
recipe_package_and_build_text = metadata.extract_package_and_build_text()
recipe_text = recipe_package_and_build_text + recipe_requirements
if hasattr(recipe_text, "decode"):
recipe_text = recipe_text.decode()
metadata.config.variant = variants[0]
used_variables = metadata.get_used_loop_vars(force_global=False)
top_loop = metadata.get_reduced_variant_set(used_variables)
for variant in top_loop:
from .build import get_all_replacements
get_all_replacements(variant)
mv = metadata.copy()
mv.config.variant = variant
pin_run_as_build = variant.get("pin_run_as_build", {})
if mv.numpy_xx and "numpy" not in pin_run_as_build:
pin_run_as_build["numpy"] = {"min_pin": "x.x", "max_pin": "x.x"}
conform_dict = {}
for key in used_variables:
# We use this variant in the top-level recipe.
# constrain the stored variants to only this version in the output
# variant mapping
conform_dict[key] = variant[key]
for key, values in conform_dict.items():
mv.config.variants = (
filter_by_key_value(
mv.config.variants, key, values, "distribute_variants_reduction"
)
or mv.config.variants
)
get_all_replacements(mv.config.variants)
pin_run_as_build = variant.get("pin_run_as_build", {})
if mv.numpy_xx and "numpy" not in pin_run_as_build:
pin_run_as_build["numpy"] = {"min_pin": "x.x", "max_pin": "x.x"}
numpy_pinned_variants = []
for _variant in mv.config.variants:
_variant["pin_run_as_build"] = pin_run_as_build
numpy_pinned_variants.append(_variant)
mv.config.variants = numpy_pinned_variants
mv.config.squished_variants = list_of_dicts_to_dict_of_lists(mv.config.variants)
if mv.needs_source_for_render and mv.variant_in_source:
mv.parse_again()
utils.rm_rf(mv.config.work_dir)
source.provide(mv)
mv.parse_again()
try:
mv.parse_until_resolved(
allow_no_other_outputs=allow_no_other_outputs,
bypass_env_check=bypass_env_check,
)
except SystemExit:
pass
need_source_download = not mv.needs_source_for_render or not mv.source_provided
rendered_metadata[
(
mv.dist(),
mv.config.variant.get("target_platform", mv.config.subdir),
tuple((var, mv.config.variant.get(var)) for var in mv.get_used_vars()),
)
] = MetaDataTuple(mv, need_source_download, False)
# list of tuples.
# each tuple item is a tuple of 3 items:
# metadata, need_download, need_reparse
return list(rendered_metadata.values())
def expand_outputs(
metadata_tuples: Iterable[MetaDataTuple],
) -> list[tuple[dict, MetaData]]:
"""Obtain all metadata objects for all outputs from recipe. Useful for outputting paths."""
from copy import deepcopy
from .build import get_all_replacements
expanded_outputs: dict[str, tuple[dict, MetaData]] = {}
for _m, download, reparse in metadata_tuples:
get_all_replacements(_m.config)
for output_dict, m in deepcopy(_m).get_output_metadata_set(
permit_unsatisfiable_variants=False
):
get_all_replacements(m.config)
expanded_outputs[m.dist()] = (output_dict, m)
return list(expanded_outputs.values())
@contextmanager
def open_recipe(recipe: str | os.PathLike | Path) -> Iterator[Path]:
"""Open the recipe from a file (meta.yaml), directory (recipe), or tarball (package)."""
recipe = Path(recipe)
if not recipe.exists():
sys.exit(f"Error: non-existent: {recipe}")
elif recipe.is_dir():
# read the recipe from the current directory
yield recipe
elif recipe.suffixes in [[".tar"], [".tar", ".gz"], [".tgz"], [".tar", ".bz2"]]:
# extract the recipe to a temporary directory
with TemporaryDirectory() as tmp, tarfile.open(recipe, "r:*") as tar:
tar.extractall(path=tmp)
yield Path(tmp)
elif recipe.suffix == ".yaml":
# read the recipe from the parent directory
yield recipe.parent
else:
sys.exit(f"Error: non-recipe: {recipe}")
def render_recipe(
recipe_dir: str | os.PathLike | Path,
config: Config,
no_download_source: bool = False,
variants: dict[str, Any] | None = None,
permit_unsatisfiable_variants: bool = True,
reset_build_id: bool = True,
bypass_env_check: bool = False,
) -> list[MetaDataTuple]:
"""Returns a list of tuples, each consisting of
(metadata-object, needs_download, needs_render_in_env)
You get one tuple per variant. Outputs are not factored in here (subpackages won't affect these
results returned here.)
"""
with open_recipe(recipe_dir) as recipe:
try:
m = MetaData(str(recipe), config=config)
except exceptions.YamlParsingError as e:
sys.exit(e.error_msg())
# important: set build id *before* downloading source. Otherwise source goes into a different
# build folder.
if config.set_build_id:
m.config.compute_build_id(m.name(), m.version(), reset=reset_build_id)
# this source may go into a folder that doesn't match the eventual build folder.
# There's no way around it AFAICT. We must download the source to be able to render
# the recipe (from anything like GIT_FULL_HASH), but we can't know the final build
# folder until rendering is complete, because package names can have variant jinja2 in them.
if m.needs_source_for_render and not m.source_provided:
try_download(m, no_download_source=no_download_source)
if m.final:
if not getattr(m.config, "variants", None):
m.config.ignore_system_variants = True
if isfile(cbc_yaml := join(m.path, "conda_build_config.yaml")):
m.config.variant_config_files = [cbc_yaml]
m.config.variants = get_package_variants(m, variants=variants)
m.config.variant = m.config.variants[0]
return [MetaDataTuple(m, False, False)]
else:
# merge any passed-in variants with any files found
variants = get_package_variants(m, variants=variants)
# when building, we don't want to fully expand all outputs into metadata, only expand
# whatever variants we have (i.e. expand top-level variants, not output-only variants)
return distribute_variants(
m,
variants,
permit_unsatisfiable_variants=permit_unsatisfiable_variants,
allow_no_other_outputs=True,
bypass_env_check=bypass_env_check,
)