Openembedded Devel Discussions
 help / color / mirror / Atom feed
* [meta-python][PATCH v2] meta-python: Drop RDEPEND'ing on python3-typing
@ 2020-11-11 15:49 Khem Raj
  2020-11-12 20:01 ` [oe] " Trevor Gamblin
  0 siblings, 1 reply; 2+ messages in thread
From: Khem Raj @ 2020-11-11 15:49 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Khem Raj

Its part of core python package now

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
v2: Add remaining recipes

 meta-python/recipes-devtools/python/python-m2crypto.inc         | 1 -
 meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb    | 1 -
 meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb    | 1 -
 .../recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb   | 1 -
 meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb      | 1 -
 .../recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb      | 1 -
 meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb | 2 --
 meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb | 1 -
 8 files changed, 9 deletions(-)

diff --git a/meta-python/recipes-devtools/python/python-m2crypto.inc b/meta-python/recipes-devtools/python/python-m2crypto.inc
index 81c81645af..797a0354bf 100644
--- a/meta-python/recipes-devtools/python/python-m2crypto.inc
+++ b/meta-python/recipes-devtools/python/python-m2crypto.inc
@@ -25,7 +25,6 @@ RDEPENDS_${PN} += "\
   ${PYTHON_PN}-netserver \
   ${PYTHON_PN}-numbers \
   ${PYTHON_PN}-smtpd \
-  ${PYTHON_PN}-typing \
   ${PYTHON_PN}-xmlrpc \
 "
 
diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
index 178e68bd97..6cd5a4cab5 100644
--- a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
+++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
@@ -16,6 +16,5 @@ RDEPENDS_${PN} = "\
     ${PYTHON_PN}-idna-ssl \
     ${PYTHON_PN}-misc \
     ${PYTHON_PN}-multidict \
-    ${PYTHON_PN}-typing \
     ${PYTHON_PN}-yarl \
 "
diff --git a/meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb b/meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb
index a26835b607..9f152a1d60 100644
--- a/meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb
+++ b/meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb
@@ -9,7 +9,6 @@ SRC_URI[sha256sum] = "61f9ae9322e38ae64996848421afbdb018239a99c4e796fe064f172d6c
 
 DEPENDS += "python3-setuptools-scm-native"
 RDEPENDS_${PN} += "\
-  python3-typing \
   python3-dynamic-dispatch \
   python3-typeguard \
 "
diff --git a/meta-python/recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb b/meta-python/recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb
index 2bf487584a..0ed5df1b2e 100644
--- a/meta-python/recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb
+++ b/meta-python/recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb
@@ -12,7 +12,6 @@ PYPI_PACKAGE = "dynamic_dispatch"
 
 DEPENDS += "python3-setuptools-scm-native"
 RDEPENDS_${PN} += "\
-  python3-typing \
   python3-typeguard \
 "
 
diff --git a/meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb b/meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb
index 2bf9d07533..70527e026c 100644
--- a/meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb
+++ b/meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb
@@ -15,7 +15,6 @@ RDEPENDS_${PN} += "\
     python3-json \
     python3-logging \
     python3-netclient \
-    python3-typing \
 "
 
 BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
index 98db23039b..75a0926f08 100644
--- a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
@@ -17,7 +17,6 @@ RDEPENDS_${PN} += "\
     python3-logging \
     python3-netclient \
     python3-pkgutil \
-    python3-typing \
 "
 
 BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb b/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
index bd92216776..cb5c372352 100644
--- a/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
+++ b/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
@@ -28,6 +28,4 @@ DEPENDS += "\
     python3-setuptools-scm-native \
 "
 
-RDEPENDS_${PN} += "python3-typing"
-
 BBCLASSEXTEND = "native nativesdk"
diff --git a/meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb b/meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb
index b950d6f632..e567e0ba28 100644
--- a/meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb
+++ b/meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb
@@ -9,7 +9,6 @@ inherit pypi setuptools3 ptest
 
 RDEPENDS_${PN}_class-target = "\
     ${PYTHON_PN}-stringold \
-    ${PYTHON_PN}-typing \
 "
 
 SRC_URI += " \
-- 
2.29.2


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

* Re: [oe] [meta-python][PATCH v2] meta-python: Drop RDEPEND'ing on python3-typing
  2020-11-11 15:49 [meta-python][PATCH v2] meta-python: Drop RDEPEND'ing on python3-typing Khem Raj
@ 2020-11-12 20:01 ` Trevor Gamblin
  0 siblings, 0 replies; 2+ messages in thread
From: Trevor Gamblin @ 2020-11-12 20:01 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 5186 bytes --]


On 11/11/20 10:49 AM, Khem Raj wrote:
> [Please note this e-mail is from an EXTERNAL e-mail address]
>
> Its part of core python package now
>
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
> v2: Add remaining recipes
>
>   meta-python/recipes-devtools/python/python-m2crypto.inc         | 1 -
>   meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb    | 1 -
>   meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb    | 1 -
>   .../recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb   | 1 -
>   meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb      | 1 -
>   .../recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb      | 1 -
>   meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb | 2 --
>   meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb | 1 -
>   8 files changed, 9 deletions(-)
>
> diff --git a/meta-python/recipes-devtools/python/python-m2crypto.inc b/meta-python/recipes-devtools/python/python-m2crypto.inc
> index 81c81645af..797a0354bf 100644
> --- a/meta-python/recipes-devtools/python/python-m2crypto.inc
> +++ b/meta-python/recipes-devtools/python/python-m2crypto.inc
> @@ -25,7 +25,6 @@ RDEPENDS_${PN} += "\
>     ${PYTHON_PN}-netserver \
>     ${PYTHON_PN}-numbers \
>     ${PYTHON_PN}-smtpd \
> -  ${PYTHON_PN}-typing \
>     ${PYTHON_PN}-xmlrpc \
>   "
>
> diff --git a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
> index 178e68bd97..6cd5a4cab5 100644
> --- a/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-aiohttp_3.7.2.bb
> @@ -16,6 +16,5 @@ RDEPENDS_${PN} = "\
>       ${PYTHON_PN}-idna-ssl \
>       ${PYTHON_PN}-misc \
>       ${PYTHON_PN}-multidict \
> -    ${PYTHON_PN}-typing \
>       ${PYTHON_PN}-yarl \
>   "
> diff --git a/meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb b/meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb
> index a26835b607..9f152a1d60 100644
> --- a/meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-argexec_1.0.3.bb
> @@ -9,7 +9,6 @@ SRC_URI[sha256sum] = "61f9ae9322e38ae64996848421afbdb018239a99c4e796fe064f172d6c
>
>   DEPENDS += "python3-setuptools-scm-native"
>   RDEPENDS_${PN} += "\
> -  python3-typing \
>     python3-dynamic-dispatch \
>     python3-typeguard \
>   "
> diff --git a/meta-python/recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb b/meta-python/recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb
> index 2bf487584a..0ed5df1b2e 100644
> --- a/meta-python/recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-dynamic-dispatch_1.0.3.bb
> @@ -12,7 +12,6 @@ PYPI_PACKAGE = "dynamic_dispatch"
>
>   DEPENDS += "python3-setuptools-scm-native"
>   RDEPENDS_${PN} += "\
> -  python3-typing \
>     python3-typeguard \
>   "
>
> diff --git a/meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb b/meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb
> index 2bf9d07533..70527e026c 100644
> --- a/meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb
> +++ b/meta-python/recipes-devtools/python/python3-gmqtt_0.6.7.bb
> @@ -15,7 +15,6 @@ RDEPENDS_${PN} += "\
>       python3-json \
>       python3-logging \
>       python3-netclient \
> -    python3-typing \
>   "
>
>   BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
> index 98db23039b..75a0926f08 100644
> --- a/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-jsonrpcserver_4.1.3.bb
> @@ -17,7 +17,6 @@ RDEPENDS_${PN} += "\
>       python3-logging \
>       python3-netclient \
>       python3-pkgutil \
> -    python3-typing \
>   "
>
>   BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb b/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
> index bd92216776..cb5c372352 100644
> --- a/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-typeguard_2.10.0.bb
> @@ -28,6 +28,4 @@ DEPENDS += "\
>       python3-setuptools-scm-native \
>   "
>
> -RDEPENDS_${PN} += "python3-typing"
> -
>   BBCLASSEXTEND = "native nativesdk"
> diff --git a/meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb b/meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb
> index b950d6f632..e567e0ba28 100644
> --- a/meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-webcolors_1.11.1.bb
> @@ -9,7 +9,6 @@ inherit pypi setuptools3 ptest
>
>   RDEPENDS_${PN}_class-target = "\
>       ${PYTHON_PN}-stringold \
> -    ${PYTHON_PN}-typing \
>   "
>
>   SRC_URI += " \
> --
> 2.29.2
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 5864 bytes --]

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

end of thread, other threads:[~2020-11-12 20:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-11-11 15:49 [meta-python][PATCH v2] meta-python: Drop RDEPEND'ing on python3-typing Khem Raj
2020-11-12 20:01 ` [oe] " Trevor Gamblin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox