public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Benjamin A. Beasley <code@musicinmybrain.net>
To: git-commits@fedoraproject.org
Subject: [rpms/python-pillow-jxl-plugin] rawhide: Update to 1.3.6
Date: Mon, 29 Jun 2026 12:58:24 GMT [thread overview]
Message-ID: <178273790415.1.15642502427525409014.rpms-python-pillow-jxl-plugin-ef0c1a8c9156@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/python-pillow-jxl-plugin
Branch : rawhide
Commit : ef0c1a8c915667e40da85ff6b1e9dd0e408e9cff
Author : Benjamin A. Beasley <code@musicinmybrain.net>
Date : 2026-06-20T22:37:32+01:00
Stats : +34/-28 in 6 file(s)
URL : https://src.fedoraproject.org/rpms/python-pillow-jxl-plugin/c/ef0c1a8c915667e40da85ff6b1e9dd0e408e9cff?branch=rawhide
Log:
Update to 1.3.6
---
diff --git a/.gitignore b/.gitignore
index 3c4372c..2377c0d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
/pillow_jxl_plugin-1.3.3.tar.gz
/pillow_jxl_plugin-1.3.4.tar.gz
/pillow-jpegxl-plugin-1.3.5.tar.gz
+/pillow-jpegxl-plugin-1.3.6.tar.gz
diff --git a/0001-Update-jpegxl-rs-dependency-from-0.11.2-to-0.12.0.patch b/0001-Update-jpegxl-rs-dependency-from-0.11.2-to-0.12.0.patch
index 74c8634..2e36971 100644
--- a/0001-Update-jpegxl-rs-dependency-from-0.11.2-to-0.12.0.patch
+++ b/0001-Update-jpegxl-rs-dependency-from-0.11.2-to-0.12.0.patch
@@ -1,4 +1,4 @@
-From 169bd063f65779ff39dacf75f67e345932ed7f6e Mon Sep 17 00:00:00 2001
+From dd1e62c43f36468c1d624e98cf0273fa7ef747ba Mon Sep 17 00:00:00 2001
From: Fabio Valentini <decathorpe@gmail.com>
Date: Tue, 17 Mar 2026 23:23:07 +0100
Subject: [PATCH 1/3] Update jpegxl-rs dependency from 0.11.2 to 0.12.0
@@ -11,23 +11,23 @@ https://github.com/Isotr0py/pillow-jpegxl-plugin/commit/0ecab6b
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
-index 82fb871..f5c73fd 100644
+index 2a236f1..d12d0e6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -11,7 +11,7 @@ crate-type = ["cdylib"]
[dependencies]
- pyo3 = { version="0.26.0", features = ["extension-module", "generate-import-lib"] }
+ pyo3 = { version="0.27.1", features = ["extension-module", "generate-import-lib"] }
-jpegxl-rs = { version="0.11.2", default-features = false }
+jpegxl-rs = { version="0.12.0", default-features = false }
+ half = "2.7.1"
[features]
- # Enables parallel processing support by enabling the "rayon" feature of jpeg-decoder.
diff --git a/src/encode.rs b/src/encode.rs
-index e869ba7..52d8728 100644
+index ae17788..1e42709 100644
--- a/src/encode.rs
+++ b/src/encode.rs
-@@ -131,8 +131,8 @@ impl Encoder {
+@@ -132,8 +132,8 @@ impl Encoder {
.map_err(to_pyjxlerror)?;
encoder.uses_original_profile = self.use_original_profile;
encoder.color_encoding = match self.num_channels {
diff --git a/0002-Unconditionally-dynamically-link-libjxl.patch b/0002-Unconditionally-dynamically-link-libjxl.patch
index c73f383..b5ae328 100644
--- a/0002-Unconditionally-dynamically-link-libjxl.patch
+++ b/0002-Unconditionally-dynamically-link-libjxl.patch
@@ -1,28 +1,28 @@
-From 26fa60b88b7ac5fff4617ae72e97293ebba812f2 Mon Sep 17 00:00:00 2001
+From a7c72d6104a909e55f4a2853be5e5ff704d32e6b Mon Sep 17 00:00:00 2001
From: Fabio Valentini <decathorpe@gmail.com>
Date: Sat, 22 Mar 2025 13:30:36 +0100
Subject: [PATCH 2/3] Unconditionally dynamically link libjxl
---
Cargo.toml | 4 +---
- build.rs | 52 +-------------------------------------------------
+ build.rs | 54 +-------------------------------------------------
pyproject.toml | 2 +-
- 3 files changed, 3 insertions(+), 55 deletions(-)
+ 3 files changed, 3 insertions(+), 57 deletions(-)
diff --git a/Cargo.toml b/Cargo.toml
-index f5c73fd..9bf18ea 100644
+index d12d0e6..dbe75ee 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -2,7 +2,6 @@
name = "pillow-jxl-plugin"
- version = "1.3.5"
+ version = "1.3.6"
edition = "2021"
-build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
-@@ -14,6 +13,5 @@ pyo3 = { version="0.26.0", features = ["extension-module", "generate-import-lib"
- jpegxl-rs = { version="0.12.0", default-features = false }
+@@ -15,6 +14,5 @@ jpegxl-rs = { version="0.12.0", default-features = false }
+ half = "2.7.1"
[features]
-# Enables parallel processing support by enabling the "rayon" feature of jpeg-decoder.
@@ -30,12 +30,13 @@ index f5c73fd..9bf18ea 100644
+default = ["dynamic"]
dynamic = []
diff --git a/build.rs b/build.rs
-index e8f0895..4eddb1f 100644
+index 028f2b2..4eddb1f 100644
--- a/build.rs
+++ b/build.rs
-@@ -1,55 +1,5 @@
+@@ -1,57 +1,5 @@
-use std::env;
-
+-#[allow(dead_code)]
-fn dynamic_link() {
+fn main() {
println!("cargo:rustc-link-lib=jxl");
@@ -43,17 +44,18 @@ index e8f0895..4eddb1f 100644
-
println!("cargo:rustc-link-lib=hwy");
- if let Ok(path) = env::var("DEP_HWY_LIB") {
-- println!("cargo:rustc-link-search=native={}", path);
+- println!("cargo:rustc-link-search=native={path}");
- }
-
- println!("cargo:rustc-link-lib:+whole-archive=brotlidec");
- println!("cargo:rustc-link-lib=brotlienc");
- println!("cargo:rustc-link-lib=brotlicommon");
- if let Ok(path) = env::var("DEP_BROTLI_LIB") {
-- println!("cargo:rustc-link-search=native={}", path);
+- println!("cargo:rustc-link-search=native={path}");
- }
-}
-
+-#[allow(dead_code)]
-fn static_link() {
- println!("cargo:rustc-link-lib=static=jxl");
- println!("cargo:rustc-link-lib=static=jxl_cms");
@@ -61,14 +63,14 @@ index e8f0895..4eddb1f 100644
-
- println!("cargo:rustc-link-lib=static=hwy");
- if let Ok(path) = env::var("DEP_HWY_LIB") {
-- println!("cargo:rustc-link-search=native={}", path);
+- println!("cargo:rustc-link-search=native={path}");
- }
-
- println!("cargo:rustc-link-lib=static:+whole-archive=brotlidec");
- println!("cargo:rustc-link-lib=static=brotlienc");
- println!("cargo:rustc-link-lib=static=brotlicommon");
- if let Ok(path) = env::var("DEP_BROTLI_LIB") {
-- println!("cargo:rustc-link-search=native={}", path);
+- println!("cargo:rustc-link-search=native={path}");
- }
-}
-
@@ -91,15 +93,18 @@ index e8f0895..4eddb1f 100644
- }
}
diff --git a/pyproject.toml b/pyproject.toml
-index 11dc6fa..dd9e8bc 100644
+index 3ee5317..4f64dfd 100644
--- a/pyproject.toml
+++ b/pyproject.toml
-@@ -31,4 +31,4 @@ dev = ["numpy", "pytest", "pyexiv2"]
+@@ -40,7 +40,7 @@ dev = [
"Releases" = "https://github.com/Isotr0py/pillow-jpegxl-plugin/releases"
[tool.maturin]
-features = ["pyo3/extension-module", "vendored"]
+features = ["pyo3/extension-module"]
+
+ [tool.ruff]
+ target-version = "py39"
--
2.54.0
diff --git a/0003-Downstream-only-patch-out-the-generate-import-lib-fe.patch b/0003-Downstream-only-patch-out-the-generate-import-lib-fe.patch
index 00c946b..d13a301 100644
--- a/0003-Downstream-only-patch-out-the-generate-import-lib-fe.patch
+++ b/0003-Downstream-only-patch-out-the-generate-import-lib-fe.patch
@@ -1,4 +1,4 @@
-From 783bdb081d29def40d7dd73627cd4567ddd4fb37 Mon Sep 17 00:00:00 2001
+From f64c3b239872247c9712d6e84f51391f7ab63cd6 Mon Sep 17 00:00:00 2001
From: "Benjamin A. Beasley" <code@musicinmybrain.net>
Date: Sat, 20 Jun 2026 22:02:36 +0100
Subject: [PATCH 3/3] Downstream-only: patch out the generate-import-lib
@@ -14,18 +14,18 @@ feature – which is not packaged for that reason.
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Cargo.toml b/Cargo.toml
-index 9bf18ea..333a227 100644
+index dbe75ee..243deb6 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,7 +9,7 @@ name = "pillow_jxl"
crate-type = ["cdylib"]
[dependencies]
--pyo3 = { version="0.26.0", features = ["extension-module", "generate-import-lib"] }
-+pyo3 = { version="0.26.0", features = ["extension-module"] }
+-pyo3 = { version="0.27.1", features = ["extension-module", "generate-import-lib"] }
++pyo3 = { version="0.27.1", features = ["extension-module"] }
jpegxl-rs = { version="0.12.0", default-features = false }
+ half = "2.7.1"
- [features]
--
2.54.0
diff --git a/python-pillow-jxl-plugin.spec b/python-pillow-jxl-plugin.spec
index 76e934d..e2d81c1 100644
--- a/python-pillow-jxl-plugin.spec
+++ b/python-pillow-jxl-plugin.spec
@@ -1,5 +1,5 @@
Name: python-pillow-jxl-plugin
-Version: 1.3.5
+Version: 1.3.6
Release: %autorelease
Summary: Pillow plugin for JPEG-XL
# GPL-3.0-or-later for code
diff --git a/sources b/sources
index 6b63dd0..dc53488 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (pillow-jpegxl-plugin-1.3.5.tar.gz) = 96cd759800b45d00b586e0b6f804f9fd600b31f63ff7030f928b62cb6b68e132348706bde0de28f0fab666c27f2c49e3694385f6edb6ce1fb557ea59bc4d31a9
+SHA512 (pillow-jpegxl-plugin-1.3.6.tar.gz) = beb5e1d35ec1030eeaaee901e73d03c4fa7ecf48a6699eec456a8622d51a7b0cef456e2b1d30c7c9b9ab2ddc1e560027b92b16f1d45fe4bd12b59fdb3647e66f
reply other threads:[~2026-06-29 12:58 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=178273790415.1.15642502427525409014.rpms-python-pillow-jxl-plugin-ef0c1a8c9156@fedoraproject.org \
--to=code@musicinmybrain.net \
--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