* [Buildroot] [PATCH v2] docs/manual: add "python-package CFFI backend" section
@ 2016-02-24 14:36 yegorslists at googlemail.com
2016-02-24 14:47 ` Thomas Petazzoni
0 siblings, 1 reply; 3+ messages in thread
From: yegorslists at googlemail.com @ 2016-02-24 14:36 UTC (permalink / raw)
To: buildroot
From: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
Changes:
v2: resolve grammatical issues suggested by Arnout Vandecappelle
docs/manual/adding-packages-python.txt | 37 ++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/docs/manual/adding-packages-python.txt b/docs/manual/adding-packages-python.txt
index 588dbf8..656b289 100644
--- a/docs/manual/adding-packages-python.txt
+++ b/docs/manual/adding-packages-python.txt
@@ -160,3 +160,40 @@ possible to customize what is done in any particular step:
+PYTHON_FOO_BUILD_CMDS+ variable, it will be used instead of the
default Python one. However, using this method should be restricted
to very specific cases. Do not use it in the general case.
+
+[[python-package-cffi-backend]]
+
+==== +python-package+ CFFI backend
+
+C Foreign Function Interface for Python (CFFI) provides a convenient and
+reliable way to call compiled C code from Python using interface declarations
+written in C. Python packages relying on this backend can be identified by
+appearance of the +cffi+ dependency in an +install_requires+ field of their
++setup.py+ file.
+
+Such a package needs +python-cffi+ as a runtime dependency in order to import
+the compiled C library wrapper on the target and +host-python-cffi+ as a
+build-time dependency in order to cross-compile the C wrapper. You'll need to
+add the following code to the package's +Config.in+ and +*.mk+ files,
+respectively.
+
+
+------------------------
+config BR2_PACKAGE_PYTHON_FOO
+ bool "python-foo"
+ select BR2_PACKAGE_PYTHON_CFFI # runtime
+------------------------
+
+------------------------
+################################################################################
+#
+# python-foo
+#
+################################################################################
+
+...
+
+PYTHON_FOO_DEPENDENCIES = host-python-cffi
+
+$(eval $(python-package))
+------------------------
--
2.7.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [Buildroot] [PATCH v2] docs/manual: add "python-package CFFI backend" section
2016-02-24 14:36 [Buildroot] [PATCH v2] docs/manual: add "python-package CFFI backend" section yegorslists at googlemail.com
@ 2016-02-24 14:47 ` Thomas Petazzoni
2016-02-24 20:59 ` Arnout Vandecappelle
0 siblings, 1 reply; 3+ messages in thread
From: Thomas Petazzoni @ 2016-02-24 14:47 UTC (permalink / raw)
To: buildroot
Hello,
On Wed, 24 Feb 2016 15:36:10 +0100, yegorslists at googlemail.com wrote:
> From: Yegor Yefremov <yegorslists@googlemail.com>
>
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Hum, I already applied the v1 of your patch, with some minor changes.
Did I forget to send the e-mail notification?
See:
https://git.busybox.net/buildroot/commit/?h=next&id=0e5c9c2b35c71a3d3180c5829975dba5222b30c9
Best regards,
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
* [Buildroot] [PATCH v2] docs/manual: add "python-package CFFI backend" section
2016-02-24 14:47 ` Thomas Petazzoni
@ 2016-02-24 20:59 ` Arnout Vandecappelle
0 siblings, 0 replies; 3+ messages in thread
From: Arnout Vandecappelle @ 2016-02-24 20:59 UTC (permalink / raw)
To: buildroot
On 02/24/16 15:47, Thomas Petazzoni wrote:
> Hello,
>
> On Wed, 24 Feb 2016 15:36:10 +0100, yegorslists at googlemail.com wrote:
>> From: Yegor Yefremov <yegorslists@googlemail.com>
>>
>> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
>
> Hum, I already applied the v1 of your patch, with some minor changes.
> Did I forget to send the e-mail notification?
You did, that's why I still replied to the v1 after you committed it (I know,
FIFO mail handling is dangerous :-)
Regards,
Arnout
>
> See:
>
> https://git.busybox.net/buildroot/commit/?h=next&id=0e5c9c2b35c71a3d3180c5829975dba5222b30c9
>
> Best regards,
>
> Thomas
>
--
Arnout Vandecappelle arnout at mind be
Senior Embedded Software Architect +32-16-286500
Essensium/Mind http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint: 7493 020B C7E3 8618 8DEC 222C 82EB F404 F9AC 0DDF
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-02-24 20:59 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-24 14:36 [Buildroot] [PATCH v2] docs/manual: add "python-package CFFI backend" section yegorslists at googlemail.com
2016-02-24 14:47 ` Thomas Petazzoni
2016-02-24 20:59 ` Arnout Vandecappelle
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox