* [meta-oe][PATCH] Signed-off-by: Joris Offouga <offougajoris@gmail.com>
@ 2018-10-26 7:44 Joris Offouga
2018-10-26 8:05 ` ✗ patchtest: failure for " Patchwork
2018-10-29 12:46 ` [meta-oe][PATCH] " Khem Raj
0 siblings, 2 replies; 3+ messages in thread
From: Joris Offouga @ 2018-10-26 7:44 UTC (permalink / raw)
To: openembedded-core
Add recipes for django rest framework
For create a database with django
---
.../python/python-djangorestframework.inc | 16 ++++++++++++++++
.../python/python-djangorestframework_3.9.0.bb | 2 ++
.../python/python3-djangorestframework_3.9.0.bb | 2 ++
3 files changed, 20 insertions(+)
create mode 100644 meta-python/recipes-devtools/python/python-djangorestframework.inc
create mode 100644 meta-python/recipes-devtools/python/python-djangorestframework_3.9.0.bb
create mode 100644 meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
diff --git a/meta-python/recipes-devtools/python/python-djangorestframework.inc b/meta-python/recipes-devtools/python/python-djangorestframework.inc
new file mode 100644
index 0000000..8551a83
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-djangorestframework.inc
@@ -0,0 +1,16 @@
+SUMMARY = "djangorestframework"
+DESCRIPTION = "pip3 install djangorestframework"
+HOMEPAGE = "https://pypi.python.org/pypi/djangorestframework"
+
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7879a5a716147a784f7e524c9cf103c1"
+
+SRC_URI[md5sum] = "0d481bf8dbb87bb927b46798edc1a9bd"
+SRC_URI[sha256sum] = "607865b0bb1598b153793892101d881466bd5a991de12bd6229abb18b1c86136"
+PYPI_PACKAGE = "djangorestframework"
+
+inherit pypi
+
+RDEPENDS_${PN} += "\
+ ${PYTHON_PN}-django \
+"
\ No newline at end of file
diff --git a/meta-python/recipes-devtools/python/python-djangorestframework_3.9.0.bb b/meta-python/recipes-devtools/python/python-djangorestframework_3.9.0.bb
new file mode 100644
index 0000000..540d12d
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python-djangorestframework_3.9.0.bb
@@ -0,0 +1,2 @@
+require python-djangorestframework.inc
+inherit setuptools
\ No newline at end of file
diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
new file mode 100644
index 0000000..9ed6d17
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
@@ -0,0 +1,2 @@
+require python-djangorestframework.inc
+inherit setuptools3
\ No newline at end of file
--
2.7.4
^ permalink raw reply related [flat|nested] 3+ messages in thread
* ✗ patchtest: failure for Signed-off-by: Joris Offouga <offougajoris@gmail.com>
2018-10-26 7:44 [meta-oe][PATCH] Signed-off-by: Joris Offouga <offougajoris@gmail.com> Joris Offouga
@ 2018-10-26 8:05 ` Patchwork
2018-10-29 12:46 ` [meta-oe][PATCH] " Khem Raj
1 sibling, 0 replies; 3+ messages in thread
From: Patchwork @ 2018-10-26 8:05 UTC (permalink / raw)
To: Joris Offouga; +Cc: openembedded-core
== Series Details ==
Series: Signed-off-by: Joris Offouga <offougajoris@gmail.com>
Revision: 1
URL : https://patchwork.openembedded.org/series/14683/
State : failure
== Summary ==
Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:
* Patch [meta-oe] Signed-off-by: Joris Offouga <offougajoris@gmail.com>
Issue Patch is missing Signed-off-by [test_signed_off_by_presence]
Suggested fix Sign off the patch (either manually or with "git commit --amend -s")
If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).
---
Guidelines: https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [meta-oe][PATCH] Signed-off-by: Joris Offouga <offougajoris@gmail.com>
2018-10-26 7:44 [meta-oe][PATCH] Signed-off-by: Joris Offouga <offougajoris@gmail.com> Joris Offouga
2018-10-26 8:05 ` ✗ patchtest: failure for " Patchwork
@ 2018-10-29 12:46 ` Khem Raj
1 sibling, 0 replies; 3+ messages in thread
From: Khem Raj @ 2018-10-29 12:46 UTC (permalink / raw)
To: offougajoris; +Cc: Patches and discussions about the oe-core layer
please send this to openembedded-devel mailing list
On Fri, Oct 26, 2018 at 12:45 AM Joris Offouga <offougajoris@gmail.com> wrote:
>
> Add recipes for django rest framework
>
> For create a database with django
> ---
> .../python/python-djangorestframework.inc | 16 ++++++++++++++++
> .../python/python-djangorestframework_3.9.0.bb | 2 ++
> .../python/python3-djangorestframework_3.9.0.bb | 2 ++
> 3 files changed, 20 insertions(+)
> create mode 100644 meta-python/recipes-devtools/python/python-djangorestframework.inc
> create mode 100644 meta-python/recipes-devtools/python/python-djangorestframework_3.9.0.bb
> create mode 100644 meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
>
> diff --git a/meta-python/recipes-devtools/python/python-djangorestframework.inc b/meta-python/recipes-devtools/python/python-djangorestframework.inc
> new file mode 100644
> index 0000000..8551a83
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-djangorestframework.inc
> @@ -0,0 +1,16 @@
> +SUMMARY = "djangorestframework"
> +DESCRIPTION = "pip3 install djangorestframework"
> +HOMEPAGE = "https://pypi.python.org/pypi/djangorestframework"
> +
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE.md;md5=7879a5a716147a784f7e524c9cf103c1"
> +
> +SRC_URI[md5sum] = "0d481bf8dbb87bb927b46798edc1a9bd"
> +SRC_URI[sha256sum] = "607865b0bb1598b153793892101d881466bd5a991de12bd6229abb18b1c86136"
> +PYPI_PACKAGE = "djangorestframework"
> +
> +inherit pypi
> +
> +RDEPENDS_${PN} += "\
> + ${PYTHON_PN}-django \
> +"
> \ No newline at end of file
> diff --git a/meta-python/recipes-devtools/python/python-djangorestframework_3.9.0.bb b/meta-python/recipes-devtools/python/python-djangorestframework_3.9.0.bb
> new file mode 100644
> index 0000000..540d12d
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python-djangorestframework_3.9.0.bb
> @@ -0,0 +1,2 @@
> +require python-djangorestframework.inc
> +inherit setuptools
> \ No newline at end of file
> diff --git a/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb b/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
> new file mode 100644
> index 0000000..9ed6d17
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-djangorestframework_3.9.0.bb
> @@ -0,0 +1,2 @@
> +require python-djangorestframework.inc
> +inherit setuptools3
> \ No newline at end of file
> --
> 2.7.4
>
> --
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.openembedded.org/mailman/listinfo/openembedded-core
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-10-29 12:47 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-26 7:44 [meta-oe][PATCH] Signed-off-by: Joris Offouga <offougajoris@gmail.com> Joris Offouga
2018-10-26 8:05 ` ✗ patchtest: failure for " Patchwork
2018-10-29 12:46 ` [meta-oe][PATCH] " Khem Raj
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox