public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
* [rpms/mingw-python-setuptools] rawhide: Update to 83.0.0
@ 2026-07-10 5:56 Sandro Mani
0 siblings, 0 replies; only message in thread
From: Sandro Mani @ 2026-07-10 5:56 UTC (permalink / raw)
To: git-commits
A new commit has been pushed.
Repo : rpms/mingw-python-setuptools
Branch : rawhide
Commit : 14a81f3ef509f732c0cff843d886d9f38df986a8
Author : Sandro Mani <manisandro@gmail.com>
Date : 2026-07-10T07:54:35+02:00
Stats : +17/-13 in 6 file(s)
URL : https://src.fedoraproject.org/rpms/mingw-python-setuptools/c/14a81f3ef509f732c0cff843d886d9f38df986a8?branch=rawhide
Log:
Update to 83.0.0
---
diff --git a/.gitignore b/.gitignore
index ef1d396..bf8855b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -49,3 +49,4 @@
/setuptools-80.9.0.tar.gz
/setuptools-80.10.2.tar.gz
/setuptools-82.0.1.tar.gz
+/setuptools-83.0.0.tar.gz
diff --git a/mingw-python-setuptools-shlib-suffix.patch b/mingw-python-setuptools-shlib-suffix.patch
index 48f3bca..985bbf6 100644
--- a/mingw-python-setuptools-shlib-suffix.patch
+++ b/mingw-python-setuptools-shlib-suffix.patch
@@ -1,6 +1,6 @@
-diff -rupN --no-dereference setuptools-82.0.1/setuptools/_distutils/sysconfig.py setuptools-82.0.1-new/setuptools/_distutils/sysconfig.py
---- setuptools-82.0.1/setuptools/_distutils/sysconfig.py 2026-03-09 13:46:53.000000000 +0100
-+++ setuptools-82.0.1-new/setuptools/_distutils/sysconfig.py 2026-05-15 20:02:25.062486836 +0200
+diff -rupN --no-dereference setuptools-83.0.0/setuptools/_distutils/sysconfig.py setuptools-83.0.0-new/setuptools/_distutils/sysconfig.py
+--- setuptools-83.0.0/setuptools/_distutils/sysconfig.py 2026-07-04 17:30:59.000000000 +0200
++++ setuptools-83.0.0-new/setuptools/_distutils/sysconfig.py 2026-07-10 07:53:03.011145313 +0200
@@ -376,7 +376,7 @@ def customize_compiler(compiler: CCompil
if 'RANLIB' in os.environ and compiler.executables.get('ranlib', None):
compiler.set_executables(ranlib=os.environ['RANLIB'])
diff --git a/mingw-python-setuptools.spec b/mingw-python-setuptools.spec
index d1f0c6e..7fb74dc 100644
--- a/mingw-python-setuptools.spec
+++ b/mingw-python-setuptools.spec
@@ -4,7 +4,7 @@
Name: mingw-python-%{pypi_name}
Summary: MinGW Windows Python %{pypi_name} library
-Version: 82.0.1
+Version: 83.0.0
Release: 1%{?dist}
BuildArch: noarch
@@ -96,6 +96,9 @@ find %{buildroot}%{mingw64_python3_sitearch}/ -name '*.exe' | xargs rm -f
%changelog
+* Fri Jul 10 2026 Sandro Mani <manisandro@gmail.com> - 83.0.0-1
+- Update to 83.0.0
+
* Fri May 15 2026 Sandro Mani <manisandro@gmail.com> - 82.0.1-1
- Update to 82.0.1
diff --git a/mingw-python-setuptools_is_mingw.patch b/mingw-python-setuptools_is_mingw.patch
index 067d6a1..050ba11 100644
--- a/mingw-python-setuptools_is_mingw.patch
+++ b/mingw-python-setuptools_is_mingw.patch
@@ -1,6 +1,6 @@
-diff -rupN --no-dereference setuptools-82.0.1/setuptools/_distutils/util.py setuptools-82.0.1-new/setuptools/_distutils/util.py
---- setuptools-82.0.1/setuptools/_distutils/util.py 2026-03-09 13:46:53.000000000 +0100
-+++ setuptools-82.0.1-new/setuptools/_distutils/util.py 2026-05-15 20:02:24.989065224 +0200
+diff -rupN --no-dereference setuptools-83.0.0/setuptools/_distutils/util.py setuptools-83.0.0-new/setuptools/_distutils/util.py
+--- setuptools-83.0.0/setuptools/_distutils/util.py 2026-07-04 17:30:59.000000000 +0200
++++ setuptools-83.0.0-new/setuptools/_distutils/util.py 2026-07-10 07:53:02.928619173 +0200
@@ -498,7 +498,7 @@ def is_mingw() -> bool:
Python compiled with Mingw-w64 has sys.platform == 'win32' and
get_platform() starts with 'mingw'.
@@ -9,4 +9,4 @@ diff -rupN --no-dereference setuptools-82.0.1/setuptools/_distutils/util.py setu
+ return get_platform().startswith('mingw')
- def is_freethreaded():
+ def is_freethreaded() -> bool:
diff --git a/mingw-python-setuptools_nostrip.patch b/mingw-python-setuptools_nostrip.patch
index 73be8c8..01306a6 100644
--- a/mingw-python-setuptools_nostrip.patch
+++ b/mingw-python-setuptools_nostrip.patch
@@ -1,7 +1,7 @@
-diff -rupN --no-dereference setuptools-82.0.1/setuptools/_distutils/compilers/C/cygwin.py setuptools-82.0.1-new/setuptools/_distutils/compilers/C/cygwin.py
---- setuptools-82.0.1/setuptools/_distutils/compilers/C/cygwin.py 2026-03-09 13:46:53.000000000 +0100
-+++ setuptools-82.0.1-new/setuptools/_distutils/compilers/C/cygwin.py 2026-05-15 20:02:25.026583380 +0200
-@@ -196,8 +196,8 @@ class Compiler(unix.Compiler):
+diff -rupN --no-dereference setuptools-83.0.0/setuptools/_distutils/compilers/C/cygwin.py setuptools-83.0.0-new/setuptools/_distutils/compilers/C/cygwin.py
+--- setuptools-83.0.0/setuptools/_distutils/compilers/C/cygwin.py 2026-07-04 17:30:59.000000000 +0200
++++ setuptools-83.0.0-new/setuptools/_distutils/compilers/C/cygwin.py 2026-07-10 07:53:02.971330310 +0200
+@@ -198,8 +198,8 @@ class Compiler(unix.Compiler):
# (On my machine: 10KiB < stripped_file < ??100KiB
# unstripped_file = stripped_file + XXX KiB
# ( XXX=254 for a typical python extension))
diff --git a/sources b/sources
index 6d25cdc..c57f6ed 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (setuptools-82.0.1.tar.gz) = 5d70e9efd818245fb8119a4eed64d776078469ed884facc188f141ea491efd9fde5c10c928d3236ea5e2e431b16616f18ed14870b867f95e6320251707332395
+SHA512 (setuptools-83.0.0.tar.gz) = d426f235471d30b41391bda63e8f3d461f54a6a4127594a2e2d0cab0c7576d511db5e5f211ed6cdac2afc620d3695e991a1dd08106f1201ec64697b14b3e0390
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-07-10 5:56 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-07-10 5:56 [rpms/mingw-python-setuptools] rawhide: Update to 83.0.0 Sandro Mani
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox