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 AFF2D13835A for ; Sat, 5 Dec 2020 23:29:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00EDDE0880; Sat, 5 Dec 2020 23:29:42 +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 E0E7FE0880 for ; Sat, 5 Dec 2020 23:29:41 +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 F35F03410C6 for ; Sat, 5 Dec 2020 23:29:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 90DF045B for ; Sat, 5 Dec 2020 23:29:39 +0000 (UTC) From: "Conrad Kostecki" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Conrad Kostecki" Message-ID: <1607210755.1d9b5f014691ef26cd0c6f52b0e6236ead73bc3a.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libquvi-scripts/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libquvi-scripts/libquvi-scripts-0.9.20131130-r2.ebuild X-VCS-Directories: media-libs/libquvi-scripts/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 1d9b5f014691ef26cd0c6f52b0e6236ead73bc3a X-VCS-Branch: master Date: Sat, 5 Dec 2020 23:29: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: 645d305a-26e0-442d-89b5-c4befbb2d3d4 X-Archives-Hash: e49079750f18f723b7206ad8d464d646 commit: 1d9b5f014691ef26cd0c6f52b0e6236ead73bc3a Author: Conrad Kostecki gentoo org> AuthorDate: Sat Dec 5 23:10:03 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Sat Dec 5 23:25:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d9b5f01 media-libs/libquvi-scripts: bump to EAPI=7, drop multilib Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> .../libquvi-scripts-0.9.20131130-r2.ebuild | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/media-libs/libquvi-scripts/libquvi-scripts-0.9.20131130-r2.ebuild b/media-libs/libquvi-scripts/libquvi-scripts-0.9.20131130-r2.ebuild new file mode 100644 index 00000000000..ebc2c74d1a9 --- /dev/null +++ b/media-libs/libquvi-scripts/libquvi-scripts-0.9.20131130-r2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Embedded lua scripts for libquvi" +HOMEPAGE="http://quvi.sourceforge.net/" +SRC_URI="mirror://sourceforge/quvi/${P}.tar.xz" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86" +IUSE="offensive" + +# tests fetch data from live websites +RESTRICT="test" + +RDEPEND=" + >=dev-lua/LuaBitOp-1.0.1-r1 + >=dev-lua/luaexpat-1.3.0-r1 + >=dev-lua/luajson-1.1.1 + >=dev-lua/luasocket-3.0_rc1-r2 +" + +BDEPEND=" + app-arch/xz-utils + virtual/pkgconfig +" + +src_configure() { + econf $(use_with offensive nsfw) --with-manual +}