diff options
author | Maciej Barć <xgqt@gentoo.org> | 2024-12-17 00:21:40 +0100 |
---|---|---|
committer | Maciej Barć <xgqt@gentoo.org> | 2024-12-17 00:25:57 +0100 |
commit | 084a4b599d0075dc1cb59399852be2920a2973a3 (patch) | |
tree | 81d7701b02b5ded33b564833418a66aff3163e53 /app-emacs | |
parent | app-emacs/parsebib: bump to 6.2 (diff) | |
download | gentoo-084a4b599d0075dc1cb59399852be2920a2973a3.tar.gz gentoo-084a4b599d0075dc1cb59399852be2920a2973a3.tar.bz2 gentoo-084a4b599d0075dc1cb59399852be2920a2973a3.zip |
app-emacs/ebib: bump to 2.48
Signed-off-by: Maciej Barć <xgqt@gentoo.org>
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/ebib/Manifest | 1 | ||||
-rw-r--r-- | app-emacs/ebib/ebib-2.48.ebuild | 48 |
2 files changed, 49 insertions, 0 deletions
diff --git a/app-emacs/ebib/Manifest b/app-emacs/ebib/Manifest index ff8b3b02e870..8d8f49f8dd1e 100644 --- a/app-emacs/ebib/Manifest +++ b/app-emacs/ebib/Manifest @@ -1 +1,2 @@ DIST ebib-2.44.1.tar.gz 1052796 BLAKE2B 55ddb81ac536091df68ab22536944e8b4cb9c34f402da5fa098897485cf5b658da1c3ee11056f961563981fdabdc8974cec548e53d5b2a22d25773a4f5730b16 SHA512 c8b86ac9eab389cd4d3b3a9a192d110183eff3f7e93772614a898eec7cd63b3ee73e5621642f240679a547ace7ab4deb29a5bc3ea2f6a89ca8e710e1abdef4fb +DIST ebib-2.48.gh.tar.gz 1056438 BLAKE2B 153d417084af2fa7fc1fd295d917475944c79ee1f8d4a52714e102074331ce698f7219f66e60383c51e0850bec271660798818c3a1f69f5130eca53a5dc298a5 SHA512 92c3a9842832b865908f7b6212bfdb4bb69c03a132898b35f8046e6707288f7566f2f27e750dc19595e4dcb64314601253cc98dc5f5ddc1caa58781f14e00d9a diff --git a/app-emacs/ebib/ebib-2.48.ebuild b/app-emacs/ebib/ebib-2.48.ebuild new file mode 100644 index 000000000000..35b2d30cc523 --- /dev/null +++ b/app-emacs/ebib/ebib-2.48.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +NEED_EMACS="27.1" + +inherit elisp + +DESCRIPTION="BibTeX database manager for Emacs" +HOMEPAGE="https://joostkremers.github.io/ebib/ + https://github.com/joostkremers/ebib/" + +if [[ "${PV}" == *9999* ]] ; then + inherit git-r3 + + EGIT_REPO_URI="https://github.com/joostkremers/${PN}.git" +else + SRC_URI="https://github.com/joostkremers/${PN}/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz" + + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="BSD" +SLOT="0" + +RDEPEND=" + >=app-emacs/compat-30.0.0.0 + >=app-emacs/parsebib-6.2 +" +BDEPEND=" + ${RDEPEND} + test? ( + app-emacs/with-simulated-input + ) +" + +DOCS=( README.md docs ) +SITEFILE="50${PN}-gentoo.el" + +elisp-enable-tests ert-runner test + +src_install() { + elisp_src_install + + doinfo "${PN}.info" +} |