diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-01-15 20:13:09 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-01-15 22:20:38 +0100 |
commit | 0ae9f2dcb49aced2cb8b4c483616ee2caaebb7b5 (patch) | |
tree | 359044631b0e68a49b360f555e0f163102c4ac8a /app-emacs/citeproc-el/citeproc-el-0.9.4-r1.ebuild | |
parent | sys-kernel/gentoo-sources: drop 6.6.9 (diff) | |
download | gentoo-0ae9f2dcb49aced2cb8b4c483616ee2caaebb7b5.tar.gz gentoo-0ae9f2dcb49aced2cb8b4c483616ee2caaebb7b5.tar.bz2 gentoo-0ae9f2dcb49aced2cb8b4c483616ee2caaebb7b5.zip |
app-emacs/citeproc-el: add missing compat dependency
Closes: https://bugs.gentoo.org/922150
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/citeproc-el/citeproc-el-0.9.4-r1.ebuild')
-rw-r--r-- | app-emacs/citeproc-el/citeproc-el-0.9.4-r1.ebuild | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/app-emacs/citeproc-el/citeproc-el-0.9.4-r1.ebuild b/app-emacs/citeproc-el/citeproc-el-0.9.4-r1.ebuild new file mode 100644 index 000000000000..19feb1b9cbbb --- /dev/null +++ b/app-emacs/citeproc-el/citeproc-el-0.9.4-r1.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS=26 + +inherit elisp + +DESCRIPTION="CSL 1.0.2 Citation Processor for Emacs" +HOMEPAGE="https://github.com/andras-simonyi/citeproc-el" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/andras-simonyi/${PN}.git" +else + SRC_URI="https://github.com/andras-simonyi/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + + KEYWORDS="~amd64" +fi + +LICENSE="GPL-3+" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND=" + >=app-editors/emacs-26:*[libxml2] + app-emacs/compat + app-emacs/dash + app-emacs/f + app-emacs/parsebib + app-emacs/queue + app-emacs/s + app-emacs/string-inflection +" +BDEPEND=" + ${RDEPEND} + test? ( + app-emacs/ht + app-emacs/yaml + ) +" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests ert test \ + -l citeproc-test-human.el \ + -l test/citeproc-test-int-biblatex.el \ + -l test/citeproc-test-int-formatters.el |