From 7a39b67af58b63dcdcf7ce207e870f7b58cb648b Mon Sep 17 00:00:00 2001 From: Maciej Barć Date: Tue, 26 Apr 2022 04:14:12 +0200 Subject: app-emacs/bind-chord: fix elisp installtion MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- app-emacs/bind-chord/bind-chord-2.4.1-r1.ebuild | 33 +++++++++++++++++++++++++ app-emacs/bind-chord/bind-chord-2.4.1.ebuild | 33 ------------------------- 2 files changed, 33 insertions(+), 33 deletions(-) create mode 100644 app-emacs/bind-chord/bind-chord-2.4.1-r1.ebuild delete mode 100644 app-emacs/bind-chord/bind-chord-2.4.1.ebuild (limited to 'app-emacs') diff --git a/app-emacs/bind-chord/bind-chord-2.4.1-r1.ebuild b/app-emacs/bind-chord/bind-chord-2.4.1-r1.ebuild new file mode 100644 index 000000000000..f37f89180fc6 --- /dev/null +++ b/app-emacs/bind-chord/bind-chord-2.4.1-r1.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit elisp + +DESCRIPTION="Key-chord binding helper for use-package-chords" +HOMEPAGE="https://github.com/jwiegley/use-package/" +SRC_URI="https://github.com/jwiegley/use-package/archive/${PV}.tar.gz + -> use-package-${PV}.tar.gz" +S="${WORKDIR}"/use-package-${PV} + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + app-emacs/bind-key + app-emacs/key-chord +" +BDEPEND="${RDEPEND}" + +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + elisp-compile ${PN}.el +} + +src_install() { + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + elisp-install ${PN} ${PN}.el{,c} +} diff --git a/app-emacs/bind-chord/bind-chord-2.4.1.ebuild b/app-emacs/bind-chord/bind-chord-2.4.1.ebuild deleted file mode 100644 index d920466ce87f..000000000000 --- a/app-emacs/bind-chord/bind-chord-2.4.1.ebuild +++ /dev/null @@ -1,33 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit elisp - -DESCRIPTION="Key-chord binding helper for use-package-chords" -HOMEPAGE="https://github.com/jwiegley/use-package/" -SRC_URI="https://github.com/jwiegley/use-package/archive/${PV}.tar.gz - -> use-package-${PV}.tar.gz" -S="${WORKDIR}"/use-package-${PV} - -LICENSE="GPL-3+" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -RDEPEND=" - app-emacs/bind-key - app-emacs/key-chord -" -BDEPEND="${RDEPEND}" - -SITEFILE="50${PN}-gentoo.el" - -src_compile() { - elisp-compile ${PN}.el -} - -src_install() { - elisp-site-file-install "${FILESDIR}/${SITEFILE}" - elisp-install ${PN}.el{,c} -} -- cgit v1.2.3-65-gdbad