python: add rewrite function for generic shebangs

From PEP 394
https://www.python.org/dev/peps/pep-0394/#for-python-script-publishers

In cases where the script is expected to be executed outside virtual environments,
developers will need to be aware of the following discrepancies across platforms and installation methods:

Older Linux distributions will provide a python command that refers to Python 2, and will likely not provide a python2 command.
Some newer Linux distributions will provide a python command that refers to Python 3.
Some Linux distributions will not provide a python command at all by default, but will provide a python3 command by default.

When potentially targeting these environments, developers may either use a Python package installation tool that rewrites shebang lines
for the installed environment, provide instructions on updating shebang lines interactively,
or else use more specific shebang lines that are tailored to the target environment.
This commit is contained in:
Michka Popoff 2020-02-17 21:29:38 +01:00
parent f37cd18e1a
commit 79a3d3568b

View File

@ -88,6 +88,17 @@ module Language
] ]
end end
def self.rewrite_python_shebang(python_path)
Pathname(".").find do |f|
regex = %r{^#! ?/usr/bin/(env )?python([23](\.\d{1,2})?)$}
maximum_regex_length = "#! /usr/bin/env pythonx.yyy$".length
next unless f.file?
next unless regex.match?(f.read(maximum_regex_length))
Utils::Inreplace.inreplace f.to_s, regex, "#!#{python_path}"
end
end
# Mixin module for {Formula} adding virtualenv support features. # Mixin module for {Formula} adding virtualenv support features.
module Virtualenv module Virtualenv
def self.included(base) def self.included(base)