Skip to content

Commit

Permalink
PR Feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Bernát Gábor <gaborjbernat@gmail.com>
  • Loading branch information
gaborbernat committed Dec 27, 2021
1 parent 0236797 commit c28c478
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 18 deletions.
2 changes: 1 addition & 1 deletion docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ Bugfixes - 20.0.8
- Having `distutils configuration <https://docs.python.org/3/install/index.html#distutils-configuration-files>`_
files that set ``prefix`` and ``install_scripts`` cause installation of packages in the wrong location -
by :user:`gaborbernat`. (`#1663 <https://github.com/pypa/virtualenv/issues/1663>`_)
- Fix ``PYTHONPATH`` being overridden on Python 2 — by :user:`jd`. (`#1673 <https://github.com/pypa/virtualenv/issues/1673>`_)
- Fix ``PYTHONPATH`` being overridden on Python 2 — by :user:`jd`. (`#1673 <https://github.com/pypa/virtualenv/issues/1673>`_)
- Fix list configuration value parsing from config file or environment variable - by :user:`gaborbernat`. (`#1674 <https://github.com/pypa/virtualenv/issues/1674>`_)
- Fix Batch activation script shell prompt to display environment name by default - by :user:`spetafree`. (`#1679 <https://github.com/pypa/virtualenv/issues/1679>`_)
- Fix startup on Python 2 is slower for virtualenv - this was due to setuptools calculating it's working set distribution
Expand Down
33 changes: 16 additions & 17 deletions src/virtualenv/create/via_global_ref/builtin/cpython/mac_os.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,10 @@ def image_ref(cls, interpreter):


class CPython2macOsFramework(CPythonmacOsFramework, CPython2PosixBase):
@classmethod
def can_create(cls, interpreter):
return not IS_MAC_ARM64 and super(CPython2macOsFramework, cls).can_describe(interpreter)

@classmethod
def image_ref(cls, interpreter):
return Path(interpreter.prefix) / "Python"
Expand Down Expand Up @@ -106,37 +110,32 @@ def reload_code(self):

class CPython2macOsArmFramework(CPython2macOsFramework, CPythonmacOsFramework, CPython2PosixBase):
@classmethod
def can_describe(cls, interpreter):
def can_create(cls, interpreter):
return IS_MAC_ARM64 and super(CPythonmacOsFramework, cls).can_describe(interpreter)

def create(self):
super(CPython2macOsFramework, self).create()
# re-sign the newly copied/modified python binary
python_exe = os.path.join(str(self.dest), "bin", "python")
self.fix_signature(python_exe)
self.fix_signature()

def fix_signature(self, exe):
def fix_signature(self):
"""
On Apple M1 machines (arm64 chips), rewriting the python executable invalidates it's signature.
On Apple M1 machines (arm64 chips), rewriting the python executable invalidates its signature.
In python2 this results in a unusable python exe which just dies.
As a temporary workaround we can codesign the python exe during the createion process.
As a temporary workaround we can codesign the python exe during the creation process.
"""
exe = self.exe
try:
logging.debug("Changing signature of copied python exe %s", exe)
bak_dir = os.path.join(os.path.dirname(exe), "bk")
bk_python = os.path.join(bak_dir, os.path.basename(exe))

# hack to reset the signing on Darwin since the exe has been modified.
# codesign fails on the original exe, it needs to be copied and moved back.
os.makedirs(bak_dir)
bak_dir = exe.parent / "bk"
# Reset the signing on Darwin since the exe has been modified.
# Note codesign fails on the original exe, it needs to be copied and moved back.
bak_dir.mkdir(parents=True, exist_ok=True)
subprocess.check_call(["cp", exe, bak_dir])
subprocess.check_call(["mv", bk_python, exe])
os.rmdir(bak_dir)

subprocess.check_call(["mv", bak_dir / exe.name, exe])
bak_dir.unlink()
cmd = ["codesign", "-s", "-", "--preserve-metadata=identifier,entitlements,flags,runtime", "-f", exe]
logging.debug("Changing Signature: %s", cmd)
subprocess.check_call(cmd)

except Exception:
logging.fatal("Could not change MacOS code signing on copied python exe at %s", exe)
raise
Expand Down

0 comments on commit c28c478

Please sign in to comment.