From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- dev-python/pyside-tools/Manifest | 1 + .../0.2.13-fix-pysideuic-test-and-install.patch | 27 +++++++ dev-python/pyside-tools/metadata.xml | 8 +++ .../pyside-tools/pyside-tools-0.2.15-r1.ebuild | 83 ++++++++++++++++++++++ 4 files changed, 119 insertions(+) create mode 100644 dev-python/pyside-tools/Manifest create mode 100644 dev-python/pyside-tools/files/0.2.13-fix-pysideuic-test-and-install.patch create mode 100644 dev-python/pyside-tools/metadata.xml create mode 100644 dev-python/pyside-tools/pyside-tools-0.2.15-r1.ebuild (limited to 'dev-python/pyside-tools') diff --git a/dev-python/pyside-tools/Manifest b/dev-python/pyside-tools/Manifest new file mode 100644 index 000000000000..e42c98efcf8b --- /dev/null +++ b/dev-python/pyside-tools/Manifest @@ -0,0 +1 @@ +DIST pyside-tools-0.2.15.tar.gz 78989 SHA256 8a7fe786b19c5b2b4380aff0a9590b3129fad4a0f6f3df1f39593d79b01a9f74 SHA512 7cee288b733e5f83a01683d7fc8f1017c044e46dbb02489c5e763e37db4e24f319ffd593e001ee6ca5a21a34cf1a6009ab1d4c9e4102c60693992b6f2f7c8991 WHIRLPOOL 23d7a325f548cd1d95b91c40d5c2ccbdd70a25328948f93b5232bf8d1177674899bfdd51161873c34be5245d20c4d202a3eed29ce7fa10399cabad9e84b2e698 diff --git a/dev-python/pyside-tools/files/0.2.13-fix-pysideuic-test-and-install.patch b/dev-python/pyside-tools/files/0.2.13-fix-pysideuic-test-and-install.patch new file mode 100644 index 000000000000..768ae22a8bc2 --- /dev/null +++ b/dev-python/pyside-tools/files/0.2.13-fix-pysideuic-test-and-install.patch @@ -0,0 +1,27 @@ +diff -Naur pyside-tools-0.2.13.orig/CMakeLists.txt pyside-tools-0.2.13/CMakeLists.txt +--- pyside-tools-0.2.13.orig/CMakeLists.txt 2012-03-09 00:46:56.377462594 +0100 ++++ pyside-tools-0.2.13/CMakeLists.txt 2012-03-09 00:48:08.888556082 +0100 +@@ -11,7 +11,7 @@ + set(pyside_tools_MICRO_VERSION "13") + set(pyside_tools_VERSION "${pyside_tools_MAJOR_VERSION}.${pyside_tools_MINOR_VERSION}.${pyside_tools_MICRO_VERSION}") + +-configure_file("pysideuic/__init__.py.in" "__init__.py" @ONLY) ++configure_file("pysideuic/__init__.py.in" "pysideuic/__init__.py" @ONLY) + + option(BUILD_TESTS "Build tests." TRUE) + +@@ -34,13 +34,10 @@ + GROUP_EXECUTE GROUP_READ + WORLD_EXECUTE WORLD_READ) + +-install(FILES "${CMAKE_CURRENT_BINARY_DIR}/__init__.py" +- DESTINATION "${SITE_PACKAGE}/pysideuic") + install(DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}/pysideuic + DESTINATION ${SITE_PACKAGE} + PATTERN "*.in" EXCLUDE +- PATTERN "*pysideuic/__init__.py" EXCLUDE +- PATTERN "*pysideuic\\__init__.py" EXCLUDE) ++ PATTERN "*/pysideuic/*.1" EXCLUDE) + + # Man pages for pyside-uic + if (NOT win32) diff --git a/dev-python/pyside-tools/metadata.xml b/dev-python/pyside-tools/metadata.xml new file mode 100644 index 000000000000..c4e854451218 --- /dev/null +++ b/dev-python/pyside-tools/metadata.xml @@ -0,0 +1,8 @@ + + + + qt + + PySide/Tools + + diff --git a/dev-python/pyside-tools/pyside-tools-0.2.15-r1.ebuild b/dev-python/pyside-tools/pyside-tools-0.2.15-r1.ebuild new file mode 100644 index 000000000000..64c5ceb94912 --- /dev/null +++ b/dev-python/pyside-tools/pyside-tools-0.2.15-r1.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +CMAKE_IN_SOURCE_BUILD="1" +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +VIRTUALX_COMMAND="cmake-utils_src_test" + +inherit eutils cmake-utils python-r1 vcs-snapshot virtualx + +DESCRIPTION="PySide development tools (lupdate, rcc, uic)" +HOMEPAGE="http://qt-project.org/wiki/PySide" +SRC_URI="https://github.com/PySide/Tools/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="test" + +RDEPEND=" + >=dev-python/pyside-1.2.0[X,${PYTHON_USEDEP}] + >=dev-python/shiboken-1.2.0[${PYTHON_USEDEP}] + >=dev-qt/qtcore-4.7.0:4 + >=dev-qt/qtgui-4.7.0:4 + ${PYTHON_DEPS}" +DEPEND="${RDEPEND} + test? ( virtual/pkgconfig )" + +src_prepare() { + epatch "${FILESDIR}"/0.2.13-fix-pysideuic-test-and-install.patch + + python_copy_sources + + preparation() { + pushd "${BUILD_DIR}" >/dev/null || die + if python_is_python3; then + rm -fr pysideuic/port_v2 + else + rm -fr pysideuic/port_v3 + fi + + sed -i -e "/pkg-config/ s:shiboken:&-${EPYTHON}:" \ + tests/rcc/run_test.sh || die + popd >/dev/null || die + } + python_foreach_impl preparation +} + +src_configure() { + configuration() { + local mycmakeargs=( + -DPYTHON_BASENAME="-${EPYTHON}" + -DPYTHON_SUFFIX="-${EPYTHON}" + $(cmake-utils_use_build test TESTS) + ) + CMAKE_USE_DIR="${BUILD_DIR}" cmake-utils_src_configure + } + python_foreach_impl configuration +} + +src_compile() { + compilation() { + CMAKE_USE_DIR="${BUILD_DIR}" cmake-utils_src_make + } + python_foreach_impl compilation +} + +src_test() { + testing() { + CMAKE_USE_DIR="${BUILD_DIR}" virtualmake + } + python_foreach_impl testing +} + +src_install() { + installation() { + CMAKE_USE_DIR="${BUILD_DIR}" cmake-utils_src_install DESTDIR="${D}" + } + python_foreach_impl installation + + dodoc AUTHORS +} -- cgit v1.2.3-65-gdbad