Skip to content

Commit

Permalink
dev-python/PyQtWebEngine: new package
Browse files Browse the repository at this point in the history
PyQtWebEngine is a set of Python bindings for Qt WebEngine framework.
Before PyQt5-5.12 these bingings were a part of PyQt5. Now it is a
separate package.

Packages that depended on dev-python/PyQt5[webengine] now must depend on
dev-python/PyQtWebEngine.

Closes: https://bugs.gentoo.org/679202
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Stefan Strogin <stefan.strogin@gmail.com>
  • Loading branch information
steils committed Mar 21, 2019
1 parent 7de462f commit 3bc2120
Show file tree
Hide file tree
Showing 3 changed files with 102 additions and 0 deletions.
1 change: 1 addition & 0 deletions dev-python/PyQtWebEngine/Manifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DIST PyQtWebEngine_gpl-5.12.1.tar.gz 42474 BLAKE2B 6cb333d8e429ae6b9f8c20a7486754767639693351605e85c0226ab3f1f065a549d40d69669d91f501fdf2c30346304a547e36b416d275a8bfe4ea621c0633b7 SHA512 2bcb0e4da51de9cfb5128e03c03ada77f2d4b99b0885da910584717681b96759ce4301c325cbbf43602d46746e2d37d81ed62f77dd63b33359fd5fae74d7f010
69 changes: 69 additions & 0 deletions dev-python/PyQtWebEngine/PyQtWebEngine-5.12.1.ebuild
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Copyright 2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=7

PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
inherit python-r1 qmake-utils

DESCRIPTION="Python bindings for Qt WebEngine framework"
HOMEPAGE="https://www.riverbankcomputing.com/software/pyqtwebengine/intro"

MY_P=${PN}_gpl-${PV/_pre/.dev}
SRC_URI="https://www.riverbankcomputing.com/static/Downloads/${PN}/${MY_P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="debug"

RDEPEND="${PYTHON_DEPS}
>=dev-python/PyQt5-5.12.1[${PYTHON_USEDEP},widgets]
>=dev-python/PyQt5-sip-4.19.14:=[${PYTHON_USEDEP}]
>=dev-qt/qtwebengine-5.12[widgets]"
DEPEND="${RDEPEND}
>=dev-python/sip-4.19.14[${PYTHON_USEDEP}]"
BDEPEND=""

S="${WORKDIR}/${MY_P}"

src_prepare() {
default
python_copy_sources
}

src_configure() {
configuration() {
local myconf=(
"${PYTHON}"
"${S}"/configure.py
$(usex debug '--debug --trace' '')
--destdir="$(python_get_sitedir)"/PyQt5
--pyqt-sipdir="$(python_get_scriptdir)"/../../../share/sip/PyQt5
--qmake="$(qt5_get_bindir)"/qmake
--sipdir="$(python_get_scriptdir)"/../../../share/sip/PyQt5
--sip-incdir="$(python_get_includedir)"
--sysroot="${ESYSROOT}/usr"
--verbose
)
echo "${myconf[@]}"
"${myconf[@]}" || die

eqmake5 -recursive ${PN}.pro
}
python_foreach_impl run_in_build_dir configuration
}

src_compile() {
python_foreach_impl run_in_build_dir default
}

src_install() {
installation() {
# Parallel install fails
emake -j1 INSTALL_ROOT="${D}" install
python_optimize
}
python_foreach_impl run_in_build_dir installation
einstalldocs
}
32 changes: 32 additions & 0 deletions dev-python/PyQtWebEngine/metadata.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>qt@gentoo.org</email>
<name>Gentoo Qt Project</name>
</maintainer>
<maintainer type="person">
<email>stefan.strogin@gmail.com</email>
<name>Stefan Strogin</name>
</maintainer>
<maintainer type="project">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<longdescription lang="en">
PyQtWebEngine is a set of Python bindings for The Qt Company's
Qt WebEngine libraries. The bindings sit on top of PyQt5 and
are implemented as a set of three modules. Prior to v5.12 these
bindings were part of PyQt itself.
</longdescription>
<upstream>
<maintainer status="active">
<email>phil@riverbankcomputing.com</email>
<name>Phil Thompson</name>
</maintainer>
<changelog>https://www.riverbankcomputing.com/static/Downloads/PyQtWebEngine/ChangeLog</changelog>
<doc>https://www.riverbankcomputing.com/static/Docs/PyQt5/</doc>
<bugs-to>mailto:pyqt@riverbankcomputing.com</bugs-to>
<remote-id type="pypi">PyQtWebEngine</remote-id>
</upstream>
</pkgmetadata>

0 comments on commit 3bc2120

Please sign in to comment.