Received: by mail.netbsd.org (Postfix, from userid 605) id 4ABF784EDC; Wed, 24 Jun 2020 13:32:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id C888584EDA for ; Wed, 24 Jun 2020 13:32:10 +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 m-kfzvqh5rZw for ; Wed, 24 Jun 2020 13:32:10 +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 2755584D8B for ; Wed, 24 Jun 2020 13:32:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 216BEFB28; Wed, 24 Jun 2020 13:32:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1593005530224430" MIME-Version: 1.0 Date: Wed, 24 Jun 2020 13:32:10 +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: <20200624133210.216BEFB28@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. --_----------=_1593005530224430 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Jun 24 13:32:10 UTC 2020 Modified Files: pkgsrc/games/love010: options.mk pkgsrc/games/solarus: options.mk Log Message: Move luajit out of SUPPORTED_OPTIONS where unsupported. To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/love010/options.mk cvs rdiff -u -r1.1 -r1.2 pkgsrc/games/solarus/options.mk Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1593005530224430 Content-Disposition: inline Content-Length: 1258 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.1 pkgsrc/games/love010/options.mk:1.2 --- pkgsrc/games/love010/options.mk:1.1 Wed Jun 24 11:24:45 2020 +++ pkgsrc/games/love010/options.mk Wed Jun 24 13:32:09 2020 @@ -1,10 +1,10 @@ -# $NetBSD: options.mk,v 1.1 2020/06/24 11:24:45 nia Exp $ +# $NetBSD: options.mk,v 1.2 2020/06/24 13:32:09 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.1 pkgsrc/games/solarus/options.mk:1.2 --- pkgsrc/games/solarus/options.mk:1.1 Wed Jun 24 13:28:26 2020 +++ pkgsrc/games/solarus/options.mk Wed Jun 24 13:32:09 2020 @@ -1,10 +1,10 @@ -# $NetBSD: options.mk,v 1.1 2020/06/24 13:28:26 nia Exp $ +# $NetBSD: options.mk,v 1.2 2020/06/24 13:32:09 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 --_----------=_1593005530224430--