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/citar/
Date: Sun, 19 Mar 2023 14:18:24
Message-Id: 1679233989.a34d2b11593df39decfbde435800c98fd1c0ed5c.xgqt@gentoo
1 commit: a34d2b11593df39decfbde435800c98fd1c0ed5c
2 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 19 12:34:19 2023 +0000
4 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 19 13:53:09 2023 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a34d2b11
7
8 app-emacs/citar: bump to 1.2.0
9
10 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org>
11
12 app-emacs/citar/Manifest | 1 +
13 app-emacs/citar/citar-1.2.0.ebuild | 43 ++++++++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/app-emacs/citar/Manifest b/app-emacs/citar/Manifest
17 index aa078ac35d44..66db9053f0a3 100644
18 --- a/app-emacs/citar/Manifest
19 +++ b/app-emacs/citar/Manifest
20 @@ -1,2 +1,3 @@
21 DIST citar-1.0.tar.gz 1339812 BLAKE2B 2093cc820199219ec70f99a746c630f2b8e6b4d464b1457d7b7db1c5c953138e7dd5ac55e21b13e7417dd0a764b6f1caaf400af353ecce9fb7e1bc578f570b0d SHA512 7f02a4e41a927c2c7c625189fa38caea8f0fc5616dd3487a93f71a373d1e4a124dd1cc520778a1ff2fa6dd7c3b619b539e3b0e47cb9caf7edd16e27e9d739585
22 DIST citar-1.1.tar.gz 1340039 BLAKE2B b2090a35a582918300f5e4bb2188d463630988830305aa4bb5e1e27f45ff8c96ca35458e610e13658b2120af497f9b877054a6fbebda48e0a4d87824ef48e9c8 SHA512 2b1924ef1a05a170eea31f844055b914410cd35613eda6604f08164818a8fc5480fc5a6d6f055ba95331b517305e51a6e671214cc88fccbda2430ae9b06dda49
23 +DIST citar-1.2.0.tar.gz 1417090 BLAKE2B 40673ee0f2ee5b4f86928e140714a517958d261c632ea1e7bcb3dcd3dde3a0bb9baaaa1107f50447f1d8e87485570033afbf0c652fa6b3f1fbffeda7b7df04c3 SHA512 31f817de77bc8fe9e2fdf96ac7df521ebe5685cf49a2a78cd2b1cd51e538165bde36fc8515c2fd7c20d4c6160372fdf37c1b870b12167f946c0f3934edd5fb7c
24
25 diff --git a/app-emacs/citar/citar-1.2.0.ebuild b/app-emacs/citar/citar-1.2.0.ebuild
26 new file mode 100644
27 index 000000000000..9c62e000f5a7
28 --- /dev/null
29 +++ b/app-emacs/citar/citar-1.2.0.ebuild
30 @@ -0,0 +1,43 @@
31 +# Copyright 1999-2023 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +NEED_EMACS=27.1
37 +
38 +inherit elisp
39 +
40 +DESCRIPTION="Emacs package to quickly find and act on bibliographic references"
41 +HOMEPAGE="https://github.com/emacs-citar/citar/"
42 +SRC_URI="https://github.com/emacs-citar/${PN}/archive/v${PV}.tar.gz
43 + -> ${P}.tar.gz"
44 +
45 +LICENSE="GPL-3+"
46 +SLOT="0"
47 +KEYWORDS="~amd64"
48 +
49 +RDEPEND="
50 + app-emacs/citeproc-el
51 + app-emacs/parsebib
52 +"
53 +BDEPEND="${RDEPEND}"
54 +
55 +# Embark integration has it's own package on MELPA, and it is probably better
56 +# to split them. https://melpa.org/#/citar-embark
57 +ELISP_REMOVE="citar-embark.el"
58 +
59 +DOCS=( CHANGELOG.org CONTRIBUTING.org README.org images )
60 +SITEFILE="50${PN}-gentoo.el"
61 +
62 +src_compile() {
63 + elisp_src_compile
64 + elisp-make-autoload-file
65 +}
66 +
67 +src_test() {
68 + ${EMACS} ${EMACSFLAGS} -L . -L test \
69 + -l test/citar-file-test.el \
70 + -l test/citar-format-test.el \
71 + -l test/citar-test.el \
72 + -f ert-run-tests-batch-and-exit || die
73 +}