public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Sandro Mani <manisandro@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/python-pillow] rawhide: Update to 12.3.0
Date: Thu, 02 Jul 2026 05:34:51 GMT	[thread overview]
Message-ID: <178297049176.1.12217535776778271407.rpms-python-pillow-33383a5a25f0@fedoraproject.org> (raw)

A new commit has been pushed.

Repo   : rpms/python-pillow
Branch : rawhide
Commit : 33383a5a25f0d420868228be5d043f490144973e
Author : Sandro Mani <manisandro@gmail.com>
Date   : 2026-07-02T07:34:40+02:00
Stats  : +20/-16 in 4 file(s)
URL    : https://src.fedoraproject.org/rpms/python-pillow/c/33383a5a25f0d420868228be5d043f490144973e?branch=rawhide

Log:
Update to 12.3.0

---
diff --git a/.gitignore b/.gitignore
index 5dd3ee2..897e383 100644
--- a/.gitignore
+++ b/.gitignore
@@ -82,3 +82,4 @@
 /Pillow-12.1.0.tar.gz
 /Pillow-12.1.1.tar.gz
 /Pillow-12.2.0.tar.gz
+/Pillow-12.3.0.tar.gz

diff --git a/pillow_mingw.patch b/pillow_mingw.patch
index ebecdc5..bd2885a 100644
--- a/pillow_mingw.patch
+++ b/pillow_mingw.patch
@@ -1,6 +1,6 @@
-diff -rupN --no-dereference Pillow-12.2.0/setup.py Pillow-12.2.0-new/setup.py
---- Pillow-12.2.0/setup.py	2026-04-01 14:11:14.000000000 +0200
-+++ Pillow-12.2.0-new/setup.py	2026-04-02 09:29:00.429891580 +0200
+diff -rupN --no-dereference Pillow-12.3.0/setup.py Pillow-12.3.0-new/setup.py
+--- Pillow-12.3.0/setup.py	2026-07-01 11:09:01.000000000 +0200
++++ Pillow-12.3.0-new/setup.py	2026-07-02 07:14:06.100321491 +0200
 @@ -17,7 +17,6 @@ import sys
  import warnings
  from collections.abc import Iterator
@@ -24,7 +24,7 @@ diff -rupN --no-dereference Pillow-12.2.0/setup.py Pillow-12.2.0-new/setup.py
  
  
  def get_version() -> str:
-@@ -156,9 +159,6 @@ class RequiredDependencyException(Except
+@@ -155,9 +158,6 @@ class RequiredDependencyException(Except
      pass
  
  
@@ -34,7 +34,7 @@ diff -rupN --no-dereference Pillow-12.2.0/setup.py Pillow-12.2.0-new/setup.py
  def _dbg(s: str, tp: str | tuple[str, ...] | None = None) -> None:
      if DEBUG:
          if tp:
-@@ -579,7 +579,7 @@ class pil_build_ext(build_ext):
+@@ -575,7 +575,7 @@ class pil_build_ext(build_ext):
          #
          # add platform directories
  
@@ -43,7 +43,7 @@ diff -rupN --no-dereference Pillow-12.2.0/setup.py Pillow-12.2.0-new/setup.py
              pass
  
          elif sys.platform == "cygwin":
-@@ -682,7 +682,7 @@ class pil_build_ext(build_ext):
+@@ -678,7 +678,7 @@ class pil_build_ext(build_ext):
          # FIXME: check /opt/stuff directories here?
  
          # standard locations
@@ -52,7 +52,7 @@ diff -rupN --no-dereference Pillow-12.2.0/setup.py Pillow-12.2.0-new/setup.py
              _add_directory(library_dirs, "/usr/local/lib")
              _add_directory(include_dirs, "/usr/local/include")
  
-@@ -932,7 +932,7 @@ class pil_build_ext(build_ext):
+@@ -928,7 +928,7 @@ class pil_build_ext(build_ext):
                  # Ensure transitive dependencies are linked.
                  libs.append("Xau")
              defs.append(("HAVE_XCB", None))
@@ -61,7 +61,7 @@ diff -rupN --no-dereference Pillow-12.2.0/setup.py Pillow-12.2.0-new/setup.py
              libs.extend(["kernel32", "user32", "gdi32"])
          if struct.unpack("h", b"\0\1")[0] == 1:
              defs.append(("WORDS_BIGENDIAN", None))
-@@ -947,6 +947,8 @@ class pil_build_ext(build_ext):
+@@ -943,6 +943,8 @@ class pil_build_ext(build_ext):
          if feature.get("freetype"):
              srcs = []
              libs = ["freetype"]
@@ -70,7 +70,7 @@ diff -rupN --no-dereference Pillow-12.2.0/setup.py Pillow-12.2.0-new/setup.py
              defs = []
              if feature.get("raqm"):
                  if not feature.want_vendor("raqm"):  # using system Raqm
-@@ -974,7 +976,7 @@ class pil_build_ext(build_ext):
+@@ -970,7 +972,7 @@ class pil_build_ext(build_ext):
  
          if feature.get("lcms"):
              libs = [feature.get("lcms")]
@@ -79,7 +79,7 @@ diff -rupN --no-dereference Pillow-12.2.0/setup.py Pillow-12.2.0-new/setup.py
                  libs.extend(["user32", "gdi32"])
              self._update_extension("PIL._imagingcms", libs)
          else:
-@@ -998,8 +1000,9 @@ class pil_build_ext(build_ext):
+@@ -994,8 +996,9 @@ class pil_build_ext(build_ext):
          else:
              self._remove_extension("PIL._avif")
  
@@ -91,9 +91,9 @@ diff -rupN --no-dereference Pillow-12.2.0/setup.py Pillow-12.2.0-new/setup.py
  
          build_ext.build_extensions(self)
  
-diff -rupN --no-dereference Pillow-12.2.0/src/libImaging/ImPlatform.h Pillow-12.2.0-new/src/libImaging/ImPlatform.h
---- Pillow-12.2.0/src/libImaging/ImPlatform.h	2026-04-01 14:11:14.000000000 +0200
-+++ Pillow-12.2.0-new/src/libImaging/ImPlatform.h	2026-04-02 09:29:00.430478826 +0200
+diff -rupN --no-dereference Pillow-12.3.0/src/libImaging/ImPlatform.h Pillow-12.3.0-new/src/libImaging/ImPlatform.h
+--- Pillow-12.3.0/src/libImaging/ImPlatform.h	2026-07-01 11:09:01.000000000 +0200
++++ Pillow-12.3.0-new/src/libImaging/ImPlatform.h	2026-07-02 07:14:06.100768096 +0200
 @@ -29,7 +29,7 @@
  #if defined(_WIN32) || defined(__CYGWIN__) /* WIN */
  

diff --git a/python-pillow.spec b/python-pillow.spec
index 83b8f7f..7d3d432 100644
--- a/python-pillow.spec
+++ b/python-pillow.spec
@@ -17,8 +17,8 @@
 %endif
 
 Name:           python-%{srcname}
-Version:        12.2.0
-Release:        2%{?dist}
+Version:        12.3.0
+Release:        1%{?dist}
 Summary:        Python image processing library
 
 # License: see http://www.pythonware.com/products/pil/license.htm
@@ -307,6 +307,9 @@ popd
 
 
 %changelog
+* Thu Jul 02 2026 Sandro Mani <manisandro@gmail.com> - 12.3.0-1
+- Update to 12.3.0
+
 * Wed Jun 03 2026 Python Maint <python-maint@redhat.com> - 12.2.0-2
 - Rebuilt for Python 3.15
 

diff --git a/sources b/sources
index 047f7d7..2b28041 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (Pillow-12.2.0.tar.gz) = cd66b5b033f82127934624c474aed55c014d10d5e7cc9455ea6a3470d1b7e9f0b94ad2c0a5f1559e01ce003fc179b01fee89aa1b51d78dff3f04927d8252a41e
+SHA512 (Pillow-12.3.0.tar.gz) = 41453e23021fdb08ed9bf8b67a912f8217010840f99665e49465088e76c608fca78c2ca4dda3de8728ba9f8002c7e98231135669990d88758c5944afa0a13f64

                 reply	other threads:[~2026-07-02  5:34 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=178297049176.1.12217535776778271407.rpms-python-pillow-33383a5a25f0@fedoraproject.org \
    --to=manisandro@gmail.com \
    --cc=git-commits@fedoraproject.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox