pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/x11/dunst



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Apr 14 15:42:44 UTC 2024

Modified Files:
        pkgsrc/x11/dunst: distinfo
        pkgsrc/x11/dunst/patches: patch-Makefile

Log Message:
dunst: use more portable find operators


To generate a diff of this commit:
cvs rdiff -u -r1.15 -r1.16 pkgsrc/x11/dunst/distinfo
cvs rdiff -u -r1.10 -r1.11 pkgsrc/x11/dunst/patches/patch-Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/x11/dunst/distinfo
diff -u pkgsrc/x11/dunst/distinfo:1.15 pkgsrc/x11/dunst/distinfo:1.16
--- pkgsrc/x11/dunst/distinfo:1.15      Sun Mar 10 08:25:45 2024
+++ pkgsrc/x11/dunst/distinfo   Sun Apr 14 15:42:44 2024
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.15 2024/03/10 08:25:45 wiz Exp $
+$NetBSD: distinfo,v 1.16 2024/04/14 15:42:44 wiz Exp $
 
 BLAKE2s (dunst-1.10.0.tar.gz) = a997fc8a451540a5d38f1bb7a885cfed55c5f814e5a73fa7929666d03d593530
 SHA512 (dunst-1.10.0.tar.gz) = e7e453c9470a063cdee4602315b22c1c8bcbf1405d3c295bccf01ae4e1b535e11b7323313b63cfc510e38ea8243117d550e6057df15924bbd4efb7e0b7f9a709
 Size (dunst-1.10.0.tar.gz) = 4639084 bytes
-SHA1 (patch-Makefile) = ec9c9c3fec24fd0de9dae959ace8285ea5776415
+SHA1 (patch-Makefile) = d289510c2e722f7dc418dcaf25cd814b4b8c5c69
 SHA1 (patch-src_input.c) = dbc9294cccb37048972ac7c0d01bbe65362a9111
 SHA1 (patch-src_x11_x.c) = 94a4b65bde1a0e4325a0fe76939b4ce4112f2a58

Index: pkgsrc/x11/dunst/patches/patch-Makefile
diff -u pkgsrc/x11/dunst/patches/patch-Makefile:1.10 pkgsrc/x11/dunst/patches/patch-Makefile:1.11
--- pkgsrc/x11/dunst/patches/patch-Makefile:1.10        Sun Mar 10 08:25:45 2024
+++ pkgsrc/x11/dunst/patches/patch-Makefile     Sun Apr 14 15:42:44 2024
@@ -1,10 +1,20 @@
-$NetBSD: patch-Makefile,v 1.10 2024/03/10 08:25:45 wiz Exp $
+$NetBSD: patch-Makefile,v 1.11 2024/04/14 15:42:44 wiz Exp $
 
+Use more portable find options.
 Use BSD_INSTALL.
 
---- Makefile.orig      2023-04-20 16:55:58.000000000 +0000
+--- Makefile.orig      2024-02-19 20:44:18.000000000 +0000
 +++ Makefile
-@@ -187,22 +187,22 @@ clean-wayland-protocols:
+@@ -35,7 +35,7 @@ LDFLAGS := ${DEFAULT_LDFLAGS} ${LDFLAGS}
+ 
+ ifeq (0,${WAYLAND})
+ # without wayland support
+-SRC := $(sort $(shell ${FIND} src/ -not \( -path src/wayland -prune \) -name '*.c'))
++SRC := $(sort $(shell ${FIND} src/ ! \( -path src/wayland -prune \) -name '*.c'))
+ else
+ # with Wayland support
+ CFLAGS += -DHAVE_WL_CURSOR_SHAPE -DHAVE_WL_EXT_IDLE_NOTIFY
+@@ -198,22 +198,22 @@ clean-wayland-protocols:
  install: install-dunst install-dunstctl install-dunstrc install-service 
  
  install-dunst: dunst doc
@@ -34,7 +44,7 @@ Use BSD_INSTALL.
  ifneq (0,${SYSTEMD})
  install-service: install-service-systemd
  install-service-systemd: service-systemd
-@@ -212,7 +212,7 @@ endif
+@@ -223,7 +223,7 @@ endif
  ifneq (0,${DUNSTIFY})
  install: install-dunstify
  install-dunstify: dunstify



Home | Main Index | Thread Index | Old Index