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 D23D21382C5 for ; Fri, 4 Dec 2020 14:51:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2FB5DE0882; Fri, 4 Dec 2020 14:51:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 17FD8E0882 for ; Fri, 4 Dec 2020 14:51:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DFC08340FE5 for ; Fri, 4 Dec 2020 14:51:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 653AB45B for ; Fri, 4 Dec 2020 14:51:27 +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: <1607093480.8833d0634e057003582c8ed44d78036a1e0df35c.conikost@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lua/toluapp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lua/toluapp/toluapp-1.0.93_p20190513-r2.ebuild X-VCS-Directories: dev-lua/toluapp/ X-VCS-Committer: conikost X-VCS-Committer-Name: Conrad Kostecki X-VCS-Revision: 8833d0634e057003582c8ed44d78036a1e0df35c X-VCS-Branch: master Date: Fri, 4 Dec 2020 14:51:27 +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: 189c9c37-f77d-4578-839e-5a2a65e53c0c X-Archives-Hash: ac4233d2f73308dfc9713dff8fe742d6 commit: 8833d0634e057003582c8ed44d78036a1e0df35c Author: Conrad Kostecki gentoo org> AuthorDate: Fri Dec 4 14:49:17 2020 +0000 Commit: Conrad Kostecki gentoo org> CommitDate: Fri Dec 4 14:51:20 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8833d063 dev-lua/toluapp: update deps Also migrated from cmake-utils to cmake eclass. Closes: https://bugs.gentoo.org/730384 Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Conrad Kostecki gentoo.org> dev-lua/toluapp/toluapp-1.0.93_p20190513-r2.ebuild | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/dev-lua/toluapp/toluapp-1.0.93_p20190513-r2.ebuild b/dev-lua/toluapp/toluapp-1.0.93_p20190513-r2.ebuild new file mode 100644 index 00000000000..b717b9263fe --- /dev/null +++ b/dev-lua/toluapp/toluapp-1.0.93_p20190513-r2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake + +MY_PN=${PN/pp/++} +COMMIT_ID="b34075b76835b778bb6b2ce0aa224afd9d182887" + +DESCRIPTION="A tool to integrate C/C++ code with Lua" +HOMEPAGE="https://github.com/LuaDist/toluapp" +SRC_URI="https://github.com/LuaDist/toluapp/archive/${COMMIT_ID}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha amd64 ppc ppc64 sparc x86" +IUSE="" + +RDEPEND="dev-lang/lua:0=" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${PN}-${COMMIT_ID}" + +PATCHES=( + "${FILESDIR}"/${PN}-1.0.93_p20190513-fix-multilib.patch +) +CMAKE_REMOVE_MODULES_LIST="dist lua FindLua"