All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-gmpy2: add new package
@ 2020-07-11  3:19 akuster
  2020-07-11  3:19 ` [meta-python][PATCH 2/5] python3-ecdsa: add package akuster
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: akuster @ 2020-07-11  3:19 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../recipes-devtools/python/python3-gmpy2_2.0.8.bb  | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-gmpy2_2.0.8.bb

diff --git a/meta-python/recipes-devtools/python/python3-gmpy2_2.0.8.bb b/meta-python/recipes-devtools/python/python3-gmpy2_2.0.8.bb
new file mode 100644
index 0000000000..c6edcbb320
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-gmpy2_2.0.8.bb
@@ -0,0 +1,13 @@
+SUMMARY = "GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x"
+SECTION = "devel/python"
+LICENSE = "GPL-3.0 | LGPL-3.0+"
+LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
+                    file://COPYING.LESSER;md5=e6a600fd5e1d9cbde2d983680233ad02"
+
+DEPENDS += "gmp mpfr libmpc"
+
+PYPI_PACKAGE = "gmpy2"
+PYPI_PACKAGE_EXT = "zip"
+SRC_URI[sha256sum] = "dd233e3288b90f21b0bb384bcc7a7e73557bb112ccf0032ad52aa614eb373d3f"
+
+inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-ecdsa: add package
  2020-07-11  3:19 [meta-python][PATCH 1/5] python3-gmpy2: add new package akuster
@ 2020-07-11  3:19 ` akuster
  2020-07-15 23:52   ` [oe] " Trevor Gamblin
  2020-07-11  3:19 ` [meta-python][PATCH 3/5] python3-rsa: add new package akuster
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: akuster @ 2020-07-11  3:19 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../recipes-devtools/python/python3-ecdsa_0.15.bb   | 13 +++++++++++++
 1 file changed, 13 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb

diff --git a/meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb b/meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb
new file mode 100644
index 0000000000..aba62f3ef9
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb
@@ -0,0 +1,13 @@
+SUMMARY = "ECDSA cryptographic signature library (pure python)"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=66ffc5e30f76cbb5358fe54b645e5a1d"
+
+DEPENDS += "python3-pip python3-pbr"
+
+PYPI_PACKAGE = "ecdsa"
+SRC_URI[sha256sum] = "8f12ac317f8a1318efa75757ef0a651abe12e51fc1af8838fb91079445227277"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} += "python3-six python3-gmpy2 python3-pbr"
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-rsa: add new package
  2020-07-11  3:19 [meta-python][PATCH 1/5] python3-gmpy2: add new package akuster
  2020-07-11  3:19 ` [meta-python][PATCH 2/5] python3-ecdsa: add package akuster
@ 2020-07-11  3:19 ` akuster
  2020-07-15 23:52   ` [oe] " Trevor Gamblin
  2020-07-11  3:19 ` [meta-python][PATCH 4/5] python3-gnupg: " akuster
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: akuster @ 2020-07-11  3:19 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../python/python3-rsa_3.4.2.bb               | 44 +++++++++++++++++++
 1 file changed, 44 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-rsa_3.4.2.bb

diff --git a/meta-python/recipes-devtools/python/python3-rsa_3.4.2.bb b/meta-python/recipes-devtools/python/python3-rsa_3.4.2.bb
new file mode 100644
index 0000000000..759214fa38
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-rsa_3.4.2.bb
@@ -0,0 +1,44 @@
+SUMMARY = "Pure-Python RSA implementation"
+SECTION = "devel/python"
+AUTHOR = "Sybren A. Stuvel"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c403f6882d4f97a9cd927df987d55634"
+
+SRC_URI[sha256sum] = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5"
+
+inherit pypi setuptools3 update-alternatives
+
+ALTERNATIVE_${PN} = "\
+    pyrsa-decrypt \
+    pyrsa-decrypt-bigfile \
+    pyrsa-encrypt \
+    pyrsa-encrypt-bigfile \
+    pyrsa-keygen \
+    pyrsa-priv2pub \
+    pyrsa-sign \
+    pyrsa-verify \
+"
+
+ALTERNATIVE_LINK_NAME[pyrsa-decrypt] = "${bindir}/pyrsa-decrypt"
+ALTERNATIVE_LINK_NAME[pyrsa-decrypt-bigfile] = "${bindir}/pyrsa-decrypt-bigfile"
+ALTERNATIVE_LINK_NAME[pyrsa-encrypt] = "${bindir}/pyrsa-encrypt"
+ALTERNATIVE_LINK_NAME[pyrsa-encrypt-bigfile] = "${bindir}/pyrsa-encrypt-bigfile"
+ALTERNATIVE_LINK_NAME[pyrsa-keygen] = "${bindir}/pyrsa-keygen"
+ALTERNATIVE_LINK_NAME[pyrsa-priv2pub] = "${bindir}/pyrsa-priv2pub"
+ALTERNATIVE_LINK_NAME[pyrsa-sign] = "${bindir}/pyrsa-sign"
+ALTERNATIVE_LINK_NAME[pyrsa-verify] = "${bindir}/pyrsa-verify"
+ALTERNATIVE_PRIORITY = "30"
+
+
+RDEPENDS_${PN} += "\
+    ${PYTHON_PN}-compression \
+    ${PYTHON_PN}-crypt \
+    ${PYTHON_PN}-doctest \
+    ${PYTHON_PN}-logging \
+    ${PYTHON_PN}-math \
+    ${PYTHON_PN}-multiprocessing \
+    ${PYTHON_PN}-netclient \
+    ${PYTHON_PN}-pickle \
+"
+
+RDEPENDS_${PN} += "${PYTHON_PN}-pyasn1"
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-gnupg: add new package
  2020-07-11  3:19 [meta-python][PATCH 1/5] python3-gmpy2: add new package akuster
  2020-07-11  3:19 ` [meta-python][PATCH 2/5] python3-ecdsa: add package akuster
  2020-07-11  3:19 ` [meta-python][PATCH 3/5] python3-rsa: add new package akuster
@ 2020-07-11  3:19 ` akuster
  2020-07-15 23:53   ` [oe] " Trevor Gamblin
  2020-07-11  3:19 ` [meta-python][PATCH 5/5] python3-qrcode: add package akuster
  2020-07-15 23:52 ` [oe] [meta-python][PATCH 1/5] python3-gmpy2: add new package Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: akuster @ 2020-07-11  3:19 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../recipes-devtools/python/python3-gnupg_0.4.6.bb    | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-gnupg_0.4.6.bb

diff --git a/meta-python/recipes-devtools/python/python3-gnupg_0.4.6.bb b/meta-python/recipes-devtools/python/python3-gnupg_0.4.6.bb
new file mode 100644
index 0000000000..ff0a91c6f6
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-gnupg_0.4.6.bb
@@ -0,0 +1,11 @@
+SUMMARY = "A wrapper for the Gnu Privacy Guard (GPG or GnuPG)"
+SECTION = "devel/python"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b0b7ac63b60085b23fa9f7e1951daa1d"
+
+PYPI_PACKAGE = "python-gnupg"
+SRC_URI[sha256sum] = "3aa0884b3bd414652c2385b9df39e7b87272c2eca1b8fcc3089bc9e58652019a"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} +=  "gnupg-gpg"
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-qrcode: add package
  2020-07-11  3:19 [meta-python][PATCH 1/5] python3-gmpy2: add new package akuster
                   ` (2 preceding siblings ...)
  2020-07-11  3:19 ` [meta-python][PATCH 4/5] python3-gnupg: " akuster
@ 2020-07-11  3:19 ` akuster
  2020-07-15 23:53   ` [oe] " Trevor Gamblin
  2020-07-15 23:52 ` [oe] [meta-python][PATCH 1/5] python3-gmpy2: add new package Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: akuster @ 2020-07-11  3:19 UTC (permalink / raw)
  To: openembedded-devel

Signed-off-by: Armin Kuster <akuster808@gmail.com>
---
 .../recipes-devtools/python/python3-qrcode_6.1.bb     | 11 +++++++++++
 1 file changed, 11 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python/python3-qrcode_6.1.bb

diff --git a/meta-python/recipes-devtools/python/python3-qrcode_6.1.bb b/meta-python/recipes-devtools/python/python3-qrcode_6.1.bb
new file mode 100644
index 0000000000..df99d403d1
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-qrcode_6.1.bb
@@ -0,0 +1,11 @@
+SUMMARY = "QR Code image generator"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4b802d2a65df4626623c79757f486af9"
+
+PYPI_PACKAGE = "qrcode"
+SRC_URI[sha256sum] = "505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369"
+
+inherit pypi setuptools3
+
+RDEPENDS_${PN} = "python3-six python3-pillow"
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/5] python3-gmpy2: add new package
  2020-07-11  3:19 [meta-python][PATCH 1/5] python3-gmpy2: add new package akuster
                   ` (3 preceding siblings ...)
  2020-07-11  3:19 ` [meta-python][PATCH 5/5] python3-qrcode: add package akuster
@ 2020-07-15 23:52 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-15 23:52 UTC (permalink / raw)
  To: akuster, openembedded-devel

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


On 7/10/20 11:19 PM, akuster wrote:
> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python3-gmpy2_2.0.8.bb  | 13 +++++++++++++
>   1 file changed, 13 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-gmpy2_2.0.8.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-gmpy2_2.0.8.bb b/meta-python/recipes-devtools/python/python3-gmpy2_2.0.8.bb
> new file mode 100644
> index 0000000000..c6edcbb320
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-gmpy2_2.0.8.bb
> @@ -0,0 +1,13 @@
> +SUMMARY = "GMP/MPIR, MPFR, and MPC interface to Python 2.6+ and 3.x"
> +SECTION = "devel/python"
> +LICENSE = "GPL-3.0 | LGPL-3.0+"
> +LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
> +                    file://COPYING.LESSER;md5=e6a600fd5e1d9cbde2d983680233ad02"
> +
> +DEPENDS += "gmp mpfr libmpc"
> +
> +PYPI_PACKAGE = "gmpy2"
> +PYPI_PACKAGE_EXT = "zip"
> +SRC_URI[sha256sum] = "dd233e3288b90f21b0bb384bcc7a7e73557bb112ccf0032ad52aa614eb373d3f"
> +
> +inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 2/5] python3-ecdsa: add package
  2020-07-11  3:19 ` [meta-python][PATCH 2/5] python3-ecdsa: add package akuster
@ 2020-07-15 23:52   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-15 23:52 UTC (permalink / raw)
  To: akuster, openembedded-devel

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


On 7/10/20 11:19 PM, akuster wrote:
> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python3-ecdsa_0.15.bb   | 13 +++++++++++++
>   1 file changed, 13 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb b/meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb
> new file mode 100644
> index 0000000000..aba62f3ef9
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-ecdsa_0.15.bb
> @@ -0,0 +1,13 @@
> +SUMMARY = "ECDSA cryptographic signature library (pure python)"
> +SECTION = "devel/python"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=66ffc5e30f76cbb5358fe54b645e5a1d"
> +
> +DEPENDS += "python3-pip python3-pbr"
> +
> +PYPI_PACKAGE = "ecdsa"
> +SRC_URI[sha256sum] = "8f12ac317f8a1318efa75757ef0a651abe12e51fc1af8838fb91079445227277"
> +
> +inherit pypi setuptools3
> +
> +RDEPENDS_${PN} += "python3-six python3-gmpy2 python3-pbr"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 3/5] python3-rsa: add new package
  2020-07-11  3:19 ` [meta-python][PATCH 3/5] python3-rsa: add new package akuster
@ 2020-07-15 23:52   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-15 23:52 UTC (permalink / raw)
  To: akuster, openembedded-devel

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


On 7/10/20 11:19 PM, akuster wrote:
> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/python3-rsa_3.4.2.bb               | 44 +++++++++++++++++++
>   1 file changed, 44 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-rsa_3.4.2.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-rsa_3.4.2.bb b/meta-python/recipes-devtools/python/python3-rsa_3.4.2.bb
> new file mode 100644
> index 0000000000..759214fa38
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-rsa_3.4.2.bb
> @@ -0,0 +1,44 @@
> +SUMMARY = "Pure-Python RSA implementation"
> +SECTION = "devel/python"
> +AUTHOR = "Sybren A. Stuvel"
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=c403f6882d4f97a9cd927df987d55634"
> +
> +SRC_URI[sha256sum] = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5"
> +
> +inherit pypi setuptools3 update-alternatives
> +
> +ALTERNATIVE_${PN} = "\
> +    pyrsa-decrypt \
> +    pyrsa-decrypt-bigfile \
> +    pyrsa-encrypt \
> +    pyrsa-encrypt-bigfile \
> +    pyrsa-keygen \
> +    pyrsa-priv2pub \
> +    pyrsa-sign \
> +    pyrsa-verify \
> +"
> +
> +ALTERNATIVE_LINK_NAME[pyrsa-decrypt] = "${bindir}/pyrsa-decrypt"
> +ALTERNATIVE_LINK_NAME[pyrsa-decrypt-bigfile] = "${bindir}/pyrsa-decrypt-bigfile"
> +ALTERNATIVE_LINK_NAME[pyrsa-encrypt] = "${bindir}/pyrsa-encrypt"
> +ALTERNATIVE_LINK_NAME[pyrsa-encrypt-bigfile] = "${bindir}/pyrsa-encrypt-bigfile"
> +ALTERNATIVE_LINK_NAME[pyrsa-keygen] = "${bindir}/pyrsa-keygen"
> +ALTERNATIVE_LINK_NAME[pyrsa-priv2pub] = "${bindir}/pyrsa-priv2pub"
> +ALTERNATIVE_LINK_NAME[pyrsa-sign] = "${bindir}/pyrsa-sign"
> +ALTERNATIVE_LINK_NAME[pyrsa-verify] = "${bindir}/pyrsa-verify"
> +ALTERNATIVE_PRIORITY = "30"
> +
> +
> +RDEPENDS_${PN} += "\
> +    ${PYTHON_PN}-compression \
> +    ${PYTHON_PN}-crypt \
> +    ${PYTHON_PN}-doctest \
> +    ${PYTHON_PN}-logging \
> +    ${PYTHON_PN}-math \
> +    ${PYTHON_PN}-multiprocessing \
> +    ${PYTHON_PN}-netclient \
> +    ${PYTHON_PN}-pickle \
> +"
> +
> +RDEPENDS_${PN} += "${PYTHON_PN}-pyasn1"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 4/5] python3-gnupg: add new package
  2020-07-11  3:19 ` [meta-python][PATCH 4/5] python3-gnupg: " akuster
@ 2020-07-15 23:53   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-15 23:53 UTC (permalink / raw)
  To: akuster, openembedded-devel

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


On 7/10/20 11:19 PM, akuster wrote:
> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python3-gnupg_0.4.6.bb    | 11 +++++++++++
>   1 file changed, 11 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-gnupg_0.4.6.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-gnupg_0.4.6.bb b/meta-python/recipes-devtools/python/python3-gnupg_0.4.6.bb
> new file mode 100644
> index 0000000000..ff0a91c6f6
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-gnupg_0.4.6.bb
> @@ -0,0 +1,11 @@
> +SUMMARY = "A wrapper for the Gnu Privacy Guard (GPG or GnuPG)"
> +SECTION = "devel/python"
> +LICENSE = "BSD"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b0b7ac63b60085b23fa9f7e1951daa1d"
> +
> +PYPI_PACKAGE = "python-gnupg"
> +SRC_URI[sha256sum] = "3aa0884b3bd414652c2385b9df39e7b87272c2eca1b8fcc3089bc9e58652019a"
> +
> +inherit pypi setuptools3
> +
> +RDEPENDS_${PN} +=  "gnupg-gpg"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 5/5] python3-qrcode: add package
  2020-07-11  3:19 ` [meta-python][PATCH 5/5] python3-qrcode: add package akuster
@ 2020-07-15 23:53   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-07-15 23:53 UTC (permalink / raw)
  To: akuster, openembedded-devel

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


On 7/10/20 11:19 PM, akuster wrote:
> Signed-off-by: Armin Kuster <akuster808@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python3-qrcode_6.1.bb     | 11 +++++++++++
>   1 file changed, 11 insertions(+)
>   create mode 100644 meta-python/recipes-devtools/python/python3-qrcode_6.1.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-qrcode_6.1.bb b/meta-python/recipes-devtools/python/python3-qrcode_6.1.bb
> new file mode 100644
> index 0000000000..df99d403d1
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-qrcode_6.1.bb
> @@ -0,0 +1,11 @@
> +SUMMARY = "QR Code image generator"
> +SECTION = "devel/python"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=4b802d2a65df4626623c79757f486af9"
> +
> +PYPI_PACKAGE = "qrcode"
> +SRC_URI[sha256sum] = "505253854f607f2abf4d16092c61d4e9d511a3b4392e60bff957a68592b04369"
> +
> +inherit pypi setuptools3
> +
> +RDEPENDS_${PN} = "python3-six python3-pillow"
>
> 

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

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

end of thread, other threads:[~2020-07-15 23:53 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-11  3:19 [meta-python][PATCH 1/5] python3-gmpy2: add new package akuster
2020-07-11  3:19 ` [meta-python][PATCH 2/5] python3-ecdsa: add package akuster
2020-07-15 23:52   ` [oe] " Trevor Gamblin
2020-07-11  3:19 ` [meta-python][PATCH 3/5] python3-rsa: add new package akuster
2020-07-15 23:52   ` [oe] " Trevor Gamblin
2020-07-11  3:19 ` [meta-python][PATCH 4/5] python3-gnupg: " akuster
2020-07-15 23:53   ` [oe] " Trevor Gamblin
2020-07-11  3:19 ` [meta-python][PATCH 5/5] python3-qrcode: add package akuster
2020-07-15 23:53   ` [oe] " Trevor Gamblin
2020-07-15 23:52 ` [oe] [meta-python][PATCH 1/5] python3-gmpy2: add new package 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.