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 2B9277A263 for ; Sun, 26 Feb 2017 22:16:59 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D1690855DD; Sun, 26 Feb 2017 22:16:58 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 6311E84CBD for ; Sun, 26 Feb 2017 22:16:58 +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 CNIvkK8BzgwT for ; Sun, 26 Feb 2017 22:16:58 +0000 (UTC) Received: from cvs.NetBSD.org (unknown [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id B5C83855AC for ; Sun, 26 Feb 2017 22:16:57 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id ABCAEFBE4; Sun, 26 Feb 2017 22:16:57 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_148814741754130" MIME-Version: 1.0 Date: Sun, 26 Feb 2017 22:16:57 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/chat/irssi To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20170226221657.ABCAEFBE4@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. --_----------=_148814741754130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Sun Feb 26 22:16:57 UTC 2017 Modified Files: pkgsrc/chat/irssi: Makefile options.mk Log Message: Enable perl option by default. This needs glib2 to run, and glib2 depends on perl, so no reason not to support perl scripting here. Requested by Dominik Bialy in PR 52008. Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.75 -r1.76 pkgsrc/chat/irssi/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/chat/irssi/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_148814741754130 Content-Disposition: inline Content-Length: 1088 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/chat/irssi/Makefile diff -u pkgsrc/chat/irssi/Makefile:1.75 pkgsrc/chat/irssi/Makefile:1.76 --- pkgsrc/chat/irssi/Makefile:1.75 Thu Jan 5 15:46:10 2017 +++ pkgsrc/chat/irssi/Makefile Sun Feb 26 22:16:57 2017 @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.75 2017/01/05 15:46:10 maya Exp $ +# $NetBSD: Makefile,v 1.76 2017/02/26 22:16:57 wiz Exp $ DISTNAME= ${IRSSI_DISTNAME} +PKGREVISION= 1 CATEGORIES= chat EXTRACT_SUFX= ${IRSSI_EXTRACT_SUFX} Index: pkgsrc/chat/irssi/options.mk diff -u pkgsrc/chat/irssi/options.mk:1.12 pkgsrc/chat/irssi/options.mk:1.13 --- pkgsrc/chat/irssi/options.mk:1.12 Sun Aug 14 21:10:35 2016 +++ pkgsrc/chat/irssi/options.mk Sun Feb 26 22:16:57 2017 @@ -1,8 +1,8 @@ -# $NetBSD: options.mk,v 1.12 2016/08/14 21:10:35 maya Exp $ +# $NetBSD: options.mk,v 1.13 2017/02/26 22:16:57 wiz Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.irssi PKG_SUPPORTED_OPTIONS= inet6 perl ssl -PKG_SUGGESTED_OPTIONS= inet6 ssl +PKG_SUGGESTED_OPTIONS= inet6 perl ssl PKG_OPTIONS_LEGACY_OPTS+= irssi-perl:perl .include "../../mk/bsd.options.mk" --_----------=_148814741754130--