[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
89/169: aux-files: sitecustomize: Cleanup and add explanatory comments.
From: |
guix-commits |
Subject: |
89/169: aux-files: sitecustomize: Cleanup and add explanatory comments. |
Date: |
Thu, 28 Oct 2021 02:08:37 -0400 (EDT) |
apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.
commit fa3ef0f970fc9feb6d3abaa403eac58efb8b5a73
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Tue Aug 3 20:41:20 2021 -0400
aux-files: sitecustomize: Cleanup and add explanatory comments.
Fixes <https://issues.guix.gnu.org/50105>.
* gnu/packages/aux-files/python/sitecustomize.py: Add a comment explaining
the
general idea, and use sys.prefix instead of sys.executable.
(major_minor): Use the unpacking operator (*) to provide the arguments.
(site_packages_prefix): Use os.path.join to form the path.
(python_site): Likewise. Use sys.prefix instead of sys.executable.
(all_sites_raw): Split on os.path.pathsep.
(sys.path): Directly splice the result in the list.
Suggested-by: Hartmut Goebel <h.goebel@crazy-compilers.com>
Reported-by: Mathieu Othacehe <othacehe@gnu.org>
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
gnu/packages/aux-files/python/sitecustomize.py | 28 +++++++++++++++++++-------
1 file changed, 21 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/aux-files/python/sitecustomize.py
b/gnu/packages/aux-files/python/sitecustomize.py
index 65d3c7d..71e328b 100644
--- a/gnu/packages/aux-files/python/sitecustomize.py
+++ b/gnu/packages/aux-files/python/sitecustomize.py
@@ -20,13 +20,26 @@
import os
import sys
-python_root = os.path.realpath(sys.executable).split('/bin/')[0]
-major_minor = '{}.{}'.format(sys.version_info[0], sys.version_info[1])
-site_packages_prefix = 'lib/python' + major_minor + '/site-packages'
-python_site = python_root + '/' + site_packages_prefix
+# Commentary:
+#
+# Site-specific customization for Guix.
+#
+# The program below honors the GUIX_PYTHONPATH environment variable to
+# discover Python packages. File names appearing in this variable that match
+# a predefined versioned installation prefix are added to the sys.path. To be
+# considered, a Python package must be installed under the
+# 'lib/pythonX.Y/site-packages' directory, where X and Y are the major and
+# minor version numbers of the Python interpreter.
+#
+# Code:
+
+major_minor = '{}.{}'.format(*sys.version_info)
+site_packages_prefix = os.path.join(
+ 'lib', 'python' + major_minor, 'site-packages')
+python_site = os.path.join(sys.prefix, site_packages_prefix)
try:
- all_sites_raw = os.environ['GUIX_PYTHONPATH'].split(':')
+ all_sites_raw = os.environ['GUIX_PYTHONPATH'].split(os.path.pathsep)
except KeyError:
all_sites_raw = []
# Normalize paths, otherwise a trailing slash would cause it to not match.
@@ -35,7 +48,8 @@ matching_sites = [p for p in all_sites_norm
if p.endswith(site_packages_prefix)]
# Insert sites matching the current version into sys.path, right before
-# Python's own site.
+# Python's own site. This way, the user can override the libraries provided
+# by Python itself.
sys_path_absolute = [os.path.realpath(p) for p in sys.path]
index = sys_path_absolute.index(python_site)
-sys.path = sys.path[:index] + matching_sites + sys.path[index:]
+sys.path[index:index] = matching_sites
- 62/169: gnu: gst-plugins-good: Update to 1.18.5., (continued)
- 62/169: gnu: gst-plugins-good: Update to 1.18.5., guix-commits, 2021/10/28
- 69/169: gnu: tensorflow: Enable parallel build (at least partially)., guix-commits, 2021/10/28
- 72/169: gnu: libnice: Update to 0.1.18-0.47a9633., guix-commits, 2021/10/28
- 78/169: gnu: gtk+-2: Fix ‘builder’ test., guix-commits, 2021/10/28
- 75/169: gnu: glibc: Remove unneeded nscd patching., guix-commits, 2021/10/28
- 76/169: gnu: glibc: Look for the current timezone in /etc/localtime., guix-commits, 2021/10/28
- 79/169: gnu: diffutils: Fix signal processing., guix-commits, 2021/10/28
- 77/169: gnu: tzdata: Update to 2021e., guix-commits, 2021/10/28
- 85/169: gnu: Add ld-gold-wrapper., guix-commits, 2021/10/28
- 91/169: gnu: rust: Bootstrap rust from 1.39.0 and optimize build time., guix-commits, 2021/10/28
- 89/169: aux-files: sitecustomize: Cleanup and add explanatory comments.,
guix-commits <=
- 94/169: gnu: fontconfig: Add a search path for XDG_DATA_DIRS., guix-commits, 2021/10/28
- 97/169: gnu: Add python-flit-core., guix-commits, 2021/10/28
- 98/169: gnu: Add python-tomli., guix-commits, 2021/10/28
- 96/169: gnu: python-pypa-build: Update to 0.7.0., guix-commits, 2021/10/28
- 99/169: gnu: python-setuptools-scm: Update to 6.3.2, guix-commits, 2021/10/28
- 102/169: gnu: meson: Patch to allow installing to independent prefixes., guix-commits, 2021/10/28
- 103/169: build: glib-or-gtk-build-system: Simplify the wrap-all-programs phase., guix-commits, 2021/10/28
- 105/169: gnu: at-spi2-core: Reverse inheritance relationship with minimal variant., guix-commits, 2021/10/28
- 107/169: gnu: lsof: Disable the LTlock test., guix-commits, 2021/10/28
- 108/169: gnu: lsof: Fix indentation., guix-commits, 2021/10/28