diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-05-25 14:59:43 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-05-25 16:05:55 +0200 |
commit | 8644758c7775dcd4f5641edc1595b401991c2cdf (patch) | |
tree | 370163eeece447e0f2a1625af88544ed0a1e4c74 /app-emacs | |
parent | app-emacs/denote: bump to 2.3.0 (diff) | |
download | gentoo-8644758c7775dcd4f5641edc1595b401991c2cdf.tar.gz gentoo-8644758c7775dcd4f5641edc1595b401991c2cdf.tar.bz2 gentoo-8644758c7775dcd4f5641edc1595b401991c2cdf.zip |
app-emacs/geiser: bump to 0.31
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/geiser/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/geiser/geiser-0.31.ebuild | 47 |
2 files changed, 48 insertions, 0 deletions
diff --git a/app-emacs/geiser/Manifest b/app-emacs/geiser/Manifest index cbf582a47915..06b297ccd3c0 100644 --- a/app-emacs/geiser/Manifest +++ b/app-emacs/geiser/Manifest @@ -1 +1,2 @@ DIST geiser-0.30.tar.bz2 656851 BLAKE2B c0a6ce7d2643e83cc049fa812c601217f52f8814efeebc60405ba591739c887ea0aa874e4ea0a6a72bb5f2282281d9883f2a77735d787a442e560ee2083bab54 SHA512 c66e168bfd8ccdd9c8c0bd3b29ded78ba1b25eeef062e164926c6ce15ec60410e944b2c58a9cb85a248f953b7fc66322626df108f1d9fe521a7331381bcd86a2 +DIST geiser-0.31.tar.bz2 657293 BLAKE2B 10d40b43f914a5483bb18dca79272fd97c9bd091a18b159b9d3a297c51a06e7176eb1cbb0f547719b7e3ff397311db987a235f737254e4b07a3be81a42ee6ed5 SHA512 4595711925c725c423f02bfd1994d0c4266167d4616ccbbcd1c4c6394452c8061aa3d5af1528d9300a06eed7f39a2ae089175c1c653b782d994485da774515c7 diff --git a/app-emacs/geiser/geiser-0.31.ebuild b/app-emacs/geiser/geiser-0.31.ebuild new file mode 100644 index 000000000000..31d2bd97c87e --- /dev/null +++ b/app-emacs/geiser/geiser-0.31.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +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}.git" +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() { + 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 +} |