All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change python to python3
@ 2020-06-15  3:07 Wang Mingyu
  2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-futurist: " Wang Mingyu
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Wang Mingyu @ 2020-06-15  3:07 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 ...python-fixtures_3.0.0.bb => python3-fixtures_3.0.0.bb} | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-fixtures_3.0.0.bb => python3-fixtures_3.0.0.bb} (86%)

diff --git a/meta-openstack/recipes-devtools/python/python-fixtures_3.0.0.bb b/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
similarity index 86%
rename from meta-openstack/recipes-devtools/python/python-fixtures_3.0.0.bb
rename to meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
index c8883be..c2e098f 100644
--- a/meta-openstack/recipes-devtools/python/python-fixtures_3.0.0.bb
+++ b/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
@@ -15,14 +15,14 @@ DISTUTILS_INSTALL_ARGS = "--root=${D} \
     --install-data=${datadir}"
 
 DEPENDS += " \
-	python-pbr \
+	python3-pbr \
 	"
 
 # Satisfy setup.py 'setup_requires'
 DEPENDS += " \
-        python-pbr-native \
+        python3-pbr-native \
         "
 
-RDEPENDS_${PN} += "python-testtools \
-	python-pbr \
+RDEPENDS_${PN} += "python3-testtools \
+	python3-pbr \
 	"
-- 
2.17.1




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

* [meta-virtualization][meta-cloud-services][PATCH] python3-futurist: Change python to python3
  2020-06-15  3:07 [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change python to python3 Wang Mingyu
@ 2020-06-15  3:07 ` Wang Mingyu
  2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-jsonext: " Wang Mingyu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2020-06-15  3:07 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

upgrade 1.10.0 -> 2.2.0

python-futures is only for Python 2, so remove it.

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 .../python/python-futurist_1.10.0.bb          | 25 -------------------
 .../python/python3-futurist_2.2.0.bb          | 24 ++++++++++++++++++
 2 files changed, 24 insertions(+), 25 deletions(-)
 delete mode 100644 meta-openstack/recipes-devtools/python/python-futurist_1.10.0.bb
 create mode 100644 meta-openstack/recipes-devtools/python/python3-futurist_2.2.0.bb

diff --git a/meta-openstack/recipes-devtools/python/python-futurist_1.10.0.bb b/meta-openstack/recipes-devtools/python/python-futurist_1.10.0.bb
deleted file mode 100644
index 4996072..0000000
--- a/meta-openstack/recipes-devtools/python/python-futurist_1.10.0.bb
+++ /dev/null
@@ -1,25 +0,0 @@
-DESCRIPTION = "Useful additions to futures, from the future"
-HOMEPAGE = "https://pypi.python.org/pypi/futurist"
-SECTION = "devel/python"
-LICENSE = "Apache-2.0"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
-
-SRC_URI[md5sum] = "d7f98e9a5cb09fe9706e4afcbeab1552"
-SRC_URI[sha256sum] = "139d223503d47275636285ae98e7b470085b2b3b6fb2fc9a0d04a76de4b3d30e"
-
-inherit setuptools3 pypi
-
-DEPENDS += " \
-        python-pip \
-        python-pbr-native \
-        "
-
-RDEPENDS_${PN} += " \
-        python-pbr \
-        python-six \
-        python-monotonic \
-        python-futures \
-        python-contextlib2 \
-        python-prettytable \
-        "
-
diff --git a/meta-openstack/recipes-devtools/python/python3-futurist_2.2.0.bb b/meta-openstack/recipes-devtools/python/python3-futurist_2.2.0.bb
new file mode 100644
index 0000000..4788fb2
--- /dev/null
+++ b/meta-openstack/recipes-devtools/python/python3-futurist_2.2.0.bb
@@ -0,0 +1,24 @@
+DESCRIPTION = "Useful additions to futures, from the future"
+HOMEPAGE = "https://pypi.python.org/pypi/futurist"
+SECTION = "devel/python"
+LICENSE = "Apache-2.0"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=1dece7821bf3fd70fe1309eaa37d52a2"
+
+SRC_URI[md5sum] = "708ae19b7e3bef70b47166da1e72392c"
+SRC_URI[sha256sum] = "3601ea64e3423b169683cffff58939ecee5cd5268834b20bf2da071c2563a43c"
+
+inherit setuptools3 pypi
+
+DEPENDS += " \
+        python3-pip \
+        python3-pbr-native \
+        "
+
+RDEPENDS_${PN} += " \
+        python3-pbr \
+        python3-six \
+        python3-monotonic \
+        python3-contextlib2 \
+        python3-prettytable \
+        "
+
-- 
2.17.1




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

* [meta-virtualization][meta-cloud-services][PATCH] python3-jsonext: Change python to python3
  2020-06-15  3:07 [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change python to python3 Wang Mingyu
  2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-futurist: " Wang Mingyu
@ 2020-06-15  3:07 ` Wang Mingyu
  2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-nose-exclude: change " Wang Mingyu
  2020-06-17  0:35 ` [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change " Bruce Ashfield
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2020-06-15  3:07 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 .../{python-jsonext_0.4.2.bb => python3-jsonext_0.4.2.bb}     | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-jsonext_0.4.2.bb => python3-jsonext_0.4.2.bb} (91%)

diff --git a/meta-openstack/recipes-devtools/python/python-jsonext_0.4.2.bb b/meta-openstack/recipes-devtools/python/python3-jsonext_0.4.2.bb
similarity index 91%
rename from meta-openstack/recipes-devtools/python/python-jsonext_0.4.2.bb
rename to meta-openstack/recipes-devtools/python/python3-jsonext_0.4.2.bb
index fad44f5..0bf227a 100644
--- a/meta-openstack/recipes-devtools/python/python-jsonext_0.4.2.bb
+++ b/meta-openstack/recipes-devtools/python/python3-jsonext_0.4.2.bb
@@ -11,6 +11,6 @@ SRC_URI[sha256sum] = "e7634e0b8d1a668bd2c92db5498f6162573feb72ac050c4415384e773b
 inherit setuptools3 pypi
 
 RDEPENDS_${PN} += " \
-        python-six \
-        python-arrow \
+        python3-six \
+        python3-arrow \
         "
-- 
2.17.1




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

* [meta-virtualization][meta-cloud-services][PATCH] python3-nose-exclude: change python to python3
  2020-06-15  3:07 [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change python to python3 Wang Mingyu
  2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-futurist: " Wang Mingyu
  2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-jsonext: " Wang Mingyu
@ 2020-06-15  3:07 ` Wang Mingyu
  2020-06-17  0:35 ` [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change " Bruce Ashfield
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2020-06-15  3:07 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

upgrade 0.2.0 -> 0.5.0

Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
---
 ...ose-exclude_0.2.0.bb => python3-nose-exclude_0.5.0.bb} | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-nose-exclude_0.2.0.bb => python3-nose-exclude_0.5.0.bb} (70%)

diff --git a/meta-openstack/recipes-devtools/python/python-nose-exclude_0.2.0.bb b/meta-openstack/recipes-devtools/python/python3-nose-exclude_0.5.0.bb
similarity index 70%
rename from meta-openstack/recipes-devtools/python/python-nose-exclude_0.2.0.bb
rename to meta-openstack/recipes-devtools/python/python3-nose-exclude_0.5.0.bb
index 0a674c6..e07cfbf 100644
--- a/meta-openstack/recipes-devtools/python/python-nose-exclude_0.2.0.bb
+++ b/meta-openstack/recipes-devtools/python/python3-nose-exclude_0.5.0.bb
@@ -7,16 +7,16 @@ SECTION = "devel/python"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/LGPL-2.1;md5=1a6d268fd218675ffea8be556788b780"
 
-SRC_URI[md5sum] = "c8d798c3e29ac82dd5c7bf98a99404af"
-SRC_URI[sha256sum] = "27babdc53e0741ed09d21b7fdb5d244aabb1679f67ef81289f0f34e50aca51c9"
+SRC_URI[md5sum] = "072f72e782f28a9c42356976f8ec22d9"
+SRC_URI[sha256sum] = "f78fa8b41eeb815f0486414f710f1eea0949e346cfb11d59ba6295ed69e84304"
 
 inherit setuptools3 pypi
 
 DEPENDS += " \
-        python-pip \
+        python3-pip \
         "
 
 RDEPENDS_${PN} += " \
-        python-nose \
+        python3-nose \
         "
 
-- 
2.17.1




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

* Re: [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change python to python3
  2020-06-15  3:07 [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change python to python3 Wang Mingyu
                   ` (2 preceding siblings ...)
  2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-nose-exclude: change " Wang Mingyu
@ 2020-06-17  0:35 ` Bruce Ashfield
  3 siblings, 0 replies; 5+ messages in thread
From: Bruce Ashfield @ 2020-06-17  0:35 UTC (permalink / raw)
  To: Wang Mingyu; +Cc: meta-virtualization

merged.

Bruce

In message: [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change python to python3
on 15/06/2020 Wang Mingyu wrote:

> Signed-off-by: Wang Mingyu <wangmy@cn.fujitsu.com>
> ---
>  ...python-fixtures_3.0.0.bb => python3-fixtures_3.0.0.bb} | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
>  rename meta-openstack/recipes-devtools/python/{python-fixtures_3.0.0.bb => python3-fixtures_3.0.0.bb} (86%)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python-fixtures_3.0.0.bb b/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
> similarity index 86%
> rename from meta-openstack/recipes-devtools/python/python-fixtures_3.0.0.bb
> rename to meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
> index c8883be..c2e098f 100644
> --- a/meta-openstack/recipes-devtools/python/python-fixtures_3.0.0.bb
> +++ b/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
> @@ -15,14 +15,14 @@ DISTUTILS_INSTALL_ARGS = "--root=${D} \
>      --install-data=${datadir}"
>  
>  DEPENDS += " \
> -	python-pbr \
> +	python3-pbr \
>  	"
>  
>  # Satisfy setup.py 'setup_requires'
>  DEPENDS += " \
> -        python-pbr-native \
> +        python3-pbr-native \
>          "
>  
> -RDEPENDS_${PN} += "python-testtools \
> -	python-pbr \
> +RDEPENDS_${PN} += "python3-testtools \
> +	python3-pbr \
>  	"
> -- 
> 2.17.1
> 
> 
> 

> 



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

end of thread, other threads:[~2020-06-17  0:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-15  3:07 [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change python to python3 Wang Mingyu
2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-futurist: " Wang Mingyu
2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-jsonext: " Wang Mingyu
2020-06-15  3:07 ` [meta-virtualization][meta-cloud-services][PATCH] python3-nose-exclude: change " Wang Mingyu
2020-06-17  0:35 ` [meta-virtualization][meta-cloud-services][PATCH] python3-fixtures: Change " 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.