diff options
author | Maciej Barć <xgqt@gentoo.org> | 2022-09-19 15:20:32 +0200 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2022-09-19 15:25:18 +0200 |
commit | d1bfe647fa6ca1fb8069443fff98d6cbbb3544d9 (patch) | |
tree | 96155a353306df2e06600a475681f102539c87d4 /app-emacs/parsebib/parsebib-4.3.ebuild | |
parent | app-emacs/boxquote: bump to 2.3 (diff) | |
download | gentoo-d1bfe647fa6ca1fb8069443fff98d6cbbb3544d9.tar.gz gentoo-d1bfe647fa6ca1fb8069443fff98d6cbbb3544d9.tar.bz2 gentoo-d1bfe647fa6ca1fb8069443fff98d6cbbb3544d9.zip |
app-emacs/parsebib: bump to 4.3
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs/parsebib/parsebib-4.3.ebuild')
-rw-r--r-- | app-emacs/parsebib/parsebib-4.3.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app-emacs/parsebib/parsebib-4.3.ebuild b/app-emacs/parsebib/parsebib-4.3.ebuild new file mode 100644 index 000000000000..6d23c9db04f0 --- /dev/null +++ b/app-emacs/parsebib/parsebib-4.3.ebuild @@ -0,0 +1,28 @@ +# 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="Emacs Lisp library for reading .bib files" +HOMEPAGE="https://github.com/joostkremers/parsebib/" +SRC_URI="https://github.com/joostkremers/${PN}/archive/${PV}.tar.gz + -> ${P}.tar.gz" + +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="test" +RESTRICT="!test? ( test )" + +BDEPEND="test? ( app-emacs/ert-runner )" + +DOCS=( README.md ) +SITEFILE="50${PN}-gentoo.el" + +src_test() { + ert-runner -L . -L test --reporter ert+duration --script test || die +} |