All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0
@ 2020-07-20 14:36 zangrc
  2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-designateclient: Change to python3 zangrc
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: zangrc @ 2020-07-20 14:36 UTC (permalink / raw)
  To: meta-virtualization

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python3-deprecation_1.0.1.bb                |  2 --
 ...on-deprecation.inc => python3-deprecation_2.1.0.bb} | 10 +++++++---
 2 files changed, 7 insertions(+), 5 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python3-deprecation_1.0.1.bb
 rename meta-openstack/recipes-devtools/python/{python-deprecation.inc => python3-deprecation_2.1.0.bb} (53%)

diff --git a/meta-openstack/recipes-devtools/python/python3-deprecation_1.0.1.bb b/meta-openstack/recipes-devtools/python/python3-deprecation_1.0.1.bb
deleted file mode 100644
index d2e0f1c..0000000
--- a/meta-openstack/recipes-devtools/python/python3-deprecation_1.0.1.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require python-deprecation.inc
-inherit setuptools3
diff --git a/meta-openstack/recipes-devtools/python/python-deprecation.inc b/meta-openstack/recipes-devtools/python/python3-deprecation_2.1.0.bb
similarity index 53%
rename from meta-openstack/recipes-devtools/python/python-deprecation.inc
rename to meta-openstack/recipes-devtools/python/python3-deprecation_2.1.0.bb
index eec4dd1..c819529 100644
--- a/meta-openstack/recipes-devtools/python/python-deprecation.inc
+++ b/meta-openstack/recipes-devtools/python/python3-deprecation_2.1.0.bb
@@ -4,7 +4,11 @@ SECTION = "devel/python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
 
-SRC_URI[md5sum] = "d8a318c66d442dc4b900e070267ed9aa"
-SRC_URI[sha256sum] = "b9bff5cc91f601ef2a8a0200bc6cde3f18a48c2ed3d1ecbfc16076b14b3ad935"
+SRC_URI[md5sum] = "6b79c6572fb241e3cecbbd7d539bb66b"
+SRC_URI[sha256sum] = "72b3bde64e5d778694b0cf68178aed03d15e15477116add3fb773e581f9518ff"
 
-inherit pypi
+RDEPENDS_${PN} += "\
+	python3-packaging \
+"
+
+inherit setuptools3 pypi
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-designateclient: Change to python3
  2020-07-20 14:36 [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0 zangrc
@ 2020-07-20 14:36 ` zangrc
  2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-django-appconf: upgrade 1.0.1 -> 1.0.4 zangrc
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: zangrc @ 2020-07-20 14:36 UTC (permalink / raw)
  To: meta-virtualization

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python-designateclient_git.bb      | 37 -------------------
 .../python/python3-designateclient_4.0.0.bb   | 34 +++++++++++++++++
 2 files changed, 34 insertions(+), 37 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-designateclient_git.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python3-designateclient_4.0.0.bb

diff --git a/meta-openstack/recipes-devtools/python/python-designateclient_git.bb b/meta-openstack/recipes-devtools/python/python-designateclient_git.bb
deleted file mode 100644
index fdc92c2..0000000
--- a/meta-openstack/recipes-devtools/python/python-designateclient_git.bb
+++ /dev/null
@@ -1,37 +0,0 @@
-DESCRIPTION = "Python bindings to the Designate API"
-HOMEPAGE = "https://github.com/openstack/python-designateclient"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
-
-DEPENDS += " \
-        python-pip \
-        python-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-        "
-
-RDEPENDS_${PN} += " \
-        python-cliff \
-        python-jsonschema \
-        python-osc-lib \
-        python-oslo.utils \
-        python-pbr \
-        python-keystoneauth1 \
-        python-requests \
-        python-six \
-        python-stevedore \
-        python-debtcollector \
-        "
-
-SRCNAME = "designateclient"
-SRC_URI = "git://github.com/openstack/${BPN}.git;branch=master"
-
-PV = "3.0.0+git${SRCPV}"
-SRCREV = "093d8d7170cbf6ef8c7a7c0ff2a4dcd7ecd6361b"
-S = "${WORKDIR}/git"
-
-inherit setuptools3
diff --git a/meta-openstack/recipes-devtools/python/python3-designateclient_4.0.0.bb b/meta-openstack/recipes-devtools/python/python3-designateclient_4.0.0.bb
new file mode 100644
index 0000000..9079c87
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-designateclient_4.0.0.bb
@@ -0,0 +1,34 @@
+DESCRIPTION = "Python bindings to the Designate API"
+HOMEPAGE = "https://github.com/openstack/python-designateclient"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
+
+DEPENDS += " \
+        python3-pip \
+        python3-pbr \
+        "
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        python3-pbr-native \
+        "
+SRC_URI[md5sum] = "ad4ca221c5209261cf0eaf2824b07b55"
+SRC_URI[sha256sum] = "d61e7999f0cbb55d2b6e7dec7a6232389d3034de27c1e80b7d5c69d60dd58dbf"
+
+RDEPENDS_${PN} += " \
+        python3-cliff \
+        python3-jsonschema \
+        python3-osc-lib \
+        python3-oslo.utils \
+        python3-pbr \
+        python3-keystoneauth1 \
+        python3-requests \
+        python3-six \
+        python3-stevedore \
+        python3-debtcollector \
+        "
+
+PYPI_PACKAGE = "python-designateclient"
+
+inherit setuptools3 pypi
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-django-appconf: upgrade 1.0.1 -> 1.0.4
  2020-07-20 14:36 [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0 zangrc
  2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-designateclient: Change to python3 zangrc
@ 2020-07-20 14:36 ` zangrc
  2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-django-babel: Change to python3 zangrc
  2020-07-20 18:51 ` [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0 Bruce Ashfield
  3 siblings, 0 replies; 5+ messages in thread
From: zangrc @ 2020-07-20 14:36 UTC (permalink / raw)
  To: meta-virtualization

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python-django-appconf_1.0.1.bb             |  2 --
 .../python/python3-django-appconf_1.0.1.bb            |  2 --
 ...go-appconf.inc => python3-django-appconf_1.0.4.bb} | 11 ++++++-----
 3 files changed, 6 insertions(+), 9 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-django-appconf_1.0.1.bb
 delete mode 100644 meta-openstack/recipes-devtools/python/python3-django-appconf_1.0.1.bb
 rename meta-openstack/recipes-devtools/python/{python-django-appconf.inc => python3-django-appconf_1.0.4.bb} (55%)

diff --git a/meta-openstack/recipes-devtools/python/python-django-appconf_1.0.1.bb b/meta-openstack/recipes-devtools/python/python-django-appconf_1.0.1.bb
deleted file mode 100644
index 6cc57ba..0000000
--- a/meta-openstack/recipes-devtools/python/python-django-appconf_1.0.1.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require python-django-appconf.inc
-inherit setuptools3
diff --git a/meta-openstack/recipes-devtools/python/python3-django-appconf_1.0.1.bb b/meta-openstack/recipes-devtools/python/python3-django-appconf_1.0.1.bb
deleted file mode 100644
index 6cc57ba..0000000
--- a/meta-openstack/recipes-devtools/python/python3-django-appconf_1.0.1.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require python-django-appconf.inc
-inherit setuptools3
diff --git a/meta-openstack/recipes-devtools/python/python-django-appconf.inc b/meta-openstack/recipes-devtools/python/python3-django-appconf_1.0.4.bb
similarity index 55%
rename from meta-openstack/recipes-devtools/python/python-django-appconf.inc
rename to meta-openstack/recipes-devtools/python/python3-django-appconf_1.0.4.bb
index 00f2e3e..0fb09e1 100644
--- a/meta-openstack/recipes-devtools/python/python-django-appconf.inc
+++ b/meta-openstack/recipes-devtools/python/python3-django-appconf_1.0.4.bb
@@ -4,10 +4,11 @@ SECTION = "devel/python"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3f34b9b2f6413fd5f91869fa7e992457"
 
-SRC_URI[md5sum] = "29c87a00f0d098b90f3ac6113ae6e52d"
-SRC_URI[sha256sum] = "ba1375fb1024e8e91547504d4392321795c989fde500b96ebc7c93884f786e60"
+SRC_URI[md5sum] = "da4a355140acaa3eeb236987ab174e9d"
+SRC_URI[sha256sum] = "be58deb54a43d77d2e1621fe59f787681376d3cd0b8bd8e4758ef6c3a6453380"
 
-inherit pypi
+inherit setuptools3 pypi
 
-#RDEPENDS_${PN} += "${PYTHON_PN}-six \
-#	"
+RDEPENDS_${PN} += " \
+	${PYTHON_PN}-django \
+	"
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-django-babel: Change to python3
  2020-07-20 14:36 [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0 zangrc
  2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-designateclient: Change to python3 zangrc
  2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-django-appconf: upgrade 1.0.1 -> 1.0.4 zangrc
@ 2020-07-20 14:36 ` zangrc
  2020-07-20 18:51 ` [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0 Bruce Ashfield
  3 siblings, 0 replies; 5+ messages in thread
From: zangrc @ 2020-07-20 14:36 UTC (permalink / raw)
  To: meta-virtualization

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 ...l_git.bb => python3-django-babel_0.6.2.bb} | 19 ++++++-------------
 1 file changed, 6 insertions(+), 13 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-django-babel_git.bb => python3-django-babel_0.6.2.bb} (50%)

diff --git a/meta-openstack/recipes-devtools/python/python-django-babel_git.bb b/meta-openstack/recipes-devtools/python/python3-django-babel_0.6.2.bb
similarity index 50%
rename from meta-openstack/recipes-devtools/python/python-django-babel_git.bb
rename to meta-openstack/recipes-devtools/python/python3-django-babel_0.6.2.bb
index 3f4f9e3..80c5405 100644
--- a/meta-openstack/recipes-devtools/python/python-django-babel_git.bb
+++ b/meta-openstack/recipes-devtools/python/python3-django-babel_0.6.2.bb
@@ -4,24 +4,17 @@ SECTION = "devel/python"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://COPYING;md5=5ae97ab65116b8d7890c59de57577b46"
 
-SRCNAME = "django-babel"
+inherit setuptools3 pypi
 
-PV = "0.5.1+git${SRCPV}"
-SRCREV = "88b389381c0e269605311ae07029555b65a86bc5"
-
-SRC_URI = "git://github.com/python-babel/${SRCNAME}.git \
-          "
-
-S = "${WORKDIR}/git"
-
-inherit setuptools3
+SRC_URI[md5sum] = "a5483952426d1cd749e7204902b34d63"
+SRC_URI[sha256sum] = "1e621b198e1f98ae4f93e43463cf78cbedbace475eb6e0853ba1e2567f3b8119"
 
 DEPENDS += " \
-        python-pip \
+        python3-pip \
         "
 
 RDEPENDS_${PN} += " \
-        python-django \
-        python-babel \
+        python3-django \
+        python3-babel \
         "
 
-- 
2.25.1




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

* Re: [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0
  2020-07-20 14:36 [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0 zangrc
                   ` (2 preceding siblings ...)
  2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-django-babel: Change to python3 zangrc
@ 2020-07-20 18:51 ` Bruce Ashfield
  3 siblings, 0 replies; 5+ messages in thread
From: Bruce Ashfield @ 2020-07-20 18:51 UTC (permalink / raw)
  To: zangrc; +Cc: meta-virtualization

merged.

Bruce



In message: [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0
on 20/07/2020 zangrc wrote:

> Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
> ---
>  .../python/python3-deprecation_1.0.1.bb                |  2 --
>  ...on-deprecation.inc => python3-deprecation_2.1.0.bb} | 10 +++++++---
>  2 files changed, 7 insertions(+), 5 deletions(-)
>  delete mode 100644 meta-openstack/recipes-devtools/python/python3-deprecation_1.0.1.bb
>  rename meta-openstack/recipes-devtools/python/{python-deprecation.inc => python3-deprecation_2.1.0.bb} (53%)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python3-deprecation_1.0.1.bb b/meta-openstack/recipes-devtools/python/python3-deprecation_1.0.1.bb
> deleted file mode 100644
> index d2e0f1c..0000000
> --- a/meta-openstack/recipes-devtools/python/python3-deprecation_1.0.1.bb
> +++ /dev/null
> @@ -1,2 +0,0 @@
> -require python-deprecation.inc
> -inherit setuptools3
> diff --git a/meta-openstack/recipes-devtools/python/python-deprecation.inc b/meta-openstack/recipes-devtools/python/python3-deprecation_2.1.0.bb
> similarity index 53%
> rename from meta-openstack/recipes-devtools/python/python-deprecation.inc
> rename to meta-openstack/recipes-devtools/python/python3-deprecation_2.1.0.bb
> index eec4dd1..c819529 100644
> --- a/meta-openstack/recipes-devtools/python/python-deprecation.inc
> +++ b/meta-openstack/recipes-devtools/python/python3-deprecation_2.1.0.bb
> @@ -4,7 +4,11 @@ SECTION = "devel/python"
>  LICENSE = "Apache-2.0"
>  LIC_FILES_CHKSUM = "file://${S}/LICENSE;md5=e3fc50a88d0a364313df4b21ef20c29e"
>  
> -SRC_URI[md5sum] = "d8a318c66d442dc4b900e070267ed9aa"
> -SRC_URI[sha256sum] = "b9bff5cc91f601ef2a8a0200bc6cde3f18a48c2ed3d1ecbfc16076b14b3ad935"
> +SRC_URI[md5sum] = "6b79c6572fb241e3cecbbd7d539bb66b"
> +SRC_URI[sha256sum] = "72b3bde64e5d778694b0cf68178aed03d15e15477116add3fb773e581f9518ff"
>  
> -inherit pypi
> +RDEPENDS_${PN} += "\
> +	python3-packaging \
> +"
> +
> +inherit setuptools3 pypi
> -- 
> 2.25.1
> 
> 
> 

> 



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

end of thread, other threads:[~2020-07-20 18:51 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-20 14:36 [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0 zangrc
2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-designateclient: Change to python3 zangrc
2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-django-appconf: upgrade 1.0.1 -> 1.0.4 zangrc
2020-07-20 14:36 ` [meta-virtualization] [PATCH] python3-django-babel: Change to python3 zangrc
2020-07-20 18:51 ` [meta-virtualization] [PATCH] python3-deprecation: upgrade 1.0.1 -> 2.1.0 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.