Hi,
Here's a diff to update pqiv and drop maintainership.
Minimalist changelog:
https://github.com/phillipberndt/pqiv/releases/tag/2.12
I'll upstream the diff soon™.
Comments? OK?
Cheers,
Daniel
Index: Makefile
===================================================================
RCS file: /cvs/ports/graphics/pqiv/Makefile,v
retrieving revision 1.20
diff -u -p -r1.20 Makefile
--- Makefile 12 Jul 2019 20:47:08 -0000 1.20
+++ Makefile 3 Apr 2021 16:56:50 -0000
@@ -4,19 +4,17 @@ COMMENT= command line image viewer
GH_ACCOUNT= phillipberndt
GH_PROJECT= pqiv
-GH_TAGNAME= 2.11
+GH_TAGNAME= 2.12
CATEGORIES= graphics
HOMEPAGE= https://github.com/phillipberndt/pqiv/
-MAINTAINER= Daniel Jakots <obsd@chown.me>
-
# GPLv3
PERMIT_PACKAGE= Yes
-WANTLIB += X11 atk-1.0 c cairo cairo-gobject gdk-3 gdk_pixbuf-2.0
-WANTLIB += gio-2.0 glib-2.0 gobject-2.0 gtk-3 intl m pango-1.0 pangocairo-1.0
+WANTLIB += X11 atk-1.0 c cairo cairo-gobject gdk-3 gdk_pixbuf-2.0 gio-2.0
+WANTLIB += glib-2.0 gobject-2.0 gtk-3 harfbuzz intl m pango-1.0 pangocairo-1.0
COMPILER= base-clang ports-clang ports-gcc
Index: distinfo
===================================================================
RCS file: /cvs/ports/graphics/pqiv/distinfo,v
retrieving revision 1.12
diff -u -p -r1.12 distinfo
--- distinfo 11 Dec 2018 20:01:37 -0000 1.12
+++ distinfo 3 Apr 2021 16:56:50 -0000
@@ -1,2 +1,2 @@
-SHA256 (pqiv-2.11.tar.gz) = 6h+La8tY3uGeLYFo7079AeIixlPqu9MQmq1XqHDMjJs=
-SIZE (pqiv-2.11.tar.gz) = 139825
+SHA256 (pqiv-2.12.tar.gz) = FTgSjIinC7rSuD+94yfYPk35USovtWDq9erx2N+Z2+U=
+SIZE (pqiv-2.12.tar.gz) = 141927
Index: patches/patch-pqiv_c
===================================================================
RCS file: patches/patch-pqiv_c
diff -N patches/patch-pqiv_c
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ patches/patch-pqiv_c 3 Apr 2021 16:56:50 -0000
@@ -0,0 +1,14 @@
+$OpenBSD$
+
+Index: pqiv.c
+--- pqiv.c.orig
++++ pqiv.c
+@@ -1762,7 +1762,7 @@ void load_images_handle_parameter(char *param, load_im
+ if(file_info) {
+ #if GLIB_CHECK_VERSION(2, 62, 0)
+ GDateTime *result = g_file_info_get_modification_date_time(file_info);
+- file->sort_name = g_strdup_printf("%zu;%s", g_date_time_to_unix(result), file->display_name);
++ file->sort_name = g_strdup_printf("%jd;%s", (intmax_t)g_date_time_to_unix(result), file->display_name);
+ g_date_time_unref(result);
+ #else
+ GTimeVal result;
No comments:
Post a Comment