forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: Portage-2.3.89, Repoman-2.3.20 Signed-off-by: Andrey Grozin <[email protected]>
- Loading branch information
Andrey Grozin
committed
Mar 1, 2020
1 parent
b950fd5
commit d12d7f1
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Copyright 1999-2020 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
PYTHON_COMPAT=( python3_{6,7,8} ) | ||
|
||
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" | ||
IUSE="designer gui opengl svg testlib webengine" | ||
|
||
RDEPEND=" | ||
dev-python/PyQt5[${PYTHON_USEDEP},designer?,opengl?,svg?] | ||
gui? ( dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets] ) | ||
testlib? ( dev-python/PyQt5[${PYTHON_USEDEP},testlib] ) | ||
webengine? ( dev-python/PyQtWebEngine[${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 | ||
} |