diff options
| -rw-r--r-- | app-emacs/tp/Manifest | 1 | ||||
| -rw-r--r-- | app-emacs/tp/tp-0.6.ebuild | 40 |
2 files changed, 41 insertions, 0 deletions
diff --git a/app-emacs/tp/Manifest b/app-emacs/tp/Manifest index de504ca973c6..eb80ee1f207f 100644 --- a/app-emacs/tp/Manifest +++ b/app-emacs/tp/Manifest @@ -1 +1,2 @@ DIST tp-0.4.tar.gz 18150 BLAKE2B 78190c82ddd48d739bafecf15efdeba6ed9e6cebac66a08cf131ebb93b5ea8a8e6f3cbaf52a52092e305b0854e9932b98086204e04d0df17d4d550bda0d588be SHA512 b42a905b7892a2e7a0d18a902894e3f400f47983537a82f6f7336bad631763eed7bcff428f5ad0f52b0c0518e2ad2f817a9e954c93a50a1af203465ad5a509df +DIST tp-0.6.tar.gz 18633 BLAKE2B dd28dbf1fe826e5be396dd1af9241fa865d9a5bd4f9210129d1145a5e84951ff77065bb0878e64c957b1609ef83a001b3972260e0193ec56c8c678e91d81b8e7 SHA512 69a608f3beafefab661ab844b78d7d37fbacf36b6705ff2b8d6a9f9eaccc5c78c907af112a1246d5f59f0792281949e13e4516e765f145512943297120e3ce8d diff --git a/app-emacs/tp/tp-0.6.ebuild b/app-emacs/tp/tp-0.6.ebuild new file mode 100644 index 000000000000..1ba163107a3a --- /dev/null +++ b/app-emacs/tp/tp-0.6.ebuild @@ -0,0 +1,40 @@ +# 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="Utilities to create transient menus for POSTing to an API for GNU Emacs" +HOMEPAGE="https://codeberg.org/martianh/tp.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-emacs/transient + || ( + >=app-editors/emacs-31.0 + >=app-editors/emacs-${NEED_EMACS}[json] + ) +" +BDEPEND=" + ${RDEPEND} +" + +DOCS=( readme.org ) +SITEFILE="50${PN}-gentoo.el" |
