All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] python-amqp: Add python3 version
@ 2019-08-19  4:35 Zheng Ruoqin
  2019-08-26  2:15 ` Bruce Ashfield
  0 siblings, 1 reply; 2+ messages in thread
From: Zheng Ruoqin @ 2019-08-19  4:35 UTC (permalink / raw)
  To: meta-virtualization

Providing a python3 version of python-amqp.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python-amqp.inc      | 14 ++++++++++++++
 .../recipes-devtools/python/python-amqp_2.4.1.bb | 16 ++--------------
 .../python/python3-amqp_2.4.1.bb                 |  2 ++
 3 files changed, 18 insertions(+), 14 deletions(-)
 create mode 100644 meta-openstack/recipes-devtools/python/python-amqp.inc
 create mode 100644 meta-openstack/recipes-devtools/python/python3-amqp_2.4.1.bb

diff --git a/meta-openstack/recipes-devtools/python/python-amqp.inc b/meta-openstack/recipes-devtools/python/python-amqp.inc
new file mode 100644
index 0000000..8863ac2
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-amqp.inc
@@ -0,0 +1,14 @@
+DESCRIPTION = "Low-level AMQP client for Python"
+HOMEPAGE = "https://pypi.python.org/pypi/amqp/"
+SECTION = "devel/python"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=9d6ba772ac59c08a25a12ce15bd5f27b"
+
+SRC_URI[md5sum] = "9e3d5f1f69d2106c2b3f77d275a79924"
+SRC_URI[sha256sum] = "6816eed27521293ee03aa9ace300a07215b11fee4e845588a9b863a7ba30addb"
+
+inherit pypi
+
+RDEPENDS_${PN} += " \
+        ${PYTHON_PN}-vine \
+        "
diff --git a/meta-openstack/recipes-devtools/python/python-amqp_2.4.1.bb b/meta-openstack/recipes-devtools/python/python-amqp_2.4.1.bb
index dee95db..9d52062 100644
--- a/meta-openstack/recipes-devtools/python/python-amqp_2.4.1.bb
+++ b/meta-openstack/recipes-devtools/python/python-amqp_2.4.1.bb
@@ -1,14 +1,2 @@
-DESCRIPTION = "Low-level AMQP client for Python"
-HOMEPAGE = "https://pypi.python.org/pypi/amqp/"
-SECTION = "devel/python"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=9d6ba772ac59c08a25a12ce15bd5f27b"
-
-SRC_URI[md5sum] = "9e3d5f1f69d2106c2b3f77d275a79924"
-SRC_URI[sha256sum] = "6816eed27521293ee03aa9ace300a07215b11fee4e845588a9b863a7ba30addb"
-
-inherit setuptools pypi
-
-RDEPENDS_${PN} += " \
-        python-vine \
-        "
+inherit setuptools
+require python-amqp.inc
diff --git a/meta-openstack/recipes-devtools/python/python3-amqp_2.4.1.bb b/meta-openstack/recipes-devtools/python/python3-amqp_2.4.1.bb
new file mode 100644
index 0000000..c2710da
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-amqp_2.4.1.bb
@@ -0,0 +1,2 @@
+inherit setuptools3
+require python-amqp.inc
-- 
2.17.1





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

* Re: [PATCH] python-amqp: Add python3 version
  2019-08-19  4:35 [PATCH] python-amqp: Add python3 version Zheng Ruoqin
@ 2019-08-26  2:15 ` Bruce Ashfield
  0 siblings, 0 replies; 2+ messages in thread
From: Bruce Ashfield @ 2019-08-26  2:15 UTC (permalink / raw)
  To: Zheng Ruoqin; +Cc: meta-virtualization

merged

Bruce

On Mon, Aug 19, 2019 at 12:38 AM Zheng Ruoqin
<zhengrq.fnst@cn.fujitsu.com> wrote:
>
> Providing a python3 version of python-amqp.
>
> Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
> ---
>  .../recipes-devtools/python/python-amqp.inc      | 14 ++++++++++++++
>  .../recipes-devtools/python/python-amqp_2.4.1.bb | 16 ++--------------
>  .../python/python3-amqp_2.4.1.bb                 |  2 ++
>  3 files changed, 18 insertions(+), 14 deletions(-)
>  create mode 100644 meta-openstack/recipes-devtools/python/python-amqp.inc
>  create mode 100644 meta-openstack/recipes-devtools/python/python3-amqp_2.4.1.bb
>
> diff --git a/meta-openstack/recipes-devtools/python/python-amqp.inc b/meta-openstack/recipes-devtools/python/python-amqp.inc
> new file mode 100644
> index 0000000..8863ac2
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python-amqp.inc
> @@ -0,0 +1,14 @@
> +DESCRIPTION = "Low-level AMQP client for Python"
> +HOMEPAGE = "https://pypi.python.org/pypi/amqp/"
> +SECTION = "devel/python"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=9d6ba772ac59c08a25a12ce15bd5f27b"
> +
> +SRC_URI[md5sum] = "9e3d5f1f69d2106c2b3f77d275a79924"
> +SRC_URI[sha256sum] = "6816eed27521293ee03aa9ace300a07215b11fee4e845588a9b863a7ba30addb"
> +
> +inherit pypi
> +
> +RDEPENDS_${PN} += " \
> +        ${PYTHON_PN}-vine \
> +        "
> diff --git a/meta-openstack/recipes-devtools/python/python-amqp_2.4.1.bb b/meta-openstack/recipes-devtools/python/python-amqp_2.4.1.bb
> index dee95db..9d52062 100644
> --- a/meta-openstack/recipes-devtools/python/python-amqp_2.4.1.bb
> +++ b/meta-openstack/recipes-devtools/python/python-amqp_2.4.1.bb
> @@ -1,14 +1,2 @@
> -DESCRIPTION = "Low-level AMQP client for Python"
> -HOMEPAGE = "https://pypi.python.org/pypi/amqp/"
> -SECTION = "devel/python"
> -LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=9d6ba772ac59c08a25a12ce15bd5f27b"
> -
> -SRC_URI[md5sum] = "9e3d5f1f69d2106c2b3f77d275a79924"
> -SRC_URI[sha256sum] = "6816eed27521293ee03aa9ace300a07215b11fee4e845588a9b863a7ba30addb"
> -
> -inherit setuptools pypi
> -
> -RDEPENDS_${PN} += " \
> -        python-vine \
> -        "
> +inherit setuptools
> +require python-amqp.inc
> diff --git a/meta-openstack/recipes-devtools/python/python3-amqp_2.4.1.bb b/meta-openstack/recipes-devtools/python/python3-amqp_2.4.1.bb
> new file mode 100644
> index 0000000..c2710da
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python3-amqp_2.4.1.bb
> @@ -0,0 +1,2 @@
> +inherit setuptools3
> +require python-amqp.inc
> --
> 2.17.1
>
>
>
> --
> _______________________________________________
> meta-virtualization mailing list
> meta-virtualization@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/meta-virtualization



-- 
- Thou shalt not follow the NULL pointer, for chaos and madness await
thee at its end
- "Use the force Harry" - Gandalf, Star Trek II


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

end of thread, other threads:[~2019-08-26  2:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-19  4:35 [PATCH] python-amqp: Add python3 version Zheng Ruoqin
2019-08-26  2:15 ` 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.