commit: 56f529eca601499ea7340dfa18c4e931c57027bd Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Mon Jun 2 17:45:14 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Mon Jun 2 18:13:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56f529ec
app-emacs/git-modes: bump to 1.4.5 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/git-modes/Manifest | 1 + app-emacs/git-modes/git-modes-1.4.5.ebuild | 39 ++++++++++++++++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/app-emacs/git-modes/Manifest b/app-emacs/git-modes/Manifest index 474f00c21295..b458bd0bb334 100644 --- a/app-emacs/git-modes/Manifest +++ b/app-emacs/git-modes/Manifest @@ -1 +1,2 @@ DIST git-modes-1.4.4.tar.gz 18483 BLAKE2B 031635fd4bdc457456ddfb518be5f676f4be8b369b69b966b6b25b61e781ef0484592fec84be0df67c5d3087169336a3271b9f95fe8a1091d271c77e1f07c4fe SHA512 4959efb71f0321a2964e4a768fdcbbcbc668517b699b5a4f8416f6df3dd7322f69cd0d1fb306a0fd7221a369f17d042d3670cea57655b39f60a1f78e0a5ab7ed +DIST git-modes-1.4.5.gh.tar.gz 18571 BLAKE2B 01ac81c32547cb58e54c7dc373a1494e65650442e17e639fab83f31f9682395951376a53257499c429ce5f27e46ee0c9c25a30124dfdde4e371be99957e75c37 SHA512 576c67e18f11e4b4370c8a6a3f56cf94936e687da227dbe82838c8ab7adca1f5a3b1c5a06c7d45a56a71b970ad4b15796719937847ca776821c18802eb8e70ac diff --git a/app-emacs/git-modes/git-modes-1.4.5.ebuild b/app-emacs/git-modes/git-modes-1.4.5.ebuild new file mode 100644 index 000000000000..f48ffa3fc51e --- /dev/null +++ b/app-emacs/git-modes/git-modes-1.4.5.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Emacs major modes for editing Git configuration files" +HOMEPAGE="https://github.com/magit/git-modes/" + +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-30.1.0.0 +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( README.org ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + + elisp-make-autoload-file +}
