commit: a6bcb52b88f738fa84eed49f298d2604ad107773 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Wed Mar 19 16:31:36 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Wed Mar 19 20:51:13 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6bcb52b
app-emacs/tempel: bump to 1.4 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/tempel/Manifest | 1 + app-emacs/tempel/tempel-1.4.ebuild | 40 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/app-emacs/tempel/Manifest b/app-emacs/tempel/Manifest index 460c84f85fcc..cdf2abbf517b 100644 --- a/app-emacs/tempel/Manifest +++ b/app-emacs/tempel/Manifest @@ -1 +1,2 @@ DIST tempel-1.3.tar.gz 27980 BLAKE2B fc094edcb137420ddb484417a86006bafca999d455dd1a7e532e85e30936e9db807e0618673688088739b9af245fb162d8d026f260c9e2f9bc5651d3118a12a3 SHA512 bad06d73882caf2e1624d8610182c5a264450121d2fc5425ad4a0d7075a33ccdf27f0252d54592730a5a58758a5b038201d7303d11f4101802f71cba0d9f66ca +DIST tempel-1.4.tar.gz 28106 BLAKE2B 87a4bb8fdf36b67b1633c1de45ac5895ef106740fbc7477abbd7a1027ba50bc506596da8344ee595a9d004dbc3265ffe86b6b307ee67a38a68d5fefa0989c311 SHA512 316b07b0faac9fd9d69e87271c722b93a9f19bc46adb366eccc1c5c1f918c1ff1e17bcef7e739f309ec4141a38bc6c77cf9395497670105b10aed689bedf1581 diff --git a/app-emacs/tempel/tempel-1.4.ebuild b/app-emacs/tempel/tempel-1.4.ebuild new file mode 100644 index 000000000000..af41592833e7 --- /dev/null +++ b/app-emacs/tempel/tempel-1.4.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="27.1" + +inherit elisp + +DESCRIPTION="Templates with in-buffer field editing for GNU Emacs" +HOMEPAGE="https://github.com/minad/tempel/" + +if [[ ${PV} == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/minad/${PN}.git" +else + SRC_URI="https://github.com/minad/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" + +RDEPEND=" + >=app-emacs/compat-30.0.2.0 +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( README.org ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp_src_compile + elisp-make-autoload-file +}