35 lines
944 B
Bash
35 lines
944 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Abstraction layer for PyQt5/PySide"
|
|
HOMEPAGE="https://github.com/spyder-ide/qtpy"
|
|
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
|
|
|
|
IUSE="designer gui opengl svg testlib webkit"
|
|
|
|
RDEPEND="
|
|
gui? ( || (
|
|
dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets]
|
|
dev-python/pyside[${PYTHON_USEDEP},X]
|
|
) )
|
|
testlib? ( || (
|
|
dev-python/PyQt5[${PYTHON_USEDEP},testlib]
|
|
dev-python/pyside[${PYTHON_USEDEP},X]
|
|
) )
|
|
webkit? ( dev-python/PyQt5[${PYTHON_USEDEP},designer=,opengl=,svg=,webkit=] )
|
|
!webkit? ( || (
|
|
dev-python/PyQt5[${PYTHON_USEDEP},designer=,opengl=,svg=]
|
|
dev-python/pyside[${PYTHON_USEDEP},designer=,opengl=,svg=]
|
|
) )
|
|
"
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|