commit:     fbbcf232814aa224187a06c94fc24c71236c6227
Author:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
AuthorDate: Wed Jun 29 19:37:05 2022 +0000
Commit:     Maciej Barć <xgqt <AT> gentoo <DOT> org>
CommitDate: Wed Jun 29 19:49:14 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbbcf232

app-emacs/inf-clojure: new package; add version 3.1.0

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

 app-emacs/inf-clojure/Manifest                     |  1 +
 .../inf-clojure/files/50inf-clojure-gentoo.el      |  6 +++
 app-emacs/inf-clojure/inf-clojure-3.1.0.ebuild     | 43 ++++++++++++++++++++++
 app-emacs/inf-clojure/metadata.xml                 | 20 ++++++++++
 4 files changed, 70 insertions(+)

diff --git a/app-emacs/inf-clojure/Manifest b/app-emacs/inf-clojure/Manifest
new file mode 100644
index 000000000000..4f58f927cb2f
--- /dev/null
+++ b/app-emacs/inf-clojure/Manifest
@@ -0,0 +1 @@
+DIST inf-clojure-3.1.0.tar.gz 30621 BLAKE2B 
a3d98e47225b659763ecbb6ea08457a2803dbce3ca8f58a4a141587e10eba0618f8f1b06a6f56062bed0ede987bb78dcb92260020aacd2ba6e1e49bba954b20b
 SHA512 
d96fd0a5db664fff553d94d1ac9bcf1f8c544d0618c24b0d894fec9564f5b1a165755ba25188a7b58ea9314416ed86f3e26921bf1c6dc86ebd4d5d27df604b69

diff --git a/app-emacs/inf-clojure/files/50inf-clojure-gentoo.el 
b/app-emacs/inf-clojure/files/50inf-clojure-gentoo.el
new file mode 100644
index 000000000000..429d08e1fcb9
--- /dev/null
+++ b/app-emacs/inf-clojure/files/50inf-clojure-gentoo.el
@@ -0,0 +1,6 @@
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'inf-clojure "inf-clojure"
+  "Run an inferior Clojure process" t)
+(autoload 'inf-clojure-minor-mode "inf-clojure"
+  "Minor mode for interacting with the inferior Clojure process buffer." t)
+(add-hook 'clojure-mode-hook #'inf-clojure-minor-mode)

diff --git a/app-emacs/inf-clojure/inf-clojure-3.1.0.ebuild 
b/app-emacs/inf-clojure/inf-clojure-3.1.0.ebuild
new file mode 100644
index 000000000000..54ec4c7b8d82
--- /dev/null
+++ b/app-emacs/inf-clojure/inf-clojure-3.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS=25.1
+
+inherit elisp
+
+DESCRIPTION="Major mode for Clojure code"
+HOMEPAGE="https://github.com/clojure-emacs/inf-clojure/";
+SRC_URI="https://github.com/clojure-emacs/${PN}/archive/v${PV}.tar.gz
+                       -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="app-emacs/clojure-mode"
+BDEPEND="
+       ${RDEPEND}
+       test? (
+               app-emacs/assess
+               app-emacs/buttercup
+       )
+"
+
+DOCS=( CHANGELOG.md README.md )
+SITEFILE="50${PN}-gentoo.el"
+
+src_prepare() {
+       elisp_src_prepare
+
+       # Silence a failing test (mark as "PENDING").
+       sed "s|it \"computes no bounds|xit \"computes no bounds|" \
+               -i test/${PN}-tests.el || die
+}
+
+src_test() {
+       buttercup -L . -L test --traceback full || die
+}

diff --git a/app-emacs/inf-clojure/metadata.xml 
b/app-emacs/inf-clojure/metadata.xml
new file mode 100644
index 000000000000..d7c53d01a39d
--- /dev/null
+++ b/app-emacs/inf-clojure/metadata.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd";>
+
+<pkgmetadata>
+  <maintainer type="project">
+    <email>gnu-em...@gentoo.org</email>
+    <name>Gentoo GNU Emacs project</name>
+  </maintainer>
+  <longdescription>
+    This package provides basic interaction with a Clojure subprocess (REPL).
+    It's based on ideas from the popular inferior-lisp package. inf-clojure has
+    two components - a nice REPL buffer (inf-clojure) and a REPL interaction
+    minor mode (inf-clojure-minor-mode), which extends clojure-mode with
+    commands to evaluate forms directly in the REPL.
+  </longdescription>
+  <upstream>
+    <bugs-to>https://github.com/clojure-emacs/inf-clojure/issues/</bugs-to>
+    <remote-id type="github">clojure-emacs/inf-clojure</remote-id>
+  </upstream>
+</pkgmetadata>

Reply via email to