@@ -382,13 +382,25 @@ def _process_installs(self, code):
382
382
"%install" directives removed."""
383
383
processed_lines = []
384
384
all_packages = []
385
+ all_swiftpm_flags = []
385
386
for index , line in enumerate (code .split ('\n ' )):
387
+ line , swiftpm_flags = self ._process_install_swiftpm_flags_line (
388
+ line )
389
+ all_swiftpm_flags += swiftpm_flags
386
390
line , packages = self ._process_install_line (index , line )
387
391
processed_lines .append (line )
388
392
all_packages += packages
389
- self ._install_packages (all_packages )
393
+ self ._install_packages (all_packages , all_swiftpm_flags )
390
394
return '\n ' .join (processed_lines )
391
395
396
+ def _process_install_swiftpm_flags_line (self , line ):
397
+ install_swiftpm_flags_match = re .match (
398
+ r'^\s*%install-swiftpm-flags (.*)$' , line )
399
+ if install_swiftpm_flags_match is None :
400
+ return line , []
401
+ flags = shlex .split (install_swiftpm_flags_match .group (1 ))
402
+ return '' , flags
403
+
392
404
def _process_install_line (self , line_index , line ):
393
405
install_match = re .match (r'^\s*%install (.*)$' , line )
394
406
if install_match is None :
@@ -414,8 +426,8 @@ def _process_install_line(self, line_index, line):
414
426
'products' : parsed [1 :],
415
427
}]
416
428
417
- def _install_packages (self , packages ):
418
- if len (packages ) == 0 :
429
+ def _install_packages (self , packages , swiftpm_flags ):
430
+ if len (packages ) == 0 and len ( swiftpm_flags ) == 0 :
419
431
return
420
432
421
433
# Appears to trigger even in the first cell execution.
@@ -487,6 +499,10 @@ def _install_packages(self, packages):
487
499
'name' : 'stdout' ,
488
500
'text' : 'Installing packages:\n %s' % packages_human_description
489
501
})
502
+ self .send_response (self .iopub_socket , 'stream' , {
503
+ 'name' : 'stdout' ,
504
+ 'text' : 'With SwiftPM flags: %s\n ' % str (swiftpm_flags )
505
+ })
490
506
self .send_response (self .iopub_socket , 'stream' , {
491
507
'name' : 'stdout' ,
492
508
'text' : 'Working in: %s\n ' % scratchwork_base_path
@@ -502,7 +518,8 @@ def _install_packages(self, packages):
502
518
503
519
# == Ask SwiftPM to build the package ==
504
520
505
- build_p = subprocess .Popen ([swift_build_path ], stdout = subprocess .PIPE ,
521
+ build_p = subprocess .Popen ([swift_build_path ] + swiftpm_flags ,
522
+ stdout = subprocess .PIPE ,
506
523
stderr = subprocess .STDOUT ,
507
524
cwd = package_base_path )
508
525
for build_output_line in iter (build_p .stdout .readline , b'' ):
@@ -517,8 +534,9 @@ def _install_packages(self, packages):
517
534
'%d.' % build_returncode )
518
535
519
536
show_bin_path_result = subprocess .run (
520
- [swift_build_path , '--show-bin-path' ], stdout = subprocess .PIPE ,
521
- stderr = subprocess .PIPE , cwd = package_base_path )
537
+ [swift_build_path , '--show-bin-path' ] + swiftpm_flags ,
538
+ stdout = subprocess .PIPE , stderr = subprocess .PIPE ,
539
+ cwd = package_base_path )
522
540
bin_dir = show_bin_path_result .stdout .decode ('utf8' ).strip ()
523
541
lib_filename = os .path .join (bin_dir , 'libjupyterInstalledPackages.so' )
524
542
0 commit comments