[packages/pix] - added types patch (support time_t different than long, e.g. x32)
qboosh
qboosh at pld-linux.org
Sat Mar 15 19:58:28 CET 2025
commit 44ff8932bd43d0dfb670fbfaa44d4b874ee2d57e
Author: Jakub Bogusz <qboosh at pld-linux.org>
Date: Sat Mar 15 19:44:08 2025 +0100
- added types patch (support time_t different than long, e.g. x32)
pix-types.patch | 13 +++++++++++++
pix.spec | 2 ++
2 files changed, 15 insertions(+)
---
diff --git a/pix.spec b/pix.spec
index 2c0890e..c12a14b 100644
--- a/pix.spec
+++ b/pix.spec
@@ -8,6 +8,7 @@ Group: X11/Applications/Graphics
#Source0Download: https://github.com/linuxmint/pix/tags
Source0: https://github.com/linuxmint/pix/archive/%{version}/%{name}-%{version}.tar.gz
# Source0-md5: 92dbc1958e19cec44966bd39f3f48f8e
+Patch0: %{name}-types.patch
URL: https://github.com/linuxmint/pix
BuildRequires: automake
BuildRequires: bison
@@ -101,6 +102,7 @@ rozszerzeń aplikaji Pix.
%prep
%setup -q
+%patch -P0 -p1
# webkit 4.1 uses libsoup-3 while pix links with libsoup-2.4
%{__sed} -i -e 's,webkit2gtk-4\.1,webkit-disabled,' meson.build
diff --git a/pix-types.patch b/pix-types.patch
new file mode 100644
index 0000000..bc823d5
--- /dev/null
+++ b/pix-types.patch
@@ -0,0 +1,13 @@
+--- pix-3.4.5/pix/main-migrate-catalogs.c.orig 2025-01-06 15:12:48.000000000 +0100
++++ pix-3.4.5/pix/main-migrate-catalogs.c 2025-03-15 19:34:16.044699372 +0100
+@@ -312,8 +312,9 @@ migration_for_each_file (GFile *file
+ GthDateTime *dt;
+ char *exif_date;
+ char *op;
++ time_t datets = date;
+
+- tm = localtime (&date);
++ tm = localtime (&datets);
+ dt = gth_datetime_new ();
+ gth_datetime_from_struct_tm (dt, tm);
+ exif_date = gth_datetime_to_exif_date (dt);
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/packages/pix.git/commitdiff/44ff8932bd43d0dfb670fbfaa44d4b874ee2d57e
More information about the pld-cvs-commit
mailing list