* [meta-python][PATCH 1/3] python-pip: extend to nativesdk
@ 2016-07-27 3:03 Chen Qi
2016-07-27 3:03 ` [meta-python][PATCH 2/3] python3-pip: add recipe Chen Qi
2016-07-27 3:03 ` [meta-python][PATCH 3/3] python3-django: " Chen Qi
0 siblings, 2 replies; 6+ messages in thread
From: Chen Qi @ 2016-07-27 3:03 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
meta-python/recipes-devtools/python/python-pip_8.1.2.bb | 2 ++
1 file changed, 2 insertions(+)
diff --git a/meta-python/recipes-devtools/python/python-pip_8.1.2.bb b/meta-python/recipes-devtools/python/python-pip_8.1.2.bb
index 8bb052e..e78b9da 100644
--- a/meta-python/recipes-devtools/python/python-pip_8.1.2.bb
+++ b/meta-python/recipes-devtools/python/python-pip_8.1.2.bb
@@ -9,3 +9,5 @@ inherit pypi setuptools
# Since PIP is like CPAN for PERL we need to drag in all python modules to ensure everything works
RDEPENDS_${PN} = "python-modules python-distribute"
+
+BBCLASSEXTEND = "nativesdk"
--
2.8.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-python][PATCH 2/3] python3-pip: add recipe
2016-07-27 3:03 [meta-python][PATCH 1/3] python-pip: extend to nativesdk Chen Qi
@ 2016-07-27 3:03 ` Chen Qi
2016-07-27 5:42 ` Derek Straka
2016-07-27 5:46 ` Gary Thomas
2016-07-27 3:03 ` [meta-python][PATCH 3/3] python3-django: " Chen Qi
1 sibling, 2 replies; 6+ messages in thread
From: Chen Qi @ 2016-07-27 3:03 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
meta-python/recipes-devtools/python/python3-pip_8.1.2.bb | 13 +++++++++++++
1 file changed, 13 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-pip_8.1.2.bb
diff --git a/meta-python/recipes-devtools/python/python3-pip_8.1.2.bb b/meta-python/recipes-devtools/python/python3-pip_8.1.2.bb
new file mode 100644
index 0000000..612ba7d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pip_8.1.2.bb
@@ -0,0 +1,13 @@
+SUMMARY = "PIP is a tool for installing and managing Python packages"
+LICENSE = "MIT & LGPL-2.1"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=25fba45109565f87de20bae85bc39452"
+
+SRC_URI[md5sum] = "87083c0b9867963b29f7aba3613e8f4a"
+SRC_URI[sha256sum] = "4d24b03ffa67638a3fa931c09fd9e0273ffa904e95ebebe7d4b1a54c93d7b732"
+
+inherit pypi setuptools3
+
+# Since PIP is like CPAN for PERL we need to drag in all python modules to ensure everything works
+RDEPENDS_${PN} = "python3-modules python3-setuptools"
+
+BBCLASSEXTEND = "nativesdk"
--
2.8.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [meta-python][PATCH 3/3] python3-django: add recipe
2016-07-27 3:03 [meta-python][PATCH 1/3] python-pip: extend to nativesdk Chen Qi
2016-07-27 3:03 ` [meta-python][PATCH 2/3] python3-pip: add recipe Chen Qi
@ 2016-07-27 3:03 ` Chen Qi
2016-07-27 6:00 ` Derek Straka
1 sibling, 1 reply; 6+ messages in thread
From: Chen Qi @ 2016-07-27 3:03 UTC (permalink / raw)
To: openembedded-devel
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
---
.../python/python3-django_1.9.7.bb | 24 ++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python3-django_1.9.7.bb
diff --git a/meta-python/recipes-devtools/python/python3-django_1.9.7.bb b/meta-python/recipes-devtools/python/python3-django_1.9.7.bb
new file mode 100644
index 0000000..7c0db64
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-django_1.9.7.bb
@@ -0,0 +1,24 @@
+SUMMARY = "A high-level Python Web framework"
+HOMEPAGE = "http://www.djangoproject.com/"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=f09eb47206614a4954c51db8a94840fa"
+
+SRC_URI[md5sum] = "7de9ba83bfe01f4b7d45645c1b259c83"
+SRC_URI[sha256sum] = "2b29e81c8c32b3c0d9a0119217416887c480d927ae2630bada2da83078c93bf6"
+
+PYPI_PACKAGE = "Django"
+inherit pypi setuptools3
+
+FILES_${PN} += "${datadir}/django"
+
+BBCLASSEXTEND = "nativesdk"
+
+RDEPENDS_${PN} += "\
+ ${PYTHON_PN}-datetime \
+ ${PYTHON_PN}-importlib \
+ ${PYTHON_PN}-numbers \
+ ${PYTHON_PN}-pip \
+ ${PYTHON_PN}-pkgutil \
+ ${PYTHON_PN}-subprocess \
+ ${PYTHON_PN}-threading \
+ "
--
2.8.3
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [meta-python][PATCH 2/3] python3-pip: add recipe
2016-07-27 3:03 ` [meta-python][PATCH 2/3] python3-pip: add recipe Chen Qi
@ 2016-07-27 5:42 ` Derek Straka
2016-07-27 5:46 ` Gary Thomas
1 sibling, 0 replies; 6+ messages in thread
From: Derek Straka @ 2016-07-27 5:42 UTC (permalink / raw)
To: openembeded-devel
Can the common portions be pulled out into a .inc file that can be included
in the python and python3 recipes or was there a specific reason not to do
that?
-Derek
On Tue, Jul 26, 2016 at 11:03 PM, Chen Qi <Qi.Chen@windriver.com> wrote:
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
> meta-python/recipes-devtools/python/python3-pip_8.1.2.bb | 13
> +++++++++++++
> 1 file changed, 13 insertions(+)
> create mode 100644 meta-python/recipes-devtools/python/
> python3-pip_8.1.2.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-pip_8.1.2.bb
> b/meta-python/recipes-devtools/python/python3-pip_8.1.2.bb
> new file mode 100644
> index 0000000..612ba7d
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-pip_8.1.2.bb
> @@ -0,0 +1,13 @@
> +SUMMARY = "PIP is a tool for installing and managing Python packages"
> +LICENSE = "MIT & LGPL-2.1"
> +LIC_FILES_CHKSUM =
> "file://LICENSE.txt;md5=25fba45109565f87de20bae85bc39452"
> +
> +SRC_URI[md5sum] = "87083c0b9867963b29f7aba3613e8f4a"
> +SRC_URI[sha256sum] =
> "4d24b03ffa67638a3fa931c09fd9e0273ffa904e95ebebe7d4b1a54c93d7b732"
> +
> +inherit pypi setuptools3
> +
> +# Since PIP is like CPAN for PERL we need to drag in all python modules
> to ensure everything works
> +RDEPENDS_${PN} = "python3-modules python3-setuptools"
> +
> +BBCLASSEXTEND = "nativesdk"
> --
> 2.8.3
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [meta-python][PATCH 2/3] python3-pip: add recipe
2016-07-27 3:03 ` [meta-python][PATCH 2/3] python3-pip: add recipe Chen Qi
2016-07-27 5:42 ` Derek Straka
@ 2016-07-27 5:46 ` Gary Thomas
1 sibling, 0 replies; 6+ messages in thread
From: Gary Thomas @ 2016-07-27 5:46 UTC (permalink / raw)
To: openembedded-devel
On 2016-07-27 05:03, Chen Qi wrote:
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
> meta-python/recipes-devtools/python/python3-pip_8.1.2.bb | 13 +++++++++++++
> 1 file changed, 13 insertions(+)
> create mode 100644 meta-python/recipes-devtools/python/python3-pip_8.1.2.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-pip_8.1.2.bb b/meta-python/recipes-devtools/python/python3-pip_8.1.2.bb
> new file mode 100644
> index 0000000..612ba7d
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-pip_8.1.2.bb
> @@ -0,0 +1,13 @@
> +SUMMARY = "PIP is a tool for installing and managing Python packages"
> +LICENSE = "MIT & LGPL-2.1"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=25fba45109565f87de20bae85bc39452"
> +
> +SRC_URI[md5sum] = "87083c0b9867963b29f7aba3613e8f4a"
> +SRC_URI[sha256sum] = "4d24b03ffa67638a3fa931c09fd9e0273ffa904e95ebebe7d4b1a54c93d7b732"
> +
> +inherit pypi setuptools3
> +
> +# Since PIP is like CPAN for PERL we need to drag in all python modules to ensure everything works
> +RDEPENDS_${PN} = "python3-modules python3-setuptools"
> +
> +BBCLASSEXTEND = "nativesdk"
>
Why is this here, since it is already in OE-core?
--
------------------------------------------------------------
Gary Thomas | Consulting for the
MLB Associates | Embedded world
------------------------------------------------------------
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [meta-python][PATCH 3/3] python3-django: add recipe
2016-07-27 3:03 ` [meta-python][PATCH 3/3] python3-django: " Chen Qi
@ 2016-07-27 6:00 ` Derek Straka
0 siblings, 0 replies; 6+ messages in thread
From: Derek Straka @ 2016-07-27 6:00 UTC (permalink / raw)
To: openembeded-devel
Can the common portions be pulled out into a .inc file that can be included
in the python and python3 recipes or was there a specific reason not to do
that?
-Derek
On Tue, Jul 26, 2016 at 11:03 PM, Chen Qi <Qi.Chen@windriver.com> wrote:
> Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
> ---
> .../python/python3-django_1.9.7.bb | 24
> ++++++++++++++++++++++
> 1 file changed, 24 insertions(+)
> create mode 100644 meta-python/recipes-devtools/python/
> python3-django_1.9.7.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-django_1.9.7.bb
> b/meta-python/recipes-devtools/python/python3-django_1.9.7.bb
> new file mode 100644
> index 0000000..7c0db64
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-django_1.9.7.bb
> @@ -0,0 +1,24 @@
> +SUMMARY = "A high-level Python Web framework"
> +HOMEPAGE = "http://www.djangoproject.com/"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=f09eb47206614a4954c51db8a94840fa"
> +
> +SRC_URI[md5sum] = "7de9ba83bfe01f4b7d45645c1b259c83"
> +SRC_URI[sha256sum] =
> "2b29e81c8c32b3c0d9a0119217416887c480d927ae2630bada2da83078c93bf6"
> +
> +PYPI_PACKAGE = "Django"
> +inherit pypi setuptools3
> +
> +FILES_${PN} += "${datadir}/django"
> +
> +BBCLASSEXTEND = "nativesdk"
> +
> +RDEPENDS_${PN} += "\
> + ${PYTHON_PN}-datetime \
> + ${PYTHON_PN}-importlib \
> + ${PYTHON_PN}-numbers \
> + ${PYTHON_PN}-pip \
> + ${PYTHON_PN}-pkgutil \
> + ${PYTHON_PN}-subprocess \
> + ${PYTHON_PN}-threading \
> + "
> --
> 2.8.3
>
> --
> _______________________________________________
> Openembedded-devel mailing list
> Openembedded-devel@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-07-27 6:00 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-27 3:03 [meta-python][PATCH 1/3] python-pip: extend to nativesdk Chen Qi
2016-07-27 3:03 ` [meta-python][PATCH 2/3] python3-pip: add recipe Chen Qi
2016-07-27 5:42 ` Derek Straka
2016-07-27 5:46 ` Gary Thomas
2016-07-27 3:03 ` [meta-python][PATCH 3/3] python3-django: " Chen Qi
2016-07-27 6:00 ` Derek Straka
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.