All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 0/3] Branch Name: topic-add-python-recipes
@ 2023-11-03 13:10 arthur.oliveira
  2023-11-03 13:10 ` [meta-python][PATCH 1/3] python3-flask-restx: Add Flask-RestX Python Recipe arthur.oliveira
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: arthur.oliveira @ 2023-11-03 13:10 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Arthur Oliveira

From: Arthur Oliveira <arthur.oliveira@ossystems.com.br>

Description: This branch introduces three new Python recipes for the
meta-openembedded layer. The recipes include python3-flask-restx,
python3-objectpath, and python3-zope.event. These recipes are aimed at
extending the capabilities of Yocto by adding support for various Python
packages. Each recipe is accompanied by a commit log that follows the
established standards for commit messages. This branch enhances the
meta-openembedded layer with valuable Python packages, expanding its utility
for embedded system development.

Commit Logs:

1. "python3-zopeevent: Add Zope.Event Python Recipe"
   - This commit adds the Python recipe for Zope.Event, which provides a simple
   event system.
   - It is licensed under ZPL-2.1.

2. "python3-objectpath: Add ObjectPath Python Recipe"
   - This commit adds the Python recipe for ObjectPath, an agile NoSQL query
   language for semi-structured data.
   - It is licensed under MIT.

3. "python3-flask-restx: Add Flask-RestX Python Recipe"
   - This commit adds the Python recipe for Flask-RestX, a fully featured
   framework for fast, easy, and documented API development with Flask.
   - It is licensed under BSD-3.

Each recipe contributes to the richness of Python libraries available for
Yocto, enhancing its capabilities for embedded development.

Arthur Oliveira (3):
  python3-flask-restx: Add Flask-RestX Python Recipe
  python3-objectpath: Add ObjectPath Python Recipe
  python3-zopeevent: Add Zope.Event Python Recipe

 .../python/python3-flask-restx_1.2.0.bb             | 13 +++++++++++++
 .../python/python3-objectpath_0.6.1.bb              |  9 +++++++++
 .../python/python3-zopeevent_5.0.bb                 | 10 ++++++++++
 3 files changed, 32 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-objectpath_0.6.1.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-zopeevent_5.0.bb

-- 
2.39.2



^ permalink raw reply	[flat|nested] 6+ messages in thread

* [meta-python][PATCH 1/3] python3-flask-restx: Add Flask-RestX Python Recipe
  2023-11-03 13:10 [meta-python][PATCH 0/3] Branch Name: topic-add-python-recipes arthur.oliveira
@ 2023-11-03 13:10 ` arthur.oliveira
  2023-11-03 13:10 ` [meta-python][PATCH 2/3] python3-objectpath: Add ObjectPath " arthur.oliveira
  2023-11-03 13:10 ` [meta-python][PATCH 3/3] python3-zopeevent: Add Zope.Event " arthur.oliveira
  2 siblings, 0 replies; 6+ messages in thread
From: arthur.oliveira @ 2023-11-03 13:10 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Arthur Oliveira

From: Arthur Oliveira <arthur.oliveira@ossystems.com.br>

This commit introduces the python3-flask-restx recipe, which brings a fully
featured framework for fast, easy, and documented API development with Flask.
It is released under the BSD-3-Clause license.

Signed-off-by: Arthur Oliveira <arthur.oliveira@ossystems.com.br>
---
update license to BSD-3-Clause
---
 .../python/python3-flask-restx_1.2.0.bb             | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb b/meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb
new file mode 100644
index 000000000..cff797139
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb
@@ -0,0 +1,13 @@
+DESCRIPTION = "Fully featured framework for fast, easy and documented API development with Flask"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c96dd911c6d9e32868b6bc667a38a3e2"
+
+SRC_URI[sha256sum] = "9a5338b108c57fbed1d24d5d53fe98442b2be7ffa2ff3291305af7a613ce6fc0"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+    python3-isodate \
+    python3-jsonschema \
+    python3-pytz \
+"
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-python][PATCH 2/3] python3-objectpath: Add ObjectPath Python Recipe
  2023-11-03 13:10 [meta-python][PATCH 0/3] Branch Name: topic-add-python-recipes arthur.oliveira
  2023-11-03 13:10 ` [meta-python][PATCH 1/3] python3-flask-restx: Add Flask-RestX Python Recipe arthur.oliveira
@ 2023-11-03 13:10 ` arthur.oliveira
  2023-11-03 13:10 ` [meta-python][PATCH 3/3] python3-zopeevent: Add Zope.Event " arthur.oliveira
  2 siblings, 0 replies; 6+ messages in thread
From: arthur.oliveira @ 2023-11-03 13:10 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Arthur Oliveira

From: Arthur Oliveira <arthur.oliveira@ossystems.com.br>

This commit includes the python3-objectpath recipe, which introduces the agile
NoSQL query language for semi-structured data. It is licensed under MIT.

Signed-off-by: Arthur Oliveira <arthur.oliveira@ossystems.com.br>
---
 .../recipes-devtools/python/python3-objectpath_0.6.1.bb  | 9 +++++++++
 1 file changed, 9 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-objectpath_0.6.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-objectpath_0.6.1.bb b/meta-python/recipes-devtools/python/python3-objectpath_0.6.1.bb
new file mode 100644
index 000000000..6e82dc13b
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-objectpath_0.6.1.bb
@@ -0,0 +1,9 @@
+DESCRIPTION = "The agile NoSQL query language for semi-structured data"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=a53cbc7cb75660694e138ba973c148df"
+
+DEPENDS += "dtc-native"
+
+SRC_URI[sha256sum] = "461263136c79292e42431fbb85cdcaac4c6a256f6b1aa5b3ae9316e4965ad819"
+
+inherit pypi setuptools3
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-python][PATCH 3/3] python3-zopeevent: Add Zope.Event Python Recipe
  2023-11-03 13:10 [meta-python][PATCH 0/3] Branch Name: topic-add-python-recipes arthur.oliveira
  2023-11-03 13:10 ` [meta-python][PATCH 1/3] python3-flask-restx: Add Flask-RestX Python Recipe arthur.oliveira
  2023-11-03 13:10 ` [meta-python][PATCH 2/3] python3-objectpath: Add ObjectPath " arthur.oliveira
@ 2023-11-03 13:10 ` arthur.oliveira
  2 siblings, 0 replies; 6+ messages in thread
From: arthur.oliveira @ 2023-11-03 13:10 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Arthur Oliveira

From: Arthur Oliveira <arthur.oliveira@ossystems.com.br>

This commit adds the python3-zopeevent recipe, which provides a simple event
system. It is licensed under ZPL-2.1.

Signed-off-by: Arthur Oliveira <arthur.oliveira@ossystems.com.br>
---
Add PYPI_PACKAGE to fix fetch
---
 .../recipes-devtools/python/python3-zopeevent_5.0.bb   | 10 ++++++++++
 1 file changed, 10 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-zopeevent_5.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-zopeevent_5.0.bb b/meta-python/recipes-devtools/python/python3-zopeevent_5.0.bb
new file mode 100644
index 000000000..4d914c63e
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-zopeevent_5.0.bb
@@ -0,0 +1,10 @@
+DESCRIPTION = "The zope.event package provides a simple event system"
+
+LICENSE = "ZPL-2.1"
+LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=72092419572155ddc2d4fb7631c63dd3"
+
+SRC_URI[sha256sum] = "bac440d8d9891b4068e2b5a2c5e2c9765a9df762944bda6955f96bb9b91e67cd"
+
+PYPI_PACKAGE = "zope.event"
+
+inherit pypi setuptools3
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-python][PATCH 1/3] python3-flask-restx: Add Flask-RestX Python Recipe
  2023-11-01 12:33 [meta-python][PATCH 0/3] Branch Name: topic-add-python-recipes arthur.oliveira
@ 2023-11-01 12:33 ` arthur.oliveira
  0 siblings, 0 replies; 6+ messages in thread
From: arthur.oliveira @ 2023-11-01 12:33 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Arthur Oliveira

From: Arthur Oliveira <arthur.oliveira@ossystems.com.br>

This commit introduces the python3-flask-restx recipe, which brings a fully
featured framework for fast, easy, and documented API development with Flask.
It is released under the BSD-3-Clause license.

Signed-off-by: Arthur Oliveira <arthur.oliveira@ossystems.com.br>
---
update license to BSD-3-Clause
---
 .../python/python3-flask-restx_1.2.0.bb             | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb b/meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb
new file mode 100644
index 000000000..cff797139
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb
@@ -0,0 +1,13 @@
+DESCRIPTION = "Fully featured framework for fast, easy and documented API development with Flask"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c96dd911c6d9e32868b6bc667a38a3e2"
+
+SRC_URI[sha256sum] = "9a5338b108c57fbed1d24d5d53fe98442b2be7ffa2ff3291305af7a613ce6fc0"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+    python3-isodate \
+    python3-jsonschema \
+    python3-pytz \
+"
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread

* [meta-python][PATCH 1/3] python3-flask-restx: Add Flask-RestX Python Recipe
  2023-10-31 17:35 [meta-python][PATCH 0/3] Branch Name: topic-add-python-recipes arthur.oliveira
@ 2023-10-31 17:35 ` arthur.oliveira
  0 siblings, 0 replies; 6+ messages in thread
From: arthur.oliveira @ 2023-10-31 17:35 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Arthur Oliveira

From: Arthur Oliveira <arthur.oliveira@ossystems.com.br>

This commit introduces the python3-flask-restx recipe, which brings a fully
featured framework for fast, easy, and documented API development with Flask.
It is released under the BSD-3 license.

Signed-off-by: Arthur Oliveira <arthur.oliveira@ossystems.com.br>
---
 .../python/python3-flask-restx_1.2.0.bb             | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb b/meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb
new file mode 100644
index 000000000..6b15e2535
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-flask-restx_1.2.0.bb
@@ -0,0 +1,13 @@
+DESCRIPTION = "Fully featured framework for fast, easy and documented API development with Flask"
+LICENSE = "BSD-3"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c96dd911c6d9e32868b6bc667a38a3e2"
+
+SRC_URI[sha256sum] = "9a5338b108c57fbed1d24d5d53fe98442b2be7ffa2ff3291305af7a613ce6fc0"
+
+inherit pypi setuptools3
+
+RDEPENDS:${PN} += " \
+    python3-isodate \
+    python3-jsonschema \
+    python3-pytz \
+"
-- 
2.39.2



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-11-03 13:10 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-03 13:10 [meta-python][PATCH 0/3] Branch Name: topic-add-python-recipes arthur.oliveira
2023-11-03 13:10 ` [meta-python][PATCH 1/3] python3-flask-restx: Add Flask-RestX Python Recipe arthur.oliveira
2023-11-03 13:10 ` [meta-python][PATCH 2/3] python3-objectpath: Add ObjectPath " arthur.oliveira
2023-11-03 13:10 ` [meta-python][PATCH 3/3] python3-zopeevent: Add Zope.Event " arthur.oliveira
  -- strict thread matches above, loose matches on Subject: below --
2023-11-01 12:33 [meta-python][PATCH 0/3] Branch Name: topic-add-python-recipes arthur.oliveira
2023-11-01 12:33 ` [meta-python][PATCH 1/3] python3-flask-restx: Add Flask-RestX Python Recipe arthur.oliveira
2023-10-31 17:35 [meta-python][PATCH 0/3] Branch Name: topic-add-python-recipes arthur.oliveira
2023-10-31 17:35 ` [meta-python][PATCH 1/3] python3-flask-restx: Add Flask-RestX Python Recipe arthur.oliveira

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.