mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-06 12:37:34 -08:00
42 lines
1000 B
Bash
42 lines
1000 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI="5"
|
|
|
|
PYTHON_COMPAT=( python2_7 pypy )
|
|
|
|
inherit distutils-r1 eutils
|
|
|
|
DESCRIPTION="Simple config file reader and writer"
|
|
HOMEPAGE="http://www.voidspace.org.uk/python/configobj.html https://code.google.com/p/configobj/ https://pypi.python.org/pypi/configobj"
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
|
|
|
|
LICENSE="BSD"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ~ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
|
|
IUSE="doc"
|
|
|
|
DEPEND="app-arch/unzip"
|
|
RDEPEND=""
|
|
|
|
PATCHES=( "${FILESDIR}"/${P}-fix_tests.patch )
|
|
|
|
python_prepare_all() {
|
|
distutils-r1_python_prepare_all
|
|
sed -e "s/ \(doctest\.testmod(.*\)/ sys.exit(\1[0] != 0)/" -i validate.py || die
|
|
}
|
|
|
|
python_test() {
|
|
"${PYTHON}" validate.py -v || die
|
|
}
|
|
|
|
python_install_all() {
|
|
distutils-r1_python_install_all
|
|
if use doc; then
|
|
rm -f docs/BSD*
|
|
insinto /usr/share/doc/${PF}/html
|
|
doins -r docs/* || die "doins failed"
|
|
fi
|
|
}
|