app-emacs/org-roam: add 2.3.0

Signed-off-by: Arsen Arsenović <arsen@gentoo.org>
This commit is contained in:
Arsen Arsenović
2025-06-11 16:21:42 +02:00
parent 59e0850690
commit 175c9bbfd6
2 changed files with 50 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST org-roam-2.2.2.tar.gz 37466184 BLAKE2B f929d765493a640f5df0417dfd37618049d7af24ac78fd1dc00ef79bc7576ca856d6cc926a30bcd0f69c27595bf1ce517e49fe9e592dd208f08b83d03544d80a SHA512 737baff1b3ab7a3008ed3bf1816f8cf1ce461dccfe8e195e8ac11ba50c2c983573d62c364c75a119facf3131f90764842bfe121cdad0a4c2add606aa806aef10
DIST org-roam-2.3.0.tar.gz 37466066 BLAKE2B b68bb47d0149104090d1adeefc9d173f7aef6437c6b735557c80c93295132a8a5c6bbaf3204c53cc50b7bdf39e2d6ad96a72b408238ae00ceab290f6f503d27e SHA512 d4e9ca3e1e1f7200d6e1b273f89f5cccf0c07da5d727d36f2ef0eabb8b7550e2fcf384115356daa4a3b31418eff9405a4eece1c06694c05e690ff1e525c46f6d

View File

@@ -0,0 +1,49 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
NEED_EMACS=26.1
inherit elisp
DESCRIPTION="Rudimentary Roam replica with Org-mode"
HOMEPAGE="https://github.com/org-roam/org-roam"
if [[ ${PV} == *9999* ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
else
SRC_URI="
https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz
"
KEYWORDS="~amd64"
fi
LICENSE="GPL-3+"
SLOT="0"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
app-emacs/dash
app-emacs/magit
app-emacs/emacsql[sqlite(+)]
test? ( app-emacs/buttercup )
"
BDEPEND="${RDEPEND}"
SITEFILE="50${PN}-gentoo.el"
elisp-enable-tests buttercup tests
src_prepare() {
default
mv extensions/*.el . || die
}
src_install() {
elisp-make-autoload-file
elisp_src_install
}