From 3d2902dd2e41dfa518c3e05fdbbb34b8d8be5d9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 26 Nov 2023 11:22:26 -0800 Subject: [PATCH] python311Packages.img2pdf: 0.5.0 -> 0.5.1 Changelog: https://gitlab.mister-muffin.de/josch/img2pdf/src/tag/0.5.1/CHANGES.rst --- .../python-modules/img2pdf/default-icc-profile.patch | 11 +++++++---- pkgs/development/python-modules/img2pdf/default.nix | 4 ++-- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/img2pdf/default-icc-profile.patch b/pkgs/development/python-modules/img2pdf/default-icc-profile.patch index 139eafd63ced..28d334a71e6b 100644 --- a/pkgs/development/python-modules/img2pdf/default-icc-profile.patch +++ b/pkgs/development/python-modules/img2pdf/default-icc-profile.patch @@ -1,8 +1,8 @@ diff --git a/src/img2pdf.py b/src/img2pdf.py -index 036232b..d2e7829 100755 +index f89670b..01ec4d3 100755 --- a/src/img2pdf.py +++ b/src/img2pdf.py -@@ -3815,14 +3815,7 @@ def gui(): +@@ -3841,17 +3841,7 @@ def validate_icc(fname): def get_default_icc_profile(): @@ -11,8 +11,11 @@ index 036232b..d2e7829 100755 - "/usr/share/color/icc/OpenICC/sRGB.icc", - "/usr/share/color/icc/colord/sRGB.icc", - ]: -- if os.path.exists(profile): -- return profile +- if not os.path.exists(profile): +- continue +- if not file_is_icc(profile): +- continue +- return profile - return "/usr/share/color/icc/sRGB.icc" + return "@srgbProfile@" diff --git a/pkgs/development/python-modules/img2pdf/default.nix b/pkgs/development/python-modules/img2pdf/default.nix index a94681ada0f1..3bfbb03fc675 100644 --- a/pkgs/development/python-modules/img2pdf/default.nix +++ b/pkgs/development/python-modules/img2pdf/default.nix @@ -22,7 +22,7 @@ buildPythonPackage rec { pname = "img2pdf"; - version = "0.5.0"; + version = "0.5.1"; disabled = isPy27; pyproject = true; @@ -32,7 +32,7 @@ buildPythonPackage rec { owner = "josch"; repo = "img2pdf"; rev = version; - hash = "sha256-k0GqBTS8PvYDmjzyLCSdQB7oBakrEQYJcQykDNrzgcA="; + hash = "sha256-mrNTc37GrHTc7NW0sYI1FlAOlnvXum02867enqHsAEQ="; }; patches = [