All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] qpid-python: switch from distutils3 to setuptools3
@ 2022-11-28 22:25 dylantdmt
  2022-11-28 23:23 ` [PATCH] python-psycopg: switched from distutils to setuptools dylantdmt
  0 siblings, 1 reply; 3+ messages in thread
From: dylantdmt @ 2022-11-28 22:25 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Dylan Turner

From: Dylan Turner <dylan.turner@ni.com>

---
 meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb b/meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb
index 9db46859..3a486b4f 100644
--- a/meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb
+++ b/meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb
@@ -12,4 +12,5 @@ SRC_URI[sha256sum] = "3ca55a5aa11fbbd4e26cb4cdafc9658489c159acadceac60c89d4bfb5c
 
 S = "${WORKDIR}/qpid-${PV}/python"
 
-inherit distutils3
+inherit setuptools3
+
-- 
2.38.1



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

* [PATCH] python-psycopg: switched from distutils to setuptools
@ 2022-11-28 23:23 ` dylantdmt
  2022-12-01 21:49   ` [meta-virtualization] " Bruce Ashfield
  0 siblings, 1 reply; 3+ messages in thread
From: dylantdmt @ 2022-11-28 23:23 UTC (permalink / raw)
  To: meta-virtualization; +Cc: Dylan Turner

From: Dylan Turner <dylan.turner@ni.com>

---
 meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb b/meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb
index d054214b..94787e6f 100644
--- a/meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb
+++ b/meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb
@@ -12,7 +12,7 @@ SRC_URI += " \
 SRC_URI[md5sum] = "9e7d6f695fc7f8d1c42a7905449246c9"
 SRC_URI[sha256sum] = "eccf962d41ca46e6326b97c8fe0a6687b58dfc1a5f6540ed071ff1474cea749e"
 
-inherit distutils3 pypi
+inherit setuptools3 pypi
 
 DEPENDS += " \
     postgresql \
-- 
2.38.1



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

* Re: [meta-virtualization] [PATCH] python-psycopg: switched from distutils to setuptools
  2022-11-28 23:23 ` [PATCH] python-psycopg: switched from distutils to setuptools dylantdmt
@ 2022-12-01 21:49   ` Bruce Ashfield
  0 siblings, 0 replies; 3+ messages in thread
From: Bruce Ashfield @ 2022-12-01 21:49 UTC (permalink / raw)
  To: dylantdmt; +Cc: meta-virtualization, Dylan Turner

both of these are merged.

Thanks for the changes, I've been trying to make time to get m-c-s
cleaned up, and this helps a lot!

Bruce

In message: [meta-virtualization] [PATCH] python-psycopg: switched from distutils to setuptools
on 28/11/2022 dylantdmt@gmail.com wrote:

> From: Dylan Turner <dylan.turner@ni.com>
> 
> ---
>  meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb b/meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb
> index d054214b..94787e6f 100644
> --- a/meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb
> +++ b/meta-openstack/recipes-devtools/python/python-psycopg2_2.7.5.bb
> @@ -12,7 +12,7 @@ SRC_URI += " \
>  SRC_URI[md5sum] = "9e7d6f695fc7f8d1c42a7905449246c9"
>  SRC_URI[sha256sum] = "eccf962d41ca46e6326b97c8fe0a6687b58dfc1a5f6540ed071ff1474cea749e"
>  
> -inherit distutils3 pypi
> +inherit setuptools3 pypi
>  
>  DEPENDS += " \
>      postgresql \
> -- 
> 2.38.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7702): https://lists.yoctoproject.org/g/meta-virtualization/message/7702
> Mute This Topic: https://lists.yoctoproject.org/mt/95323888/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] [PATCH] qpid-python: switch from distutils3 to setuptools3
on 28/11/2022 dylantdmt@gmail.com wrote:

> From: Dylan Turner <dylan.turner@ni.com>
> 
> ---
>  meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb | 3 ++-
>  1 file changed, 2 insertions(+), 1 deletion(-)
> 
> diff --git a/meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb b/meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb
> index 9db46859..3a486b4f 100644
> --- a/meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb
> +++ b/meta-openstack/recipes-extended/qpid/qpid-python_0.20.bb
> @@ -12,4 +12,5 @@ SRC_URI[sha256sum] = "3ca55a5aa11fbbd4e26cb4cdafc9658489c159acadceac60c89d4bfb5c
>  
>  S = "${WORKDIR}/qpid-${PV}/python"
>  
> -inherit distutils3
> +inherit setuptools3
> +
> -- 
> 2.38.1
> 

> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#7701): https://lists.yoctoproject.org/g/meta-virtualization/message/7701
> Mute This Topic: https://lists.yoctoproject.org/mt/95322675/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] 3+ messages in thread

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

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-28 22:25 [PATCH] qpid-python: switch from distutils3 to setuptools3 dylantdmt
2022-11-28 23:23 ` [PATCH] python-psycopg: switched from distutils to setuptools dylantdmt
2022-12-01 21:49   ` [meta-virtualization] " 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.