diff options
author | Maciej Barć <xgqt@gentoo.org> | 2023-05-13 23:53:19 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2023-05-14 00:06:54 +0200 |
commit | 90700257f7a1797e5a88eb002e22dd985a168517 (patch) | |
tree | 97b636acede9c7274f8626b9476bb48fbdfee692 /app-emacs/transient | |
parent | app-emacs/transient: drop old 0.3.6 (diff) | |
download | gentoo-90700257f7a1797e5a88eb002e22dd985a168517.tar.gz gentoo-90700257f7a1797e5a88eb002e22dd985a168517.tar.bz2 gentoo-90700257f7a1797e5a88eb002e22dd985a168517.zip |
app-emacs/transient: bump to 0.4.0
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/transient')
-rw-r--r-- | app-emacs/transient/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/transient/transient-0.4.0.ebuild | 32 |
2 files changed, 33 insertions, 0 deletions
diff --git a/app-emacs/transient/Manifest b/app-emacs/transient/Manifest index a44935966014..3c84fd20b76f 100644 --- a/app-emacs/transient/Manifest +++ b/app-emacs/transient/Manifest @@ -1,2 +1,3 @@ DIST transient-0.3.7.tar.gz 103105 BLAKE2B 3253529af82116881b6fdbb5465d3e0ffa8246e017a266fe0868d31e9c576a3927ed7b8d968d95f7e84e31859705f08582260d074f7f55cf10e535177df761f4 SHA512 93d1e00db3f483d830c9e636de1ae752c43bada580209c4839e89941507be5fd7ebbd31cf597436f13448b29085453742a0623dad9dcc1d343e29a5d47d76987 DIST transient-0.3.7_p20220918.tar.gz 125422 BLAKE2B 19d1e2e4ea24076856a1816042d63964527b4c98d5727805058e5bfd829c708afa277d88b46e0e4da64b8a21fc4c012b410399f7bc71d877c285edda6b9e7d8e SHA512 9dd61f6eb69bdcd9a582e34261f9b6806d048df3d009aefe5f3a5a8f36e733187140b933f8e4af02c6e6f35fac6a3d5d13665ac108fa74299b1555c485be87c3 +DIST transient-0.4.0.tar.gz 128429 BLAKE2B cd97b5fcef5d7d4bb14677ab1fa4a49f16af527cfaf92c17d97de9073a6662067195822a6e25ff6cefdb8278c806ceee996f6552e4616a52cd16390a1baa8459 SHA512 b7946983828ed2d5cc9884b08fead22fffa4d3fa2f10b0797df54f4260ae0d41e27aa3804dce12ae61d6e60d245484e68ad269a5bbe98cfde7a6a154eed7a3db diff --git a/app-emacs/transient/transient-0.4.0.ebuild b/app-emacs/transient/transient-0.4.0.ebuild new file mode 100644 index 000000000000..3b7d6fcbaea9 --- /dev/null +++ b/app-emacs/transient/transient-0.4.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Transient commands abstraction for GNU Emacs" +HOMEPAGE="https://magit.vc/manual/transient/ + https://github.com/magit/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" + +DOCS=( CHANGELOG README.org docs/${PN}.org ) +ELISP_TEXINFO="docs/${PN}.texi" +SITEFILE="50${PN}-gentoo.el" + +RDEPEND=">=app-emacs/compat-29.1.4.1" +BDEPEND=" + ${RDEPEND} + sys-apps/texinfo +" + +src_prepare() { + mv lisp/*.el . || die + + default +} |