Added pyside-tools:2
This commit is contained in:
parent
177d10f56a
commit
2299a2811f
8
dev-python/pyside-tools/metadata.xml
Normal file
8
dev-python/pyside-tools/metadata.xml
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
<?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>
|
||||||
|
</pkgmetadata>
|
110
dev-python/pyside-tools/pyside-tools-9999.ebuild
Normal file
110
dev-python/pyside-tools/pyside-tools-9999.ebuild
Normal file
@ -0,0 +1,110 @@
|
|||||||
|
# Copyright 1999-2017 Gentoo Foundation
|
||||||
|
# Distributed under the terms of the GNU General Public License v2
|
||||||
|
|
||||||
|
EAPI=6
|
||||||
|
|
||||||
|
CMAKE_IN_SOURCE_BUILD="1"
|
||||||
|
PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
|
||||||
|
|
||||||
|
inherit cmake-utils python-r1 virtualx git-r3
|
||||||
|
|
||||||
|
DESCRIPTION="PySide development tools (lupdate, rcc, uic)"
|
||||||
|
HOMEPAGE="https://wiki.qt.io/PySide2"
|
||||||
|
EGIT_REPO_URI="https://code.qt.io/pyside/pyside-tools.git"
|
||||||
|
EGIT_BRANCH="5.9"
|
||||||
|
|
||||||
|
# Although "LICENSE-uic" suggests the "pyside2uic" directory to be dual-licensed
|
||||||
|
# under the BSD 3-clause and GPL v2 licenses, this appears to be an oversight;
|
||||||
|
# all files in this (and every) directory are licensed only under the GPL v2.
|
||||||
|
LICENSE="GPL-2"
|
||||||
|
SLOT="2"
|
||||||
|
KEYWORDS=""
|
||||||
|
IUSE="test"
|
||||||
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
||||||
|
|
||||||
|
# The "pyside2uic" package imports both the "PySide2.QtGui" and
|
||||||
|
# "PySide2.QtWidgets" C extensions and hence requires "gui" and "widgets".
|
||||||
|
RDEPEND="
|
||||||
|
${PYTHON_DEPS}
|
||||||
|
>=dev-python/pyside-${PV}:${SLOT}[gui,widgets,${PYTHON_USEDEP}]
|
||||||
|
>=dev-python/shiboken-${PV}:${SLOT}[${PYTHON_USEDEP}]
|
||||||
|
dev-qt/qtcore:5
|
||||||
|
"
|
||||||
|
DEPEND="${RDEPEND}
|
||||||
|
test? ( virtual/pkgconfig )
|
||||||
|
"
|
||||||
|
|
||||||
|
src_prepare() {
|
||||||
|
cmake-utils_src_prepare
|
||||||
|
|
||||||
|
python_copy_sources
|
||||||
|
|
||||||
|
preparation() {
|
||||||
|
pushd "${BUILD_DIR}" >/dev/null || die
|
||||||
|
|
||||||
|
if python_is_python3; then
|
||||||
|
# Remove Python 2-specific paths.
|
||||||
|
rm -rf pyside2uic/port_v2 || die
|
||||||
|
|
||||||
|
# Generate proper Python 3 test interfaces with the "-py3" option.
|
||||||
|
sed -i -e 's:${PYSIDERCC_EXECUTABLE}:"${PYSIDERCC_EXECUTABLE} -py3":' \
|
||||||
|
tests/rcc/CMakeLists.txt || die
|
||||||
|
else
|
||||||
|
# Remove Python 3-specific paths.
|
||||||
|
rm -rf pyside2uic/port_v3 || die
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Force testing against the current Python version.
|
||||||
|
sed -i -e "/pkg-config/ s:shiboken2:&-${EPYTHON}:" \
|
||||||
|
tests/rcc/run_test.sh || die
|
||||||
|
|
||||||
|
popd >/dev/null || die
|
||||||
|
}
|
||||||
|
python_foreach_impl preparation
|
||||||
|
}
|
||||||
|
|
||||||
|
src_configure() {
|
||||||
|
configuration() {
|
||||||
|
local mycmakeargs=(
|
||||||
|
-DBUILD_TESTS=$(usex test)
|
||||||
|
)
|
||||||
|
|
||||||
|
# Find the previously installed "Shiboken2Config.*.cmake" and
|
||||||
|
# "PySide2Config.*.cmake" files specific to this Python version.
|
||||||
|
if python_is_python3; then
|
||||||
|
# Extension tag unique to the current Python 3.x version (e.g.,
|
||||||
|
# ".cpython-34m" for CPython 3.4).
|
||||||
|
local EXTENSION_TAG="$("$(python_get_PYTHON_CONFIG)" --extension-suffix)"
|
||||||
|
EXTENSION_TAG="${EXTENSION_TAG%.so}"
|
||||||
|
|
||||||
|
mycmakeargs+=( -DPYTHON_CONFIG_SUFFIX="${EXTENSION_TAG}" )
|
||||||
|
else
|
||||||
|
mycmakeargs+=( -DPYTHON_CONFIG_SUFFIX="-python2.7" )
|
||||||
|
fi
|
||||||
|
|
||||||
|
CMAKE_USE_DIR="${BUILD_DIR}" cmake-utils_src_configure
|
||||||
|
}
|
||||||
|
python_foreach_impl configuration
|
||||||
|
}
|
||||||
|
|
||||||
|
src_compile() {
|
||||||
|
compilation() {
|
||||||
|
CMAKE_USE_DIR="${BUILD_DIR}" cmake-utils_src_compile
|
||||||
|
}
|
||||||
|
python_foreach_impl compilation
|
||||||
|
}
|
||||||
|
|
||||||
|
src_test() {
|
||||||
|
testing() {
|
||||||
|
local -x PYTHONDONTWRITEBYTECODE
|
||||||
|
CMAKE_USE_DIR="${BUILD_DIR}" virtx cmake-utils_src_test
|
||||||
|
}
|
||||||
|
python_foreach_impl testing
|
||||||
|
}
|
||||||
|
|
||||||
|
src_install() {
|
||||||
|
installation() {
|
||||||
|
CMAKE_USE_DIR="${BUILD_DIR}" cmake-utils_src_install
|
||||||
|
}
|
||||||
|
python_foreach_impl installation
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user