Received: by mail.netbsd.org (Postfix, from userid 605) id D1B58850B5; Sun, 28 Jun 2020 09:29:17 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 5AEA8850B4 for ; Sun, 28 Jun 2020 09:29:17 +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 5d7_of5a8AIh for ; Sun, 28 Jun 2020 09:29:17 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id B331B84DEF for ; Sun, 28 Jun 2020 09:29:16 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AC5B0FB28; Sun, 28 Jun 2020 09:29:16 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1593336556289900" MIME-Version: 1.0 Date: Sun, 28 Jun 2020 09:29:16 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/games To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20200628092916.AC5B0FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1593336556289900 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jun 28 09:29:16 UTC 2020 Modified Files: pkgsrc/games/love010: options.mk pkgsrc/games/solarus: options.mk Log Message: Supported options can't be empty, apparently To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/games/love010/options.mk cvs rdiff -u -r1.2 -r1.3 pkgsrc/games/solarus/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1593336556289900 Content-Disposition: inline Content-Length: 1262 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/games/love010/options.mk diff -u pkgsrc/games/love010/options.mk:1.2 pkgsrc/games/love010/options.mk:1.3 --- pkgsrc/games/love010/options.mk:1.2 Wed Jun 24 13:32:09 2020 +++ pkgsrc/games/love010/options.mk Sun Jun 28 09:29:16 2020 @@ -1,10 +1,11 @@ -# $NetBSD: options.mk,v 1.2 2020/06/24 13:32:09 nia Exp $ +# $NetBSD: options.mk,v 1.3 2020/06/28 09:29:16 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.love +PKG_SUPPORTED_OPTIONS= luajit + .include "../../lang/LuaJIT2/platform.mk" .if !empty(PLATFORM_SUPPORTS_LUAJIT:M[Yy][Ee][Ss]) -PKG_SUPPORTED_OPTIONS= luajit PKG_SUGGESTED_OPTIONS= luajit .endif Index: pkgsrc/games/solarus/options.mk diff -u pkgsrc/games/solarus/options.mk:1.2 pkgsrc/games/solarus/options.mk:1.3 --- pkgsrc/games/solarus/options.mk:1.2 Wed Jun 24 13:32:09 2020 +++ pkgsrc/games/solarus/options.mk Sun Jun 28 09:29:16 2020 @@ -1,10 +1,11 @@ -# $NetBSD: options.mk,v 1.2 2020/06/24 13:32:09 nia Exp $ +# $NetBSD: options.mk,v 1.3 2020/06/28 09:29:16 nia Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.solarus +PKG_SUPPORTED_OPTIONS= luajit + .include "../../lang/LuaJIT2/platform.mk" .if !empty(PLATFORM_SUPPORTS_LUAJIT:M[Yy][Ee][Ss]) -PKG_SUPPORTED_OPTIONS= luajit PKG_SUGGESTED_OPTIONS= luajit .endif --_----------=_1593336556289900--