commit: 63bab76f0f424d5ad8fc3678aa24e0f02a49b032 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Thu Jan 8 19:55:28 2026 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Thu Jan 8 21:19:39 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63bab76f
app-emacs/llama: bump to 1.0.3 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/llama/Manifest | 1 + app-emacs/llama/llama-1.0.3.ebuild | 40 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/app-emacs/llama/Manifest b/app-emacs/llama/Manifest index 47c6eb1d3cea..8c128a14be7f 100644 --- a/app-emacs/llama/Manifest +++ b/app-emacs/llama/Manifest @@ -1 +1,2 @@ DIST llama-1.0.2.gh.tar.gz 22433 BLAKE2B 8c6a6f91720b986f52946cd0befa06953ffcd4fdd0cd79c4641428c657d66bc86f7bc2027cc1c6dcec569f3f6e69529545f046a9d6d27af15d10a2b07783a9bb SHA512 05721f093fc45b4cc7f2c9517f6f16cbf1b72d123767cda6acfbf2af68aa87f44b7a061f75a8759eba63ba7f4560746f82721b46da425a03f130b96607583d44 +DIST llama-1.0.3.gh.tar.gz 22506 BLAKE2B b7ac0c17ff3e49fc87ac81c20c2ce2fda050c642fa6a26fb6778e616f21aea4af5a2c7239bd14badd20b4040c04ab11d453fdfd4611133290ab1af5f4b48d2aa SHA512 5d4dd0425a76ae759deac0ebd71d75c28fddd2f9cc2b100742b8b00aacb2208781cbb9737fd9057910c9f108fcb42360ed3659926e813cda948aa5e76966179d diff --git a/app-emacs/llama/llama-1.0.3.ebuild b/app-emacs/llama/llama-1.0.3.ebuild new file mode 100644 index 000000000000..3e76f0b46b98 --- /dev/null +++ b/app-emacs/llama/llama-1.0.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2026 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 ~arm ~arm64 ~ppc64 ~riscv ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + app-emacs/compat +" +BDEPEND=" + ${RDEPEND} +" + +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests ert "${S}" -l "./${PN}-tests.el" + +src_install() { + rm "./${PN}-tests.el"* || die + + elisp_src_install +}
