All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/4] python3-pynacl: Added recipe
@ 2020-07-31 20:18 Khem Raj
  2020-07-31 20:18 ` [meta-python][PATCH 2/4] python3-paramiko: " Khem Raj
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Khem Raj @ 2020-07-31 20:18 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Colin McAllister, Khem Raj

From: Colin McAllister <colinmca242@gmail.com>

Created Python3 recipe for PyNaCl.

Signed-off-by: Colin McAllister <colinmca242@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../python/python3-pynacl_1.4.0.bb            | 31 +++++++++++++++++++
 1 file changed, 31 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-pynacl_1.4.0.bb

diff --git a/meta-python/recipes-devtools/python/python3-pynacl_1.4.0.bb b/meta-python/recipes-devtools/python/python3-pynacl_1.4.0.bb
new file mode 100644
index 0000000000..29b06232ba
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-pynacl_1.4.0.bb
@@ -0,0 +1,31 @@
+SUMMARY = "Python binding to the Networking and Cryptography (NaCl) library"
+DESCRIPTION = "Python binding to the Networking and Cryptography (NaCl) library"
+HOMEPAGE = "https://github.com/pyca/pynacl"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=8cc789b082b3d97e1ccc5261f8594d3f"
+
+SRC_URI[md5sum] = "8c6c57893327a694c72510fb620e4744"
+SRC_URI[sha256sum] = "54e9a2c849c742006516ad56a88f5c74bf2ce92c9f67435187c3c5953b346505"
+
+PYPI_PACKAGE = "PyNaCl"
+
+inherit pypi setuptools3
+
+DEPENDS += "\
+    ${PYTHON_PN}-cffi-native \
+    libsodium \
+"
+
+RDEPENDS_${PN} = "\
+    ${PYTHON_PN}-six \
+    ${PYTHON_PN}-cffi \
+    libsodium \
+"
+
+do_compile_prepend() {
+    export SODIUM_INSTALL=system
+}
+
+do_install_prepend() {
+    export SODIUM_INSTALL=system
+}
-- 
2.28.0


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

* [meta-python][PATCH 2/4] python3-paramiko: Added recipe
  2020-07-31 20:18 [meta-python][PATCH 1/4] python3-pynacl: Added recipe Khem Raj
@ 2020-07-31 20:18 ` Khem Raj
  2020-08-03 21:41   ` [oe] " Trevor Gamblin
  2020-07-31 20:18 ` [meta-python][PATCH 3/4] python3-jdatetime: " Khem Raj
  2020-07-31 20:18 ` [meta-python][PATCH 4/4] python3-lorem: " Khem Raj
  2 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2020-07-31 20:18 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Colin McAllister, Khem Raj

From: Colin McAllister <colinmca242@gmail.com>

Created Python3 recipe for paramiko.

Signed-off-by: Colin McAllister <colinmca242@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../python/python3-paramiko_2.7.1.bb               | 14 ++++++++++++++
 1 file changed, 14 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-paramiko_2.7.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-paramiko_2.7.1.bb b/meta-python/recipes-devtools/python/python3-paramiko_2.7.1.bb
new file mode 100644
index 0000000000..0ead23608a
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-paramiko_2.7.1.bb
@@ -0,0 +1,14 @@
+DESCRIPTION = "The leading native Python SSHv2 protocol library."
+HOMEPAGE = "https://github.com/paramiko/paramiko/"
+LICENSE = "LGPL-2.1"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5"
+
+SRC_URI[md5sum] = "bf8239dc820ca86dd3c3226f4281c35f"
+SRC_URI[sha256sum] = "920492895db8013f6cc0179293147f830b8c7b21fdfc839b6bad760c27459d9f"
+
+PYPI_PACKAGE = "paramiko"
+
+inherit pypi setuptools3
+
+CLEANBROKEN = "1"
+
-- 
2.28.0


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

* [meta-python][PATCH 3/4] python3-jdatetime: Added recipe
  2020-07-31 20:18 [meta-python][PATCH 1/4] python3-pynacl: Added recipe Khem Raj
  2020-07-31 20:18 ` [meta-python][PATCH 2/4] python3-paramiko: " Khem Raj
@ 2020-07-31 20:18 ` Khem Raj
  2020-07-31 20:18 ` [meta-python][PATCH 4/4] python3-lorem: " Khem Raj
  2 siblings, 0 replies; 6+ messages in thread
From: Khem Raj @ 2020-07-31 20:18 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Colin McAllister, Khem Raj

From: Colin McAllister <colinmca242@gmail.com>

Created python3 recipe for jdatetime.

Signed-off-by: Colin McAllister <colinmca242@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../python/python3-jdatetime_3.6.2.bb          | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-jdatetime_3.6.2.bb

diff --git a/meta-python/recipes-devtools/python/python3-jdatetime_3.6.2.bb b/meta-python/recipes-devtools/python/python3-jdatetime_3.6.2.bb
new file mode 100644
index 0000000000..23017c2211
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-jdatetime_3.6.2.bb
@@ -0,0 +1,18 @@
+DESCRIPTION = "Jalali implementation of Python's datetime module"
+HOMEPAGE = "https://github.com/slashmili/python-jalali"
+LICENSE = "Python-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c80be45b33471b4a23cf53d06a8172be"
+
+SRC_URI[md5sum] = "3c9ee1bc7de48ff4d9c773046b2eb081"
+SRC_URI[sha256sum] = "a589e35f0dab89283c1a3de9d70ed6cf657932aaed8e8ce1b0e5801aaab1da67"
+
+PYPI_PACKAGE = "jdatetime"
+
+inherit pypi setuptools3
+
+CLEANBROKEN = "1"
+
+RDEPENDS_${PN} += " \
+        ${PYTHON_PN}-modules \
+"
+
-- 
2.28.0


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

* [meta-python][PATCH 4/4] python3-lorem: Added recipe
  2020-07-31 20:18 [meta-python][PATCH 1/4] python3-pynacl: Added recipe Khem Raj
  2020-07-31 20:18 ` [meta-python][PATCH 2/4] python3-paramiko: " Khem Raj
  2020-07-31 20:18 ` [meta-python][PATCH 3/4] python3-jdatetime: " Khem Raj
@ 2020-07-31 20:18 ` Khem Raj
  2020-08-03 21:41   ` [oe] " Trevor Gamblin
  2 siblings, 1 reply; 6+ messages in thread
From: Khem Raj @ 2020-07-31 20:18 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Colin McAllister, Khem Raj

From: Colin McAllister <colinmca242@gmail.com>

Created Python3 recipe for python3-lorem.

Signed-off-by: Colin McAllister <colinmca242@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 .../python/python3-lorem_0.1.1.bb                | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb b/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb
new file mode 100644
index 0000000000..fc75e43485
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb
@@ -0,0 +1,16 @@
+DESCRIPTION = "Generator for random text that looks like Latin"
+HOMEPAGE = "https://github.com/sfischer13/python-lorem"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=5301c01b2bcdeedba23645f94db2f179"
+SRC_URI[md5sum] = "e3f0064a94c13e19780eb724affdb426"
+SRC_URI[sha256sum] = "785f4109a241fc2891e59705e85d065f6e6d3ed6ad91750a8cb54d4f3e59d934"
+
+PYPI_PACKAGE = "lorem"
+
+inherit pypi setuptools3
+
+CLEANBROKEN = "1"
+
+RDEPENDS_${PN} += " \
+        python3 \
+"
-- 
2.28.0


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

* Re: [oe] [meta-python][PATCH 2/4] python3-paramiko: Added recipe
  2020-07-31 20:18 ` [meta-python][PATCH 2/4] python3-paramiko: " Khem Raj
@ 2020-08-03 21:41   ` Trevor Gamblin
  0 siblings, 0 replies; 6+ messages in thread
From: Trevor Gamblin @ 2020-08-03 21:41 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel; +Cc: Colin McAllister

[-- Attachment #1: Type: text/plain, Size: 1304 bytes --]


On 7/31/20 4:18 PM, Khem Raj wrote:
> From: Colin McAllister <colinmca242@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
>
> Created Python3 recipe for paramiko.
>
> Signed-off-by: Colin McAllister <colinmca242@gmail.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> ---
>   .../python/python3-paramiko_2.7.1.bb               | 14 ++++++++++++++
>   1 file changed, 14 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-paramiko_2.7.1.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-paramiko_2.7.1.bb b/meta-python/recipes-devtools/python/python3-paramiko_2.7.1.bb
> new file mode 100644
> index 0000000000..0ead23608a
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-paramiko_2.7.1.bb
> @@ -0,0 +1,14 @@
> +DESCRIPTION = "The leading native Python SSHv2 protocol library."
> +HOMEPAGE = "https://github.com/paramiko/paramiko/"
> +LICENSE = "LGPL-2.1"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=fd0120fc2e9f841c73ac707a30389af5"
> +
> +SRC_URI[md5sum] = "bf8239dc820ca86dd3c3226f4281c35f"
> +SRC_URI[sha256sum] = "920492895db8013f6cc0179293147f830b8c7b21fdfc839b6bad760c27459d9f"
> +
> +PYPI_PACKAGE = "paramiko"
> +
> +inherit pypi setuptools3
> +
> +CLEANBROKEN = "1"
> +
>
> 

[-- Attachment #2: Type: text/html, Size: 2440 bytes --]

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

* Re: [oe] [meta-python][PATCH 4/4] python3-lorem: Added recipe
  2020-07-31 20:18 ` [meta-python][PATCH 4/4] python3-lorem: " Khem Raj
@ 2020-08-03 21:41   ` Trevor Gamblin
  0 siblings, 0 replies; 6+ messages in thread
From: Trevor Gamblin @ 2020-08-03 21:41 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel; +Cc: Colin McAllister

[-- Attachment #1: Type: text/plain, Size: 1341 bytes --]


On 7/31/20 4:18 PM, Khem Raj wrote:
> From: Colin McAllister <colinmca242@gmail.com>
>
> Created Python3 recipe for python3-lorem.
>
> Signed-off-by: Colin McAllister <colinmca242@gmail.com>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python3-lorem_0.1.1.bb                | 16 ++++++++++++++++
>   1 file changed, 16 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb b/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb
> new file mode 100644
> index 0000000000..fc75e43485
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-lorem_0.1.1.bb
> @@ -0,0 +1,16 @@
> +DESCRIPTION = "Generator for random text that looks like Latin"
> +HOMEPAGE = "https://github.com/sfischer13/python-lorem"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=5301c01b2bcdeedba23645f94db2f179"
> +SRC_URI[md5sum] = "e3f0064a94c13e19780eb724affdb426"
> +SRC_URI[sha256sum] = "785f4109a241fc2891e59705e85d065f6e6d3ed6ad91750a8cb54d4f3e59d934"
> +
> +PYPI_PACKAGE = "lorem"
> +
> +inherit pypi setuptools3
> +
> +CLEANBROKEN = "1"
> +
> +RDEPENDS_${PN} += " \
> +        python3 \
> +"
>
> 

[-- Attachment #2: Type: text/html, Size: 2484 bytes --]

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

end of thread, other threads:[~2020-08-03 21:41 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-31 20:18 [meta-python][PATCH 1/4] python3-pynacl: Added recipe Khem Raj
2020-07-31 20:18 ` [meta-python][PATCH 2/4] python3-paramiko: " Khem Raj
2020-08-03 21:41   ` [oe] " Trevor Gamblin
2020-07-31 20:18 ` [meta-python][PATCH 3/4] python3-jdatetime: " Khem Raj
2020-07-31 20:18 ` [meta-python][PATCH 4/4] python3-lorem: " Khem Raj
2020-08-03 21:41   ` [oe] " Trevor Gamblin

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.