Skip to content

Commit c7cbc6d

Browse files
committed
Intermediate changes
commit_hash:28750b74281710ec1ab5bdc2403c8ab24bdd164b
1 parent 26d391c commit c7cbc6d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+1901
-1068
lines changed

contrib/libs/libjpeg-turbo/.yandex_meta/__init__.py

Lines changed: 6 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,8 @@ def list_simd_sources(arch):
5656

5757
amd64 = {s for s in m.SRCS if s.startswith("simd/")}
5858
i386 = list_simd_sources("i386")
59-
arm32 = list_simd_sources("arm/aarch32")
60-
arm32_neon = list_simd_sources("arm")
61-
arm64 = list_simd_sources("arm/aarch64")
59+
arm32 = list_simd_sources("arm/aarch32") + list_simd_sources("arm")
60+
arm64 = list_simd_sources("arm/aarch64") + list_simd_sources("arm")
6261

6362
# This file contains the older GNU Assembler implementation of the Neon SIMD
6463
# extensions for certain algorithms.
@@ -73,23 +72,16 @@ def list_simd_sources(arch):
7372
("ARCH_I386 AND NOT OS_ANDROID", Linkable(SRCS=i386)),
7473
("ARCH_X86_64", Linkable(SRCS=amd64)),
7574
(
76-
"ARCH_ARM7_NEON AND NOT MSVC",
75+
"ARCH_ARM7",
7776
Linkable(
78-
SRCS=arm32 + arm32_neon,
77+
SRCS=arm32,
7978
ADDINCL=[f"{self.arcdir}/simd/arm"],
8079
),
8180
),
8281
(
83-
"ARCH_ARM7 AND NOT MSVC",
82+
"ARCH_ARM64",
8483
Linkable(
85-
SRCS=arm32 + arm32_neon,
86-
ADDINCL=[f"{self.arcdir}/simd/arm"],
87-
),
88-
),
89-
(
90-
"ARCH_ARM64 AND NOT MSVC",
91-
Linkable(
92-
SRCS=arm32_neon + arm64,
84+
SRCS=arm64,
9385
ADDINCL=[f"{self.arcdir}/simd/arm"],
9486
),
9587
),

contrib/libs/libjpeg-turbo/jconfigint-android.h

Lines changed: 0 additions & 1 deletion
This file was deleted.

contrib/libs/libjpeg-turbo/jconfigint-ios.h

Lines changed: 0 additions & 1 deletion
This file was deleted.

contrib/libs/libjpeg-turbo/jconfigint-osx.h

Lines changed: 0 additions & 1 deletion
This file was deleted.

contrib/libs/libjpeg-turbo/jconfigint-win.h

Lines changed: 0 additions & 12 deletions
This file was deleted.

contrib/libs/libjpeg-turbo/jconfigint.h

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,6 @@
1010
# include "jconfigint-wasm32.h"
1111
#elif defined(__wasm64__)
1212
# include "jconfigint-wasm64.h"
13-
#elif defined(__ANDROID__)
14-
# include "jconfigint-android.h"
15-
#elif defined(__IOS__)
16-
# include "jconfigint-ios.h"
17-
#elif defined(__APPLE__)
18-
# include "jconfigint-osx.h"
19-
#elif defined(_MSC_VER)
20-
# include "jconfigint-win.h"
2113
#else
2214
# include "jconfigint-linux.h"
2315
#endif

contrib/libs/libjpeg-turbo/ya.make

Lines changed: 2 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ ELSEIF (ARCH_X86_64)
123123
simd/x86_64/jsimd.c
124124
simd/x86_64/jsimdcpu.asm
125125
)
126-
ELSEIF (ARCH_ARM7_NEON AND NOT MSVC)
126+
ELSEIF (ARCH_ARM7)
127127
ADDINCL(
128128
contrib/libs/libjpeg-turbo/simd/arm
129129
)
@@ -145,29 +145,7 @@ ELSEIF (ARCH_ARM7_NEON AND NOT MSVC)
145145
simd/arm/jidctred-neon.c
146146
simd/arm/jquanti-neon.c
147147
)
148-
ELSEIF (ARCH_ARM7 AND NOT MSVC)
149-
ADDINCL(
150-
contrib/libs/libjpeg-turbo/simd/arm
151-
)
152-
SRCS(
153-
simd/arm/aarch32/jchuff-neon.c
154-
simd/arm/aarch32/jsimd.c
155-
simd/arm/aarch32/jsimd_neon.S
156-
simd/arm/jccolor-neon.c
157-
simd/arm/jcgray-neon.c
158-
simd/arm/jcphuff-neon.c
159-
simd/arm/jcsample-neon.c
160-
simd/arm/jdcolor-neon.c
161-
simd/arm/jdmerge-neon.c
162-
simd/arm/jdsample-neon.c
163-
simd/arm/jfdctfst-neon.c
164-
simd/arm/jfdctint-neon.c
165-
simd/arm/jidctfst-neon.c
166-
simd/arm/jidctint-neon.c
167-
simd/arm/jidctred-neon.c
168-
simd/arm/jquanti-neon.c
169-
)
170-
ELSEIF (ARCH_ARM64 AND NOT MSVC)
148+
ELSEIF (ARCH_ARM64)
171149
ADDINCL(
172150
contrib/libs/libjpeg-turbo/simd/arm
173151
)

contrib/libs/libtiff/.yandex_meta/override.nix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,6 @@ pkgs: attrs: with pkgs; rec {
2525

2626
cmakeFlags = [
2727
"-Dlzma=ON"
28+
"-Dlibdeflate=OFF"
2829
];
2930
}

contrib/libs/libtiff/ya.make

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Generated by devtools/yamaker from nixpkgs 22.11.
1+
# Generated by devtools/yamaker from nixpkgs 24.05.
22

33
LIBRARY()
44

@@ -36,6 +36,7 @@ NO_UTIL()
3636

3737
CFLAGS(
3838
-DALLOW_TIFF_NON_EXT_ALLOC_FUNCTIONS
39+
-DHAVE_JPEGTURBO_DUAL_MODE_8_12
3940
-DTIFF_DO_NOT_USE_NON_EXT_ALLOC_FUNCTIONS
4041
)
4142

contrib/python/Twisted/py3/.dist-info/METADATA

Lines changed: 45 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
Metadata-Version: 2.3
1+
Metadata-Version: 2.4
22
Name: Twisted
3-
Version: 24.11.0
3+
Version: 25.5.0
44
Summary: An asynchronous networking framework written in Python
55
Project-URL: Changelog, https://github.com/twisted/twisted/blob/HEAD/NEWS.rst
66
Project-URL: Documentation, https://docs.twisted.org/
@@ -11,6 +11,7 @@ Project-URL: Funding-PSF, https://psfmember.org/civicrm/contribute/transact/?res
1111
Project-URL: Funding-GitHub, https://github.com/sponsors/twisted
1212
Author-email: Twisted Matrix Community <twisted@python.org>
1313
License: MIT License
14+
License-File: LICENSE
1415
Classifier: Programming Language :: Python :: 3
1516
Classifier: Programming Language :: Python :: 3 :: Only
1617
Classifier: Programming Language :: Python :: 3.8
@@ -42,6 +43,7 @@ Requires-Dist: pyopenssl>=21.0.0; extra == 'all-non-platform'
4243
Requires-Dist: pyserial>=3.0; extra == 'all-non-platform'
4344
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'all-non-platform'
4445
Requires-Dist: service-identity>=18.1.0; extra == 'all-non-platform'
46+
Requires-Dist: wsproto; extra == 'all-non-platform'
4547
Provides-Extra: all_non_platform
4648
Requires-Dist: appdirs>=1.4.0; extra == 'all_non_platform'
4749
Requires-Dist: bcrypt>=3.1.3; extra == 'all_non_platform'
@@ -57,6 +59,7 @@ Requires-Dist: pyopenssl>=21.0.0; extra == 'all_non_platform'
5759
Requires-Dist: pyserial>=3.0; extra == 'all_non_platform'
5860
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'all_non_platform'
5961
Requires-Dist: service-identity>=18.1.0; extra == 'all_non_platform'
62+
Requires-Dist: wsproto; extra == 'all_non_platform'
6063
Provides-Extra: conch
6164
Requires-Dist: appdirs>=1.4.0; extra == 'conch'
6265
Requires-Dist: bcrypt>=3.1.3; extra == 'conch'
@@ -66,7 +69,7 @@ Requires-Dist: coverage~=7.5; extra == 'dev'
6669
Requires-Dist: cython-test-exception-raiser<2,>=1.0.2; extra == 'dev'
6770
Requires-Dist: httpx[http2]>=0.27; extra == 'dev'
6871
Requires-Dist: hypothesis>=6.56; extra == 'dev'
69-
Requires-Dist: pydoctor~=23.9.0; extra == 'dev'
72+
Requires-Dist: pydoctor~=24.11.1; extra == 'dev'
7073
Requires-Dist: pyflakes~=2.2; extra == 'dev'
7174
Requires-Dist: pyhamcrest>=2; extra == 'dev'
7275
Requires-Dist: python-subunit~=1.4; extra == 'dev'
@@ -75,12 +78,12 @@ Requires-Dist: sphinx<7,>=6; extra == 'dev'
7578
Requires-Dist: towncrier~=23.6; extra == 'dev'
7679
Requires-Dist: twistedchecker~=0.7; extra == 'dev'
7780
Provides-Extra: dev-release
78-
Requires-Dist: pydoctor~=23.9.0; extra == 'dev-release'
81+
Requires-Dist: pydoctor~=24.11.1; extra == 'dev-release'
7982
Requires-Dist: sphinx-rtd-theme~=1.3; extra == 'dev-release'
8083
Requires-Dist: sphinx<7,>=6; extra == 'dev-release'
8184
Requires-Dist: towncrier~=23.6; extra == 'dev-release'
8285
Provides-Extra: dev_release
83-
Requires-Dist: pydoctor~=23.9.0; extra == 'dev_release'
86+
Requires-Dist: pydoctor~=24.11.1; extra == 'dev_release'
8487
Requires-Dist: sphinx-rtd-theme~=1.3; extra == 'dev_release'
8588
Requires-Dist: sphinx<7,>=6; extra == 'dev_release'
8689
Requires-Dist: towncrier~=23.6; extra == 'dev_release'
@@ -100,6 +103,7 @@ Requires-Dist: pyopenssl>=21.0.0; extra == 'gtk-platform'
100103
Requires-Dist: pyserial>=3.0; extra == 'gtk-platform'
101104
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'gtk-platform'
102105
Requires-Dist: service-identity>=18.1.0; extra == 'gtk-platform'
106+
Requires-Dist: wsproto; extra == 'gtk-platform'
103107
Provides-Extra: gtk_platform
104108
Requires-Dist: appdirs>=1.4.0; extra == 'gtk_platform'
105109
Requires-Dist: bcrypt>=3.1.3; extra == 'gtk_platform'
@@ -116,6 +120,7 @@ Requires-Dist: pyopenssl>=21.0.0; extra == 'gtk_platform'
116120
Requires-Dist: pyserial>=3.0; extra == 'gtk_platform'
117121
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'gtk_platform'
118122
Requires-Dist: service-identity>=18.1.0; extra == 'gtk_platform'
123+
Requires-Dist: wsproto; extra == 'gtk_platform'
119124
Provides-Extra: http2
120125
Requires-Dist: h2<5.0,>=3.2; extra == 'http2'
121126
Requires-Dist: priority<2.0,>=1.1.0; extra == 'http2'
@@ -130,13 +135,17 @@ Requires-Dist: hypothesis>=6.56; extra == 'macos-platform'
130135
Requires-Dist: idna>=2.4; extra == 'macos-platform'
131136
Requires-Dist: priority<2.0,>=1.1.0; extra == 'macos-platform'
132137
Requires-Dist: pyhamcrest>=2; extra == 'macos-platform'
133-
Requires-Dist: pyobjc-core; extra == 'macos-platform'
134-
Requires-Dist: pyobjc-framework-cfnetwork; extra == 'macos-platform'
135-
Requires-Dist: pyobjc-framework-cocoa; extra == 'macos-platform'
138+
Requires-Dist: pyobjc-core; (python_version >= '3.9') and extra == 'macos-platform'
139+
Requires-Dist: pyobjc-core<11; (python_version < '3.9') and extra == 'macos-platform'
140+
Requires-Dist: pyobjc-framework-cfnetwork; (python_version >= '3.9') and extra == 'macos-platform'
141+
Requires-Dist: pyobjc-framework-cfnetwork<11; (python_version < '3.9') and extra == 'macos-platform'
142+
Requires-Dist: pyobjc-framework-cocoa; (python_version >= '3.9') and extra == 'macos-platform'
143+
Requires-Dist: pyobjc-framework-cocoa<11; (python_version < '3.9') and extra == 'macos-platform'
136144
Requires-Dist: pyopenssl>=21.0.0; extra == 'macos-platform'
137145
Requires-Dist: pyserial>=3.0; extra == 'macos-platform'
138146
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'macos-platform'
139147
Requires-Dist: service-identity>=18.1.0; extra == 'macos-platform'
148+
Requires-Dist: wsproto; extra == 'macos-platform'
140149
Provides-Extra: macos_platform
141150
Requires-Dist: appdirs>=1.4.0; extra == 'macos_platform'
142151
Requires-Dist: bcrypt>=3.1.3; extra == 'macos_platform'
@@ -148,13 +157,17 @@ Requires-Dist: hypothesis>=6.56; extra == 'macos_platform'
148157
Requires-Dist: idna>=2.4; extra == 'macos_platform'
149158
Requires-Dist: priority<2.0,>=1.1.0; extra == 'macos_platform'
150159
Requires-Dist: pyhamcrest>=2; extra == 'macos_platform'
151-
Requires-Dist: pyobjc-core; extra == 'macos_platform'
152-
Requires-Dist: pyobjc-framework-cfnetwork; extra == 'macos_platform'
153-
Requires-Dist: pyobjc-framework-cocoa; extra == 'macos_platform'
160+
Requires-Dist: pyobjc-core; (python_version >= '3.9') and extra == 'macos_platform'
161+
Requires-Dist: pyobjc-core<11; (python_version < '3.9') and extra == 'macos_platform'
162+
Requires-Dist: pyobjc-framework-cfnetwork; (python_version >= '3.9') and extra == 'macos_platform'
163+
Requires-Dist: pyobjc-framework-cfnetwork<11; (python_version < '3.9') and extra == 'macos_platform'
164+
Requires-Dist: pyobjc-framework-cocoa; (python_version >= '3.9') and extra == 'macos_platform'
165+
Requires-Dist: pyobjc-framework-cocoa<11; (python_version < '3.9') and extra == 'macos_platform'
154166
Requires-Dist: pyopenssl>=21.0.0; extra == 'macos_platform'
155167
Requires-Dist: pyserial>=3.0; extra == 'macos_platform'
156168
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'macos_platform'
157169
Requires-Dist: service-identity>=18.1.0; extra == 'macos_platform'
170+
Requires-Dist: wsproto; extra == 'macos_platform'
158171
Provides-Extra: mypy
159172
Requires-Dist: appdirs>=1.4.0; extra == 'mypy'
160173
Requires-Dist: bcrypt>=3.1.3; extra == 'mypy'
@@ -168,7 +181,7 @@ Requires-Dist: idna>=2.4; extra == 'mypy'
168181
Requires-Dist: mypy-zope==1.0.6; extra == 'mypy'
169182
Requires-Dist: mypy==1.10.1; extra == 'mypy'
170183
Requires-Dist: priority<2.0,>=1.1.0; extra == 'mypy'
171-
Requires-Dist: pydoctor~=23.9.0; extra == 'mypy'
184+
Requires-Dist: pydoctor~=24.11.1; extra == 'mypy'
172185
Requires-Dist: pyflakes~=2.2; extra == 'mypy'
173186
Requires-Dist: pyhamcrest>=2; extra == 'mypy'
174187
Requires-Dist: pyopenssl>=21.0.0; extra == 'mypy'
@@ -182,6 +195,7 @@ Requires-Dist: towncrier~=23.6; extra == 'mypy'
182195
Requires-Dist: twistedchecker~=0.7; extra == 'mypy'
183196
Requires-Dist: types-pyopenssl; extra == 'mypy'
184197
Requires-Dist: types-setuptools; extra == 'mypy'
198+
Requires-Dist: wsproto; extra == 'mypy'
185199
Provides-Extra: osx-platform
186200
Requires-Dist: appdirs>=1.4.0; extra == 'osx-platform'
187201
Requires-Dist: bcrypt>=3.1.3; extra == 'osx-platform'
@@ -193,13 +207,17 @@ Requires-Dist: hypothesis>=6.56; extra == 'osx-platform'
193207
Requires-Dist: idna>=2.4; extra == 'osx-platform'
194208
Requires-Dist: priority<2.0,>=1.1.0; extra == 'osx-platform'
195209
Requires-Dist: pyhamcrest>=2; extra == 'osx-platform'
196-
Requires-Dist: pyobjc-core; extra == 'osx-platform'
197-
Requires-Dist: pyobjc-framework-cfnetwork; extra == 'osx-platform'
198-
Requires-Dist: pyobjc-framework-cocoa; extra == 'osx-platform'
210+
Requires-Dist: pyobjc-core; (python_version >= '3.9') and extra == 'osx-platform'
211+
Requires-Dist: pyobjc-core<11; (python_version < '3.9') and extra == 'osx-platform'
212+
Requires-Dist: pyobjc-framework-cfnetwork; (python_version >= '3.9') and extra == 'osx-platform'
213+
Requires-Dist: pyobjc-framework-cfnetwork<11; (python_version < '3.9') and extra == 'osx-platform'
214+
Requires-Dist: pyobjc-framework-cocoa; (python_version >= '3.9') and extra == 'osx-platform'
215+
Requires-Dist: pyobjc-framework-cocoa<11; (python_version < '3.9') and extra == 'osx-platform'
199216
Requires-Dist: pyopenssl>=21.0.0; extra == 'osx-platform'
200217
Requires-Dist: pyserial>=3.0; extra == 'osx-platform'
201218
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'osx-platform'
202219
Requires-Dist: service-identity>=18.1.0; extra == 'osx-platform'
220+
Requires-Dist: wsproto; extra == 'osx-platform'
203221
Provides-Extra: osx_platform
204222
Requires-Dist: appdirs>=1.4.0; extra == 'osx_platform'
205223
Requires-Dist: bcrypt>=3.1.3; extra == 'osx_platform'
@@ -211,13 +229,17 @@ Requires-Dist: hypothesis>=6.56; extra == 'osx_platform'
211229
Requires-Dist: idna>=2.4; extra == 'osx_platform'
212230
Requires-Dist: priority<2.0,>=1.1.0; extra == 'osx_platform'
213231
Requires-Dist: pyhamcrest>=2; extra == 'osx_platform'
214-
Requires-Dist: pyobjc-core; extra == 'osx_platform'
215-
Requires-Dist: pyobjc-framework-cfnetwork; extra == 'osx_platform'
216-
Requires-Dist: pyobjc-framework-cocoa; extra == 'osx_platform'
232+
Requires-Dist: pyobjc-core; (python_version >= '3.9') and extra == 'osx_platform'
233+
Requires-Dist: pyobjc-core<11; (python_version < '3.9') and extra == 'osx_platform'
234+
Requires-Dist: pyobjc-framework-cfnetwork; (python_version >= '3.9') and extra == 'osx_platform'
235+
Requires-Dist: pyobjc-framework-cfnetwork<11; (python_version < '3.9') and extra == 'osx_platform'
236+
Requires-Dist: pyobjc-framework-cocoa; (python_version >= '3.9') and extra == 'osx_platform'
237+
Requires-Dist: pyobjc-framework-cocoa<11; (python_version < '3.9') and extra == 'osx_platform'
217238
Requires-Dist: pyopenssl>=21.0.0; extra == 'osx_platform'
218239
Requires-Dist: pyserial>=3.0; extra == 'osx_platform'
219240
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'osx_platform'
220241
Requires-Dist: service-identity>=18.1.0; extra == 'osx_platform'
242+
Requires-Dist: wsproto; extra == 'osx_platform'
221243
Provides-Extra: serial
222244
Requires-Dist: pyserial>=3.0; extra == 'serial'
223245
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'serial'
@@ -230,6 +252,8 @@ Provides-Extra: tls
230252
Requires-Dist: idna>=2.4; extra == 'tls'
231253
Requires-Dist: pyopenssl>=21.0.0; extra == 'tls'
232254
Requires-Dist: service-identity>=18.1.0; extra == 'tls'
255+
Provides-Extra: websocket
256+
Requires-Dist: wsproto; extra == 'websocket'
233257
Provides-Extra: windows-platform
234258
Requires-Dist: appdirs>=1.4.0; extra == 'windows-platform'
235259
Requires-Dist: bcrypt>=3.1.3; extra == 'windows-platform'
@@ -247,6 +271,7 @@ Requires-Dist: pywin32!=226; extra == 'windows-platform'
247271
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'windows-platform'
248272
Requires-Dist: service-identity>=18.1.0; extra == 'windows-platform'
249273
Requires-Dist: twisted-iocpsupport>=1.0.2; extra == 'windows-platform'
274+
Requires-Dist: wsproto; extra == 'windows-platform'
250275
Provides-Extra: windows_platform
251276
Requires-Dist: appdirs>=1.4.0; extra == 'windows_platform'
252277
Requires-Dist: bcrypt>=3.1.3; extra == 'windows_platform'
@@ -264,6 +289,7 @@ Requires-Dist: pywin32!=226; extra == 'windows_platform'
264289
Requires-Dist: pywin32!=226; (platform_system == 'Windows') and extra == 'windows_platform'
265290
Requires-Dist: service-identity>=18.1.0; extra == 'windows_platform'
266291
Requires-Dist: twisted-iocpsupport>=1.0.2; extra == 'windows_platform'
292+
Requires-Dist: wsproto; extra == 'windows_platform'
267293
Description-Content-Type: text/x-rst
268294

269295
Twisted
@@ -367,7 +393,7 @@ Or, for speed, use pre-commit directly::
367393
Copyright
368394
---------
369395

370-
All of the code in this distribution is Copyright (c) 2001-2024 Twisted Matrix Laboratories.
396+
All of the code in this distribution is Copyright (c) 2001-2025 Twisted Matrix Laboratories.
371397

372398
Twisted is made available under the MIT license.
373399
The included `LICENSE <https://github.com/twisted/twisted/blob/trunk/LICENSE>`_ file describes this in detail.

0 commit comments

Comments
 (0)