* [m-c-s][PATCH] python-rsa: add python3 version
@ 2019-10-22 14:17 Maciej Pijanowski
2019-10-23 3:00 ` Bruce Ashfield
0 siblings, 1 reply; 2+ messages in thread
From: Maciej Pijanowski @ 2019-10-22 14:17 UTC (permalink / raw)
To: meta-virtualization; +Cc: piotr.krol
Signed-off-by: Maciej Pijanowski <maciej.pijanowski@3mdeb.com>
---
meta-openstack/recipes-devtools/python/python-rsa.inc | 13 +++++++++++++
.../recipes-devtools/python/python-rsa_3.4.2.bb | 15 ++-------------
.../recipes-devtools/python/python3-rsa_3.4.2.bb | 2 ++
3 files changed, 17 insertions(+), 13 deletions(-)
create mode 100644 meta-openstack/recipes-devtools/python/python-rsa.inc
create mode 100644 meta-openstack/recipes-devtools/python/python3-rsa_3.4.2.bb
diff --git a/meta-openstack/recipes-devtools/python/python-rsa.inc b/meta-openstack/recipes-devtools/python/python-rsa.inc
new file mode 100644
index 000000000000..ccb65d5a4e89
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-rsa.inc
@@ -0,0 +1,13 @@
+SUMMARY = "Pure-Python RSA implementation"
+AUTHOR = "Sybren A. Stuvel"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c403f6882d4f97a9cd927df987d55634"
+
+inherit pypi
+
+SRC_URI[md5sum] = "b315f47882c24030ee6b5aad628cccdb"
+SRC_URI[sha256sum] = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5"
+
+RDEPENDS_${PN} += " \
+ ${PYTHON_PN}-pyasn1 \
+ "
diff --git a/meta-openstack/recipes-devtools/python/python-rsa_3.4.2.bb b/meta-openstack/recipes-devtools/python/python-rsa_3.4.2.bb
index c7df0a8b644e..349e7cd97727 100644
--- a/meta-openstack/recipes-devtools/python/python-rsa_3.4.2.bb
+++ b/meta-openstack/recipes-devtools/python/python-rsa_3.4.2.bb
@@ -1,13 +1,2 @@
-SUMMARY = "Pure-Python RSA implementation"
-AUTHOR = "Sybren A. Stuvel"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=c403f6882d4f97a9cd927df987d55634"
-
-inherit setuptools pypi
-
-SRC_URI[md5sum] = "b315f47882c24030ee6b5aad628cccdb"
-SRC_URI[sha256sum] = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5"
-
-RDEPENDS_${PN} += " \
- python-pyasn1 \
- "
+inherit setuptools
+require python-rsa.inc
diff --git a/meta-openstack/recipes-devtools/python/python3-rsa_3.4.2.bb b/meta-openstack/recipes-devtools/python/python3-rsa_3.4.2.bb
new file mode 100644
index 000000000000..2d6c93cee2dd
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-rsa_3.4.2.bb
@@ -0,0 +1,2 @@
+inherit setuptools3
+require python-rsa.inc
--
2.7.4
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [m-c-s][PATCH] python-rsa: add python3 version
2019-10-22 14:17 [m-c-s][PATCH] python-rsa: add python3 version Maciej Pijanowski
@ 2019-10-23 3:00 ` Bruce Ashfield
0 siblings, 0 replies; 2+ messages in thread
From: Bruce Ashfield @ 2019-10-23 3:00 UTC (permalink / raw)
To: Maciej Pijanowski; +Cc: meta-virtualization, piotr.krol
merged
Bruce
In message: [meta-virtualization] [m-c-s][PATCH] python-rsa: add python3 version
on 22/10/2019 Maciej Pijanowski wrote:
> Signed-off-by: Maciej Pijanowski <maciej.pijanowski@3mdeb.com>
> ---
> meta-openstack/recipes-devtools/python/python-rsa.inc | 13 +++++++++++++
> .../recipes-devtools/python/python-rsa_3.4.2.bb | 15 ++-------------
> .../recipes-devtools/python/python3-rsa_3.4.2.bb | 2 ++
> 3 files changed, 17 insertions(+), 13 deletions(-)
> create mode 100644 meta-openstack/recipes-devtools/python/python-rsa.inc
> create mode 100644 meta-openstack/recipes-devtools/python/python3-rsa_3.4.2.bb
>
> diff --git a/meta-openstack/recipes-devtools/python/python-rsa.inc b/meta-openstack/recipes-devtools/python/python-rsa.inc
> new file mode 100644
> index 000000000000..ccb65d5a4e89
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python-rsa.inc
> @@ -0,0 +1,13 @@
> +SUMMARY = "Pure-Python RSA implementation"
> +AUTHOR = "Sybren A. Stuvel"
> +LICENSE = "Apache-2.0"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=c403f6882d4f97a9cd927df987d55634"
> +
> +inherit pypi
> +
> +SRC_URI[md5sum] = "b315f47882c24030ee6b5aad628cccdb"
> +SRC_URI[sha256sum] = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5"
> +
> +RDEPENDS_${PN} += " \
> + ${PYTHON_PN}-pyasn1 \
> + "
> diff --git a/meta-openstack/recipes-devtools/python/python-rsa_3.4.2.bb b/meta-openstack/recipes-devtools/python/python-rsa_3.4.2.bb
> index c7df0a8b644e..349e7cd97727 100644
> --- a/meta-openstack/recipes-devtools/python/python-rsa_3.4.2.bb
> +++ b/meta-openstack/recipes-devtools/python/python-rsa_3.4.2.bb
> @@ -1,13 +1,2 @@
> -SUMMARY = "Pure-Python RSA implementation"
> -AUTHOR = "Sybren A. Stuvel"
> -LICENSE = "Apache-2.0"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=c403f6882d4f97a9cd927df987d55634"
> -
> -inherit setuptools pypi
> -
> -SRC_URI[md5sum] = "b315f47882c24030ee6b5aad628cccdb"
> -SRC_URI[sha256sum] = "25df4e10c263fb88b5ace923dd84bf9aa7f5019687b5e55382ffcdb8bede9db5"
> -
> -RDEPENDS_${PN} += " \
> - python-pyasn1 \
> - "
> +inherit setuptools
> +require python-rsa.inc
> diff --git a/meta-openstack/recipes-devtools/python/python3-rsa_3.4.2.bb b/meta-openstack/recipes-devtools/python/python3-rsa_3.4.2.bb
> new file mode 100644
> index 000000000000..2d6c93cee2dd
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python3-rsa_3.4.2.bb
> @@ -0,0 +1,2 @@
> +inherit setuptools3
> +require python-rsa.inc
> --
> 2.7.4
>
> --
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2019-10-23 3:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-10-22 14:17 [m-c-s][PATCH] python-rsa: add python3 version Maciej Pijanowski
2019-10-23 3:00 ` Bruce Ashfield
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.