commit:     128562584177617e32406641381b7d85895ffdf3
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 19 21:35:04 2026 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Thu Feb 19 22:14:47 2026 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12856258

app-emacs/julia-repl: bump to 1.5.2

Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>

 app-emacs/julia-repl/Manifest                |  1 +
 app-emacs/julia-repl/julia-repl-1.5.2.ebuild | 54 ++++++++++++++++++++++++++++
 2 files changed, 55 insertions(+)

diff --git a/app-emacs/julia-repl/Manifest b/app-emacs/julia-repl/Manifest
index f784fb34c328..7853154b8cf5 100644
--- a/app-emacs/julia-repl/Manifest
+++ b/app-emacs/julia-repl/Manifest
@@ -1 +1,2 @@
 DIST julia-repl-1.3.0_p20220225.tar.gz 183305 BLAKE2B 
65b07101008e0548041084f50bec3022789363d8e33c6870382166c2989f56c908a7f7df378d49f55b64479d562594ff14e518a66bd36a907714214521add31f
 SHA512 
12d9445432158c12e857c71683ea39b0bd8a76fa415ebe1d85b682d65b53c456518d88b08f98d900211c04f5d1bf12f50e4ce70ff28d4c4a657b072731968a14
+DIST julia-repl-1.5.2.gh.tar.gz 185091 BLAKE2B 
d29089f4dc6e0883aeb2f69906b876f203cc0d4a4a470d2b27bfd8773d827fe8e54352abca30e25ebdcfc2f7426e4226b1d5aa79c55aae979c07debd412a690f
 SHA512 
c16353ea73be1503994655c10d7e7b9ef47d5dd48c724f08d977268c978ebcfca08466e43eac2aad55d32c14d454254880557fe166f808658f7d5df2b1b2e0c9

diff --git a/app-emacs/julia-repl/julia-repl-1.5.2.ebuild 
b/app-emacs/julia-repl/julia-repl-1.5.2.ebuild
new file mode 100644
index 000000000000..43be98f85c79
--- /dev/null
+++ b/app-emacs/julia-repl/julia-repl-1.5.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2026 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature elisp
+
+DESCRIPTION="Run an inferior Julia REPL in a terminal inside Emacs"
+HOMEPAGE="https://github.com/tpapp/julia-repl/";
+
+if [[ "${PV}" == *9999* ]] ; then
+       inherit git-r3
+
+       EGIT_REPO_URI="https://github.com/tpapp/${PN}";
+else
+       SRC_URI="https://github.com/tpapp/${PN}/archive/refs/tags/${PV}.tar.gz
+               -> ${P}.gh.tar.gz"
+
+       KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+BDEPEND="
+       app-emacs/s
+"
+RDEPEND="
+       ${BDEPEND}
+       app-emacs/julia-mode
+"
+
+PATCHES=( "${FILESDIR}/${PN}-force-compile.patch" )
+
+DOCS=( CHANGELOG.md README.md )
+SITEFILE="50${PN}-gentoo.el"
+
+src_test() {
+       ${EMACS} ${EMACSFLAGS} ${BYTECOMPFLAGS}  \
+                        -l ert -l ./${PN}-tests.el  \
+                        -f ert-run-tests-batch-and-exit || die "tests failed"
+}
+
+src_install() {
+       rm -f ./${PN}-tests.el* || die
+
+       elisp_src_install
+}
+
+pkg_postinst() {
+       elisp_pkg_postinst
+
+       optfeature "running Julia inside VTerm" app-emacs/vterm
+}

Reply via email to