Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/xapers/
Date: Fri, 04 Sep 2020 23:23:33
Message-Id: 1599261789.742bb4c9b220610521a8fa026fbca8d15eb3b2f3.sam@gentoo
1 commit: 742bb4c9b220610521a8fa026fbca8d15eb3b2f3
2 Author: William Pettersson <william <AT> ewpettersson <DOT> se>
3 AuthorDate: Wed Aug 12 14:48:27 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Fri Sep 4 23:23:09 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=742bb4c9
7
8 app-text/xapers: bump to 0.9.0
9
10 Fixes some issues with tests, python37 updates.
11
12 Package-Manager: Portage-2.3.103, Repoman-2.3.23
13 Signed-off-by: William Pettersson <william <AT> ewpettersson.se>
14 Signed-off-by: Sam James <sam <AT> gentoo.org>
15
16 app-text/xapers/Manifest | 1 +
17 app-text/xapers/xapers-0.9.0.ebuild | 34 ++++++++++++++++++++++++++++++++++
18 2 files changed, 35 insertions(+)
19
20 diff --git a/app-text/xapers/Manifest b/app-text/xapers/Manifest
21 index 637134e5654..f94d93624b8 100644
22 --- a/app-text/xapers/Manifest
23 +++ b/app-text/xapers/Manifest
24 @@ -1 +1,2 @@
25 DIST xapers-0.8.2.tar.gz 160938 BLAKE2B cb21d04146f0cca39f1a706641e4cd2a83a796cbf4eb096379367203d91811c20798638a27215e9fdd9ffb32de908a389b0af57200f19bf4d2c8477a9c82ca93 SHA512 cdf1d4791dd48f579f9ee019492c26d10c9855c1ceef2c15bdc81dfdab0f1d74f54db453bb60a9d297a155a55d73cd26ff192875b4ee2b80d8f9f5d35a4bbcc9
26 +DIST xapers-0.9.0.tar.gz 159928 BLAKE2B d202a3835ccbcb1adfc2123ee40f6e1992e0c10f84cf57fc38eaae27134d649c94b5c625bf3a11ef2f4d119093fb1dcd99a923a9585d8e6b6b37ed9db7c15247 SHA512 0b2e32d215c64842a2d586c776d6cdfd2b77cd3081929c37dde9682fb61e8c58e374773ef33e1123087e8dcf655e12fd19db371005aaf31875492607d6494dd7
27
28 diff --git a/app-text/xapers/xapers-0.9.0.ebuild b/app-text/xapers/xapers-0.9.0.ebuild
29 new file mode 100644
30 index 00000000000..56850c3d6e1
31 --- /dev/null
32 +++ b/app-text/xapers/xapers-0.9.0.ebuild
33 @@ -0,0 +1,34 @@
34 +# Copyright 2016-2020 Gentoo Authors
35 +# Distributed under the terms of the GNU General Public License v2
36 +
37 +EAPI=7
38 +
39 +PYTHON_COMPAT=( python3_{6,7,8} )
40 +DISTUTILS_USE_SETUPTOOLS=rdepend
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Personal document indexing system"
45 +HOMEPAGE="https://finestructure.net/xapers/ https://gitlab.com/jrollins/xapers/"
46 +SRC_URI="https://gitlab.com/jrollins/${PN}/-/archive/${PV}/${P}.tar.gz"
47 +IUSE="test"
48 +RESTRICT="!test? ( test )"
49 +
50 +LICENSE="GPL-3"
51 +SLOT="0"
52 +KEYWORDS="~amd64"
53 +
54 +RDEPEND="app-text/poppler[utils]
55 + dev-libs/xapian-bindings[python,${PYTHON_USEDEP}]
56 + dev-python/pybtex[${PYTHON_USEDEP}]
57 + dev-python/pycurl[${PYTHON_USEDEP}]
58 + dev-python/urwid[${PYTHON_USEDEP}]
59 + x11-misc/xclip
60 + x11-misc/xdg-utils"
61 +
62 +BDEPEND="test? ( ${RDEPEND} )"
63 +
64 +src_test() {
65 + cd test || die
66 + ./all || die
67 +}