From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 189E9138350 for ; Mon, 23 Mar 2020 22:35:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DDBBE0B01; Mon, 23 Mar 2020 22:35:43 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9E58BE0B01 for ; Mon, 23 Mar 2020 22:35:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 73C3734EEA6 for ; Mon, 23 Mar 2020 22:35:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B47771 for ; Mon, 23 Mar 2020 22:35:39 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1585002898.82abf007e74167a0970b6c08276ea83bd7cad73e.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/cgit/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/cgit/cgit-1.2.3.ebuild www-apps/cgit/cgit-9999.ebuild www-apps/cgit/metadata.xml X-VCS-Directories: www-apps/cgit/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 82abf007e74167a0970b6c08276ea83bd7cad73e X-VCS-Branch: master Date: Mon, 23 Mar 2020 22:35:39 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ab76e476-6b89-4ea9-9f27-faa3e78cb2ff X-Archives-Hash: 7db698c954a70444b366501b086a54fd commit: 82abf007e74167a0970b6c08276ea83bd7cad73e Author: Matt Turner gentoo org> AuthorDate: Mon Mar 23 22:34:40 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Mon Mar 23 22:34:58 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82abf007 www-apps/cgit: More s/jit/luajit/ Signed-off-by: Matt Turner gentoo.org> www-apps/cgit/cgit-1.2.3.ebuild | 2 +- www-apps/cgit/cgit-9999.ebuild | 2 +- www-apps/cgit/metadata.xml | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/www-apps/cgit/cgit-1.2.3.ebuild b/www-apps/cgit/cgit-1.2.3.ebuild index 1d99de053e8..957cafeb178 100644 --- a/www-apps/cgit/cgit-1.2.3.ebuild +++ b/www-apps/cgit/cgit-1.2.3.ebuild @@ -57,7 +57,7 @@ src_prepare() { echo "CACHE_ROOT = ${CGIT_CACHEDIR}" >> cgit.conf echo "DESTDIR = ${D}" >> cgit.conf if use lua; then - if use jit; then + if use luajit; then echo "LUA_PKGCONFIG = luajit" >> cgit.conf else echo "LUA_PKGCONFIG = lua" >> cgit.conf diff --git a/www-apps/cgit/cgit-9999.ebuild b/www-apps/cgit/cgit-9999.ebuild index 8873c350890..17526b8c448 100644 --- a/www-apps/cgit/cgit-9999.ebuild +++ b/www-apps/cgit/cgit-9999.ebuild @@ -51,7 +51,7 @@ src_prepare() { echo "CACHE_ROOT = ${CGIT_CACHEDIR}" >> cgit.conf echo "DESTDIR = ${D}" >> cgit.conf if use lua; then - if use jit; then + if use luajit; then echo "LUA_PKGCONFIG = luajit" >> cgit.conf else echo "LUA_PKGCONFIG = lua" >> cgit.conf diff --git a/www-apps/cgit/metadata.xml b/www-apps/cgit/metadata.xml index 8839288399a..7c228e38151 100644 --- a/www-apps/cgit/metadata.xml +++ b/www-apps/cgit/metadata.xml @@ -18,6 +18,5 @@ Enable source code highlighting Enable support for Lua scripting - If the lua flag is enabled, jit uses LuaJIT instead of vanilla Lua