Gentoo Archives: gentoo-commits

From: "Maciej Barć" <xgqt@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emacs/parsebib/
Date: Mon, 04 Jul 2022 14:46:42
Message-Id: 1656945789.f98fd69b5cccdd9cdfc508ba6ae4a005e676bc68.xgqt@gentoo
1 commit: f98fd69b5cccdd9cdfc508ba6ae4a005e676bc68
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Mon Jul 4 14:43:09 2022 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 14:43:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f98fd69b
7
8 app-emacs/parsebib: bump to 4.1
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 app-emacs/parsebib/Manifest | 1 +
13 app-emacs/parsebib/parsebib-4.1.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/app-emacs/parsebib/Manifest b/app-emacs/parsebib/Manifest
17 index 36cc33b12a9d..05cd17e64f74 100644
18 --- a/app-emacs/parsebib/Manifest
19 +++ b/app-emacs/parsebib/Manifest
20 @@ -1 +1,2 @@
21 DIST parsebib-3.1.tar.gz 19298 BLAKE2B 1588a9ef6e1642a612be2abb340d9127f8b8542ac2edda0deb5d9be28903443a33de877e44cefceba110332c022b8e4885a2927f172a447f035e9a5c0e65b5a5 SHA512 10dc25831693d271582b2d561401399e12ac3ccbc994dc95ae22fec800e1b242461deaa6a1c0ae5b20a1834baf88017b3ee42f1a53ac5d73f73a2f69c050c6c2
22 +DIST parsebib-4.1.tar.gz 24384 BLAKE2B 4546b49ea49a890b7a640cbbf1103500e6e1d3628d990c1c24c4943024b51f5293919315ab82134cb823799ac8d04e5c174671db3379c9a0a9cf7aa02bb8c36c SHA512 37df3265b51e0a1d2b418f2a862691300c369bcee01beec19abe4ebd160c4a279427f7a4b012828ca5b39f0c2064660c3ed73edfef400f543a9157761aabbbb3
23
24 diff --git a/app-emacs/parsebib/parsebib-4.1.ebuild b/app-emacs/parsebib/parsebib-4.1.ebuild
25 new file mode 100644
26 index 000000000000..6d23c9db04f0
27 --- /dev/null
28 +++ b/app-emacs/parsebib/parsebib-4.1.ebuild
29 @@ -0,0 +1,28 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +NEED_EMACS=25.1
36 +
37 +inherit elisp
38 +
39 +DESCRIPTION="Emacs Lisp library for reading .bib files"
40 +HOMEPAGE="https://github.com/joostkremers/parsebib/"
41 +SRC_URI="https://github.com/joostkremers/${PN}/archive/${PV}.tar.gz
42 + -> ${P}.tar.gz"
43 +
44 +LICENSE="BSD"
45 +KEYWORDS="~amd64 ~x86"
46 +SLOT="0"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +BDEPEND="test? ( app-emacs/ert-runner )"
51 +
52 +DOCS=( README.md )
53 +SITEFILE="50${PN}-gentoo.el"
54 +
55 +src_test() {
56 + ert-runner -L . -L test --reporter ert+duration --script test || die
57 +}