All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization] [PATCH] python3-openstack-nose: change to python3
@ 2020-09-29 14:57   ` zangrc
  2020-09-29 14:58     ` [meta-virtualization] [PATCH] python3-oslo.db: " zangrc
  0 siblings, 1 reply; 9+ messages in thread
From: zangrc @ 2020-09-29 14:57 UTC (permalink / raw)
  To: meta-virtualization

Because python2 is no longer maintained, bb file is changed to python3 version.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 ...nstack-nose_0.11.bb => python3-openstack-nose_0.11.bb} | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-openstack-nose_0.11.bb => python3-openstack-nose_0.11.bb} (85%)

diff --git a/meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb b/meta-openstack/recipes-devtools/python/python3-openstack-nose_0.11.bb
similarity index 85%
rename from meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb
rename to meta-openstack/recipes-devtools/python/python3-openstack-nose_0.11.bb
index 42d836f..9cdc9a2 100644
--- a/meta-openstack/recipes-devtools/python/python-openstack-nose_0.11.bb
+++ b/meta-openstack/recipes-devtools/python/python3-openstack-nose_0.11.bb
@@ -15,12 +15,12 @@ SRC_URI[sha256sum] = "a28d44dc23de8164d7893da7020404c73c4325b46d5507911f0257c15f
 inherit setuptools3 pypi
 
 DEPENDS += " \
-        python-pip \
+        python3-pip \
         "
 
 RDEPENDS_${PN} += " \
-        python-nose \
-        python-colorama \
-        python-termcolor \
+        python3-nose \
+        python3-colorama \
+        python3-termcolor \
         "
 
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-ordereddict: Consolidate in a single file
@ 2020-09-29 14:58 ` zangrc
  2020-09-29 14:57   ` [meta-virtualization] [PATCH] python3-openstack-nose: change to python3 zangrc
  0 siblings, 1 reply; 9+ messages in thread
From: zangrc @ 2020-09-29 14:58 UTC (permalink / raw)
  To: meta-virtualization

Consolidate inc and bb files into a single bb file.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python-ordereddict.inc             | 21 -----------------
 .../python/python3-ordereddict_1.1.bb         | 23 +++++++++++++++++--
 2 files changed, 21 insertions(+), 23 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-ordereddict.inc

diff --git a/meta-openstack/recipes-devtools/python/python-ordereddict.inc b/meta-openstack/recipes-devtools/python/python-ordereddict.inc
deleted file mode 100644
index fff4bf6..0000000
--- a/meta-openstack/recipes-devtools/python/python-ordereddict.inc
+++ /dev/null
@@ -1,21 +0,0 @@
-DESCRIPTION = "A drop-in substitute for Py2.7's new collections.OrderedDict that works in Python 2.4-2.6."
-HOMEPAGE = "https://pypi.python.org/pypi/ordereddict"
-SECTION = "devel/python"
-LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=7f0267460024072a9bbf135ee87a41b8"
-
-SRC_URI[md5sum] = "a0ed854ee442051b249bfad0f638bbec"
-SRC_URI[sha256sum] = "1c35b4ac206cef2d24816c89f89cf289dd3d38cf7c449bb3fab7bf6d43f01b1f"
-
-inherit pypi
-
-# DEPENDS_default: python-pip
-
-DEPENDS += " \
-        ${PYTHON_PN}-pip \
-        "
-
-# RDEPENDS_default: 
-RDEPENDS_${PN} += " \
-    ${PYTHON_PN}-pip \
-    "
diff --git a/meta-openstack/recipes-devtools/python/python3-ordereddict_1.1.bb b/meta-openstack/recipes-devtools/python/python3-ordereddict_1.1.bb
index 46c08d0..9fa676b 100644
--- a/meta-openstack/recipes-devtools/python/python3-ordereddict_1.1.bb
+++ b/meta-openstack/recipes-devtools/python/python3-ordereddict_1.1.bb
@@ -1,2 +1,21 @@
-require python-ordereddict.inc
-inherit setuptools3
+DESCRIPTION = "A drop-in substitute for Py2.7's new collections.OrderedDict that works in Python 2.4-2.6."
+HOMEPAGE = "https://pypi.python.org/pypi/ordereddict"
+SECTION = "devel/python"
+LICENSE = "MIT"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=7f0267460024072a9bbf135ee87a41b8"
+
+SRC_URI[md5sum] = "a0ed854ee442051b249bfad0f638bbec"
+SRC_URI[sha256sum] = "1c35b4ac206cef2d24816c89f89cf289dd3d38cf7c449bb3fab7bf6d43f01b1f"
+
+inherit setuptools3 pypi
+
+# DEPENDS_default: python-pip
+
+DEPENDS += " \
+        ${PYTHON_PN}-pip \
+        "
+
+# RDEPENDS_default: 
+RDEPENDS_${PN} += " \
+    ${PYTHON_PN}-pip \
+    "
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-oslo.cache: change to python3
@ 2020-09-29 14:58 zangrc
  2020-09-29 14:58 ` [meta-virtualization] [PATCH] python3-ordereddict: Consolidate in a single file zangrc
  0 siblings, 1 reply; 9+ messages in thread
From: zangrc @ 2020-09-29 14:58 UTC (permalink / raw)
  To: meta-virtualization

Because python2 is no longer maintained, bb file is changed to python3 version.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 ...cache_git.bb => python3-oslo.cache_git.bb} | 24 +++++++++----------
 1 file changed, 12 insertions(+), 12 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-oslo.cache_git.bb => python3-oslo.cache_git.bb} (54%)

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.cache_git.bb b/meta-openstack/recipes-devtools/python/python3-oslo.cache_git.bb
similarity index 54%
rename from meta-openstack/recipes-devtools/python/python-oslo.cache_git.bb
rename to meta-openstack/recipes-devtools/python/python3-oslo.cache_git.bb
index f109b8a..604abca 100644
--- a/meta-openstack/recipes-devtools/python/python-oslo.cache_git.bb
+++ b/meta-openstack/recipes-devtools/python/python3-oslo.cache_git.bb
@@ -4,11 +4,11 @@ SECTION = "devel/python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
 
-PV = "1.14.0+git${SRCPV}"
-SRCREV = "f5b6ddf7d18a7e06e19712ca7a2509d658a08c4d"
+PV = "2.6.1+git${SRCPV}"
+SRCREV = "df075b2465195de53e42897e7d9be6c6c375ce5e"
 
 SRCNAME = "oslo.cache"
-SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/pike"
+SRC_URI = "git://github.com/openstack/${SRCNAME}.git"
 
 S = "${WORKDIR}/git"
 
@@ -17,21 +17,21 @@ inherit setuptools3
 # DEPENDS_default: python-pip
 
 DEPENDS += " \
-        python-pip \
-        python-pbr \
+        python3-pip \
+        python3-pbr \
         "
 
 # Satisfy setup.py 'setup_requires'
 DEPENDS += " \
-        python-pbr-native \
+        python3-pbr-native \
         "
 
 # RDEPENDS_default: 
 RDEPENDS_${PN} += " \
-        python-dogpile.cache \
-        python-six \
-        python-oslo.config \
-        python-oslo.i18n \
-        python-oslo.log \
-        python-oslo.utils \
+        python3-dogpile.cache \
+        python3-six \
+        python3-oslo.config \
+        python3-oslo.i18n \
+        python3-oslo.log \
+        python3-oslo.utils \
         "
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-oslo.db: change to python3
@ 2020-09-29 14:58     ` zangrc
  2020-09-29 14:58       ` [meta-virtualization] [PATCH] python3-oslo.i18n: upgrade 3.23.1 -> 5.0.1 zangrc
  0 siblings, 1 reply; 9+ messages in thread
From: zangrc @ 2020-09-29 14:58 UTC (permalink / raw)
  To: meta-virtualization

Because python2 is no longer maintained, bb file is changed to python3 version.

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

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.db_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.db_git.bb
deleted file mode 100644
index a330ed4..0000000
--- a/meta-openstack/recipes-devtools/python/python-oslo.db_git.bb
+++ /dev/null
@@ -1,38 +0,0 @@
-DESCRIPTION = "oslo.db library"
-HOMEPAGE = "http://launchpad.net/oslo"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
-
-PV = "4.25.0+git${SRCPV}"
-SRCREV = "71607d59ec5c02d7beb5109c500aa9b6a0d9ee2c"
-
-SRCNAME = "oslo.db"
-SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/pike"
-
-S = "${WORKDIR}/git"
-
-inherit setuptools3
-
-DEPENDS += " \
-        python-pip \
-        python-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-        "
-
-RDEPENDS_${PN} += " \
-       python-six \
-       python-alembic \
-       python-oslo.config \
-       python-oslo.i18n \
-       python-oslo.utils \
-       python-sqlalchemy \
-       python-sqlalchemy-migrate \
-       python-stevedore \
-       python-pbr \
-       python-debtcollector \
-       "
diff --git a/meta-openstack/recipes-devtools/python/python3-oslo.db_git.bb b/meta-openstack/recipes-devtools/python/python3-oslo.db_git.bb
new file mode 100644
index 0000000..3a78391
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-oslo.db_git.bb
@@ -0,0 +1,38 @@
+DESCRIPTION = "oslo.db library"
+HOMEPAGE = "http://launchpad.net/oslo"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
+
+PV = "8.4.0+git${SRCPV}"
+SRCREV = "e42c73343f640eaacb0a76d204eb55c85de4f5d5"
+
+SRCNAME = "oslo.db"
+SRC_URI = "git://github.com/openstack/${SRCNAME}.git"
+
+S = "${WORKDIR}/git"
+
+inherit setuptools3
+
+DEPENDS += " \
+        python3-pip \
+        python3-pbr \
+        "
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        python3-pbr-native \
+        "
+
+RDEPENDS_${PN} += " \
+       python3-six \
+       python3-alembic \
+       python3-oslo.config \
+       python3-oslo.i18n \
+       python3-oslo.utils \
+       python3-sqlalchemy \
+       python3-sqlalchemy-migrate \
+       python3-stevedore \
+       python3-pbr \
+       python3-debtcollector \
+       "
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-oslo.i18n: upgrade 3.23.1 -> 5.0.1
@ 2020-09-29 14:58       ` zangrc
  2020-09-29 14:59         ` [meta-virtualization] [PATCH] python3-oslo.messaging: change to python3 zangrc
  0 siblings, 1 reply; 9+ messages in thread
From: zangrc @ 2020-09-29 14:58 UTC (permalink / raw)
  To: meta-virtualization

Consolidate inc and bb files into a single bb file.
Since python2 is no longer maintained, the recipe of python2 is removed.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/python-oslo.i18n.inc               | 32 -----------------
 .../python/python-oslo.i18n_3.23.1.bb         | 33 ------------------
 .../python/python3-oslo.i18n_git.bb           | 34 ++++++++++++++++++-
 3 files changed, 33 insertions(+), 66 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.i18n.inc
 delete mode 100644 meta-openstack/recipes-devtools/python/python-oslo.i18n_3.23.1.bb

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.i18n.inc b/meta-openstack/recipes-devtools/python/python-oslo.i18n.inc
deleted file mode 100644
index 3c0e74c..0000000
--- a/meta-openstack/recipes-devtools/python/python-oslo.i18n.inc
+++ /dev/null
@@ -1,32 +0,0 @@
-DESCRIPTION = "oslo.i18n library"
-HOMEPAGE = "http://launchpad.net/oslo"
-SECTION = "devel/python"
-LICENSE = "Apache-2"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
-
-PV = "3.17.0+git${SRCPV}"
-SRCREV = "f2729cd36f8694a6ec53a0e700599ddf4427440d"
-
-SRCNAME = "oslo.i18n"
-SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/pike"
-
-S = "${WORKDIR}/git"
-
-# DEPENDS_default: python-pip
-
-DEPENDS += " \
-        ${PYTHON_PN}-pip \
-        ${PYTHON_PN}-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        ${PYTHON_PN}-pbr-native \
-        "
-
-# RDEPENDS_default: 
-RDEPENDS_${PN} += " \
-        ${PYTHON_PN}-babel \
-        ${PYTHON_PN}-pbr \
-        ${PYTHON_PN}-six \
-        "
diff --git a/meta-openstack/recipes-devtools/python/python-oslo.i18n_3.23.1.bb b/meta-openstack/recipes-devtools/python/python-oslo.i18n_3.23.1.bb
deleted file mode 100644
index 1dedfa2..0000000
--- a/meta-openstack/recipes-devtools/python/python-oslo.i18n_3.23.1.bb
+++ /dev/null
@@ -1,33 +0,0 @@
-DESCRIPTION = "oslo.i18n library"
-HOMEPAGE = "http://launchpad.net/oslo"
-SECTION = "devel/python"
-LICENSE = "Apache-2"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
-
-SRCREV = "20bbee510b9714075b7f48f7c3968d7e2bd21a8a"
-
-SRCNAME = "oslo.i18n"
-SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=master"
-
-S = "${WORKDIR}/git"
-
-inherit setuptools3
-
-# DEPENDS_default: python-pip
-
-DEPENDS += " \
-        python-pip \
-        python-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-        "
-
-# RDEPENDS_default: 
-RDEPENDS_${PN} += " \
-        python-babel \
-        python-pbr \
-        python-six \
-        "
diff --git a/meta-openstack/recipes-devtools/python/python3-oslo.i18n_git.bb b/meta-openstack/recipes-devtools/python/python3-oslo.i18n_git.bb
index 5a06622..6cfd374 100644
--- a/meta-openstack/recipes-devtools/python/python3-oslo.i18n_git.bb
+++ b/meta-openstack/recipes-devtools/python/python3-oslo.i18n_git.bb
@@ -1,2 +1,34 @@
+DESCRIPTION = "oslo.i18n library"
+HOMEPAGE = "http://launchpad.net/oslo"
+SECTION = "devel/python"
+LICENSE = "Apache-2"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=34400b68072d710fecd0a2940a0d1658"
+
+PV = "5.0.1+git${SRCPV}"
+SRCREV = "73187bd86903fc87665a829c9a0c714db6aa3022"
+
+SRCNAME = "oslo.i18n"
+SRC_URI = "git://github.com/openstack/${SRCNAME}.git"
+
 inherit setuptools3
-require python-oslo.i18n.inc
+
+S = "${WORKDIR}/git"
+
+# DEPENDS_default: python-pip
+
+DEPENDS += " \
+        ${PYTHON_PN}-pip \
+        ${PYTHON_PN}-pbr \
+        "
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        ${PYTHON_PN}-pbr-native \
+        "
+
+# RDEPENDS_default: 
+RDEPENDS_${PN} += " \
+        ${PYTHON_PN}-babel \
+        ${PYTHON_PN}-pbr \
+        ${PYTHON_PN}-six \
+        "
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-oslo.messaging: change to python3
@ 2020-09-29 14:59         ` zangrc
  2020-09-29 14:59           ` [meta-virtualization] [PATCH] python3-oslo.reports: Change " zangrc
  0 siblings, 1 reply; 9+ messages in thread
From: zangrc @ 2020-09-29 14:59 UTC (permalink / raw)
  To: meta-virtualization

Because python2 is no longer maintained, bb file is changed to python3 version.

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

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb b/meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb
deleted file mode 100644
index 28404e3..0000000
--- a/meta-openstack/recipes-devtools/python/python-oslo.messaging_git.bb
+++ /dev/null
@@ -1,52 +0,0 @@
-DESCRIPTION = "Oslo Messaging API"
-HOMEPAGE = "https://launchpad.net/oslo"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=c46f31914956e4579f9b488e71415ac8"
-
-SRCNAME = "oslo.messaging"
-SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/pike"
-
-PV = "5.30.1+git${SRCPV}"
-SRCREV = "a07d852b237d229a0f4dd55fd83379c0581e44e9"
-S = "${WORKDIR}/git"
-
-inherit setuptools3
-
-# DEPENDS_default: python-pip
-
-DEPENDS += " \
-        python-pip \
-        python-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-        "
-
-# RDEPENDS_default: 
-RDEPENDS_${PN} += " \
-        bash \
-        python-pbr \
-        python-cachetools \
-        python-futurist \
-        python-oslo.log \
-        python-oslo.utils \
-        python-oslo.serialization \
-        python-oslo.middleware \
-        python-oslo.service \
-        python-oslo.i18n \
-        python-stevedore \
-        python-debtcollector \
-        python-monotonic \
-        python-six \
-        python-webob \
-        python-pyyaml \
-        python-amqp \
-        python-kombu \
-        python-pika \
-        python-pika-pool \
-        python-futures \
-        python-tenacity \
-        "
diff --git a/meta-openstack/recipes-devtools/python/python3-oslo.messaging_git.bb b/meta-openstack/recipes-devtools/python/python3-oslo.messaging_git.bb
new file mode 100644
index 0000000..9582c6b
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-oslo.messaging_git.bb
@@ -0,0 +1,51 @@
+DESCRIPTION = "Oslo Messaging API"
+HOMEPAGE = "https://launchpad.net/oslo"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c46f31914956e4579f9b488e71415ac8"
+
+SRCNAME = "oslo.messaging"
+SRC_URI = "git://github.com/openstack/${SRCNAME}.git"
+
+PV = "12.5.0+git${SRCPV}"
+SRCREV = "62e104bdb57714a0754f788795d1b4faf8ebb74d"
+S = "${WORKDIR}/git"
+
+inherit setuptools3
+
+# DEPENDS_default: python-pip
+
+DEPENDS += " \
+        python3-pip \
+        python3-pbr \
+        "
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        python3-pbr-native \
+        "
+
+# RDEPENDS_default: 
+RDEPENDS_${PN} += " \
+        bash \
+        python3-pbr \
+        python3-cachetools \
+        python3-futurist \
+        python3-oslo.log \
+        python3-oslo.utils \
+        python3-oslo.serialization \
+        python3-oslo.middleware \
+        python3-oslo.service \
+        python3-oslo.i18n \
+        python3-stevedore \
+        python3-debtcollector \
+        python3-monotonic \
+        python3-six \
+        python3-webob \
+        python3-pyyaml \
+        python3-amqp \
+        python3-kombu \
+        python3-pika \
+        python3-pika-pool \
+        python3-tenacity \
+        "
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-oslo.reports: Change to python3
@ 2020-09-29 14:59           ` zangrc
  2020-09-29 14:59             ` [meta-virtualization] [PATCH] python3-ovs: upgrade 2.7.2 -> 2.13.0 zangrc
  0 siblings, 1 reply; 9+ messages in thread
From: zangrc @ 2020-09-29 14:59 UTC (permalink / raw)
  To: meta-virtualization

Because python2 is no longer maintained, bb file is changed to python3 version.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 ...rts_git.bb => python3-oslo.reports_git.bb} | 26 +++++++++----------
 1 file changed, 13 insertions(+), 13 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-oslo.reports_git.bb => python3-oslo.reports_git.bb} (50%)

diff --git a/meta-openstack/recipes-devtools/python/python-oslo.reports_git.bb b/meta-openstack/recipes-devtools/python/python3-oslo.reports_git.bb
similarity index 50%
rename from meta-openstack/recipes-devtools/python/python-oslo.reports_git.bb
rename to meta-openstack/recipes-devtools/python/python3-oslo.reports_git.bb
index 7a6cdd7..a3377e6 100644
--- a/meta-openstack/recipes-devtools/python/python-oslo.reports_git.bb
+++ b/meta-openstack/recipes-devtools/python/python3-oslo.reports_git.bb
@@ -4,33 +4,33 @@ SECTION = "devel/python"
 LICENSE = "Apache-2"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
 
-PV = "1.22.0+git${SRCPV}"
-SRCREV = "a837f40bb0c31958d3ce99e2f9a6eb2fe651f4e6"
+PV = "2.2.0+git${SRCPV}"
+SRCREV = "bc631aedef131bc45225720e5c8f8e4ca35ff020"
 
 SRCNAME = "oslo.reports"
-SRC_URI = "git://github.com/openstack/${SRCNAME}.git;branch=stable/pike"
+SRC_URI = "git://github.com/openstack/${SRCNAME}.git"
 
 S = "${WORKDIR}/git"
 
 inherit setuptools3
 
 DEPENDS += " \
-        python-pip \
-        python-pbr \
+        python3-pip \
+        python3-pbr \
         "
 
 # Satisfy setup.py 'setup_requires'
 DEPENDS += " \
-        python-pbr-native \
+        python3-pbr-native \
         "
 
 # RDEPENDS_default: 
 RDEPENDS_${PN} += " \
-        python-pbr \
-        python-six \
-        python-jinja2 \
-        python-psutil \
-        python-oslo.i18n \
-        python-oslo.utils \
-        python-oslo.serialization \
+        python3-pbr \
+        python3-six \
+        python3-jinja2 \
+        python3-psutil \
+        python3-oslo.i18n \
+        python3-oslo.utils \
+        python3-oslo.serialization \
         "
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-ovs: upgrade 2.7.2 -> 2.13.0
@ 2020-09-29 14:59             ` zangrc
  2020-10-02  3:10               ` Bruce Ashfield
  0 siblings, 1 reply; 9+ messages in thread
From: zangrc @ 2020-09-29 14:59 UTC (permalink / raw)
  To: meta-virtualization

Consolidate inc and bb files into a single bb file.

Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
---
 .../python/{python-ovs.inc => python3-ovs_2.13.0.bb}        | 6 +++---
 meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb | 2 --
 2 files changed, 3 insertions(+), 5 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-ovs.inc => python3-ovs_2.13.0.bb} (58%)
 delete mode 100644 meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb

diff --git a/meta-openstack/recipes-devtools/python/python-ovs.inc b/meta-openstack/recipes-devtools/python/python3-ovs_2.13.0.bb
similarity index 58%
rename from meta-openstack/recipes-devtools/python/python-ovs.inc
rename to meta-openstack/recipes-devtools/python/python3-ovs_2.13.0.bb
index d9303f2..4f372bc 100644
--- a/meta-openstack/recipes-devtools/python/python-ovs.inc
+++ b/meta-openstack/recipes-devtools/python/python3-ovs_2.13.0.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
 
-SRC_URI[md5sum] = "8551ed58f4e5878db9a599e2d7792d98"
-SRC_URI[sha256sum] = "24cc9e324b03ba8d5799f07edf6c8eef013d6cbf741707f42200b1674fd60928"
+SRC_URI[md5sum] = "a4a252b3c1c7d3d2d4d622179cff178e"
+SRC_URI[sha256sum] = "c158aaaddbad1f122222f45def50e2bb2f9af4e21a101f5be8488da66d4391f5"
 
-inherit pypi
+inherit setuptools3 pypi
diff --git a/meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb b/meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb
deleted file mode 100644
index 9c9b82b..0000000
--- a/meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require python-ovs.inc
-inherit setuptools3
-- 
2.25.1




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

* Re: [meta-virtualization] [PATCH] python3-ovs: upgrade 2.7.2 -> 2.13.0
  2020-09-29 14:59             ` [meta-virtualization] [PATCH] python3-ovs: upgrade 2.7.2 -> 2.13.0 zangrc
@ 2020-10-02  3:10               ` Bruce Ashfield
  0 siblings, 0 replies; 9+ messages in thread
From: Bruce Ashfield @ 2020-10-02  3:10 UTC (permalink / raw)
  To: zangrc; +Cc: meta-virtualization

merged.

Bruce

In message: [meta-virtualization] [PATCH] python3-ovs: upgrade 2.7.2 -> 2.13.0
on 29/09/2020 zangrc wrote:

> Consolidate inc and bb files into a single bb file.
> 
> Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com>
> ---
>  .../python/{python-ovs.inc => python3-ovs_2.13.0.bb}        | 6 +++---
>  meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb | 2 --
>  2 files changed, 3 insertions(+), 5 deletions(-)
>  rename meta-openstack/recipes-devtools/python/{python-ovs.inc => python3-ovs_2.13.0.bb} (58%)
>  delete mode 100644 meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb
> 
> diff --git a/meta-openstack/recipes-devtools/python/python-ovs.inc b/meta-openstack/recipes-devtools/python/python3-ovs_2.13.0.bb
> similarity index 58%
> rename from meta-openstack/recipes-devtools/python/python-ovs.inc
> rename to meta-openstack/recipes-devtools/python/python3-ovs_2.13.0.bb
> index d9303f2..4f372bc 100644
> --- a/meta-openstack/recipes-devtools/python/python-ovs.inc
> +++ b/meta-openstack/recipes-devtools/python/python3-ovs_2.13.0.bb
> @@ -4,7 +4,7 @@ SECTION = "devel/python"
>  LICENSE = "Apache-2.0"
>  LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/Apache-2.0;md5=89aea4e17d99a7cacdbeed46a0096b10"
>  
> -SRC_URI[md5sum] = "8551ed58f4e5878db9a599e2d7792d98"
> -SRC_URI[sha256sum] = "24cc9e324b03ba8d5799f07edf6c8eef013d6cbf741707f42200b1674fd60928"
> +SRC_URI[md5sum] = "a4a252b3c1c7d3d2d4d622179cff178e"
> +SRC_URI[sha256sum] = "c158aaaddbad1f122222f45def50e2bb2f9af4e21a101f5be8488da66d4391f5"
>  
> -inherit pypi
> +inherit setuptools3 pypi
> diff --git a/meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb b/meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb
> deleted file mode 100644
> index 9c9b82b..0000000
> --- a/meta-openstack/recipes-devtools/python/python3-ovs_2.7.2.bb
> +++ /dev/null
> @@ -1,2 +0,0 @@
> -require python-ovs.inc
> -inherit setuptools3
> -- 
> 2.25.1
> 
> 
> 

> 
> 
> 



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

end of thread, other threads:[~2020-10-02  3:10 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-29 14:58 [meta-virtualization] [PATCH] python3-oslo.cache: change to python3 zangrc
2020-09-29 14:58 ` [meta-virtualization] [PATCH] python3-ordereddict: Consolidate in a single file zangrc
2020-09-29 14:57   ` [meta-virtualization] [PATCH] python3-openstack-nose: change to python3 zangrc
2020-09-29 14:58     ` [meta-virtualization] [PATCH] python3-oslo.db: " zangrc
2020-09-29 14:58       ` [meta-virtualization] [PATCH] python3-oslo.i18n: upgrade 3.23.1 -> 5.0.1 zangrc
2020-09-29 14:59         ` [meta-virtualization] [PATCH] python3-oslo.messaging: change to python3 zangrc
2020-09-29 14:59           ` [meta-virtualization] [PATCH] python3-oslo.reports: Change " zangrc
2020-09-29 14:59             ` [meta-virtualization] [PATCH] python3-ovs: upgrade 2.7.2 -> 2.13.0 zangrc
2020-10-02  3:10               ` 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.