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 6064C1382C5 for ; Mon, 10 May 2021 22:07:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FB06E07D7; Mon, 10 May 2021 22:07:57 +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 822C7E07D7 for ; Mon, 10 May 2021 22:07:57 +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 79DD4340BEF for ; Mon, 10 May 2021 22:07:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D08D4D2 for ; Mon, 10 May 2021 22:07:55 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1620684465.843e5d7e1712444b38607beff5ba837fba641adb.xgqt@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-lang/fennel/ X-VCS-Repository: repo/proj/guru X-VCS-Files: dev-lang/fennel/Manifest dev-lang/fennel/fennel-0.9.2.ebuild X-VCS-Directories: dev-lang/fennel/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 843e5d7e1712444b38607beff5ba837fba641adb X-VCS-Branch: dev Date: Mon, 10 May 2021 22:07:55 +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: fcfba716-9e9d-4644-afa0-1f6497669584 X-Archives-Hash: fcd48e194ee66991201fa6146fb0bdd5 commit: 843e5d7e1712444b38607beff5ba837fba641adb Author: Maciej Barć riseup net> AuthorDate: Mon May 10 22:07:45 2021 +0000 Commit: Maciej Barć riseup net> CommitDate: Mon May 10 22:07:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=843e5d7e dev-lang/fennel: bump to 0.9.2 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Maciej Barć riseup.net> dev-lang/fennel/Manifest | 1 + dev-lang/fennel/fennel-0.9.2.ebuild | 36 ++++++++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/dev-lang/fennel/Manifest b/dev-lang/fennel/Manifest index fc8d0dcd8..219c558a7 100644 --- a/dev-lang/fennel/Manifest +++ b/dev-lang/fennel/Manifest @@ -1 +1,2 @@ DIST fennel-0.9.1.tar.gz 203441 BLAKE2B 74f461b3e7a24cdae0c8dde590814cb9753a12ab62e797746cc8753d178007a09084037e443d8309fa11ff309a5c6bf6c2e369942ef357aa0402883cef278542 SHA512 87e7ffbef0b49499a93255f50e77f53b9be4faa6d4609d8d65e3a64470bbf07b49a55e7dd547fda4b0e5fe0f4f1e6ece18282cc89955a57ed0a50be8dc01261c +DIST fennel-0.9.2.tar.gz 209550 BLAKE2B b80ba0a8ebd3d089191f302ed00c3cb41d07a7b310b7b62609e2c40738b22eb16ce7dcc35449f5954316e74cdb982e4e51117ac70ca5bd6cf7b2d97783168f24 SHA512 2bf92865a4d79329b6c511c6871158a86347f98569a594358f9a3a8d2ac8013c35d00741ae68da50c5042df2b061e2eba4e61aa98877f94415f334f9994ad4e0 diff --git a/dev-lang/fennel/fennel-0.9.2.ebuild b/dev-lang/fennel/fennel-0.9.2.ebuild new file mode 100644 index 000000000..62871fa60 --- /dev/null +++ b/dev-lang/fennel/fennel-0.9.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +LUA_COMPAT=( lua5-{1..4} luajit ) + +inherit lua-single + +DESCRIPTION="Fennel is a lisp that compiles to Lua" +HOMEPAGE="https://fennel-lang.org/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://git.sr.ht/~technomancy/fennel" +else + SRC_URI="https://git.sr.ht/~technomancy/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64" +fi + +LICENSE="MIT" +SLOT="0" +REQUIRED_USE="${LUA_REQUIRED_USE}" + +RDEPEND="${LUA_DEPS}" +DEPEND="${RDEPEND}" +BDEPEND="${RDEPEND}" + +src_install() { + emake \ + LUA_LIB_DIR="${ED}/$(lua_get_lmod_dir)" \ + PREFIX="${ED}/usr" \ + install + doman "${PN}.1" + dodoc *.md +}