32 lines
957 B
Bash
32 lines
957 B
Bash
# Copyright 1999-2018 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="
|
|
dev-python/PyQt5[${PYTHON_USEDEP},designer?,opengl?,svg?,webkit?]
|
|
gui? ( dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets] )
|
|
testlib? ( dev-python/PyQt5[${PYTHON_USEDEP},testlib] )
|
|
"
|
|
DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i -e "s/from PyQt4.Qt import/raise ImportError #/" qtpy/__init__.py || die
|
|
sed -i -e "s/from PySide import/raise ImportError #/" qtpy/__init__.py || die
|
|
sed -i -e "s/from PySide2 import/raise ImportError #/" qtpy/__init__.py || die
|
|
}
|