Compare commits
1 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| b16665bdf7 |
@@ -1,5 +1,5 @@
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 9 01:40:14 UTC 2026 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
Wed Jan 28 04:50:29 UTC 2026 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
- Update to 3.13.3:
|
||||
* Security
|
||||
@@ -30,7 +30,9 @@ Fri Jan 9 01:40:14 UTC 2026 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
+ Optimized web server performance when access logging is disabled by
|
||||
reducing time syscalls
|
||||
+ Added regression test for cached logging status
|
||||
- Refreshed patch fix-vendoring.patch
|
||||
- Refreshed patches fix-vendoring.patch
|
||||
- Add patch remove-freethreading-cython-option.patch:
|
||||
* Drop newer Cython command line option.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 14 03:13:57 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||
|
||||
@@ -35,6 +35,8 @@ Patch0: test_no_warnings_fix.patch
|
||||
Patch2: remove-zlib-ng-test-dep.patch
|
||||
# PATCH-FIX-OPENSUSE fix-vendoring.patch
|
||||
Patch3: fix-vendoring.patch
|
||||
# PATCH-FIX-SLE Remove incompatible Cython command line argument
|
||||
Patch4: remove-freethreading-cython-option.patch
|
||||
Requires: python-aiohappyeyeballs >= 2.5.0
|
||||
Requires: python-aiosignal >= 1.4
|
||||
Requires: python-attrs >= 17.3.0
|
||||
|
||||
22
remove-freethreading-cython-option.patch
Normal file
22
remove-freethreading-cython-option.patch
Normal file
@@ -0,0 +1,22 @@
|
||||
Index: aiohttp-3.13.3/Makefile
|
||||
===================================================================
|
||||
--- aiohttp-3.13.3.orig/Makefile
|
||||
+++ aiohttp-3.13.3/Makefile
|
||||
@@ -57,14 +57,14 @@ aiohttp/_find_header.c: $(call to-hash,a
|
||||
# Special case for reader since we want to be able to disable
|
||||
# the extension with AIOHTTP_NO_EXTENSIONS
|
||||
aiohttp/_websocket/reader_c.c: aiohttp/_websocket/reader_c.py
|
||||
- cython -3 -X freethreading_compatible=True -o $@ $< -I aiohttp -Werror
|
||||
+ cython -3 -o $@ $< -I aiohttp -Werror
|
||||
|
||||
# _find_headers generator creates _headers.pyi as well
|
||||
aiohttp/%.c: aiohttp/%.pyx $(call to-hash,$(CYS)) aiohttp/_find_header.c
|
||||
- cython -3 -X freethreading_compatible=True -o $@ $< -I aiohttp -Werror
|
||||
+ cython -3 -o $@ $< -I aiohttp -Werror
|
||||
|
||||
aiohttp/_websocket/%.c: aiohttp/_websocket/%.pyx $(call to-hash,$(CYS))
|
||||
- cython -3 -X freethreading_compatible=True -o $@ $< -I aiohttp -Werror
|
||||
+ cython -3 -o $@ $< -I aiohttp -Werror
|
||||
|
||||
vendor/llhttp/node_modules: vendor/llhttp/package.json
|
||||
cd vendor/llhttp; npm ci
|
||||
@@ -1,6 +1,8 @@
|
||||
--- a/tests/conftest.py.orig 2025-10-16 16:10:22.546232519 +0200
|
||||
+++ a/tests/conftest.py 2025-10-16 16:10:30.949427637 +0200
|
||||
@@ -336,7 +336,7 @@
|
||||
Index: aiohttp-3.13.3/tests/conftest.py
|
||||
===================================================================
|
||||
--- aiohttp-3.13.3.orig/tests/conftest.py
|
||||
+++ aiohttp-3.13.3/tests/conftest.py
|
||||
@@ -381,7 +381,7 @@ def unused_port_socket() -> Generator[so
|
||||
s.close()
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user