All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization] [PATCH] python3-keyring: Remove RDEPENDS
@ 2020-11-23 14:40 zhengruoqin
  2020-11-23 14:41 ` [meta-virtualization] [PATCH] python3-magnumclient: Change to python3 zhengruoqin
  0 siblings, 1 reply; 9+ messages in thread
From: zhengruoqin @ 2020-11-23 14:40 UTC (permalink / raw
  To: meta-virtualization

Because python3 no longer provides python3-typing package, it is removed from RDEPENDS.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python3-keyring_21.5.0.bb | 1 -
 1 file changed, 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python3-keyring_21.5.0.bb b/meta-openstack/recipes-devtools/python/python3-keyring_21.5.0.bb
index 59e6dbf1..d7565fd6 100644
--- a/meta-openstack/recipes-devtools/python/python3-keyring_21.5.0.bb
+++ b/meta-openstack/recipes-devtools/python/python3-keyring_21.5.0.bb
@@ -18,5 +18,4 @@ DEPENDS += " \
 RDEPENDS_${PN} = " \
 	python3-logging \
 	python3-importlib-metadata \
-	python3-typing \
 "
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-magnumclient: Change to python3
@ 2020-11-23 14:41 ` zhengruoqin
  2020-11-23 14:42   ` [meta-virtualization] [PATCH] python3-manilaclient: " zhengruoqin
  0 siblings, 1 reply; 9+ messages in thread
From: zhengruoqin @ 2020-11-23 14:41 UTC (permalink / raw
  To: meta-virtualization

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 .../python/python-magnumclient_git.bb         | 39 -------------------
 .../python/python3-magnumclient_3.2.1.bb      | 36 +++++++++++++++++
 2 files changed, 36 insertions(+), 39 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-magnumclient_git.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python3-magnumclient_3.2.1.bb

diff --git a/meta-openstack/recipes-devtools/python/python-magnumclient_git.bb b/meta-openstack/recipes-devtools/python/python-magnumclient_git.bb
deleted file mode 100644
index 959852b0..00000000
--- a/meta-openstack/recipes-devtools/python/python-magnumclient_git.bb
+++ /dev/null
@@ -1,39 +0,0 @@
-DESCRIPTION = "Python client for containers service"
-HOMEPAGE = "https://github.com/openstack/python-magnumclient"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314"
-
-DEPENDS += " \
-        python-pip \
-        python-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-        "
-
-RDEPENDS_${PN} +=" \
-        python-pbr \
-        python-babel \
-        python-oslo.config \
-        python-oslo.i18n \
-        python-oslo.serialization \
-        python-oslo.utils \
-        python-iso8601 \
-        python-requests \
-        python-keystoneclient \
-        python-pyyaml \
-        python-stevedore \
-        python-six \
-	"
-
-SRCNAME = "magnumclient"
-SRC_URI = "git://github.com/openstack/${BPN}.git;branch=master"
-
-PV = "1.0.0.0b1+git${SRCPV}"
-SRCREV = "fb1ff6777eb96a5b7ba38156bf8354cda9b88ad4"
-S = "${WORKDIR}/git"
-
-inherit setuptools3 rmargparse
diff --git a/meta-openstack/recipes-devtools/python/python3-magnumclient_3.2.1.bb b/meta-openstack/recipes-devtools/python/python3-magnumclient_3.2.1.bb
new file mode 100644
index 00000000..28af248b
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-magnumclient_3.2.1.bb
@@ -0,0 +1,36 @@
+DESCRIPTION = "Python client for containers service"
+HOMEPAGE = "https://github.com/openstack/python-magnumclient"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=d2794c0df5b907fdace235a619d80314"
+
+SRC_URI[sha256sum] = "3d03a3a3cf4b9ece4e903a77415356767c2bea44ce5c1449a00edb527fc9cb0e"
+
+DEPENDS += " \
+        python3-pip \
+        python3-pbr \
+        "
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        python3-pbr-native \
+        "
+
+RDEPENDS_${PN} +=" \
+        python3-pbr \
+        python3-babel \
+        python3-oslo.config \
+        python3-oslo.i18n \
+        python3-oslo.serialization \
+        python3-oslo.utils \
+        python3-iso8601 \
+        python3-requests \
+        python3-keystoneclient \
+        python3-pyyaml \
+        python3-stevedore \
+        python3-six \
+	"
+
+PYPI_PACKAGE = "python-magnumclient"
+
+inherit setuptools3 pypi 
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-manilaclient: Change to python3
@ 2020-11-23 14:42   ` zhengruoqin
  2020-11-23 14:42     ` [meta-virtualization] [PATCH] python3-microversion-parse: " zhengruoqin
  0 siblings, 1 reply; 9+ messages in thread
From: zhengruoqin @ 2020-11-23 14:42 UTC (permalink / raw
  To: meta-virtualization

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 .../python/python-manilaclient_git.bb         | 40 -------------------
 .../python/python3-manilaclient_2.3.0.bb      | 37 +++++++++++++++++
 2 files changed, 37 insertions(+), 40 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-manilaclient_git.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python3-manilaclient_2.3.0.bb

diff --git a/meta-openstack/recipes-devtools/python/python-manilaclient_git.bb b/meta-openstack/recipes-devtools/python/python-manilaclient_git.bb
deleted file mode 100644
index 2748efc2..00000000
--- a/meta-openstack/recipes-devtools/python/python-manilaclient_git.bb
+++ /dev/null
@@ -1,40 +0,0 @@
-DESCRIPTION = "Python bindings to the OpenStack Manila API"
-HOMEPAGE = "https://github.com/openstack/python-manilaclient"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=9edbbf5857ab51214ef0e8b79069bb07"
-
-DEPENDS += " \
-        python-pip \
-        python-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-        "
-
-RDEPENDS_${PN} +=" \
-        python-pbr \
-        python-iso8601 \
-        python-oslo.config \
-        python-oslo.log \
-        python-oslo.serialization \
-        python-oslo.utils \
-        python-prettytable \
-        python-pycrypto \
-        python-requests \
-        python-simplejson \
-        python-babel \
-        python-six \
-        python-keystoneclient \
-	"
-
-SRCNAME = "manilaclient"
-SRC_URI = "git://github.com/openstack/${BPN}.git;branch=master"
-
-PV = "1.29.0+git${SRCPV}"
-SRCREV = "1b2cafb008bee70242b68a03212bcc575df683b9"
-S = "${WORKDIR}/git"
-
-inherit setuptools3 rmargparse
diff --git a/meta-openstack/recipes-devtools/python/python3-manilaclient_2.3.0.bb b/meta-openstack/recipes-devtools/python/python3-manilaclient_2.3.0.bb
new file mode 100644
index 00000000..78403c2d
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-manilaclient_2.3.0.bb
@@ -0,0 +1,37 @@
+DESCRIPTION = "Python bindings to the OpenStack Manila API"
+HOMEPAGE = "https://github.com/openstack/python-manilaclient"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=9edbbf5857ab51214ef0e8b79069bb07"
+
+SRC_URI[sha256sum] = "7b5b3215215a720ace08e53caca447a605dee9c8b3b3cfaa302b6bc7e63e4a28"
+
+DEPENDS += " \
+        python3-pip \
+        python3-pbr \
+        "
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        python3-pbr-native \
+        "
+
+RDEPENDS_${PN} +=" \
+        python3-pbr \
+        python3-iso8601 \
+        python3-oslo.config \
+        python3-oslo.log \
+        python3-oslo.serialization \
+        python3-oslo.utils \
+        python3-prettytable \
+        python3-pycrypto \
+        python3-requests \
+        python3-simplejson \
+        python3-babel \
+        python3-six \
+        python3-keystoneclient \
+	"
+
+PYPI_PACKAGE = "python-manilaclient"
+
+inherit setuptools3 pypi
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-microversion-parse: Change to python3
@ 2020-11-23 14:42     ` zhengruoqin
  2020-11-23 14:42       ` [meta-virtualization] [PATCH] python3-os-brick: " zhengruoqin
  0 siblings, 1 reply; 9+ messages in thread
From: zhengruoqin @ 2020-11-23 14:42 UTC (permalink / raw
  To: meta-virtualization

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 ...rsion-parse_git.bb => python3-microversion-parse_git.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-microversion-parse_git.bb => python3-microversion-parse_git.bb} (82%)

diff --git a/meta-openstack/recipes-devtools/python/python-microversion-parse_git.bb b/meta-openstack/recipes-devtools/python/python3-microversion-parse_git.bb
similarity index 82%
rename from meta-openstack/recipes-devtools/python/python-microversion-parse_git.bb
rename to meta-openstack/recipes-devtools/python/python3-microversion-parse_git.bb
index c207523a..43eead66 100644
--- a/meta-openstack/recipes-devtools/python/python-microversion-parse_git.bb
+++ b/meta-openstack/recipes-devtools/python/python3-microversion-parse_git.bb
@@ -8,8 +8,8 @@ SRC_URI = "\
 	git://github.com/openstack/microversion-parse.git;branch=master \
 	"
 
-PV = "0.1.4+git${SRCPV}"
-SRCREV = "1f6eac7c3df048679663919f75c2bcecd3e183a2"
+PV = "1.0.1+git${SRCPV}"
+SRCREV = "2c36df6bf33e42c379fbd8228fbe63c77b3714b1"
 S = "${WORKDIR}/git"
 
 inherit setuptools3
@@ -19,7 +19,7 @@ DEPENDS += " \
 
 # Satisfy setup.py 'setup_requires'
 DEPENDS += " \
-        python-pbr-native \
+        python3-pbr-native \
 	"
 
 RDEPENDS_${PN} += " \
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-os-brick: Change to python3
@ 2020-11-23 14:42       ` zhengruoqin
  2020-11-23 14:42         ` [meta-virtualization] [PATCH] python3-os-vif: " zhengruoqin
  0 siblings, 1 reply; 9+ messages in thread
From: zhengruoqin @ 2020-11-23 14:42 UTC (permalink / raw
  To: meta-virtualization

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

diff --git a/meta-openstack/recipes-devtools/python/python-os-brick_git.bb b/meta-openstack/recipes-devtools/python/python-os-brick_git.bb
deleted file mode 100644
index 5dd08dce..00000000
--- a/meta-openstack/recipes-devtools/python/python-os-brick_git.bb
+++ /dev/null
@@ -1,42 +0,0 @@
-DESCRIPTION = "OpenStack Cinder brick library for managing local volume attaches"
-HOMEPAGE = "https://github.com/openstack/os-brick"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
-
-SRC_URI = "\
-	git://github.com/openstack/os-brick.git;branch=stable/pike \
-	"
-
-PV = "1.15.5+git${SRCPV}"
-SRCREV = "4090db76673cadb3b8adfceb106069e03414de49"
-S = "${WORKDIR}/git"
-
-inherit setuptools3
-
-FILES_${PN} += "${datadir}/etc/*"
-
-DEPENDS += " \
-        python-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-        "
-
-RDEPENDS_${PN} += " \
-        python-pbr \
-        python-babel \
-        python-eventlet \
-        python-oslo.concurrency \
-        python-oslo.log \
-        python-oslo.serialization \
-        python-oslo.i18n \
-        python-oslo.privsep \
-        python-oslo.service \
-        python-oslo.utils \
-        python-requests \
-        python-retrying \
-        python-six \
-        python-os-win \
diff --git a/meta-openstack/recipes-devtools/python/python3-os-brick_git.bb b/meta-openstack/recipes-devtools/python/python3-os-brick_git.bb
new file mode 100644
index 00000000..4fc01f62
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-os-brick_git.bb
@@ -0,0 +1,42 @@
+DESCRIPTION = "OpenStack Cinder brick library for managing local volume attaches"
+HOMEPAGE = "https://github.com/openstack/os-brick"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
+
+SRC_URI = "\
+	git://github.com/openstack/os-brick.git;branch=stable/victoria \
+	"
+SRCREV = "f0cf77672fed70f20896c23015cb50341f311f38"
+
+PV = "4.0.1+git${SRCPV}"
+S = "${WORKDIR}/git"
+
+inherit setuptools3
+
+FILES_${PN} += "${datadir}/etc/*"
+
+DEPENDS += " \
+        python3-pbr \
+        "
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        python3-pbr-native \
+        "
+
+RDEPENDS_${PN} += " \
+        python3-pbr \
+        python3-babel \
+        python3-eventlet \
+        python3-oslo.concurrency \
+        python3-oslo.log \
+        python3-oslo.serialization \
+        python3-oslo.i18n \
+        python3-oslo.privsep \
+        python3-oslo.service \
+        python3-oslo.utils \
+        python3-requests \
+        python3-retrying \
+        python3-six \
+        python3-os-win \
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-os-vif: Change to python3
@ 2020-11-23 14:42         ` zhengruoqin
  2020-11-23 14:43           ` [meta-virtualization] [PATCH] python3-pypowervm: upgrade 1.1.10 -> 1.1.24 zhengruoqin
  0 siblings, 1 reply; 9+ messages in thread
From: zhengruoqin @ 2020-11-23 14:42 UTC (permalink / raw
  To: meta-virtualization

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

diff --git a/meta-openstack/recipes-devtools/python/python-os-vif_git.bb b/meta-openstack/recipes-devtools/python/python-os-vif_git.bb
deleted file mode 100644
index 6ad2020c..00000000
--- a/meta-openstack/recipes-devtools/python/python-os-vif_git.bb
+++ /dev/null
@@ -1,38 +0,0 @@
-DESCRIPTION = "OpenStack integration library between network and compute providers."
-HOMEPAGE = "https://github.com/openstack/os-vif"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
-
-SRC_URI = "\
-	git://github.com/openstack/os-vif.git;branch=stable/pike \
-	"
-
-PV = "1.7.0+git${SRCPV}"
-SRCREV = "5184b7fc3b8d1689823eacb859087c8a943f9a09"
-S = "${WORKDIR}/git"
-
-inherit setuptools3
-
-DEPENDS += " \
-        python-pbr \
-        "
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-	"
-
-RDEPENDS_${PN} += " \
-        python-pbr \
-        python-netaddr \
-        python-oslo.concurrency \
-        python-oslo.config \
-        python-oslo.log \
-        python-oslo.i18n \
-        python-oslo.privsep \
-        python-oslo.versionedobjects \
-        python-six \
-        python-stevedore \
-        "
-	
diff --git a/meta-openstack/recipes-devtools/python/python3-os-vif_git.bb b/meta-openstack/recipes-devtools/python/python3-os-vif_git.bb
new file mode 100644
index 00000000..18a9e6b3
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-os-vif_git.bb
@@ -0,0 +1,37 @@
+DESCRIPTION = "OpenStack integration library between network and compute providers."
+HOMEPAGE = "https://github.com/openstack/os-vif"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
+
+SRC_URI = "\
+	git://github.com/openstack/os-vif.git \
+	"
+
+PV = "2.2.0+git${SRCPV}"
+SRCREV = "d7928102d69dadf653c9f734e5cf8fd504335849"
+S = "${WORKDIR}/git"
+
+inherit setuptools3
+
+DEPENDS += " \
+        python3-pbr \
+        "
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        python3-pbr-native \
+	"
+
+RDEPENDS_${PN} += " \
+        python3-pbr \
+        python3-netaddr \
+        python3-oslo.concurrency \
+        python3-oslo.config \
+        python3-oslo.log \
+        python3-oslo.i18n \
+        python3-oslo.privsep \
+        python3-six \
+        python3-stevedore \
+        "
+	
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python3-pypowervm: upgrade 1.1.10 -> 1.1.24
@ 2020-11-23 14:43           ` zhengruoqin
  2020-11-23 14:43             ` [meta-virtualization] [PATCH] python-enum: Remove recipe zhengruoqin
  0 siblings, 1 reply; 9+ messages in thread
From: zhengruoqin @ 2020-11-23 14:43 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-pypowervm_1.1.10.bb         | 33 -------------------
 .../python/python3-pypowervm_1.1.24.bb        | 32 ++++++++++++++++++
 2 files changed, 32 insertions(+), 33 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-pypowervm_1.1.10.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python3-pypowervm_1.1.24.bb

diff --git a/meta-openstack/recipes-devtools/python/python-pypowervm_1.1.10.bb b/meta-openstack/recipes-devtools/python/python-pypowervm_1.1.10.bb
deleted file mode 100644
index 062d351e..00000000
--- a/meta-openstack/recipes-devtools/python/python-pypowervm_1.1.10.bb
+++ /dev/null
@@ -1,33 +0,0 @@
-DESCRIPTION = "Python binding for the PowerVM REST API"
-HOMEPAGE = "https://pypi.python.org/pypi/pypowervm"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
-
-SRC_URI[md5sum] = "54e4dfaa569350254b0a0f4c19686ded"
-SRC_URI[sha256sum] = "ab27d4efb59105555b6c9b1fe7792fd895ad9ca893058c39bba4106d6a0ad986"
-
-inherit setuptools3 pypi
-
-# Satisfy setup.py 'setup_requires'
-DEPENDS += " \
-        python-pbr-native \
-	"
-
-RDEPENDS_${PN} += " \
-        python-lxml \
-        python-oslo.concurrency \
-        python-oslo.context \
-        python-oslo.i18n \
-        python-oslo.log \
-        python-oslo.utils \
-        python-pbr \
-        python-pyasn1-modules \
-        python-pyasn1 \
-        python-pytz \
-        python-requests \
-        python-six \
-        python-futures \
-        python-taskflow \
-        python-networkx \
-        "
diff --git a/meta-openstack/recipes-devtools/python/python3-pypowervm_1.1.24.bb b/meta-openstack/recipes-devtools/python/python3-pypowervm_1.1.24.bb
new file mode 100644
index 00000000..e659f618
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-pypowervm_1.1.24.bb
@@ -0,0 +1,32 @@
+DESCRIPTION = "Python binding for the PowerVM REST API"
+HOMEPAGE = "https://pypi.python.org/pypi/pypowervm"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
+
+SRC_URI[md5sum] = "50b580055e5628aadaeb42fd69158ff8"
+SRC_URI[sha256sum] = "4c6bf225d2b1022b5d363f9b3695fd1692523235d3ce1b5b4506fbc608bdb535"
+
+inherit setuptools3 pypi
+
+# Satisfy setup.py 'setup_requires'
+DEPENDS += " \
+        python3-pbr-native \
+	"
+
+RDEPENDS_${PN} += " \
+        python3-lxml \
+        python3-oslo.concurrency \
+        python3-oslo.context \
+        python3-oslo.i18n \
+        python3-oslo.log \
+        python3-oslo.utils \
+        python3-pbr \
+        python3-pyasn1-modules \
+        python3-pyasn1 \
+        python3-pytz \
+        python3-requests \
+        python3-six \
+        python3-taskflow \
+        python3-networkx \
+        "
-- 
2.25.1




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

* [meta-virtualization] [PATCH] python-enum: Remove recipe
@ 2020-11-23 14:43             ` zhengruoqin
  2020-12-01 21:31               ` Bruce Ashfield
  0 siblings, 1 reply; 9+ messages in thread
From: zhengruoqin @ 2020-11-23 14:43 UTC (permalink / raw
  To: meta-virtualization

Superseded by Python standard library.

Python 3 now has in its standard library an enum implementation (also available for older Python versions as the third-party enum34 distribution) that supersedes this library.

Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
---
 .../python/python-enum_0.4.4.bb               | 20 -------------------
 1 file changed, 20 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb

diff --git a/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb b/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb
deleted file mode 100644
index 4eb1ed5a..00000000
--- a/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb
+++ /dev/null
@@ -1,20 +0,0 @@
-SUMMARY = "Robust enumerated type support in Python"
-DESCRIPTION = "This package provides a module for robust enumerations in Python."
-HOMEPAGE = "https://pypi.python.org/pypi/enum"
-SECTION = "devel/python"
-LICENSE = "GPLv2 | PSFv2"
-LIC_FILES_CHKSUM = "file://LICENSE.GPL;md5=4325afd396febcb659c36b49533135d4 \
-                    file://LICENSE.PSF;md5=1ad8a43fc3bbfea1585223c99f4c3e6f \
-"
-
-SRC_URI[md5sum] = "ce75c7c3c86741175a84456cc5bd531e"
-SRC_URI[sha256sum] = "9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff"
-
-inherit setuptools3 pypi
-
-DEPENDS += " \
-        python-pip \
-"
-
-RDEPENDS_${PN} += " \
-"
-- 
2.25.1




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

* Re: [meta-virtualization] [PATCH] python-enum: Remove recipe
  2020-11-23 14:43             ` [meta-virtualization] [PATCH] python-enum: Remove recipe zhengruoqin
@ 2020-12-01 21:31               ` Bruce Ashfield
  0 siblings, 0 replies; 9+ messages in thread
From: Bruce Ashfield @ 2020-12-01 21:31 UTC (permalink / raw
  To: zhengruoqin; +Cc: meta-virtualization

merged.

Bruce

In message: [meta-virtualization] [PATCH] python-enum: Remove recipe
on 23/11/2020 zhengruoqin wrote:

> Superseded by Python standard library.
> 
> Python 3 now has in its standard library an enum implementation (also available for older Python versions as the third-party enum34 distribution) that supersedes this library.
> 
> Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>
> ---
>  .../python/python-enum_0.4.4.bb               | 20 -------------------
>  1 file changed, 20 deletions(-)
>  delete mode 100644 meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb
> 
> diff --git a/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb b/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb
> deleted file mode 100644
> index 4eb1ed5a..00000000
> --- a/meta-openstack/recipes-devtools/python/python-enum_0.4.4.bb
> +++ /dev/null
> @@ -1,20 +0,0 @@
> -SUMMARY = "Robust enumerated type support in Python"
> -DESCRIPTION = "This package provides a module for robust enumerations in Python."
> -HOMEPAGE = "https://pypi.python.org/pypi/enum"
> -SECTION = "devel/python"
> -LICENSE = "GPLv2 | PSFv2"
> -LIC_FILES_CHKSUM = "file://LICENSE.GPL;md5=4325afd396febcb659c36b49533135d4 \
> -                    file://LICENSE.PSF;md5=1ad8a43fc3bbfea1585223c99f4c3e6f \
> -"
> -
> -SRC_URI[md5sum] = "ce75c7c3c86741175a84456cc5bd531e"
> -SRC_URI[sha256sum] = "9bdfacf543baf2350df7613eb37f598a802f346985ca0dc1548be6494140fdff"
> -
> -inherit setuptools3 pypi
> -
> -DEPENDS += " \
> -        python-pip \
> -"
> -
> -RDEPENDS_${PN} += " \
> -"
> -- 
> 2.25.1
> 
> 
> 

> 
> 
> 



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

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

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-23 14:40 [meta-virtualization] [PATCH] python3-keyring: Remove RDEPENDS zhengruoqin
2020-11-23 14:41 ` [meta-virtualization] [PATCH] python3-magnumclient: Change to python3 zhengruoqin
2020-11-23 14:42   ` [meta-virtualization] [PATCH] python3-manilaclient: " zhengruoqin
2020-11-23 14:42     ` [meta-virtualization] [PATCH] python3-microversion-parse: " zhengruoqin
2020-11-23 14:42       ` [meta-virtualization] [PATCH] python3-os-brick: " zhengruoqin
2020-11-23 14:42         ` [meta-virtualization] [PATCH] python3-os-vif: " zhengruoqin
2020-11-23 14:43           ` [meta-virtualization] [PATCH] python3-pypowervm: upgrade 1.1.10 -> 1.1.24 zhengruoqin
2020-11-23 14:43             ` [meta-virtualization] [PATCH] python-enum: Remove recipe zhengruoqin
2020-12-01 21:31               ` 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.