Lines Matching refs:python

10 [[python-package-tutorial]]
12 ==== +python-package+ tutorial
20 03: # python-foo
25 08: PYTHON_FOO_SOURCE = python-foo-$(PYTHON_FOO_VERSION).tar.xz
33 16: $(eval $(python-package))
56 Finally, on line 16, we invoke the +python-package+ macro that
60 [[python-package-reference]]
62 ==== +python-package+ reference
65 named +python-<something>+ in Buildroot. Other packages that use the
76 whole "External python modules" menu.
79 +python-package+. It is similar to the +generic-package+ macro. It is
81 +host-python-package+ macro.
84 by defining a number of variables before calling the +python-package+
85 or +host-python-package+ macros.
96 * It is not necessary to add +python+ or +host-python+ in the
152 * +HOST_PYTHON_FOO_NEEDS_HOST_PYTHON+, to define the host python
155 will ensure the right host python package is available and will
157 right python interpreter must be explicitly called in the commands.
175 ==== Generating a +python-package+ from a PyPI repository
182 https://pypi.python.org[here].
193 This will generate packages +python-foo+ and +python-bar+ in the package
194 folder if they exist on https://pypi.python.org.
196 Find the +external python modules+ menu and insert your package inside.
201 the generator (e.g. dependencies on any of the python core modules
213 This will generate packages +python-foo+ and +python-bar+ in the
222 [[python-package-cffi-backend]]
224 ==== +python-package+ CFFI backend
234 * add +python-cffi+ as a runtime dependency in order to install the
240 bool "python-foo"
244 * add +host-python-cffi+ as a build-time dependency in order to
246 +host-python-cffi+ to the +PYTHON_FOO_DEPENDENCIES+ variable.
251 # python-foo
257 PYTHON_FOO_DEPENDENCIES = host-python-cffi
259 $(eval $(python-package))