commit: eb4e1e400f04a708c6187f67841acd7232ce3ec5 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Mon Aug 11 09:44:29 2025 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Mon Aug 11 09:50:43 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb4e1e40
app-emacs/geiser: bump to 0.32 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> app-emacs/geiser/Manifest | 1 + app-emacs/geiser/geiser-0.32.ebuild | 50 +++++++++++++++++++++++++++++++++++++ 2 files changed, 51 insertions(+) diff --git a/app-emacs/geiser/Manifest b/app-emacs/geiser/Manifest index 5b6e023bb606..1d51db727d60 100644 --- a/app-emacs/geiser/Manifest +++ b/app-emacs/geiser/Manifest @@ -1 +1,2 @@ DIST geiser-0.31.1.tar.bz2 657175 BLAKE2B 1297609da647efacc92b9b19d1c5d2df0afe6584a3ed49aa8243d77b8457de1ee32dc8d6cc02100a24938928a09fef003ae19f901d6f3b4be2660d5d2d3f7e5c SHA512 bf3900c3ca13780547e96c3b5d1912686f360087c19632e2f0b41d8aa2f0bd409233d7cbf3e5d22c90bcff9be2867ef11cb8c0610b285b6c97b314fb92e45bb7 +DIST geiser-0.32.tar.bz2 657728 BLAKE2B 8b400669fca130ea3ace98bf4ca167618ccdac35f23c6dac0acb63ae225acf7dfdfd8865d9f83b258588587b43e07e38a6b9a96a42df4f63ed42d87730e5e141 SHA512 010c395a80e488b9e86e8c3846f9bbc65d47784571ad1f48b591bf0615752bde34b3e33a2bc790eec6d0378774832680782129adab93263d9382a33cb29f71ac diff --git a/app-emacs/geiser/geiser-0.32.ebuild b/app-emacs/geiser/geiser-0.32.ebuild new file mode 100644 index 000000000000..94f3fe154a1c --- /dev/null +++ b/app-emacs/geiser/geiser-0.32.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="27.1" + +inherit elisp + +DESCRIPTION="Generic interaction mode between Emacs and different Scheme implementations" +HOMEPAGE="https://gitlab.com/emacs-geiser/geiser/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://gitlab.com/emacs-${PN}/${PN}" +else + SRC_URI="https://gitlab.com/emacs-${PN}/${PN}/-/archive/${PV}/${P}.tar.bz2" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="BSD" +SLOT="0" + +RDEPEND=" + app-emacs/transient +" +BDEPEND=" + ${RDEPEND} + app-text/texi2html + sys-apps/texinfo +" + +DOCS=( readme.org news.org doc/html ) +SITEFILE="50${PN}-gentoo.el" + +src_compile() { + local -x BYTECOMPFLAGS="-L ./elisp" + elisp-compile ./elisp/*.el + emake -C ./doc info web +} + +src_install() { + elisp-install "${PN}" ./elisp/*.el{,c} + elisp-site-file-install "${FILESDIR}/${SITEFILE}" + + doinfo ./doc/*.info + einstalldocs +}
