diff options
author | Ulrich Müller <ulm@gentoo.org> | 2021-04-12 19:06:02 +0200 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2021-04-12 19:52:02 +0200 |
commit | e4d47b882c5b0923473e0601c69cae78f1c76c24 (patch) | |
tree | e6bc989f84062e6d5265b6f2076cf6c5e98dca9f /app-emacs | |
parent | app-emacs/markdown-mode: Remove old (diff) | |
download | gentoo-e4d47b882c5b0923473e0601c69cae78f1c76c24.tar.gz gentoo-e4d47b882c5b0923473e0601c69cae78f1c76c24.tar.bz2 gentoo-e4d47b882c5b0923473e0601c69cae78f1c76c24.zip |
app-emacs/paredit: Version bump to 24
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/paredit/Manifest | 2 | ||||
-rw-r--r-- | app-emacs/paredit/paredit-24.ebuild | 30 |
2 files changed, 32 insertions, 0 deletions
diff --git a/app-emacs/paredit/Manifest b/app-emacs/paredit/Manifest index b0e5784ba1bc..cf29319386b5 100644 --- a/app-emacs/paredit/Manifest +++ b/app-emacs/paredit/Manifest @@ -1 +1,3 @@ +DIST paredit-23.html.xz 1920 BLAKE2B 029c09848bb162c135c882ca17e6d5da9c3c17ba3937a809dcd03edb4b1841a0069a72dbd6676003cdf1a9de60a1f88eefa1de050210a37b52a005d28892ab14 SHA512 0ef584787b6094f1d0720aeb4d3a8c106605be62ffaa240d27a190ed9a6dd83d6d1ce68c2d184e84539a0e0658dcbed068335b69f4b1905ae9bf3d9968d5fb9b DIST paredit-23.tar.xz 24204 BLAKE2B 1bb1f9466a4c418800ca66a6e0ac76f8d2324d27e27a6f2ac1aa0be576dc8fede6392bde919ed489b14f4ddd3e26fab102e722803d3e9dc5874c5321bd269d35 SHA512 33ae10d95d3b2d8fe2466fba20d6aa0abac56684807fb381ab0db2798e99e2358c6dca71794b95768b53be661b9181f458e932bb37c31ba7ebba155a57f1bb01 +DIST paredit-24.el.xz 24332 BLAKE2B 5243810cfcc40ebfd62ce3f833afa214defe9b91affbeb142ddad308e1fcff3f54a0ed19029a5ebd31f374868abc34f160d2efac65a609e783483ba2c92194d2 SHA512 76d9d2694473aeaab573964d79418fba20bfecef7f3771682f769ef05fb9385f9ef6dda1a5c7edec5d0a6f919d2eca5e75d595bd8cd5220c5179bfcac5f20f94 diff --git a/app-emacs/paredit/paredit-24.ebuild b/app-emacs/paredit/paredit-24.ebuild new file mode 100644 index 000000000000..da8b0fce3b6d --- /dev/null +++ b/app-emacs/paredit/paredit-24.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit elisp + +DESCRIPTION="Minor mode for performing structured editing of S-expressions" +HOMEPAGE="https://mumble.net/~campbell/emacs/ + https://www.emacswiki.org/emacs/ParEdit" +# No documentation available for paredit-24, so take previous version +SRC_URI="https://dev.gentoo.org/~ulm/distfiles/${P}.el.xz + https://dev.gentoo.org/~ulm/distfiles/${PN}-23.html.xz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux" + +SITEFILE="50${PN}-gentoo.el" + +src_unpack() { + elisp_src_unpack + mv ${PN}-23.html ${PN}.html || die +} + +src_install() { + elisp_src_install + docinto html + dodoc *.html +} |