All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-virtualization][meta-cloud-services][PATCH 1/8] python-novnc: inherit setuptools3 not distutils
@ 2022-01-19  5:12 Wang Mingyu
  2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 2/8] python3-fixtures: " Wang Mingyu
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Wang Mingyu @ 2022-01-19  5:12 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python-novnc_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-openstack/recipes-devtools/python/python-novnc_git.bb b/meta-openstack/recipes-devtools/python/python-novnc_git.bb
index 50041ac9..da5f048e 100644
--- a/meta-openstack/recipes-devtools/python/python-novnc_git.bb
+++ b/meta-openstack/recipes-devtools/python/python-novnc_git.bb
@@ -15,6 +15,6 @@ SRC_URI = "git://github.com/kanaka/noVNC.git;branch=master;protocol=https \
 
 S = "${WORKDIR}/git"
 
-inherit distutils3
+inherit setuptools3
 
-DEPENDS += " python-websockify"
+DEPENDS += " python3-websockify"
-- 
2.25.1



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

* [meta-virtualization][meta-cloud-services][PATCH 2/8] python3-fixtures: inherit setuptools3 not distutils
  2022-01-19  5:12 [meta-virtualization][meta-cloud-services][PATCH 1/8] python-novnc: inherit setuptools3 not distutils Wang Mingyu
@ 2022-01-19  5:12 ` Wang Mingyu
  2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 3/8] python3-ipaddr: " Wang Mingyu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 9+ messages in thread
From: Wang Mingyu @ 2022-01-19  5:12 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-devtools/python/python3-fixtures_3.0.0.bb           | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb b/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
index 6cd0d810..a9335317 100644
--- a/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
+++ b/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=239e2f4698b85aad5ed39bae5d2ef226"
 SRC_URI[md5sum] = "cd6345b497a62fad739efee66346c2e0"
 SRC_URI[sha256sum] = "fcf0d60234f1544da717a9738325812de1f42c2fa085e2d9252d8fff5712b2ef"
 
-inherit distutils3 pypi
+inherit setuptools3 pypi
 
 DISTUTILS_INSTALL_ARGS = "--root=${D} \
     --prefix=${prefix} \
-- 
2.25.1



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

* [meta-virtualization][meta-cloud-services][PATCH 3/8] python3-ipaddr: inherit setuptools3 not distutils
  2022-01-19  5:12 [meta-virtualization][meta-cloud-services][PATCH 1/8] python-novnc: inherit setuptools3 not distutils Wang Mingyu
  2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 2/8] python3-fixtures: " Wang Mingyu
@ 2022-01-19  5:12 ` Wang Mingyu
  2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 4/8] python3-lockfile: " Wang Mingyu
  2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 5/8] python3-mimeparse: " Wang Mingyu
  3 siblings, 0 replies; 9+ messages in thread
From: Wang Mingyu @ 2022-01-19  5:12 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb b/meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb
index 2706954a..bb236eb8 100644
--- a/meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb
+++ b/meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;md5=e7e54827196088e6e96b33e9aec35c4a"
 SRC_URI[md5sum] = "f88353e40dec06410acfa075b8209b27"
 SRC_URI[sha256sum] = "4092dfe667588d16aa12b59acb7c8a4024e5dcb23a681cd0b0b602373eca88d6"
 
-inherit distutils3 pypi
+inherit setuptools3 pypi
 
 DEPENDS += " \
         python3-pip \
-- 
2.25.1



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

* [meta-virtualization][meta-cloud-services][PATCH 4/8] python3-lockfile: inherit setuptools3 not distutils
  2022-01-19  5:12 [meta-virtualization][meta-cloud-services][PATCH 1/8] python-novnc: inherit setuptools3 not distutils Wang Mingyu
  2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 2/8] python3-fixtures: " Wang Mingyu
  2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 3/8] python3-ipaddr: " Wang Mingyu
@ 2022-01-19  5:12 ` Wang Mingyu
  2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 5/8] python3-mimeparse: " Wang Mingyu
  3 siblings, 0 replies; 9+ messages in thread
From: Wang Mingyu @ 2022-01-19  5:12 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-devtools/python/python3-lockfile_0.12.2.bb          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python3-lockfile_0.12.2.bb b/meta-openstack/recipes-devtools/python/python3-lockfile_0.12.2.bb
index 81e1f22b..ba446380 100644
--- a/meta-openstack/recipes-devtools/python/python3-lockfile_0.12.2.bb
+++ b/meta-openstack/recipes-devtools/python/python3-lockfile_0.12.2.bb
@@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=2340dffbbfea534b58f1349984eeef72"
 SRC_URI[md5sum] = "a6a1a82957a23afdf44cfdd039b65ff9"
 SRC_URI[sha256sum] = "6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799"
 
-inherit distutils3 pypi
+inherit setuptools3 pypi
 
 DEPENDS += "\
     python3-pbr \
-- 
2.25.1



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

* [meta-virtualization][meta-cloud-services][PATCH 5/8] python3-mimeparse: inherit setuptools3 not distutils
@ 2022-01-19  5:12 ` Wang Mingyu
  0 siblings, 0 replies; 9+ messages in thread
From: Wang Mingyu @ 2022-01-19  5:12 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-devtools/python/python3-mimeparse_1.6.0.bb          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python3-mimeparse_1.6.0.bb b/meta-openstack/recipes-devtools/python/python3-mimeparse_1.6.0.bb
index da87dfdb..ae7bd430 100644
--- a/meta-openstack/recipes-devtools/python/python3-mimeparse_1.6.0.bb
+++ b/meta-openstack/recipes-devtools/python/python3-mimeparse_1.6.0.bb
@@ -9,7 +9,7 @@ PYPI_PACKAGE = "python-mimeparse"
 SRC_URI[md5sum] = "a32ae1df93be1ddb581d1c0fa124bab4"
 SRC_URI[sha256sum] = "76e4b03d700a641fd7761d3cd4fdbbdcd787eade1ebfac43f877016328334f78"
 
-inherit distutils3 pypi setuptools3
+inherit pypi setuptools3
 
 DISTUTILS_INSTALL_ARGS = "--root=${D} \
     --prefix=${prefix} \
-- 
2.25.1



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

* [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: inherit setuptools3 not distutils
@ 2022-01-19  5:13 Wang Mingyu
  2022-01-19  5:13 ` [meta-virtualization][meta-cloud-services][PATCH 7/8] mod-wsgi: inherit setuptools3-base not distutils3-base Wang Mingyu
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Wang Mingyu @ 2022-01-19  5:13 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-devtools/python/python3-termcolor_1.1.0.bb          | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python3-termcolor_1.1.0.bb b/meta-openstack/recipes-devtools/python/python3-termcolor_1.1.0.bb
index a8d50097..127287a7 100644
--- a/meta-openstack/recipes-devtools/python/python3-termcolor_1.1.0.bb
+++ b/meta-openstack/recipes-devtools/python/python3-termcolor_1.1.0.bb
@@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING.txt;md5=809e8749b63567978acfbd81d9f6a27d"
 SRC_URI[md5sum] = "043e89644f8909d462fbbfa511c768df"
 SRC_URI[sha256sum] = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"
 
-inherit distutils3 pypi
+inherit setuptools3 pypi
 
 DEPENDS += " \
         python3-pip \
-- 
2.25.1



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

* [meta-virtualization][meta-cloud-services][PATCH 7/8] mod-wsgi: inherit setuptools3-base not distutils3-base
  2022-01-19  5:13 [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: " Wang Mingyu
@ 2022-01-19  5:13 ` Wang Mingyu
  2022-01-19  5:13 ` [meta-virtualization][meta-cloud-services][PATCH 8/8] python3-novnc: update 0.5.1 -> 1.3.0 Wang Mingyu
  2022-01-30 22:14 ` [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: inherit setuptools3 not distutils Bruce Ashfield
  2 siblings, 0 replies; 9+ messages in thread
From: Wang Mingyu @ 2022-01-19  5:13 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb b/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb
index 910bba1b..b0daf54d 100644
--- a/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb
+++ b/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb
@@ -20,7 +20,7 @@ SRC_URI = "\
 	file://configure.ac-allow-PYTHON-values-to-be-passed-via-en.patch \        
 	"
 
-inherit autotools-brokensep distutils3-base
+inherit autotools-brokensep setuptools3-base
 
 DEPENDS += "apache2-native apache2 python3"
 RDEPENDS:${PN} = "python3"
-- 
2.25.1



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

* [meta-virtualization][meta-cloud-services][PATCH 8/8] python3-novnc: update 0.5.1 -> 1.3.0
  2022-01-19  5:13 [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: " Wang Mingyu
  2022-01-19  5:13 ` [meta-virtualization][meta-cloud-services][PATCH 7/8] mod-wsgi: inherit setuptools3-base not distutils3-base Wang Mingyu
@ 2022-01-19  5:13 ` Wang Mingyu
  2022-01-30 22:14 ` [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: inherit setuptools3 not distutils Bruce Ashfield
  2 siblings, 0 replies; 9+ messages in thread
From: Wang Mingyu @ 2022-01-19  5:13 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Wang Mingyu

refresh python-distutils.patch

License-Update:
-year updated to 2019
-file of the noVNC core library changed
-the HTML, CSS, font and images files that included with the noVNC
 source distibution changed
-URL of history changed
-files and projects that have been incorporated into
 the noVNC core library changed
-license texts changed

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../python-distutils.patch                                | 4 ++--
 .../python/{python-novnc_git.bb => python3-novnc_git.bb}  | 8 +++-----
 2 files changed, 5 insertions(+), 7 deletions(-)
 rename meta-openstack/recipes-devtools/python/{python-novnc => python3-novnc}/python-distutils.patch (91%)
 rename meta-openstack/recipes-devtools/python/{python-novnc_git.bb => python3-novnc_git.bb} (68%)

diff --git a/meta-openstack/recipes-devtools/python/python-novnc/python-distutils.patch b/meta-openstack/recipes-devtools/python/python3-novnc/python-distutils.patch
similarity index 91%
rename from meta-openstack/recipes-devtools/python/python-novnc/python-distutils.patch
rename to meta-openstack/recipes-devtools/python/python3-novnc/python-distutils.patch
index ef3393f3..85befc9f 100644
--- a/meta-openstack/recipes-devtools/python/python-novnc/python-distutils.patch
+++ b/meta-openstack/recipes-devtools/python/python3-novnc/python-distutils.patch
@@ -1,13 +1,13 @@
 Index: git/setup.py
 ===================================================================
 --- /dev/null
-+++ git/setup.py
++++ b/setup.py
 @@ -0,0 +1,14 @@
 +#!/usr/bin/env python
 +
 +from distutils.core import setup
 +
-+setup(name='python-novnc',
++setup(name='python3-novnc',
 +      version='2012.1~e3',
 +      description='NoVNC python libraries',
 +      author='Ghe Rivero',
diff --git a/meta-openstack/recipes-devtools/python/python-novnc_git.bb b/meta-openstack/recipes-devtools/python/python3-novnc_git.bb
similarity index 68%
rename from meta-openstack/recipes-devtools/python/python-novnc_git.bb
rename to meta-openstack/recipes-devtools/python/python3-novnc_git.bb
index da5f048e..b41b5876 100644
--- a/meta-openstack/recipes-devtools/python/python-novnc_git.bb
+++ b/meta-openstack/recipes-devtools/python/python3-novnc_git.bb
@@ -2,13 +2,11 @@ DESCRIPTION = "This package contains the core python parts of NoVNC"
 HOMEPAGE = "https://github.com/kanaka/noVNC"
 SECTION = "devel/python"
 
-PR = "r0"
-
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=6458695fb66dcd893becb5f9f912715e"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=99aebbcc36b17df855fad64d4b792bff"
 
-SRCREV = "3b8ec46fd26d644e6edbea4f46e630929297e448"
-PV = "0.5.1+git${SRCPV}"
+SRCREV = "463c39e4af98ec4106b87bbea17e1605aa4c6180"
+PV = "1.3.0"
 
 SRC_URI = "git://github.com/kanaka/noVNC.git;branch=master;protocol=https \
            file://python-distutils.patch"
-- 
2.25.1



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

* Re: [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: inherit setuptools3 not distutils
  2022-01-19  5:13 [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: " Wang Mingyu
  2022-01-19  5:13 ` [meta-virtualization][meta-cloud-services][PATCH 7/8] mod-wsgi: inherit setuptools3-base not distutils3-base Wang Mingyu
  2022-01-19  5:13 ` [meta-virtualization][meta-cloud-services][PATCH 8/8] python3-novnc: update 0.5.1 -> 1.3.0 Wang Mingyu
@ 2022-01-30 22:14 ` Bruce Ashfield
  2 siblings, 0 replies; 9+ messages in thread
From: Bruce Ashfield @ 2022-01-30 22:14 UTC (permalink / raw)
  To: wangmy; +Cc: meta-virtualization

Thanks for the update, the series is now applied.

Bruce

In message: [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: inherit setuptools3 not distutils
on 19/01/2022 wangmy wrote:

> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  .../recipes-devtools/python/python3-termcolor_1.1.0.bb          | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python3-termcolor_1.1.0.bb b/meta-openstack/recipes-devtools/python/python3-termcolor_1.1.0.bb
> index a8d50097..127287a7 100644
> --- a/meta-openstack/recipes-devtools/python/python3-termcolor_1.1.0.bb
> +++ b/meta-openstack/recipes-devtools/python/python3-termcolor_1.1.0.bb
> @@ -10,7 +10,7 @@ LIC_FILES_CHKSUM = "file://COPYING.txt;md5=809e8749b63567978acfbd81d9f6a27d"
>  SRC_URI[md5sum] = "043e89644f8909d462fbbfa511c768df"
>  SRC_URI[sha256sum] = "1d6d69ce66211143803fbc56652b41d73b4a400a2891d7bf7a1cdf4c02de613b"
>  
> -inherit distutils3 pypi
> +inherit setuptools3 pypi
>  
>  DEPENDS += " \
>          python3-pip \
> -- 
> 2.25.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7022): https://lists.yoctoproject.org/g/meta-virtualization/message/7022
> Mute This Topic: https://lists.yoctoproject.org/mt/88528859/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


In message: [meta-virtualization][meta-cloud-services][PATCH 7/8] mod-wsgi: inherit setuptools3-base not distutils3-base
on 19/01/2022 wangmy wrote:

> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb b/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb
> index 910bba1b..b0daf54d 100644
> --- a/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb
> +++ b/meta-openstack/recipes-support/mod-wsgi/mod-wsgi_git.bb
> @@ -20,7 +20,7 @@ SRC_URI = "\
>  	file://configure.ac-allow-PYTHON-values-to-be-passed-via-en.patch \        
>  	"
>  
> -inherit autotools-brokensep distutils3-base
> +inherit autotools-brokensep setuptools3-base
>  
>  DEPENDS += "apache2-native apache2 python3"
>  RDEPENDS:${PN} = "python3"
> -- 
> 2.25.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7021): https://lists.yoctoproject.org/g/meta-virtualization/message/7021
> Mute This Topic: https://lists.yoctoproject.org/mt/88528858/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


In message: [meta-virtualization][meta-cloud-services][PATCH 8/8] python3-novnc: update 0.5.1 -> 1.3.0
on 19/01/2022 wangmy wrote:

> refresh python-distutils.patch
> 
> License-Update:
> -year updated to 2019
> -file of the noVNC core library changed
> -the HTML, CSS, font and images files that included with the noVNC
>  source distibution changed
> -URL of history changed
> -files and projects that have been incorporated into
>  the noVNC core library changed
> -license texts changed
> 
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  .../python-distutils.patch                                | 4 ++--
>  .../python/{python-novnc_git.bb => python3-novnc_git.bb}  | 8 +++-----
>  2 files changed, 5 insertions(+), 7 deletions(-)
>  rename meta-openstack/recipes-devtools/python/{python-novnc => python3-novnc}/python-distutils.patch (91%)
>  rename meta-openstack/recipes-devtools/python/{python-novnc_git.bb => python3-novnc_git.bb} (68%)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python-novnc/python-distutils.patch b/meta-openstack/recipes-devtools/python/python3-novnc/python-distutils.patch
> similarity index 91%
> rename from meta-openstack/recipes-devtools/python/python-novnc/python-distutils.patch
> rename to meta-openstack/recipes-devtools/python/python3-novnc/python-distutils.patch
> index ef3393f3..85befc9f 100644
> --- a/meta-openstack/recipes-devtools/python/python-novnc/python-distutils.patch
> +++ b/meta-openstack/recipes-devtools/python/python3-novnc/python-distutils.patch
> @@ -1,13 +1,13 @@
>  Index: git/setup.py
>  ===================================================================
>  --- /dev/null
> -+++ git/setup.py
> ++++ b/setup.py
>  @@ -0,0 +1,14 @@
>  +#!/usr/bin/env python
>  +
>  +from distutils.core import setup
>  +
> -+setup(name='python-novnc',
> ++setup(name='python3-novnc',
>  +      version='2012.1~e3',
>  +      description='NoVNC python libraries',
>  +      author='Ghe Rivero',
> diff --git a/meta-openstack/recipes-devtools/python/python-novnc_git.bb b/meta-openstack/recipes-devtools/python/python3-novnc_git.bb
> similarity index 68%
> rename from meta-openstack/recipes-devtools/python/python-novnc_git.bb
> rename to meta-openstack/recipes-devtools/python/python3-novnc_git.bb
> index da5f048e..b41b5876 100644
> --- a/meta-openstack/recipes-devtools/python/python-novnc_git.bb
> +++ b/meta-openstack/recipes-devtools/python/python3-novnc_git.bb
> @@ -2,13 +2,11 @@ DESCRIPTION = "This package contains the core python parts of NoVNC"
>  HOMEPAGE = "https://github.com/kanaka/noVNC"
>  SECTION = "devel/python"
>  
> -PR = "r0"
> -
>  LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=6458695fb66dcd893becb5f9f912715e"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=99aebbcc36b17df855fad64d4b792bff"
>  
> -SRCREV = "3b8ec46fd26d644e6edbea4f46e630929297e448"
> -PV = "0.5.1+git${SRCPV}"
> +SRCREV = "463c39e4af98ec4106b87bbea17e1605aa4c6180"
> +PV = "1.3.0"
>  
>  SRC_URI = "git://github.com/kanaka/noVNC.git;branch=master;protocol=https \
>             file://python-distutils.patch"
> -- 
> 2.25.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7020): https://lists.yoctoproject.org/g/meta-virtualization/message/7020
> Mute This Topic: https://lists.yoctoproject.org/mt/88528857/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


In message: [meta-virtualization][meta-cloud-services][PATCH 5/8] python3-mimeparse: inherit setuptools3 not distutils
on 19/01/2022 wangmy wrote:

> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  .../recipes-devtools/python/python3-mimeparse_1.6.0.bb          | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python3-mimeparse_1.6.0.bb b/meta-openstack/recipes-devtools/python/python3-mimeparse_1.6.0.bb
> index da87dfdb..ae7bd430 100644
> --- a/meta-openstack/recipes-devtools/python/python3-mimeparse_1.6.0.bb
> +++ b/meta-openstack/recipes-devtools/python/python3-mimeparse_1.6.0.bb
> @@ -9,7 +9,7 @@ PYPI_PACKAGE = "python-mimeparse"
>  SRC_URI[md5sum] = "a32ae1df93be1ddb581d1c0fa124bab4"
>  SRC_URI[sha256sum] = "76e4b03d700a641fd7761d3cd4fdbbdcd787eade1ebfac43f877016328334f78"
>  
> -inherit distutils3 pypi setuptools3
> +inherit pypi setuptools3
>  
>  DISTUTILS_INSTALL_ARGS = "--root=${D} \
>      --prefix=${prefix} \
> -- 
> 2.25.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7019): https://lists.yoctoproject.org/g/meta-virtualization/message/7019
> Mute This Topic: https://lists.yoctoproject.org/mt/88528850/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


In message: [meta-virtualization][meta-cloud-services][PATCH 1/8] python-novnc: inherit setuptools3 not distutils
on 19/01/2022 wangmy wrote:

> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  meta-openstack/recipes-devtools/python/python-novnc_git.bb | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python-novnc_git.bb b/meta-openstack/recipes-devtools/python/python-novnc_git.bb
> index 50041ac9..da5f048e 100644
> --- a/meta-openstack/recipes-devtools/python/python-novnc_git.bb
> +++ b/meta-openstack/recipes-devtools/python/python-novnc_git.bb
> @@ -15,6 +15,6 @@ SRC_URI = "git://github.com/kanaka/noVNC.git;branch=master;protocol=https \
>  
>  S = "${WORKDIR}/git"
>  
> -inherit distutils3
> +inherit setuptools3
>  
> -DEPENDS += " python-websockify"
> +DEPENDS += " python3-websockify"
> -- 
> 2.25.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7015): https://lists.yoctoproject.org/g/meta-virtualization/message/7015
> Mute This Topic: https://lists.yoctoproject.org/mt/88528832/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


In message: [meta-virtualization][meta-cloud-services][PATCH 2/8] python3-fixtures: inherit setuptools3 not distutils
on 19/01/2022 wangmy wrote:

> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  .../recipes-devtools/python/python3-fixtures_3.0.0.bb           | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb b/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
> index 6cd0d810..a9335317 100644
> --- a/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
> +++ b/meta-openstack/recipes-devtools/python/python3-fixtures_3.0.0.bb
> @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=239e2f4698b85aad5ed39bae5d2ef226"
>  SRC_URI[md5sum] = "cd6345b497a62fad739efee66346c2e0"
>  SRC_URI[sha256sum] = "fcf0d60234f1544da717a9738325812de1f42c2fa085e2d9252d8fff5712b2ef"
>  
> -inherit distutils3 pypi
> +inherit setuptools3 pypi
>  
>  DISTUTILS_INSTALL_ARGS = "--root=${D} \
>      --prefix=${prefix} \
> -- 
> 2.25.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7018): https://lists.yoctoproject.org/g/meta-virtualization/message/7018
> Mute This Topic: https://lists.yoctoproject.org/mt/88528836/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


In message: [meta-virtualization][meta-cloud-services][PATCH 4/8] python3-lockfile: inherit setuptools3 not distutils
on 19/01/2022 wangmy wrote:

> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  .../recipes-devtools/python/python3-lockfile_0.12.2.bb          | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python3-lockfile_0.12.2.bb b/meta-openstack/recipes-devtools/python/python3-lockfile_0.12.2.bb
> index 81e1f22b..ba446380 100644
> --- a/meta-openstack/recipes-devtools/python/python3-lockfile_0.12.2.bb
> +++ b/meta-openstack/recipes-devtools/python/python3-lockfile_0.12.2.bb
> @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=2340dffbbfea534b58f1349984eeef72"
>  SRC_URI[md5sum] = "a6a1a82957a23afdf44cfdd039b65ff9"
>  SRC_URI[sha256sum] = "6aed02de03cba24efabcd600b30540140634fc06cfa603822d508d5361e9f799"
>  
> -inherit distutils3 pypi
> +inherit setuptools3 pypi
>  
>  DEPENDS += "\
>      python3-pbr \
> -- 
> 2.25.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7016): https://lists.yoctoproject.org/g/meta-virtualization/message/7016
> Mute This Topic: https://lists.yoctoproject.org/mt/88528834/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


In message: [meta-virtualization][meta-cloud-services][PATCH 3/8] python3-ipaddr: inherit setuptools3 not distutils
on 19/01/2022 wangmy wrote:

> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>  meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb b/meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb
> index 2706954a..bb236eb8 100644
> --- a/meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb
> +++ b/meta-openstack/recipes-devtools/python/python3-ipaddr_2.2.0.bb
> @@ -7,7 +7,7 @@ LIC_FILES_CHKSUM = "file://PKG-INFO;md5=e7e54827196088e6e96b33e9aec35c4a"
>  SRC_URI[md5sum] = "f88353e40dec06410acfa075b8209b27"
>  SRC_URI[sha256sum] = "4092dfe667588d16aa12b59acb7c8a4024e5dcb23a681cd0b0b602373eca88d6"
>  
> -inherit distutils3 pypi
> +inherit setuptools3 pypi
>  
>  DEPENDS += " \
>          python3-pip \
> -- 
> 2.25.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7017): https://lists.yoctoproject.org/g/meta-virtualization/message/7017
> Mute This Topic: https://lists.yoctoproject.org/mt/88528835/1050810
> Group Owner: meta-virtualization+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/meta-virtualization/unsub [bruce.ashfield@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 




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

end of thread, other threads:[~2022-01-30 22:14 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-19  5:12 [meta-virtualization][meta-cloud-services][PATCH 1/8] python-novnc: inherit setuptools3 not distutils Wang Mingyu
2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 2/8] python3-fixtures: " Wang Mingyu
2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 3/8] python3-ipaddr: " Wang Mingyu
2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 4/8] python3-lockfile: " Wang Mingyu
2022-01-19  5:12 ` [meta-virtualization][meta-cloud-services][PATCH 5/8] python3-mimeparse: " Wang Mingyu
2022-01-19  5:13 [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: " Wang Mingyu
2022-01-19  5:13 ` [meta-virtualization][meta-cloud-services][PATCH 7/8] mod-wsgi: inherit setuptools3-base not distutils3-base Wang Mingyu
2022-01-19  5:13 ` [meta-virtualization][meta-cloud-services][PATCH 8/8] python3-novnc: update 0.5.1 -> 1.3.0 Wang Mingyu
2022-01-30 22:14 ` [meta-virtualization][meta-cloud-services][PATCH 6/8] python3-termcolor: inherit setuptools3 not distutils 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.