Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 612DB7A477 for ; Sun, 12 Jun 2016 19:48:04 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id CB35385EAC; Sun, 12 Jun 2016 19:48:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5DF0285EA2 for ; Sun, 12 Jun 2016 19:48:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 6bt3LfpaQgA0 for ; Sun, 12 Jun 2016 19:48:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id E07CA84CFC for ; Sun, 12 Jun 2016 19:48:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DA585FBB5; Sun, 12 Jun 2016 19:48:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_146576088242770" MIME-Version: 1.0 Date: Sun, 12 Jun 2016 19:48:02 +0000 From: "Kamil Rytarowski" Subject: CVS commit: pkgsrc/x11/i3lock To: pkgsrc-changes@NetBSD.org Reply-To: kamil@netbsd.org X-Mailer: log_accum Message-Id: <20160612194802.DA585FBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_146576088242770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: kamil Date: Sun Jun 12 19:48:02 UTC 2016 Modified Files: pkgsrc/x11/i3lock: Makefile distinfo Log Message: i3lock: Update to 2.8 Upstream changes: * Remove DPMS support in favor of a wrapper script and xset(1). * Indicate that the --inactivity-timeout option takes an argument. (Thanks Kenneth Lyons) * fix pam_securetty: set PAM_TTY to getenv("DISPLAY") * Eat XKB_KEY_Delete and XKB_KEY_KP_Delete (Thanks bebehei) * Show unlock indicator if password was entered during PAM verification * Allow CTRL+J as enter and CTRL+H as backspace (Thanks Karl Tarbe) * Flush xcb connection after opening fullscreen window (Thanks martin) * Add support for `xss-lock --transfer-sleep-lock' To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/x11/i3lock/Makefile \ pkgsrc/x11/i3lock/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_146576088242770 Content-Disposition: inline Content-Length: 1605 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/x11/i3lock/Makefile diff -u pkgsrc/x11/i3lock/Makefile:1.1 pkgsrc/x11/i3lock/Makefile:1.2 --- pkgsrc/x11/i3lock/Makefile:1.1 Sat Jun 11 23:00:13 2016 +++ pkgsrc/x11/i3lock/Makefile Sun Jun 12 19:48:02 2016 @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1 2016/06/11 23:00:13 kamil Exp $ +# $NetBSD: Makefile,v 1.2 2016/06/12 19:48:02 kamil Exp $ # -DISTNAME= i3lock-2.7 +DISTNAME= i3lock-2.8 CATEGORIES= x11 MASTER_SITES= http://i3wm.org/i3lock/ EXTRACT_SUFX= .tar.bz2 Index: pkgsrc/x11/i3lock/distinfo diff -u pkgsrc/x11/i3lock/distinfo:1.1 pkgsrc/x11/i3lock/distinfo:1.2 --- pkgsrc/x11/i3lock/distinfo:1.1 Sat Jun 11 23:00:13 2016 +++ pkgsrc/x11/i3lock/distinfo Sun Jun 12 19:48:02 2016 @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.1 2016/06/11 23:00:13 kamil Exp $ +$NetBSD: distinfo,v 1.2 2016/06/12 19:48:02 kamil Exp $ -SHA1 (i3lock-2.7.tar.bz2) = d1096b1f67bfcddc447fade8fa4f7bc124607fec -RMD160 (i3lock-2.7.tar.bz2) = b140a1babea730469943641d5d78655d9a5807a8 -SHA512 (i3lock-2.7.tar.bz2) = 7945d142d239fe7f8985c1000e22db0532456939e65ee855f12e364092808d0cc09cc818b1189e32d88c872ce00033c41c8ebefe62349630872815adaf8b3899 -Size (i3lock-2.7.tar.bz2) = 19490 bytes +SHA1 (i3lock-2.8.tar.bz2) = bbddb87894db5607da37ff2295c3cad45fe90cec +RMD160 (i3lock-2.8.tar.bz2) = 8b3f9ec6f0e11cfeb375219bc61a82e00568d1d2 +SHA512 (i3lock-2.8.tar.bz2) = b0f2f2837e275ffb2874aec75cd5d7c69864f8861de5e3e6090a2bf9254a14f8bc141256b0faac3e30111f9612e97cc087efde0da939854fac975a87deb06e3f +Size (i3lock-2.8.tar.bz2) = 19884 bytes SHA1 (patch-Makefile) = 20653b964ce099c0b9daba433a07d2b5b0f1bac3 --_----------=_146576088242770--