blob: e1901a94ba837b124079c621da52a9b53ea3747e (
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/cssutils/cssutils-0.9.9.ebuild,v 1.3 2012/05/04 19:41:13 scarabeus Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS=""
DISTUTILS_SRC_TEST="nosetests"
PYTHON_TESTS_RESTRICTED_ABIS="3.*"
inherit distutils
DESCRIPTION="A CSS Cascading Style Sheets library"
HOMEPAGE="http://pypi.python.org/pypi/cssutils/ https://bitbucket.org/cthedot/cssutils"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="examples test"
RDEPEND="dev-python/setuptools"
DEPEND="${RDEPEND}
app-arch/unzip
test? ( dev-python/mock )"
PYTHON_MODNAME="cssutils encutils"
src_prepare() {
distutils_src_prepare
# Disable test failing with dev-python/pyxml installed.
if has_version dev-python/pyxml; then
sed -e "s/test_linecol/_&/" -i src/tests/test_errorhandler.py
fi
# https://bitbucket.org/cthedot/cssutils/issue/8/test-failure
sed -e "s/test_cssText2/_&/" -i src/tests/test_cssvariablesdeclaration.py
}
src_install() {
distutils_src_install
# Don't install tests.
delete_tests() {
rm -fr "${ED}$(python_get_sitedir)/tests"
}
python_execute_function -q delete_tests
# Don't install py3 stuff on py2. Breaks py25
deletion_of_unneeded_files() {
[[ "${PYTHON_ABI}" == 3.* ]] && return
rm -f "${ED}$(python_get_sitedir)/cssutils/_codec3.py"
}
python_execute_function -q deletion_of_unneeded_files
if use examples; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}
|