diff options
| author | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
|---|---|---|
| committer | root <root@alpha.trunkmasters.com> | 2026-06-04 16:24:49 -0500 |
| commit | a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch) | |
| tree | 0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-python/cython/files | |
| parent | bfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff) | |
| download | baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip | |
Adding metadata
Diffstat (limited to 'dev-python/cython/files')
| -rw-r--r-- | dev-python/cython/files/cython-0.29.23-pythran-parallel-install.patch | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/dev-python/cython/files/cython-0.29.23-pythran-parallel-install.patch b/dev-python/cython/files/cython-0.29.23-pythran-parallel-install.patch deleted file mode 100644 index 450007b5663f..000000000000 --- a/dev-python/cython/files/cython-0.29.23-pythran-parallel-install.patch +++ /dev/null @@ -1,20 +0,0 @@ -An empty directory in site-packages is a valid Python module, unfortunately, because -of namespaces. If installing packages in parallel, the pythran module might "exist" -but be empty (hence no __version__ attribute). Catch AttributeError to avoid a narrow -race. - -See https://bugs.gentoo.org/902713. - -This might still be a Portage issue if there's a substantial delay between creating -the directory and installing the remaining files though. ---- a/Cython/Compiler/Pythran.py -+++ b/Cython/Compiler/Pythran.py -@@ -10,7 +10,7 @@ try: - import pythran - pythran_is_pre_0_9 = tuple(map(int, pythran.__version__.split('.')[0:2])) < (0, 9) - pythran_is_pre_0_9_6 = tuple(map(int, pythran.__version__.split('.')[0:3])) < (0, 9, 6) --except ImportError: -+except (AttributeError, ImportError): - pythran = None - pythran_is_pre_0_9 = True - pythran_is_pre_0_9_6 = True |
