diff mbox series

[meta-python] python3-wxgtk4: replace deprecated inspect.getargspec

Message ID 20221129145137.18173-1-kai.kang@windriver.com
State Under Review
Headers show
Series [meta-python] python3-wxgtk4: replace deprecated inspect.getargspec | expand

Commit Message

Kai Nov. 29, 2022, 2:51 p.m. UTC
From: Kai Kang <kai.kang@windriver.com>

Backport patch to replace deprecated inspect.getargspec in lib pubsub.

And add python3-pip to RDEPENDS which is required by utils wxdemo,
wxdocs and wxget provided by python3-wxgtk4.

Signed-off-by: Kai Kang <kai.kang@windriver.com>
---
 ...eplace-deprecated-inspect.getargspec.patch | 65 +++++++++++++++++++
 .../python3-wxgtk4/python3-wxgtk4_4.2.0.bb    |  2 +
 2 files changed, 67 insertions(+)
 create mode 100644 meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch

Comments

Khem Raj Nov. 29, 2022, 10:19 p.m. UTC | #1
On Tue, Nov 29, 2022 at 6:51 AM Kai Kang <kai.kang@eng.windriver.com> wrote:
>
> From: Kai Kang <kai.kang@windriver.com>
>
> Backport patch to replace deprecated inspect.getargspec in lib pubsub.
>
> And add python3-pip to RDEPENDS which is required by utils wxdemo,
> wxdocs and wxget provided by python3-wxgtk4.
>
> Signed-off-by: Kai Kang <kai.kang@windriver.com>
> ---
>  ...eplace-deprecated-inspect.getargspec.patch | 65 +++++++++++++++++++
>  .../python3-wxgtk4/python3-wxgtk4_4.2.0.bb    |  2 +
>  2 files changed, 67 insertions(+)
>  create mode 100644 meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch
>
> diff --git a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch
> new file mode 100644
> index 000000000..4501667f9
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch
> @@ -0,0 +1,65 @@
> +Upstream-Status: Backport [https://github.com/wxWidgets/Phoenix/commit/9986a0d5]
> +
> +Signed-off-by: Kai Kang <kai.kang@windriver.com>
> +
> +From 9986a0d5c24b5d45ddf571d60351f68765a8a9be Mon Sep 17 00:00:00 2001
> +From: Scott Talbert <swt@techie.net>
> +Date: Mon, 8 Aug 2022 22:35:58 -0400
> +Subject: [PATCH] pypubsub: Replace deprecated inspect.getargspec
> +
> +inspect.getargspec was removed in Python 3.11.  This is a backport of:
> +https://github.com/schollii/pypubsub/commit/089c7a73f85c76a3aa22e4b10c71db1bf65a8637
> +---
> + wx/lib/pubsub/core/callables.py | 23 +++++++++++++++--------
> + 1 file changed, 15 insertions(+), 8 deletions(-)
> +
> +diff --git a/wx/lib/pubsub/core/callables.py b/wx/lib/pubsub/core/callables.py
> +index 65eb1ebe..7e798c54 100644
> +--- a/wx/lib/pubsub/core/callables.py
> ++++ b/wx/lib/pubsub/core/callables.py
> +@@ -12,7 +12,7 @@ CallArgsInfo regarding its autoTopicArgName data member.
> +
> + """
> +
> +-from inspect import getargspec, ismethod, isfunction
> ++from inspect import ismethod, isfunction, signature, Parameter
> +
> + from .. import py2and3
> +
> +@@ -133,19 +133,26 @@ class CallArgsInfo:
> +         self.autoTopicArgName = None."""
> +
> +         #args, firstArgIdx, defaultVals, acceptsAllKwargs
> +-        (allParams, varParamName, varOptParamName, defaultVals) = getargspec(func)
> +-        if defaultVals is None:
> +-            defaultVals = []
> +-        else:
> +-            defaultVals = list(defaultVals)
> ++        allParams = []
> ++        defaultVals = []
> ++        varParamName = None
> ++        varOptParamName = None
> ++        for argName, param in signature(func).parameters.items():
> ++            if param.default != Parameter.empty:
> ++                defaultVals.append(param.default)
> ++            if param.kind == Parameter.VAR_POSITIONAL:
> ++                varParamName = argName
> ++            elif param.kind == Parameter.VAR_KEYWORD:
> ++                varOptParamName = argName
> ++            else:
> ++                allParams.append(argName)
> +
> +         self.acceptsAllKwargs      = (varOptParamName is not None)
> +         self.acceptsAllUnnamedArgs = (varParamName    is not None)
> +-
> +         self.allParams = allParams
> +-        del self.allParams[0:firstArgIdx] # does nothing if firstArgIdx == 0
> +
> +         self.numRequired = len(self.allParams) - len(defaultVals)
> ++        assert len(self.allParams) >= len(defaultVals)
> +         assert self.numRequired >= 0
> +
> +         # if listener wants topic, remove that arg from args/defaultVals
> +--
> +2.34.1
> +
> diff --git a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb
> index faea43777..df23037fc 100644
> --- a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb
> +++ b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb
> @@ -13,6 +13,7 @@ PYPI_PACKAGE = "wxPython"
>  SRC_URI += "file://add-back-option-build-base.patch \
>              file://wxgtk-fixup-build-scripts.patch \
>              file://not-overwrite-cflags-cxxflags.patch \
> +            file://0001-pypubsub-Replace-deprecated-inspect.getargspec.patch \
>              "

Fails to apply

patching file wx/lib/pubsub/core/callables.py
Hunk #1 FAILED at 12 (different line endings).
Hunk #2 FAILED at 133 (different line endings).
2 out of 2 hunks FAILED -- rejects in file wx/lib/pubsub/core/callables.py
Patch 0001-pypubsub-Replace-deprecated-inspect.getargspec.patch does
not apply (enforce with -f)


>  SRC_URI[sha256sum] = "663cebc4509d7e5d113518865fe274f77f95434c5d57bc386ed58d65ceed86c7"
>
> @@ -29,6 +30,7 @@ RDEPENDS:${PN} = "\
>      python3-image \
>      python3-numpy \
>      python3-pillow \
> +    python3-pip \
>      python3-pprint \
>      python3-pycairo \
>      python3-six \
> --
> 2.17.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#99845): https://lists.openembedded.org/g/openembedded-devel/message/99845
> Mute This Topic: https://lists.openembedded.org/mt/95335564/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
Kai Nov. 30, 2022, 5:35 a.m. UTC | #2
On 11/30/22 06:19, Khem Raj wrote:
> On Tue, Nov 29, 2022 at 6:51 AM Kai Kang <kai.kang@eng.windriver.com> wrote:
>> From: Kai Kang <kai.kang@windriver.com>
>>
>> Backport patch to replace deprecated inspect.getargspec in lib pubsub.
>>
>> And add python3-pip to RDEPENDS which is required by utils wxdemo,
>> wxdocs and wxget provided by python3-wxgtk4.
>>
>> Signed-off-by: Kai Kang <kai.kang@windriver.com>
>> ---
>>   ...eplace-deprecated-inspect.getargspec.patch | 65 +++++++++++++++++++
>>   .../python3-wxgtk4/python3-wxgtk4_4.2.0.bb    |  2 +
>>   2 files changed, 67 insertions(+)
>>   create mode 100644 meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch
>>
>> diff --git a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch
>> new file mode 100644
>> index 000000000..4501667f9
>> --- /dev/null
>> +++ b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch
>> @@ -0,0 +1,65 @@
>> +Upstream-Status: Backport [https://github.com/wxWidgets/Phoenix/commit/9986a0d5]
>> +
>> +Signed-off-by: Kai Kang <kai.kang@windriver.com>
>> +
>> +From 9986a0d5c24b5d45ddf571d60351f68765a8a9be Mon Sep 17 00:00:00 2001
>> +From: Scott Talbert <swt@techie.net>
>> +Date: Mon, 8 Aug 2022 22:35:58 -0400
>> +Subject: [PATCH] pypubsub: Replace deprecated inspect.getargspec
>> +
>> +inspect.getargspec was removed in Python 3.11.  This is a backport of:
>> +https://github.com/schollii/pypubsub/commit/089c7a73f85c76a3aa22e4b10c71db1bf65a8637
>> +---
>> + wx/lib/pubsub/core/callables.py | 23 +++++++++++++++--------
>> + 1 file changed, 15 insertions(+), 8 deletions(-)
>> +
>> +diff --git a/wx/lib/pubsub/core/callables.py b/wx/lib/pubsub/core/callables.py
>> +index 65eb1ebe..7e798c54 100644
>> +--- a/wx/lib/pubsub/core/callables.py
>> ++++ b/wx/lib/pubsub/core/callables.py
>> +@@ -12,7 +12,7 @@ CallArgsInfo regarding its autoTopicArgName data member.
>> +
>> + """
>> +
>> +-from inspect import getargspec, ismethod, isfunction
>> ++from inspect import ismethod, isfunction, signature, Parameter
>> +
>> + from .. import py2and3
>> +
>> +@@ -133,19 +133,26 @@ class CallArgsInfo:
>> +         self.autoTopicArgName = None."""
>> +
>> +         #args, firstArgIdx, defaultVals, acceptsAllKwargs
>> +-        (allParams, varParamName, varOptParamName, defaultVals) = getargspec(func)
>> +-        if defaultVals is None:
>> +-            defaultVals = []
>> +-        else:
>> +-            defaultVals = list(defaultVals)
>> ++        allParams = []
>> ++        defaultVals = []
>> ++        varParamName = None
>> ++        varOptParamName = None
>> ++        for argName, param in signature(func).parameters.items():
>> ++            if param.default != Parameter.empty:
>> ++                defaultVals.append(param.default)
>> ++            if param.kind == Parameter.VAR_POSITIONAL:
>> ++                varParamName = argName
>> ++            elif param.kind == Parameter.VAR_KEYWORD:
>> ++                varOptParamName = argName
>> ++            else:
>> ++                allParams.append(argName)
>> +
>> +         self.acceptsAllKwargs      = (varOptParamName is not None)
>> +         self.acceptsAllUnnamedArgs = (varParamName    is not None)
>> +-
>> +         self.allParams = allParams
>> +-        del self.allParams[0:firstArgIdx] # does nothing if firstArgIdx == 0
>> +
>> +         self.numRequired = len(self.allParams) - len(defaultVals)
>> ++        assert len(self.allParams) >= len(defaultVals)
>> +         assert self.numRequired >= 0
>> +
>> +         # if listener wants topic, remove that arg from args/defaultVals
>> +--
>> +2.34.1
>> +
>> diff --git a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb
>> index faea43777..df23037fc 100644
>> --- a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb
>> +++ b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb
>> @@ -13,6 +13,7 @@ PYPI_PACKAGE = "wxPython"
>>   SRC_URI += "file://add-back-option-build-base.patch \
>>               file://wxgtk-fixup-build-scripts.patch \
>>               file://not-overwrite-cflags-cxxflags.patch \
>> +            file://0001-pypubsub-Replace-deprecated-inspect.getargspec.patch \
>>               "
> Fails to apply
>
> patching file wx/lib/pubsub/core/callables.py
> Hunk #1 FAILED at 12 (different line endings).
> Hunk #2 FAILED at 133 (different line endings).
> 2 out of 2 hunks FAILED -- rejects in file wx/lib/pubsub/core/callables.py
> Patch 0001-pypubsub-Replace-deprecated-inspect.getargspec.patch does
> not apply (enforce with -f)

Sorry, my fault. v2 will be sent.

Kai

>
>
>>   SRC_URI[sha256sum] = "663cebc4509d7e5d113518865fe274f77f95434c5d57bc386ed58d65ceed86c7"
>>
>> @@ -29,6 +30,7 @@ RDEPENDS:${PN} = "\
>>       python3-image \
>>       python3-numpy \
>>       python3-pillow \
>> +    python3-pip \
>>       python3-pprint \
>>       python3-pycairo \
>>       python3-six \
>> --
>> 2.17.1
>>
>>
>> -=-=-=-=-=-=-=-=-=-=-=-
>> Links: You receive all messages sent to this group.
>> View/Reply Online (#99845): https://lists.openembedded.org/g/openembedded-devel/message/99845
>> Mute This Topic: https://lists.openembedded.org/mt/95335564/1997914
>> Group Owner: openembedded-devel+owner@lists.openembedded.org
>> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
>> -=-=-=-=-=-=-=-=-=-=-=-
>>
diff mbox series

Patch

diff --git a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch
new file mode 100644
index 000000000..4501667f9
--- /dev/null
+++ b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4/0001-pypubsub-Replace-deprecated-inspect.getargspec.patch
@@ -0,0 +1,65 @@ 
+Upstream-Status: Backport [https://github.com/wxWidgets/Phoenix/commit/9986a0d5]
+
+Signed-off-by: Kai Kang <kai.kang@windriver.com>
+
+From 9986a0d5c24b5d45ddf571d60351f68765a8a9be Mon Sep 17 00:00:00 2001
+From: Scott Talbert <swt@techie.net>
+Date: Mon, 8 Aug 2022 22:35:58 -0400
+Subject: [PATCH] pypubsub: Replace deprecated inspect.getargspec
+
+inspect.getargspec was removed in Python 3.11.  This is a backport of:
+https://github.com/schollii/pypubsub/commit/089c7a73f85c76a3aa22e4b10c71db1bf65a8637
+---
+ wx/lib/pubsub/core/callables.py | 23 +++++++++++++++--------
+ 1 file changed, 15 insertions(+), 8 deletions(-)
+
+diff --git a/wx/lib/pubsub/core/callables.py b/wx/lib/pubsub/core/callables.py
+index 65eb1ebe..7e798c54 100644
+--- a/wx/lib/pubsub/core/callables.py
++++ b/wx/lib/pubsub/core/callables.py
+@@ -12,7 +12,7 @@ CallArgsInfo regarding its autoTopicArgName data member.
+ 
+ """
+ 
+-from inspect import getargspec, ismethod, isfunction
++from inspect import ismethod, isfunction, signature, Parameter
+ 
+ from .. import py2and3
+ 
+@@ -133,19 +133,26 @@ class CallArgsInfo:
+         self.autoTopicArgName = None."""
+ 
+         #args, firstArgIdx, defaultVals, acceptsAllKwargs
+-        (allParams, varParamName, varOptParamName, defaultVals) = getargspec(func)
+-        if defaultVals is None:
+-            defaultVals = []
+-        else:
+-            defaultVals = list(defaultVals)
++        allParams = []
++        defaultVals = []
++        varParamName = None
++        varOptParamName = None
++        for argName, param in signature(func).parameters.items():
++            if param.default != Parameter.empty:
++                defaultVals.append(param.default)
++            if param.kind == Parameter.VAR_POSITIONAL:
++                varParamName = argName
++            elif param.kind == Parameter.VAR_KEYWORD:
++                varOptParamName = argName
++            else:
++                allParams.append(argName)
+ 
+         self.acceptsAllKwargs      = (varOptParamName is not None)
+         self.acceptsAllUnnamedArgs = (varParamName    is not None)
+-
+         self.allParams = allParams
+-        del self.allParams[0:firstArgIdx] # does nothing if firstArgIdx == 0
+ 
+         self.numRequired = len(self.allParams) - len(defaultVals)
++        assert len(self.allParams) >= len(defaultVals)
+         assert self.numRequired >= 0
+ 
+         # if listener wants topic, remove that arg from args/defaultVals
+-- 
+2.34.1
+
diff --git a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb
index faea43777..df23037fc 100644
--- a/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb
+++ b/meta-python/recipes-devtools/python3-wxgtk4/python3-wxgtk4_4.2.0.bb
@@ -13,6 +13,7 @@  PYPI_PACKAGE = "wxPython"
 SRC_URI += "file://add-back-option-build-base.patch \
             file://wxgtk-fixup-build-scripts.patch \
             file://not-overwrite-cflags-cxxflags.patch \
+            file://0001-pypubsub-Replace-deprecated-inspect.getargspec.patch \
             "
 SRC_URI[sha256sum] = "663cebc4509d7e5d113518865fe274f77f95434c5d57bc386ed58d65ceed86c7"
 
@@ -29,6 +30,7 @@  RDEPENDS:${PN} = "\
     python3-image \
     python3-numpy \
     python3-pillow \
+    python3-pip \
     python3-pprint \
     python3-pycairo \
     python3-six \