app-emacs/magit: bump to 4.4.0

Signed-off-by: Maciej Barć <xgqt@gentoo.org>
This commit is contained in:
Maciej Barć
2025-09-30 20:36:21 +02:00
parent a00b784fce
commit 08f268fcb1
2 changed files with 53 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST magit-4.2.0.tar.gz 673702 BLAKE2B 436a2cbe88ffb6a4940eeb8b7f9ab9c1535942df6a35dab5cd4de9052bb5f9d2fa70abc61f26688c792de19a4d9a22c87d90d98515b3ea4a32356f6f163a7980 SHA512 e5488f759e3cd2c72966a31142f90bee2e3c8bb10bd4a77db69899a13cafb68222656331d7b8ac8a042b431994af03f0f0ce04658e967a07d4f3c3440da2e0d9
DIST magit-4.3.8.tar.gz 691415 BLAKE2B a116b7602ade871bcaeecc866533e743bbf997135ee1b722cfca5bbcba7650a2e99b07db8110569232f1d61e88a4869b3798c91d6494e503cecd204c481f91de SHA512 214e557bafc1d1bd604cb2693138dc5bc940706aa81c6270699bc825c6ca272d5acaf07083b189560c0dc2b0535bddf24b0415dfa66e83720232c575bd75dcfe
DIST magit-4.4.0.tar.gz 699605 BLAKE2B fa70770acda3278d598f2cf4c7248da67385276f326bb915a6a8fcb8f3419231a788c9d45c94782e027b963acc8596984c6e757124ead1b90fe3285b0b630387 SHA512 79c00f848d2d0bc86c8042a436afd5641e9ccb20b6ea4e84d6d8133ed6d1724e4ddc8d6bee497d81a555dd50e30dcab61742b0e824e78312c19ccea8c03e3184

View File

@@ -0,0 +1,52 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit elisp
DESCRIPTION="A Git porcelain inside Emacs"
HOMEPAGE="https://magit.vc/
https://github.com/magit/magit/"
if [[ "${PV}" == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
else
SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz
-> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
S="${WORKDIR}/${P}/lisp"
LICENSE="GPL-3+"
SLOT="0"
RDEPEND="
>=app-emacs/compat-30.1.0.0
app-emacs/cond-let
app-emacs/dash
app-emacs/llama
app-emacs/transient
app-emacs/with-editor
"
BDEPEND="
${RDEPEND}
sys-apps/texinfo
"
RDEPEND+="
>=dev-vcs/git-2.44.2
"
DOCS=( ../README.md ../docs/AUTHORS.md ../docs/RelNotes )
ELISP_TEXINFO="../docs/*.texi"
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
default
echo "(setq ${PN}-version \"${PV}\")" > "./${PN}-version.el" || die
}