All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization] [PATCH 7/7] python3-osprofiler: upgrade 2.9.0 -> 3.4.0
@ 2020-11-17 14:13 zhengruoqin
  2020-11-17 14:12 ` [meta-virtualization] [PATCH 6/7] python3-glance-store: Change to python3 zhengruoqin
  0 siblings, 1 reply; 9+ messages in thread
From: zhengruoqin @ 2020-11-17 14:13 UTC (permalink / raw)
  To: meta-virtualization

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

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 .../python/python-osprofiler_2.9.0.bb         | 35 -------------------
 .../python/python3-osprofiler_3.4.0.bb        | 35 +++++++++++++++++++
 2 files changed, 35 insertions(+), 35 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-osprofiler_2.9.0.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python3-osprofiler_3.4.0.bb

diff --git a/meta-openstack/recipes-devtools/python/python-osprofiler_2.9.0.bb b/meta-openstack/recipes-devtools/python/python-osprofiler_2.9.0.bb
deleted file mode 100644
index e6fe8656..00000000
--- a/meta-openstack/recipes-devtools/python/python-osprofiler_2.9.0.bb
+++ /dev/null
@@ -1,35 +0,0 @@
-DESCRIPTION = "OpenStack Profiler Library"
-HOMEPAGE = "http://www.openstack.org/"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=19cbd64715b51267a47bf3750cc6a8a5"
-
-SRC_URI[md5sum] = "75f190b00ac248b3d547b67a480801db"
-SRC_URI[sha256sum] = "6915cbf8ac390dc3e125340b0ff368dd53f5889e3d053f9122dd83ba0dd366f7"
-
-inherit setuptools3 pypi
-
-# DEPENDS_default: python-pip
-
-DEPENDS += " \
-        python-pip \
-        python-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-        "
-
-# RDEPENDS_default: 
-RDEPENDS_${PN} += " \
-        python-pbr \
-        python-six \
-        python-oslo.messaging \
-        python-oslo.log \
-        python-oslo.utils \
-        python-webob \
-        python-requests \
-        python-netaddr \
-        python-oslo.concurrency \
-        "
diff --git a/meta-openstack/recipes-devtools/python/python3-osprofiler_3.4.0.bb b/meta-openstack/recipes-devtools/python/python3-osprofiler_3.4.0.bb
new file mode 100644
index 00000000..5d7939b6
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-osprofiler_3.4.0.bb
@@ -0,0 +1,35 @@
+DESCRIPTION = "OpenStack Profiler Library"
+HOMEPAGE = "http://www.openstack.org/"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=19cbd64715b51267a47bf3750cc6a8a5"
+
+SRC_URI[md5sum] = "691c4d2cc77e60eeaa30edd7bf087481"
+SRC_URI[sha256sum] = "f7fe387f4dd681bbf92b9fbe857cc90e89cfe96d44522a2727540902310a9ed6"
+
+inherit setuptools3 pypi
+
+# DEPENDS_default: python-pip
+
+DEPENDS += " \
+        python3-pip \
+        python3-pbr \
+        "
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        python3-pbr-native \
+        "
+
+# RDEPENDS_default: 
+RDEPENDS_${PN} += " \
+        python3-pbr \
+        python3-six \
+        python3-oslo.messaging \
+        python3-oslo.log \
+        python3-oslo.utils \
+        python3-webob \
+        python3-requests \
+        python3-netaddr \
+        python3-oslo.concurrency \
+        "
-- 
2.25.1




^ permalink raw reply related	[flat|nested] 9+ messages in thread
* [meta-virtualization] [PATCH 3/7] python3-repoze.lru: change RDEPENDS
@ 2020-12-15  7:21 zhengruoqin
  0 siblings, 0 replies; 9+ messages in thread
From: zhengruoqin @ 2020-12-15  7:21 UTC (permalink / raw)
  To: meta-virtualization

Because python3 no longer provides python3-typing package, so modify RDEPENDS.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 .../recipes-devtools/python/python3-repoze.lru_0.7.bb           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python3-repoze.lru_0.7.bb b/meta-openstack/recipes-devtools/python/python3-repoze.lru_0.7.bb
index e709bd71..0f782eea 100644
--- a/meta-openstack/recipes-devtools/python/python3-repoze.lru_0.7.bb
+++ b/meta-openstack/recipes-devtools/python/python3-repoze.lru_0.7.bb
@@ -14,5 +14,5 @@ SRC_URI[sha256sum] = "0429a75e19380e4ed50c0694e26ac8819b4ea7851ee1fc7583c8572db8
 inherit setuptools3 pypi
 
 RDEPENDS_${PN} += " \
-	python3-typing \
+	python3-netclient \
 "
-- 
2.25.1




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

end of thread, other threads:[~2020-12-15  7:21 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-17 14:13 [meta-virtualization] [PATCH 7/7] python3-osprofiler: upgrade 2.9.0 -> 3.4.0 zhengruoqin
2020-11-17 14:12 ` [meta-virtualization] [PATCH 6/7] python3-glance-store: Change to python3 zhengruoqin
2020-11-17 14:12   ` [meta-virtualization] [PATCH 5/7] python3-django-pyscss: " zhengruoqin
2020-11-17 14:11     ` [meta-virtualization] [PATCH 4/7] python3-paste: remove RDEPENDS zhengruoqin
2020-11-17 14:11       ` [meta-virtualization] [PATCH 3/7] python3-repoze.lru: change RDEPENDS zhengruoqin
2020-11-17 14:10         ` [meta-virtualization] [PATCH 2/7] python3-httpretty: " zhengruoqin
2020-11-17 14:09           ` [meta-virtualization] [PATCH 1/7] python3-pyscss: Change to python3 zhengruoqin
2020-11-19 16:12             ` Bruce Ashfield
2020-12-15  7:21 [meta-virtualization] [PATCH 3/7] python3-repoze.lru: change RDEPENDS zhengruoqin

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.