commit:     87d93170e0443735f39e964a3ce8748fbb3c9603
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  2 11:43:30 2018 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Jun  8 20:55:11 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87d93170

dev-python/pyside-tools: Remove last-rited package

 dev-python/pyside-tools/Manifest                   |  1 -
 .../0.2.13-fix-pysideuic-test-and-install.patch    | 27 ------
 dev-python/pyside-tools/metadata.xml               | 11 ---
 .../pyside-tools/pyside-tools-0.2.15-r1.ebuild     | 96 ----------------------
 profiles/package.mask                              |  4 -
 5 files changed, 139 deletions(-)

diff --git a/dev-python/pyside-tools/Manifest b/dev-python/pyside-tools/Manifest
deleted file mode 100644
index 27c1145c165..00000000000
--- a/dev-python/pyside-tools/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pyside-tools-0.2.15.tar.gz 78989 BLAKE2B 
4cb4e47b5b274d1d2b812ca6f5404a61682776f1f45930063e8c66113e30d1333b8e165918b1573011335852ea484a171d6a087d1e1a31dff1a0a0db05cfaaf9
 SHA512 
7cee288b733e5f83a01683d7fc8f1017c044e46dbb02489c5e763e37db4e24f319ffd593e001ee6ca5a21a34cf1a6009ab1d4c9e4102c60693992b6f2f7c8991

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
deleted file mode 100644
index 768ae22a8bc..00000000000
--- a/dev-python/pyside-tools/files/0.2.13-fix-pysideuic-test-and-install.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-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
deleted file mode 100644
index 521a755bf02..00000000000
--- a/dev-python/pyside-tools/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd";>
-<pkgmetadata>
-  <maintainer type="project">
-    <email>[email protected]</email>
-    <name>Gentoo Qt Project</name>
-  </maintainer>
-  <upstream>
-    <remote-id type="github">PySide/Tools</remote-id>
-  </upstream>
-</pkgmetadata>

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
deleted file mode 100644
index a69420d6ebf..00000000000
--- a/dev-python/pyside-tools/pyside-tools-0.2.15-r1.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-CMAKE_IN_SOURCE_BUILD="1"
-CMAKE_MAKEFILE_GENERATOR="emake" # bug 558248
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
-
-inherit cmake-utils python-r1 vcs-snapshot virtualx
-
-DESCRIPTION="PySide development tools (lupdate, rcc, uic)"
-HOMEPAGE="http://wiki.qt.io/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="
-       ${PYTHON_DEPS}
-       >=dev-python/pyside-1.2.0:${SLOT}[X,${PYTHON_USEDEP}]
-       >=dev-python/shiboken-1.2.0:${SLOT}[${PYTHON_USEDEP}]
-       dev-qt/qtcore:4
-       dev-qt/qtgui:4
-"
-DEPEND="${RDEPEND}
-       test? ( virtual/pkgconfig )
-"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-PATCHES=(
-       "${FILESDIR}"/0.2.13-fix-pysideuic-test-and-install.patch
-)
-
-src_prepare() {
-       cmake-utils_src_prepare
-
-       python_copy_sources
-
-       preparation() {
-               pushd "${BUILD_DIR}" >/dev/null || die
-
-               if python_is_python3; then
-                       rm -fr pysideuic/port_v2 || die
-
-                       # need to run with -py3 to generate proper python 3 
interfaces
-                       sed -i -e 
's:${PYSIDERCC_EXECUTABLE}:"${PYSIDERCC_EXECUTABLE} -py3":' \
-                               tests/rcc/CMakeLists.txt || die
-               else
-                       rm -fr pysideuic/port_v3 || die
-               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}"
-                       -DBUILD_TESTS=$(usex test)
-               )
-               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}" virtx cmake-utils_src_test
-       }
-       python_foreach_impl testing
-}
-
-src_install() {
-       installation() {
-               CMAKE_USE_DIR="${BUILD_DIR}" cmake-utils_src_install 
DESTDIR="${D}"
-       }
-       python_foreach_impl installation
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index c0ea57f682a..a9bd58f0f72 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -217,10 +217,6 @@ net-dns/dnssec-system-tray
 # Use dev-libs/memcached istead. Removal in 30 days.
 dev-libs/libmemcache
 
-# Andreas Sturmlechner <[email protected]> (10 May 2018)
-# Depends on dead Qt4. Masked for removal in 30 days.
-dev-python/pyside-tools:0
-
 # Hans de Graaff <[email protected]> (7 May 2018)
 # Old slots that are ruby23-only and no longer maintained
 # upstream, and that do not have packages depend on them.

Reply via email to