On host PC using GCC 13, stackctrl.c fails to compile
with the following error:
../py/stackctrl.c: In function 'mp_stack_ctrl_init':
../py/stackctrl.c:32:32: error: storing the address of
local variable 'stack_dummy'
in 'mp_state_ctx.thread.stack_top' [-Werror=dangling-pointer=]
32 | MP_STATE_THREAD(stack_top) = (char *)&stack_dummy;
../py/stackctrl.c:31:18: note: 'stack_dummy' declared here
31 | volatile int stack_dummy;
| ^~~~~~~~~~~
In file included from ../py/runtime.h:29,
from ../py/stackctrl.c:27:
../py/mpstate.h:296:23: note: 'mp_state_ctx' declared here
296 | extern mp_state_ctx_t mp_state_ctx;
| ^~~~~~~~~~~~
cc1: all warnings being treated as errors
Fixed accordingly by ignoring -dangling-pointer warning
inside mp_stack_ctrl_init function.
Signed-off-by: Jean-Paul Etienne <fractalclone@gmail.com>
(cherry picked from commit 4c1b74ede3)
This loads the module, which should return the path of the CA bundle
and verifies that the file exists.
Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
(cherry picked from commit 219edcfa31)
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This renames the source package to python-maxminddb to match other
Python packages.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit ca7fdf61dc)
This renames the source package to python-pyroute2 to match other Python
packages.
This also updates/simplifies the package dependencies.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit c5c02c060b)
The package changed to the hatchling build backend and removed the
dependency on apipkg.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 0218c9067a)
This renames the source package to python-sqlparse to match other Python
packages.
This also updates the build dependencies; package now uses the flit-core
build backend.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit aa44ed23ce)
From the README:
A project to manage callbacks in asyncio projects.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 0eabbb8ef7)
From the README:
frozenlist.FrozenList is a list-like structure which implements
collections.abc.MutableSequence. The list is mutable until
FrozenList.freeze is called, after which list modifications raise
RuntimeError.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 9c8e4c4aef)
From the README:
A library that helps you read text from an unknown charset encoding.
Motivated by chardet, I'm trying to resolve the issue by taking a new
approach. All IANA character set names for which the Python core library
provides codecs are supported.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 5ef294f64f)
This renames the source package to python-unidecode to match other
Python packages.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 35d6cdf8bb)
This renames the source package to python-netifaces to match other
Python packages.
Signed-off-by: Jeffery To <jeffery.to@gmail.com>
(cherry picked from commit 935f791e76)