All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] python-statsd: Add python3 version
@ 2019-09-09  7:43 Zang Ruochen
  2019-09-09 17:36 ` Bruce Ashfield
  0 siblings, 1 reply; 2+ messages in thread
From: Zang Ruochen @ 2019-09-09  7:43 UTC (permalink / raw)
  To: meta-virtualization

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-statsd.inc  | 13 +++++++++++++
 .../recipes-devtools/python/python-statsd_3.3.0.bb        | 15 +--------------
 .../recipes-devtools/python/python3-statsd_3.3.0.bb       |  2 ++
 3 files changed, 16 insertions(+), 14 deletions(-)
 create mode 100644 meta-openstack/recipes-devtools/python/python-statsd.inc
 create mode 100644 meta-openstack/recipes-devtools/python/python3-statsd_3.3.0.bb

diff --git a/meta-openstack/recipes-devtools/python/python-statsd.inc b/meta-openstack/recipes-devtools/python/python-statsd.inc
new file mode 100644
index 0000000..33257b9
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-statsd.inc
@@ -0,0 +1,13 @@
+DESCRIPTION = "A simple statsd client."
+HOMEPAGE = "https://github.com/jsocol/pystatsd"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=4d8aa8ac1dc54b8aee4054bd5e5c61bd"
+
+inherit pypi
+
+SRC_URI[md5sum] = "b397ccf880f37cf099e775907ebf7a46"
+SRC_URI[sha256sum] = "e3e6db4c246f7c59003e51c9720a51a7f39a396541cb9b147ff4b14d15b5dd1f"
+
+RDEPENDS_${PN} += " \
+        "
diff --git a/meta-openstack/recipes-devtools/python/python-statsd_3.3.0.bb b/meta-openstack/recipes-devtools/python/python-statsd_3.3.0.bb
index 7400129..51b179b 100644
--- a/meta-openstack/recipes-devtools/python/python-statsd_3.3.0.bb
+++ b/meta-openstack/recipes-devtools/python/python-statsd_3.3.0.bb
@@ -1,15 +1,2 @@
-DESCRIPTION = "A simple statsd client."
-HOMEPAGE = "https://github.com/jsocol/pystatsd"
-SECTION = "devel/python"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=4d8aa8ac1dc54b8aee4054bd5e5c61bd"
-
-inherit pypi
-
-SRC_URI[md5sum] = "b397ccf880f37cf099e775907ebf7a46"
-SRC_URI[sha256sum] = "e3e6db4c246f7c59003e51c9720a51a7f39a396541cb9b147ff4b14d15b5dd1f"
-
 inherit setuptools
-
-RDEPENDS_${PN} += " \
-        "
+require python-statsd.inc
diff --git a/meta-openstack/recipes-devtools/python/python3-statsd_3.3.0.bb b/meta-openstack/recipes-devtools/python/python3-statsd_3.3.0.bb
new file mode 100644
index 0000000..51b179b
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-statsd_3.3.0.bb
@@ -0,0 +1,2 @@
+inherit setuptools3
+require python-statsd.inc
-- 
2.7.4





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

* Re: [PATCH] python-statsd: Add python3 version
  2019-09-09  7:43 [PATCH] python-statsd: Add python3 version Zang Ruochen
@ 2019-09-09 17:36 ` Bruce Ashfield
  0 siblings, 0 replies; 2+ messages in thread
From: Bruce Ashfield @ 2019-09-09 17:36 UTC (permalink / raw)
  To: Zang Ruochen; +Cc: meta-virtualization

merged

Bruce

On Mon, Sep 9, 2019 at 3:44 AM Zang Ruochen <zangrc.fnst@cn.fujitsu.com> wrote:
>
> Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
> ---
>  meta-openstack/recipes-devtools/python/python-statsd.inc  | 13 +++++++++++++
>  .../recipes-devtools/python/python-statsd_3.3.0.bb        | 15 +--------------
>  .../recipes-devtools/python/python3-statsd_3.3.0.bb       |  2 ++
>  3 files changed, 16 insertions(+), 14 deletions(-)
>  create mode 100644 meta-openstack/recipes-devtools/python/python-statsd.inc
>  create mode 100644 meta-openstack/recipes-devtools/python/python3-statsd_3.3.0.bb
>
> diff --git a/meta-openstack/recipes-devtools/python/python-statsd.inc b/meta-openstack/recipes-devtools/python/python-statsd.inc
> new file mode 100644
> index 0000000..33257b9
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python-statsd.inc
> @@ -0,0 +1,13 @@
> +DESCRIPTION = "A simple statsd client."
> +HOMEPAGE = "https://github.com/jsocol/pystatsd"
> +SECTION = "devel/python"
> +LICENSE = "MIT"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=4d8aa8ac1dc54b8aee4054bd5e5c61bd"
> +
> +inherit pypi
> +
> +SRC_URI[md5sum] = "b397ccf880f37cf099e775907ebf7a46"
> +SRC_URI[sha256sum] = "e3e6db4c246f7c59003e51c9720a51a7f39a396541cb9b147ff4b14d15b5dd1f"
> +
> +RDEPENDS_${PN} += " \
> +        "
> diff --git a/meta-openstack/recipes-devtools/python/python-statsd_3.3.0.bb b/meta-openstack/recipes-devtools/python/python-statsd_3.3.0.bb
> index 7400129..51b179b 100644
> --- a/meta-openstack/recipes-devtools/python/python-statsd_3.3.0.bb
> +++ b/meta-openstack/recipes-devtools/python/python-statsd_3.3.0.bb
> @@ -1,15 +1,2 @@
> -DESCRIPTION = "A simple statsd client."
> -HOMEPAGE = "https://github.com/jsocol/pystatsd"
> -SECTION = "devel/python"
> -LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=4d8aa8ac1dc54b8aee4054bd5e5c61bd"
> -
> -inherit pypi
> -
> -SRC_URI[md5sum] = "b397ccf880f37cf099e775907ebf7a46"
> -SRC_URI[sha256sum] = "e3e6db4c246f7c59003e51c9720a51a7f39a396541cb9b147ff4b14d15b5dd1f"
> -
>  inherit setuptools
> -
> -RDEPENDS_${PN} += " \
> -        "
> +require python-statsd.inc
> diff --git a/meta-openstack/recipes-devtools/python/python3-statsd_3.3.0.bb b/meta-openstack/recipes-devtools/python/python3-statsd_3.3.0.bb
> new file mode 100644
> index 0000000..51b179b
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python3-statsd_3.3.0.bb
> @@ -0,0 +1,2 @@
> +inherit setuptools3
> +require python-statsd.inc
> --
> 2.7.4
>
>
>
> --
> _______________________________________________
> 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-09-09 17:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-09  7:43 [PATCH] python-statsd: Add python3 version Zang Ruochen
2019-09-09 17:36 ` 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.