blob: 500b9772df7f7d1b74e65874dca9d8035f93663a (
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-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="A finite domain constraints solver written in 100% pure Python"
HOMEPAGE="https://www.logilab.org/project/logilab-constraint"
SRC_URI="ftp://ftp.logilab.org/pub/constraint/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 sparc x86"
IUSE="doc examples"
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="dev-python/logilab-common[${PYTHON_USEDEP}]"
DOCS=( doc/CONTRIBUTORS )
python_install() {
# Avoid collisions with dev-python/logilab-common.
distutils-r1_python_install
rm -f "${D}$(python_get_sitedir)/logilab/__init__.py" || die
}
python_install_all() {
use doc && dohtml doc/documentation.html
use examples && local EXAMPLES=( examples/. )
distutils-r1_python_install_all
}
|