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 864A513933E for ; Mon, 12 Jul 2021 12:26:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BA7FCE0905; Mon, 12 Jul 2021 12:26:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 9DB55E0905 for ; Mon, 12 Jul 2021 12:26:33 +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 7D143342C9C for ; Mon, 12 Jul 2021 12:26:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 180367D0 for ; Mon, 12 Jul 2021 12:26:31 +0000 (UTC) From: "Marek Szuba" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Marek Szuba" Message-ID: <1626092785.c2fcfbd233595511a1a0b8571750641653cc30b7.marecki@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/aqualung/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/aqualung/aqualung-1.1-r101.ebuild X-VCS-Directories: media-sound/aqualung/ X-VCS-Committer: marecki X-VCS-Committer-Name: Marek Szuba X-VCS-Revision: c2fcfbd233595511a1a0b8571750641653cc30b7 X-VCS-Branch: master Date: Mon, 12 Jul 2021 12:26:31 +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: 3bdff2ef-42cc-478c-aff1-bda5dd5aa1b1 X-Archives-Hash: 0614ea0047df995c68b80a262414dbb4 commit: c2fcfbd233595511a1a0b8571750641653cc30b7 Author: Marek Szuba gentoo org> AuthorDate: Mon Jul 12 11:45:09 2021 +0000 Commit: Marek Szuba gentoo org> CommitDate: Mon Jul 12 12:26:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2fcfbd2 media-sound/aqualung: support all currently available Lua targets Builds and installs fine against all five. For the record, the upstream configure search logic is 5.2, 5.1, >5.2, >5.1, fail. Signed-off-by: Marek Szuba gentoo.org> media-sound/aqualung/aqualung-1.1-r101.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-sound/aqualung/aqualung-1.1-r101.ebuild b/media-sound/aqualung/aqualung-1.1-r101.ebuild index af782eb7015..26cd9a92381 100644 --- a/media-sound/aqualung/aqualung-1.1-r101.ebuild +++ b/media-sound/aqualung/aqualung-1.1-r101.ebuild @@ -3,12 +3,12 @@ EAPI=7 -LUA_COMPAT=( lua5-2 ) +LUA_COMPAT=( lua5-{1..4} luajit ) inherit autotools desktop lua-single xdg DESCRIPTION="Music player for a wide range of formats designed for gapless playback" -HOMEPAGE="http://aqualung.jeremyevans.net/ https://github.com/jeremyevans/aqualung" +HOMEPAGE="https://aqualung.jeremyevans.net/ https://github.com/jeremyevans/aqualung" SRC_URI="https://github.com/jeremyevans/${PN}/releases/download/${PV}/${P}.tar.gz" LICENSE="GPL-2"