emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#68241: closed ([PATCH] gnu: python: Fix sitecustomize.py)


From: GNU bug Tracking System
Subject: bug#68241: closed ([PATCH] gnu: python: Fix sitecustomize.py)
Date: Sun, 21 Jan 2024 18:30:02 +0000

Your message dated Sun, 21 Jan 2024 13:29:20 -0500
with message-id <87v87m8rr3.fsf@gmail.com>
and subject line Re: [bug#68241] [PATCH] gnu: python: Fix sitecustomize.py
has caused the debbugs.gnu.org bug report #68241,
regarding [PATCH] gnu: python: Fix sitecustomize.py
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
68241: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=68241
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] gnu: python: Fix sitecustomize.py Date: Thu, 04 Jan 2024 13:44:19 +0100
* gnu/packages/aux-files/python/sitecustomize.py: normalize sys.prefix
  to deal with situations where it contains "../"

This happens in particular when running Python from a Singularity image
created by Guix. See https://issues.guix.gnu.org/53258.

Change-Id: Ibfe13d7c2a14beaa199f599e64bc0b7bfb500fe8
---
 gnu/packages/aux-files/python/sitecustomize.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/aux-files/python/sitecustomize.py 
b/gnu/packages/aux-files/python/sitecustomize.py
index e2348e0356..82ea91104d 100644
--- a/gnu/packages/aux-files/python/sitecustomize.py
+++ b/gnu/packages/aux-files/python/sitecustomize.py
@@ -37,7 +37,7 @@ import sys
 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)
+python_site = os.path.normpath(os.path.join(sys.prefix, site_packages_prefix))
 
 try:
     all_sites_raw = os.environ['GUIX_PYTHONPATH'].split(os.path.pathsep)

base-commit: 7b0863f07a113caef26fea13909bd97d250b629e
-- 
2.41.0




--- End Message ---
--- Begin Message --- Subject: Re: [bug#68241] [PATCH] gnu: python: Fix sitecustomize.py Date: Sun, 21 Jan 2024 13:29:20 -0500 User-agent: Gnus/5.13 (Gnus v5.13)
Hi Konrad,

Konrad Hinsen <konrad.hinsen@fastmail.net> writes:

> Maxim Cournoyer <maxim.cournoyer@gmail.com> writes:
>
>>> My patch fixes the error message. The Python example that Marek gave
>>> already works fine in today's Guix, so it was probably fixed by
>>> something else as a side effect.
>>
>> Oh?  And you tested using the exact same reproducer, using a relocatable
>> pack?
>
> Yes, I tested it in a Singularity container.

Great, it's now on core-updates.

-- 
Thanks,
Maxim


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]