Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/x11/dunst dunst: update to 1.5.0.
details: https://anonhg.NetBSD.org/pkgsrc/rev/0062f68b1e0c
branches: trunk
changeset: 436218:0062f68b1e0c
user: wiz <wiz%pkgsrc.org@localhost>
date: Wed Jul 29 12:27:13 2020 +0000
description:
dunst: update to 1.5.0.
## 1.5.0 - 2020-07-23
### Added
- `min_icon_size` option to automatically scale up icons to a desired value (#674)
- `vertical_alignment` option to control the text/icon alignment within the notification (#684)
- Ability to configure multiple actions for each mouse event (#705)
- `dunstctl` command line control client (#651)
- RGBA support for all color strings (#717)
- Ability to run multiple scripts for each notification
- `ignore_dbusclose` setting (#732)
### Changed
- `dunstify` notification client is now installed by default (#701)
- Keyboard follow mode falls back to the monitor with the mouse if no window has keyboard focus (#708)
### Fixed
- Overflow when setting a >=40 minute timeout (#646)
- Unset configuration options not falling back to default values (#649)
- Crash when `$HOME` environment variable is unset (#693)
- Lack of antialiasing with round corners enabled (#713)
diffstat:
x11/dunst/Makefile | 6 +++---
x11/dunst/PLIST | 5 ++++-
x11/dunst/distinfo | 12 ++++++------
x11/dunst/patches/patch-Makefile | 25 ++++++++++++++++++++-----
4 files changed, 33 insertions(+), 15 deletions(-)
diffs (96 lines):
diff -r 35031ea124c8 -r 0062f68b1e0c x11/dunst/Makefile
--- a/x11/dunst/Makefile Wed Jul 29 12:11:04 2020 +0000
+++ b/x11/dunst/Makefile Wed Jul 29 12:27:13 2020 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.19 2020/03/10 22:11:12 wiz Exp $
+# $NetBSD: Makefile,v 1.20 2020/07/29 12:27:13 wiz Exp $
-DISTNAME= dunst-1.4.1
-PKGREVISION= 2
+DISTNAME= dunst-1.5.0
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_GITHUB:=dunst-project/}
GITHUB_TAG= v${PKGVERSION_NOREV}
@@ -31,6 +30,7 @@
.include "../../devel/pango/buildlink3.mk"
.include "../../graphics/gdk-pixbuf2/buildlink3.mk"
.include "../../sysutils/dbus/buildlink3.mk"
+.include "../../sysutils/libnotify/buildlink3.mk"
.include "../../x11/libX11/buildlink3.mk"
.include "../../x11/libXScrnSaver/buildlink3.mk"
.include "../../x11/libXext/buildlink3.mk"
diff -r 35031ea124c8 -r 0062f68b1e0c x11/dunst/PLIST
--- a/x11/dunst/PLIST Wed Jul 29 12:11:04 2020 +0000
+++ b/x11/dunst/PLIST Wed Jul 29 12:27:13 2020 +0000
@@ -1,5 +1,8 @@
-@comment $NetBSD: PLIST,v 1.1 2016/06/11 22:07:01 kamil Exp $
+@comment $NetBSD: PLIST,v 1.2 2020/07/29 12:27:13 wiz Exp $
bin/dunst
+bin/dunstctl
+bin/dunstify
man/man1/dunst.1
+man/man1/dunstctl.1
share/dbus-1/services/org.knopwob.dunst.service
share/dunst/dunstrc
diff -r 35031ea124c8 -r 0062f68b1e0c x11/dunst/distinfo
--- a/x11/dunst/distinfo Wed Jul 29 12:11:04 2020 +0000
+++ b/x11/dunst/distinfo Wed Jul 29 12:27:13 2020 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.6 2019/07/24 17:25:35 nia Exp $
+$NetBSD: distinfo,v 1.7 2020/07/29 12:27:13 wiz Exp $
-SHA1 (dunst-1.4.1.tar.gz) = 6ccccc015e9a6f3ef372a944cb0fe193b6a72412
-RMD160 (dunst-1.4.1.tar.gz) = 13ebad9380c2a16d760737fcf03ede02764e6a65
-SHA512 (dunst-1.4.1.tar.gz) = 43667898e123ef0dea59e2ca55a76686785906e44b453b2a86bdf361045b3f6b751a2e81fa9f562127f80bf47f8c9248960c37f8365dbbe409d72ddc3deb34fb
-Size (dunst-1.4.1.tar.gz) = 160124 bytes
-SHA1 (patch-Makefile) = aa9d85e8ffcbca4b430f68fdae9727df0f9ecdd4
+SHA1 (dunst-1.5.0.tar.gz) = abb1095ddef99b0f8db4cd9b5cce1eeafe1d848e
+RMD160 (dunst-1.5.0.tar.gz) = 1a17dd6bc6a03b11ca4c45e8f780fd2abb2e1b3c
+SHA512 (dunst-1.5.0.tar.gz) = 2057dc530adce1dac89f12f4ca55e9186d378ccc2b406e0fa20d43bc69f671dc303b608a4fea781ab1193bd2e159dcbdecf3baf50e27ac9b0f164965b5824c85
+Size (dunst-1.5.0.tar.gz) = 169272 bytes
+SHA1 (patch-Makefile) = aac393fc17357aad808ccff80da41ac9c351682f
diff -r 35031ea124c8 -r 0062f68b1e0c x11/dunst/patches/patch-Makefile
--- a/x11/dunst/patches/patch-Makefile Wed Jul 29 12:11:04 2020 +0000
+++ b/x11/dunst/patches/patch-Makefile Wed Jul 29 12:27:13 2020 +0000
@@ -1,17 +1,23 @@
-$NetBSD: patch-Makefile,v 1.3 2019/06/10 13:06:54 nia Exp $
+$NetBSD: patch-Makefile,v 1.4 2020/07/29 12:27:13 wiz Exp $
Use BSD_INSTALL.
---- Makefile.orig 2019-03-30 16:47:06.000000000 +0000
+--- Makefile.orig 2020-07-23 10:27:50.000000000 +0000
+++ Makefile
-@@ -157,15 +157,15 @@ clean-coverage-run:
- install: install-dunst install-doc install-service
+@@ -165,19 +165,19 @@ clean-coverage-run:
+ install: install-dunst install-dunstctl install-doc install-service install-dunstify
install-dunst: dunst doc
- install -Dm755 dunst ${DESTDIR}${BINDIR}/dunst
- install -Dm644 docs/dunst.1 ${DESTDIR}${MANPREFIX}/man1/dunst.1
+- install -Dm644 docs/dunstctl.1 ${DESTDIR}${MANPREFIX}/man1/dunstctl.1
+ ${BSD_INSTALL_PROGRAM} dunst ${DESTDIR}${BINDIR}/dunst
-+ ${BSD_INSTALL_MAN} docs/dunst.1 ${DESTDIR}${MANPREFIX}/man1/dunst.1
++ ${BSD_INSTALL_DATA} docs/dunst.1 ${DESTDIR}${MANPREFIX}/man1/dunst.1
++ ${BSD_INSTALL_DATA} docs/dunstctl.1 ${DESTDIR}${MANPREFIX}/man1/dunstctl.1
+
+ install-dunstctl: dunstctl
+- install -Dm755 dunstctl ${DESTDIR}${BINDIR}/dunstctl
++ ${BSD_INSTALL_PROGRAM} dunstctl ${DESTDIR}${BINDIR}/dunstctl
install-doc:
- install -Dm644 dunstrc ${DESTDIR}${DATADIR}/dunst/dunstrc
@@ -24,3 +30,12 @@
ifneq (0,${SYSTEMD})
install-service: install-service-systemd
install-service-systemd: service-systemd
+@@ -185,7 +185,7 @@ install-service-systemd: service-systemd
+ endif
+
+ install-dunstify: dunstify
+- install -Dm755 dunstify ${DESTDIR}${BINDIR}/dunstify
++ ${BSD_INSTALL_PROGRAM} dunstify ${DESTDIR}${BINDIR}/dunstify
+
+ uninstall: uninstall-service uninstall-dunstctl
+ rm -f ${DESTDIR}${BINDIR}/dunst
Home |
Main Index |
Thread Index |
Old Index