diff options
author | Hans de Graaff <graaff@gentoo.org> | 2021-12-03 07:47:03 +0100 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2021-12-03 07:47:03 +0100 |
commit | 669188954675489271ac979181613e90dcc4ad19 (patch) | |
tree | 3569657509407389d0ef4dedf8c8478b78da1afd /app-emacs/transient | |
parent | app-emacs/transient: cleanup (diff) | |
download | gentoo-669188954675489271ac979181613e90dcc4ad19.tar.gz gentoo-669188954675489271ac979181613e90dcc4ad19.tar.bz2 gentoo-669188954675489271ac979181613e90dcc4ad19.zip |
app-emacs/transient: add 0.3.7
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'app-emacs/transient')
-rw-r--r-- | app-emacs/transient/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/transient/transient-0.3.7.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app-emacs/transient/Manifest b/app-emacs/transient/Manifest index 0fbb0f5d73c1..4e390976ece8 100644 --- a/app-emacs/transient/Manifest +++ b/app-emacs/transient/Manifest @@ -1 +1,2 @@ DIST transient-0.3.6.tar.gz 100905 BLAKE2B cc7a78104b77a7ff49d2ee686a780db7509744b1f737e4f995d5e5f8ada18828ccf1b6ae5d995fb8aa09e9fc16895226e5e8cf3cf50a79c246c5d07d5f467ce0 SHA512 c1b43046f07f9efce1720f6e151d8223922574262d4e5436b0c81453b0a21a404f1c555a5bc92a201c71beb1b2f95aafb38b88203cd08c1d3a9d80f45ed0d0c9 +DIST transient-0.3.7.tar.gz 103105 BLAKE2B 3253529af82116881b6fdbb5465d3e0ffa8246e017a266fe0868d31e9c576a3927ed7b8d968d95f7e84e31859705f08582260d074f7f55cf10e535177df761f4 SHA512 93d1e00db3f483d830c9e636de1ae752c43bada580209c4839e89941507be5fd7ebbd31cf597436f13448b29085453742a0623dad9dcc1d343e29a5d47d76987 diff --git a/app-emacs/transient/transient-0.3.7.ebuild b/app-emacs/transient/transient-0.3.7.ebuild new file mode 100644 index 000000000000..a23829397b0b --- /dev/null +++ b/app-emacs/transient/transient-0.3.7.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +NEED_EMACS=25 + +inherit elisp + +DESCRIPTION="Use the Emacsclient as the \$EDITOR of child processes" +HOMEPAGE="https://magit.vc/manual/transient" +SRC_URI="https://github.com/magit/transient/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux" + +SITEFILE="50${PN}-gentoo.el" +ELISP_TEXINFO="docs/*.texi" +DOCS="README.md docs/transient.org" + +DEPEND="" +RDEPEND="${DEPEND}" +DEPEND="${DEPEND} sys-apps/texinfo" + +src_prepare() { + mv lisp/*.el . || die + + default +} |