From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AD26B158B20 for ; Thu, 06 Feb 2025 22:36:37 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 90A89343074 for ; Thu, 06 Feb 2025 22:36:37 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 82FEE1103CB; Thu, 06 Feb 2025 22:36:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 7A71F1103CB for ; Thu, 06 Feb 2025 22:36:36 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2CA07342FF4 for ; Thu, 06 Feb 2025 22:36:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C3BA15DC for ; Thu, 06 Feb 2025 22:36:34 +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: <1738881380.639cfbb46c5da1366fef756ef02e94b30a875cf8.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/llama/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emacs/llama/Manifest app-emacs/llama/llama-0.6.0.ebuild app-emacs/llama/metadata.xml X-VCS-Directories: app-emacs/llama/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: 639cfbb46c5da1366fef756ef02e94b30a875cf8 X-VCS-Branch: master Date: Thu, 06 Feb 2025 22:36:34 +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: 8a1936ce-cf67-4a00-a4bb-36b83bc28ffb X-Archives-Hash: b5264e70d03397dcabb7c52a6c97dffb commit: 639cfbb46c5da1366fef756ef02e94b30a875cf8 Author: Maciej Barć gentoo org> AuthorDate: Thu Feb 6 22:17:34 2025 +0000 Commit: Maciej Barć gentoo org> CommitDate: Thu Feb 6 22:36:20 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=639cfbb4 app-emacs/llama: new package; add version 0.6.0 Signed-off-by: Maciej Barć gentoo.org> app-emacs/llama/Manifest | 1 + app-emacs/llama/llama-0.6.0.ebuild | 40 ++++++++++++++++++++++++++++++++++++++ app-emacs/llama/metadata.xml | 18 +++++++++++++++++ 3 files changed, 59 insertions(+) diff --git a/app-emacs/llama/Manifest b/app-emacs/llama/Manifest new file mode 100644 index 000000000000..f5e8c08441e1 --- /dev/null +++ b/app-emacs/llama/Manifest @@ -0,0 +1 @@ +DIST llama-0.6.0.gh.tar.gz 22503 BLAKE2B 681f0596430b6396ceb1fc53af98f6baaad8588e2794aa8bc050ade0f6fa04d0e683145c5fee49ae2c63e10819b90931d484989bf78a152f6162c03d798bc865 SHA512 36f4c4a90ec65562470cef08751dd68bd8dcee9556e6d30a219e0491819ec137afd1fe5a2ae2465e8eb48cd54ee4b7ee251cd455786c8c9b9ba44f388c79ce41 diff --git a/app-emacs/llama/llama-0.6.0.ebuild b/app-emacs/llama/llama-0.6.0.ebuild new file mode 100644 index 000000000000..d8b16f6cf670 --- /dev/null +++ b/app-emacs/llama/llama-0.6.0.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Compact syntax for short lambda" +HOMEPAGE="https://github.com/tarsius/llama/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/tarsius/${PN}" +else + SRC_URI="https://github.com/tarsius/${PN}/archive/refs/tags/v${PV}.tar.gz + -> ${P}.gh.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + >=app-emacs/compat-30.0.2.0 +" +BDEPEND=" + ${RDEPEND} +" + +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests ert . + +src_install() { + rm "./${PN}-test.el"* || die + + elisp_src_install +} diff --git a/app-emacs/llama/metadata.xml b/app-emacs/llama/metadata.xml new file mode 100644 index 000000000000..b635a332c22c --- /dev/null +++ b/app-emacs/llama/metadata.xml @@ -0,0 +1,18 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + This package implements a macro named ##, which provides a compact way + to write short lambda expressions. + + + + https://github.com/tarsius/llama/issues/ + tarsius/llama + +