Received: by mail.netbsd.org (Postfix, from userid 605) id A144B84ED1; Tue, 27 Sep 2022 12:33:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D34FF84ECE for ; Tue, 27 Sep 2022 12:33:09 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id cEbtY0-Exuz7 for ; Tue, 27 Sep 2022 12:33:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 03EE784D12 for ; Tue, 27 Sep 2022 12:33:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F1A81FA90; Tue, 27 Sep 2022 12:33:08 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1664281988178890" MIME-Version: 1.0 Date: Tue, 27 Sep 2022 12:33:08 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/wm/evilwm To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20220927123308.F1A81FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1664281988178890 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Sep 27 12:33:08 UTC 2022 Modified Files: pkgsrc/wm/evilwm: Makefile PLIST distinfo Log Message: evilwm: Update to 1.4.0. Version 1.4.0, Tue Sep 27 2022 * Send more accurate response to _NET_REQUEST_FRAME_EXTENTS. * Support arbitrary key binds and semi-arbitrary button binds. * Reread config and remanage all windows on SIGHUP. Version 1.3.1, Fri Jul 30 2021 * Documentation updates & fixes only. Version 1.3.0, Fri Jul 16 2021 * Add EWMH 1.5 _NET_WM_STATE_FOCUSED support. * Add basic multi-monitor support when Randr >= 1.5 available. * Remove border when window is maximised (useful for multi-monitor). * Set _NET_FRAME_EXTENTS whenever relevant. * Add new -wholescreen option to reinstate old behaviour of treating screen as one large display. * Remove -DVWM build option. User can run with "-numvdesks 1" if necessary. Version 1.2.1, Mon Jul 5 2021 * Fix QWERTZ_KEYMAP build option [Sime Ramov] Version 1.2.0, Mon Jul 5 2021 * Code reorder. Better code separation and many more/better comments. * Don't focus mapped window if pointer not on same screen [by Ben Stern] * Added QWERTZ_KEYMAP build option [by Thomas Egerer] * Remove option to exclude help and error messages. * Set focus to root window when closing current [adapted from Arch patch] * Add tiny configure script to help with Debian multiarch cross-builds. * Generate some documentation from HTML source. To generate a diff of this commit: cvs rdiff -u -r1.39 -r1.40 pkgsrc/wm/evilwm/Makefile cvs rdiff -u -r1.4 -r1.5 pkgsrc/wm/evilwm/PLIST cvs rdiff -u -r1.25 -r1.26 pkgsrc/wm/evilwm/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1664281988178890 Content-Disposition: inline Content-Length: 2907 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/wm/evilwm/Makefile diff -u pkgsrc/wm/evilwm/Makefile:1.39 pkgsrc/wm/evilwm/Makefile:1.40 --- pkgsrc/wm/evilwm/Makefile:1.39 Sun Oct 11 08:53:28 2020 +++ pkgsrc/wm/evilwm/Makefile Tue Sep 27 12:33:08 2022 @@ -1,7 +1,6 @@ -# $NetBSD: Makefile,v 1.39 2020/10/11 08:53:28 nia Exp $ +# $NetBSD: Makefile,v 1.40 2022/09/27 12:33:08 jperkin Exp $ -DISTNAME= evilwm-1.1.1 -PKGREVISION= 1 +DISTNAME= evilwm-1.4.0 CATEGORIES= wm x11 MASTER_SITES= http://www.6809.org.uk/evilwm/ @@ -14,16 +13,20 @@ USE_TOOLS+= gmake CPPFLAGS.NetBSD+= -D_NETBSD_SOURCE -INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 share/doc/evilwm +INSTALLATION_DIRS+= bin ${PKGMANDIR}/man1 +INSTALLATION_DIRS+= share/applications share/doc/evilwm do-install: ${INSTALL_PROGRAM} ${WRKSRC}/evilwm ${DESTDIR}${PREFIX}/bin/evilwm ${INSTALL_MAN} ${WRKSRC}/evilwm.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/evilwm.1 - for docfile in ChangeLog README TODO; \ - do \ - ${INSTALL_DATA} ${WRKSRC}/$$docfile ${DESTDIR}${PREFIX}/share/doc/evilwm/; \ + for docfile in ChangeLog README TODO; do \ + ${INSTALL_DATA} ${WRKSRC}/$$docfile \ + ${DESTDIR}${PREFIX}/share/doc/evilwm/; \ done + ${INSTALL_DATA} ${WRKSRC}/evilwm.desktop \ + ${DESTDIR}${PREFIX}/share/applications/evilwm.desktop +.include "../../sysutils/desktop-file-utils/desktopdb.mk" .include "../../x11/libXext/buildlink3.mk" .include "../../x11/libXrandr/buildlink3.mk" .include "../../mk/bsd.pkg.mk" Index: pkgsrc/wm/evilwm/PLIST diff -u pkgsrc/wm/evilwm/PLIST:1.4 pkgsrc/wm/evilwm/PLIST:1.5 --- pkgsrc/wm/evilwm/PLIST:1.4 Sun Jun 14 18:18:58 2009 +++ pkgsrc/wm/evilwm/PLIST Tue Sep 27 12:33:08 2022 @@ -1,6 +1,7 @@ -@comment $NetBSD: PLIST,v 1.4 2009/06/14 18:18:58 joerg Exp $ +@comment $NetBSD: PLIST,v 1.5 2022/09/27 12:33:08 jperkin Exp $ bin/evilwm man/man1/evilwm.1 +share/applications/evilwm.desktop share/doc/evilwm/ChangeLog share/doc/evilwm/README share/doc/evilwm/TODO Index: pkgsrc/wm/evilwm/distinfo diff -u pkgsrc/wm/evilwm/distinfo:1.25 pkgsrc/wm/evilwm/distinfo:1.26 --- pkgsrc/wm/evilwm/distinfo:1.25 Tue Oct 26 11:25:12 2021 +++ pkgsrc/wm/evilwm/distinfo Tue Sep 27 12:33:08 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.25 2021/10/26 11:25:12 nia Exp $ +$NetBSD: distinfo,v 1.26 2022/09/27 12:33:08 jperkin Exp $ -BLAKE2s (evilwm-1.1.1.tar.gz) = 74eab1c9f3936b50677bff694f70de363096cc26b10702cc16d61b2550bce601 -SHA512 (evilwm-1.1.1.tar.gz) = a11af475f057bf18adef339f4772ff1291a25a19c86b7f18a4ce7821e70b039c256151232da6cca616ceea7d9242a60b055d654ce26e85384c6ba687ede7898d -Size (evilwm-1.1.1.tar.gz) = 40150 bytes +BLAKE2s (evilwm-1.4.0.tar.gz) = 7d868ffc1624615647aa1c15068f142738d0286c8c4337171c6ccc66f333a15e +SHA512 (evilwm-1.4.0.tar.gz) = c6647fa3e137b7557cd08b4082826aaf5b038224e403a2aa0c212cc39e6c5fe396666079909342b92e983fa5f38ab7dad2fdd9e26ccbbe0df535243307be55ed +Size (evilwm-1.4.0.tar.gz) = 73466 bytes --_----------=_1664281988178890--