* [Buildroot] [PATCH] python3: remove target Python packages from PYTHONPATH
@ 2017-08-19 21:11 Thomas Petazzoni
2017-08-21 8:30 ` Yegor Yefremov
2017-08-21 21:25 ` Thomas Petazzoni
0 siblings, 2 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2017-08-19 21:11 UTC (permalink / raw)
To: buildroot
This commit is similar to 350941e31de5b454cad75abe5fb0d3db027bc1a7
("python: remove target Python packages from PYTHONPATH") but for
python3.
We currently have
$(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages/
inside the PYTHON3_PATH variable, which gets used to define
PYTHONPATH, passed to the host Python interpreter when
building/installing target packages.
However, this is terribly wrong, as it causes the host interpreter to
potentially import target Python packages. This is wrong for several
reasons:
- Some Python packages might need some Python modules to be installed
on the host (described in setup_requires in setup.py), but their
installation currently works because by luck the corresponding
Python module is installed for the target. Some of those cases were
happening for real, and fixed by previous patches.
- Some Python packages include some native code, therefore built for
a specific CPU architecture. When you point the host Python
interpreter to native libraries built for the target, you get nice
build failures, such as the one affecting the python-cffi related
packages.
This change fixes the following build failures:
http://autobuild.buildroot.net/results/9005b89407e46b537a54cac6cc0c69dcac4dc5ea/
(python-cryptography)
http://autobuild.buildroot.net/results/395682d33d02fdcaa39d3c0326355bd9ea3d6feb/
(python-pynacl)
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
---
package/python3/python3.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/package/python3/python3.mk b/package/python3/python3.mk
index 80905dd..a18dc7f 100644
--- a/package/python3/python3.mk
+++ b/package/python3/python3.mk
@@ -232,7 +232,7 @@ HOST_PYTHON3_POST_INSTALL_HOOKS += HOST_PYTHON3_INSTALL_SYMLINK
endif
# Provided to other packages
-PYTHON3_PATH = $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/:$(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages/
+PYTHON3_PATH = $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/
$(eval $(autotools-package))
$(eval $(host-autotools-package))
--
2.9.4
^ permalink raw reply related [flat|nested] 3+ messages in thread* [Buildroot] [PATCH] python3: remove target Python packages from PYTHONPATH
2017-08-19 21:11 [Buildroot] [PATCH] python3: remove target Python packages from PYTHONPATH Thomas Petazzoni
@ 2017-08-21 8:30 ` Yegor Yefremov
2017-08-21 21:25 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Yegor Yefremov @ 2017-08-21 8:30 UTC (permalink / raw)
To: buildroot
Hi Thomas,
On Sat, Aug 19, 2017 at 11:11 PM, Thomas Petazzoni
<thomas.petazzoni@free-electrons.com> wrote:
> This commit is similar to 350941e31de5b454cad75abe5fb0d3db027bc1a7
> ("python: remove target Python packages from PYTHONPATH") but for
> python3.
>
> We currently have
> $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages/
> inside the PYTHON3_PATH variable, which gets used to define
> PYTHONPATH, passed to the host Python interpreter when
> building/installing target packages.
>
> However, this is terribly wrong, as it causes the host interpreter to
> potentially import target Python packages. This is wrong for several
> reasons:
>
> - Some Python packages might need some Python modules to be installed
> on the host (described in setup_requires in setup.py), but their
> installation currently works because by luck the corresponding
> Python module is installed for the target. Some of those cases were
> happening for real, and fixed by previous patches.
>
> - Some Python packages include some native code, therefore built for
> a specific CPU architecture. When you point the host Python
> interpreter to native libraries built for the target, you get nice
> build failures, such as the one affecting the python-cffi related
> packages.
>
> This change fixes the following build failures:
>
> http://autobuild.buildroot.net/results/9005b89407e46b537a54cac6cc0c69dcac4dc5ea/
> (python-cryptography)
>
> http://autobuild.buildroot.net/results/395682d33d02fdcaa39d3c0326355bd9ea3d6feb/
> (python-pynacl)
>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
I've compiled some heavy packages like crossbar and pytablewrite (they
select more than a half of Python packages) and everything is working
as expected. Thanks for the fix.
Reviewed-by: Yegor Yefremov <yegorslists@googlemail.com>
Tested-by: Yegor Yefremov <yegorslists@googlemail.com>
Yegor
> ---
> package/python3/python3.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/package/python3/python3.mk b/package/python3/python3.mk
> index 80905dd..a18dc7f 100644
> --- a/package/python3/python3.mk
> +++ b/package/python3/python3.mk
> @@ -232,7 +232,7 @@ HOST_PYTHON3_POST_INSTALL_HOOKS += HOST_PYTHON3_INSTALL_SYMLINK
> endif
>
> # Provided to other packages
> -PYTHON3_PATH = $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/:$(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages/
> +PYTHON3_PATH = $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/
>
> $(eval $(autotools-package))
> $(eval $(host-autotools-package))
> --
> 2.9.4
>
^ permalink raw reply [flat|nested] 3+ messages in thread* [Buildroot] [PATCH] python3: remove target Python packages from PYTHONPATH
2017-08-19 21:11 [Buildroot] [PATCH] python3: remove target Python packages from PYTHONPATH Thomas Petazzoni
2017-08-21 8:30 ` Yegor Yefremov
@ 2017-08-21 21:25 ` Thomas Petazzoni
1 sibling, 0 replies; 3+ messages in thread
From: Thomas Petazzoni @ 2017-08-21 21:25 UTC (permalink / raw)
To: buildroot
Hello,
On Sat, 19 Aug 2017 23:11:50 +0200, Thomas Petazzoni wrote:
> This commit is similar to 350941e31de5b454cad75abe5fb0d3db027bc1a7
> ("python: remove target Python packages from PYTHONPATH") but for
> python3.
>
> We currently have
> $(TARGET_DIR)/usr/lib/python$(PYTHON3_VERSION_MAJOR)/site-packages/
> inside the PYTHON3_PATH variable, which gets used to define
> PYTHONPATH, passed to the host Python interpreter when
> building/installing target packages.
>
> However, this is terribly wrong, as it causes the host interpreter to
> potentially import target Python packages. This is wrong for several
> reasons:
>
> - Some Python packages might need some Python modules to be installed
> on the host (described in setup_requires in setup.py), but their
> installation currently works because by luck the corresponding
> Python module is installed for the target. Some of those cases were
> happening for real, and fixed by previous patches.
>
> - Some Python packages include some native code, therefore built for
> a specific CPU architecture. When you point the host Python
> interpreter to native libraries built for the target, you get nice
> build failures, such as the one affecting the python-cffi related
> packages.
>
> This change fixes the following build failures:
>
> http://autobuild.buildroot.net/results/9005b89407e46b537a54cac6cc0c69dcac4dc5ea/
> (python-cryptography)
>
> http://autobuild.buildroot.net/results/395682d33d02fdcaa39d3c0326355bd9ea3d6feb/
> (python-pynacl)
>
> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
> ---
> package/python3/python3.mk | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
Applied to master, thanks.
Thomas
--
Thomas Petazzoni, CTO, Free Electrons
Embedded Linux, Kernel and Android engineering
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-08-21 21:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-08-19 21:11 [Buildroot] [PATCH] python3: remove target Python packages from PYTHONPATH Thomas Petazzoni
2017-08-21 8:30 ` Yegor Yefremov
2017-08-21 21:25 ` Thomas Petazzoni
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox