blob: d318ec5b96366fedce919dee4b0baefb775017a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1 eutils
DESCRIPTION="A Python extension to parse BibTeX files"
HOMEPAGE="https://pybliographer.org/"
SRC_URI="mirror://sourceforge/pybliographer/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE=""
RDEPEND="
dev-libs/glib:2
>=app-text/recode-3.6-r1"
DEPEND="${RDEPEND}
virtual/pkgconfig"
python_prepare_all() {
# Disable tests during installation.
sed -e "/self.run_command ('check')/d" -i setup.py
distutils-r1_python_prepare_all
}
python_test() {
esetup.py check
}
|