gentoo-ebuilds/app-emacs/fedi/fedi-0.2.ebuild
Ulrich Müller 9f10db6a92
app-emacs/fedi: Fix use-dependency on json flag
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
2024-11-16 18:39:53 +01:00

37 lines
723 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS="28.1"
inherit elisp
DESCRIPTION="Helper functions for Fediverse or other REST API clients for GNU Emacs"
HOMEPAGE="https://codeberg.org/martianh/fedi.el/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://codeberg.org/martianh/${PN}.el.git"
else
SRC_URI="https://codeberg.org/martianh/${PN}.el/archive/${PV}.tar.gz
-> ${P}.tar.gz"
S="${WORKDIR}/${PN}.el"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
RDEPEND="
>=app-editors/emacs-${NEED_EMACS}[json(+)]
app-emacs/markdown-mode
"
BDEPEND="
${RDEPEND}
"
DOCS=( readme.org )
SITEFILE="50${PN}-gentoo.el"