app-emacs/ghub: bump to 5.0.4

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2026-03-03 18:29:23 +01:00
parent e10c060940
commit 6c48d2d463
2 changed files with 47 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST ghub-5.0.3.gh.tar.gz 58533 BLAKE2B 99c69bbe49688041cff017f950971fde5034ebbc2b1f4a8d9b9d6ee8e881971c40ebfba3bf37debba4c264bfe14989f4ed1b71af564abd03c744d770d0ff5201 SHA512 2294d2785c15a2a3570f3f3b6838c4bbe74271213900306e5d1dc3a0bf51e039d958481033be8bf2e53428207092574237f2e3686ffb792f90a84c00e0a5c156
DIST ghub-5.0.4.gh.tar.gz 58611 BLAKE2B bf9a9de917e330042d247a0918367d824c840b73348a92b597a3adbe8005e466d2352197bde18fb987028a95c27196e0e5d9b2d842cc7094b4848e9eff9e9258 SHA512 ab06af67813f67429c9ac5cb66adb44523c53424cd378bc13bce4ae4d719b271dc1e139ca6775a2bad872632bc17b8ccc7b3430302b55283e68bfcdab988776e

View File

@@ -0,0 +1,46 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS="29.1"
inherit elisp
DESCRIPTION="Minuscule client library for the Git forge APIs"
HOMEPAGE="https://magit.vc/manual/ghub/
https://github.com/magit/ghub/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/magit/${PN}"
else
SRC_URI="https://github.com/magit/${PN}/archive/v${PV}.tar.gz
-> ${P}.gh.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3+"
SLOT="0"
RDEPEND="
app-emacs/compat
app-emacs/llama
app-emacs/treepy
"
BDEPEND="
${RDEPEND}
sys-apps/texinfo
"
DOCS=( README.org )
ELISP_TEXINFO="docs/ghub.texi"
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
mv ./lisp/*.el . || die
elisp_src_prepare
}