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

Providing a python3 version of python-vine.

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

diff --git a/meta-openstack/recipes-devtools/python/python-vine.inc b/meta-openstack/recipes-devtools/python/python-vine.inc
new file mode 100644
index 0000000..f098a9d
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python-vine.inc
@@ -0,0 +1,13 @@
+DESCRIPTION = "Python promises"
+HOMEPAGE = "https://pypi.python.org/pypi/vine"
+SECTION = "devel/python"
+LICENSE = "BSD-3-Clause"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=6fadb0e48ceb84b571372dd706ed76a0"
+
+SRC_URI[md5sum] = "9fdb971e7fd15b181b84f3bfcf20d11c"
+SRC_URI[sha256sum] = "52116d59bc45392af9fdd3b75ed98ae48a93e822cee21e5fda249105c59a7a72"
+
+inherit pypi
+
+RDEPENDS_${PN} += " \
+        "
diff --git a/meta-openstack/recipes-devtools/python/python-vine_1.1.4.bb b/meta-openstack/recipes-devtools/python/python-vine_1.1.4.bb
index 268675d..01c2a95 100644
--- a/meta-openstack/recipes-devtools/python/python-vine_1.1.4.bb
+++ b/meta-openstack/recipes-devtools/python/python-vine_1.1.4.bb
@@ -1,13 +1,3 @@
-DESCRIPTION = "Python promises"
-HOMEPAGE = "https://pypi.python.org/pypi/vine"
-SECTION = "devel/python"
-LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=6fadb0e48ceb84b571372dd706ed76a0"
+inherit setuptools
+require python-vine.inc
 
-SRC_URI[md5sum] = "9fdb971e7fd15b181b84f3bfcf20d11c"
-SRC_URI[sha256sum] = "52116d59bc45392af9fdd3b75ed98ae48a93e822cee21e5fda249105c59a7a72"
-
-inherit setuptools pypi
-
-RDEPENDS_${PN} += " \
-        "
diff --git a/meta-openstack/recipes-devtools/python/python3-vine_1.1.4.bb b/meta-openstack/recipes-devtools/python/python3-vine_1.1.4.bb
new file mode 100644
index 0000000..5926702
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-vine_1.1.4.bb
@@ -0,0 +1,3 @@
+inherit setuptools3
+require python-vine.inc
+
-- 
2.17.1





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

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

merged

Bruce

On Fri, Aug 16, 2019 at 6:31 AM Zheng Ruoqin
<zhengrq.fnst@cn.fujitsu.com> wrote:
>
> Providing a python3 version of python-vine.
>
> Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
> ---
>  .../recipes-devtools/python/python-vine.inc        | 13 +++++++++++++
>  .../recipes-devtools/python/python-vine_1.1.4.bb   | 14 ++------------
>  .../recipes-devtools/python/python3-vine_1.1.4.bb  |  3 +++
>  3 files changed, 18 insertions(+), 12 deletions(-)
>  create mode 100644 meta-openstack/recipes-devtools/python/python-vine.inc
>  create mode 100644 meta-openstack/recipes-devtools/python/python3-vine_1.1.4.bb
>
> diff --git a/meta-openstack/recipes-devtools/python/python-vine.inc b/meta-openstack/recipes-devtools/python/python-vine.inc
> new file mode 100644
> index 0000000..f098a9d
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python-vine.inc
> @@ -0,0 +1,13 @@
> +DESCRIPTION = "Python promises"
> +HOMEPAGE = "https://pypi.python.org/pypi/vine"
> +SECTION = "devel/python"
> +LICENSE = "BSD-3-Clause"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=6fadb0e48ceb84b571372dd706ed76a0"
> +
> +SRC_URI[md5sum] = "9fdb971e7fd15b181b84f3bfcf20d11c"
> +SRC_URI[sha256sum] = "52116d59bc45392af9fdd3b75ed98ae48a93e822cee21e5fda249105c59a7a72"
> +
> +inherit pypi
> +
> +RDEPENDS_${PN} += " \
> +        "
> diff --git a/meta-openstack/recipes-devtools/python/python-vine_1.1.4.bb b/meta-openstack/recipes-devtools/python/python-vine_1.1.4.bb
> index 268675d..01c2a95 100644
> --- a/meta-openstack/recipes-devtools/python/python-vine_1.1.4.bb
> +++ b/meta-openstack/recipes-devtools/python/python-vine_1.1.4.bb
> @@ -1,13 +1,3 @@
> -DESCRIPTION = "Python promises"
> -HOMEPAGE = "https://pypi.python.org/pypi/vine"
> -SECTION = "devel/python"
> -LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=6fadb0e48ceb84b571372dd706ed76a0"
> +inherit setuptools
> +require python-vine.inc
>
> -SRC_URI[md5sum] = "9fdb971e7fd15b181b84f3bfcf20d11c"
> -SRC_URI[sha256sum] = "52116d59bc45392af9fdd3b75ed98ae48a93e822cee21e5fda249105c59a7a72"
> -
> -inherit setuptools pypi
> -
> -RDEPENDS_${PN} += " \
> -        "
> diff --git a/meta-openstack/recipes-devtools/python/python3-vine_1.1.4.bb b/meta-openstack/recipes-devtools/python/python3-vine_1.1.4.bb
> new file mode 100644
> index 0000000..5926702
> --- /dev/null
> +++ b/meta-openstack/recipes-devtools/python/python3-vine_1.1.4.bb
> @@ -0,0 +1,3 @@
> +inherit setuptools3
> +require python-vine.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-19  2:30 UTC | newest]

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