diff options
author | Leon Anavi <leon.anavi@konsulko.com> | 2025-07-15 14:07:36 +0300 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2025-07-15 12:01:07 -0700 |
commit | 57b88d28b3b8b866cab0f06f1cc73700d67b70b8 (patch) | |
tree | 50d7d07f6895beb5e930981bbf166a40fbab7691 /meta-python/recipes-devtools/python/python3-ckzg/python-ckzg-0002-Disable-Werror.patch | |
parent | be494d8a560566bb70e10a97870938af07cf9aed (diff) | |
download | meta-openembedded-57b88d28b3b8b866cab0f06f1cc73700d67b70b8.tar.gz |
python3-ckzg: Add recipe version 2.1.1
Add release 2.1.1:
- Fix python release publishingFix python release publishing
- Call test_compute_cells in python bindings
- Fix elixir default path
- Re-enable spec test comparison check
- chore(rust): Cleanup fmt/clippy and ci
- feat: add arbitrary feature
- Update github checkout actions
Apply the same patches used in the Fedora package, which are
currently pending upstream acceptance:
https://src.fedoraproject.org/rpms/python-ckzg/tree/f42
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-ckzg/python-ckzg-0002-Disable-Werror.patch')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-ckzg/python-ckzg-0002-Disable-Werror.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-ckzg/python-ckzg-0002-Disable-Werror.patch b/meta-python/recipes-devtools/python/python3-ckzg/python-ckzg-0002-Disable-Werror.patch new file mode 100644 index 0000000000..9b0baa358a --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-ckzg/python-ckzg-0002-Disable-Werror.patch | |||
@@ -0,0 +1,30 @@ | |||
1 | From: rpm-build <rpm-build> | ||
2 | Date: Tue, 26 Nov 2024 11:13:18 +0100 | ||
3 | Subject: [PATCH] Disable Werror | ||
4 | |||
5 | Upstream-Status: Pending | ||
6 | |||
7 | Signed-off-by: rpm-build <rpm-build> | ||
8 | |||
9 | diff --git a/src/Makefile b/src/Makefile | ||
10 | index c688005..01b7a80 100644 | ||
11 | --- a/src/Makefile | ||
12 | +++ b/src/Makefile | ||
13 | @@ -20,7 +20,7 @@ ifeq ($(PLATFORM),Darwin) | ||
14 | endif | ||
15 | |||
16 | # The base compiler flags. More can be added on command line. | ||
17 | -CFLAGS += -I. -I../inc -O2 -Werror | ||
18 | +CFLAGS += -I. -I../inc | ||
19 | # Enable a bunch of optional warnings. | ||
20 | CFLAGS += \ | ||
21 | -pedantic \ | ||
22 | @@ -81,7 +81,7 @@ ifeq ($(PLATFORM),Windows) | ||
23 | else | ||
24 | CC ?= clang | ||
25 | CFLAGS += -fPIC | ||
26 | - CFLAGS += -Wmissing-braces -Wformat=2 | ||
27 | + CFLAGS += -Wmissing-braces | ||
28 | endif | ||
29 | |||
30 | # Settings for blst. | ||