* [gentoo-commits] repo/gentoo:master commit in: app-emacs/geiser-chez/
@ 2023-01-24 23:55 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2023-01-24 23:55 UTC (permalink / raw
To: gentoo-commits
commit: e89a49802f2701400eedd6a85ec857dea863ca88
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jan 24 23:55:05 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jan 24 23:55:05 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e89a4980
app-emacs/geiser-chez: Stabilize 0.17 amd64, #891969
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-emacs/geiser-chez/geiser-chez-0.17.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-emacs/geiser-chez/geiser-chez-0.17.ebuild b/app-emacs/geiser-chez/geiser-chez-0.17.ebuild
index 9aa98f60f933..3227e233a918 100644
--- a/app-emacs/geiser-chez/geiser-chez-0.17.ebuild
+++ b/app-emacs/geiser-chez/geiser-chez-0.17.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -15,7 +15,7 @@ S="${WORKDIR}"/chez-${PV}
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
BDEPEND="app-emacs/geiser"
RDEPEND="
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/geiser-chez/
@ 2023-03-02 0:14 Maciej Barć
0 siblings, 0 replies; 3+ messages in thread
From: Maciej Barć @ 2023-03-02 0:14 UTC (permalink / raw
To: gentoo-commits
commit: 9ed723d1ada4cf299b30d42ff6c668aeebcaa750
Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 1 23:55:55 2023 +0000
Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Mar 2 00:14:03 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ed723d1
app-emacs/geiser-chez: bump to 0.18
Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
app-emacs/geiser-chez/Manifest | 1 +
app-emacs/geiser-chez/geiser-chez-0.18.ebuild | 44 +++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/app-emacs/geiser-chez/Manifest b/app-emacs/geiser-chez/Manifest
index 13aabdb1033a..67cc79b1f8e7 100644
--- a/app-emacs/geiser-chez/Manifest
+++ b/app-emacs/geiser-chez/Manifest
@@ -1 +1,2 @@
DIST geiser-chez-0.17.tar.gz 6664 BLAKE2B d4f72de512e9d443a1ea2dc0cf6cf03f59980097ff26dd51df7a618c651c5beef142c42b1dea9bb56f94fe4a97b370c6844231eea8968618f6d0dbff499c601d SHA512 bfb1e77a3a0be3750e0e30c421a2b34179edbdb3585fe318c3f6a5a14d7220b3933c63cb970e80af4e14f8d220b620915192d7a34759cc91dfed45878d63ed6e
+DIST geiser-chez-0.18.tar.bz2 27377 BLAKE2B 06fe52715ace8a8c3c6d9d4a8f0e3991249c675c24bdcd1163906559f0e89d70378aa52ab9ecceadb550d4b7c4f0667caefe59b71fed67323ffffe40a9f8b999 SHA512 c7655ee83ecb86dd812a8cc028a8585e4d3f325a1f80457f7b388c8e81e56a12f8edad146997955b8cea05120db2e95b591fca857c059ba001af9eca3b1feb52
diff --git a/app-emacs/geiser-chez/geiser-chez-0.18.ebuild b/app-emacs/geiser-chez/geiser-chez-0.18.ebuild
new file mode 100644
index 000000000000..ce657cd3c425
--- /dev/null
+++ b/app-emacs/geiser-chez/geiser-chez-0.18.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS=26.1
+
+inherit elisp
+
+DESCRIPTION="Chez Scheme's implementation of the Geiser protocols"
+HOMEPAGE="https://gitlab.com/emacs-geiser/chez/"
+SRC_URI="https://gitlab.com/emacs-geiser/chez/-/archive/${PV}/chez-${PV}.tar.bz2
+ -> ${P}.tar.bz2"
+S="${WORKDIR}"/chez-${PV}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+BDEPEND="app-emacs/geiser"
+RDEPEND="
+ ${BDEPEND}
+ dev-scheme/chez
+"
+
+DOCS=( readme.org )
+PATCHES=(
+ "${FILESDIR}"/${PN}-chez-scheme-binary.patch
+ "${FILESDIR}"/${PN}-chez-scheme-src-dir.patch
+)
+SITEFILE="50${PN}-gentoo.el"
+
+src_prepare() {
+ elisp_src_prepare
+
+ sed "s|@SITEETC@|${EPREFIX}${SITEETC}/${PN}|" -i ${PN}.el || die
+}
+
+src_install() {
+ elisp_src_install
+
+ insinto ${SITEETC}/${PN}
+ doins -r src
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emacs/geiser-chez/
@ 2023-04-02 1:45 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2023-04-02 1:45 UTC (permalink / raw
To: gentoo-commits
commit: d1fc37b73a59f2ea49ae12e705ca1672039b01c3
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Apr 2 01:43:43 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Apr 2 01:43:43 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1fc37b7
app-emacs/geiser-chez: Stabilize 0.18 amd64, #903675
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-emacs/geiser-chez/geiser-chez-0.18.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-emacs/geiser-chez/geiser-chez-0.18.ebuild b/app-emacs/geiser-chez/geiser-chez-0.18.ebuild
index ce657cd3c425..1bffbccafb02 100644
--- a/app-emacs/geiser-chez/geiser-chez-0.18.ebuild
+++ b/app-emacs/geiser-chez/geiser-chez-0.18.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/chez-${PV}
LICENSE="BSD"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
BDEPEND="app-emacs/geiser"
RDEPEND="
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-04-02 1:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-01-24 23:55 [gentoo-commits] repo/gentoo:master commit in: app-emacs/geiser-chez/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2023-03-02 0:14 Maciej Barć
2023-04-02 1:45 Sam James
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox