From 83ab7902bb70871e799ec6d4619a116934729395 Mon Sep 17 00:00:00 2001 From: Maciej Barć Date: Sun, 29 Jan 2023 21:11:45 +0100 Subject: app-emacs/reazon: new package; add 0.4.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- app-emacs/reazon/Manifest | 1 + app-emacs/reazon/files/50reazon-gentoo.el | 1 + app-emacs/reazon/metadata.xml | 22 ++++++++++++++++++++++ app-emacs/reazon/reazon-0.4.1.ebuild | 24 ++++++++++++++++++++++++ 4 files changed, 48 insertions(+) create mode 100644 app-emacs/reazon/Manifest create mode 100644 app-emacs/reazon/files/50reazon-gentoo.el create mode 100644 app-emacs/reazon/metadata.xml create mode 100644 app-emacs/reazon/reazon-0.4.1.ebuild (limited to 'app-emacs') diff --git a/app-emacs/reazon/Manifest b/app-emacs/reazon/Manifest new file mode 100644 index 000000000000..9bfd387c63c3 --- /dev/null +++ b/app-emacs/reazon/Manifest @@ -0,0 +1 @@ +DIST reazon-0.4.1.tar.gz 38654 BLAKE2B 1e2cc22c58b030bb504c47d5526b01a2f8d64f0e1fc95456313199defc847c0066aee3931d57c27592919a57633905951d3ab67cfa4a61035946609c772cf685 SHA512 fda8cda62bdf0818990a3a9bb5893b75bd4e875ecb6e6a280a1992e1d9b4b621e8ee7eac8e1d3ec0e06bf9bc8a37414695702247e5782e2859e4d8126906bf5f diff --git a/app-emacs/reazon/files/50reazon-gentoo.el b/app-emacs/reazon/files/50reazon-gentoo.el new file mode 100644 index 000000000000..431f7e90ae73 --- /dev/null +++ b/app-emacs/reazon/files/50reazon-gentoo.el @@ -0,0 +1 @@ +(add-to-list 'load-path "@SITELISP@") diff --git a/app-emacs/reazon/metadata.xml b/app-emacs/reazon/metadata.xml new file mode 100644 index 000000000000..8b0170cd063f --- /dev/null +++ b/app-emacs/reazon/metadata.xml @@ -0,0 +1,22 @@ + + + + + + gnu-emacs@gentoo.org + Gentoo GNU Emacs project + + + Reazon is an Emacs implementation of miniKanren, a small domain-specific + logic programming language. Whereas languages like Elisp deal with + functions that take inputs and yield outputs, miniKanren deals with sets of + values that satisfy relations. Every function is a relation, but not vice + versa, since a relation might include the output of a function but not its + inputs. In such a case, miniKanren would attempt to find inputs yielding + the output, effectively running the function backwards. + + + https://github.com/nickdrozd/reazon/issues/ + nickdrozd/reazon + + diff --git a/app-emacs/reazon/reazon-0.4.1.ebuild b/app-emacs/reazon/reazon-0.4.1.ebuild new file mode 100644 index 000000000000..3202940ae8b3 --- /dev/null +++ b/app-emacs/reazon/reazon-0.4.1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=26 + +inherit elisp + +DESCRIPTION="GNU Emacs implementation of miniKanren, logic programming language" +HOMEPAGE="https://github.com/nickdrozd/reazon/" +SRC_URI="https://github.com/nickdrozd/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="GPL-2+" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DOCS=( CHANGELOG.org README.org ) +SITEFILE="50${PN}-gentoo.el" + +src_test() { + emake EMACS=${EMACS} test +} -- cgit v1.2.3-65-gdbad