app-emacs/fennel-mode: bump to 0.9.2

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2025-03-15 19:45:00 +01:00
parent 5dc26d661c
commit 8f2e79edba
2 changed files with 38 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST fennel-mode-0.9.1.tar.gz 13995 BLAKE2B 6ccf73a172f28a06221be356c2c0a5ec25342c05b95b3d4cbaf65bb11a8d6a1ad3018e708c59de8aac1069b974a99c3bda57fd42765eebc015360706d53d6e72 SHA512 89dfbf2d70c36a3f1de69af9f2dad5ee93e1ec995470205962b6fd015e779ac8c81159a2d9fb532d14f5afe8485d8e18a82783388565eb1ff4646a714f5113e3
DIST fennel-mode-0.9.2.srht.tar.gz 59720 BLAKE2B 0dcd9dbc3349d2cafe5a990be05889cd3f9ee9abcd51047cbaedbbc41465b990aba2a898cd1f00bf54d8f7c629ca987b41a3f7d3c58ecbde610566dfccd0fe16 SHA512 896353151aecec95a215bedd9bbd6b7007f006fdc760ecdada7a320b35252629ed5ca220c806226609db0efaa00452e897464a014f0a9aefaf03ba9d22dd07c1

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit elisp
DESCRIPTION="Emacs support for the Fennel programming language"
HOMEPAGE="https://git.sr.ht/~technomancy/fennel-mode/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://git.sr.ht/~technomancy/${PN}"
else
SRC_URI="https://git.sr.ht/~technomancy/${PN}/archive/${PV}.tar.gz
-> ${P}.srht.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
ELISP_REMOVE="
Makefile
"
DOCS=( README.md changelog.md )
SITEFILE="50${PN}-gentoo.el"
src_install() {
elisp_src_install
insinto "${SITEETC}"
doins syntax.fnl
}