From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-947389-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 95921139694 for <garchives@archives.gentoo.org>; Tue, 2 May 2017 09:48:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF18EE0CE9; Tue, 2 May 2017 09:48:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7BC44E0CE9 for <gentoo-commits@lists.gentoo.org>; Tue, 2 May 2017 09:48:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 63D543416B3 for <gentoo-commits@lists.gentoo.org>; Tue, 2 May 2017 09:48:13 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 620D4745D for <gentoo-commits@lists.gentoo.org>; Tue, 2 May 2017 09:48:09 +0000 (UTC) From: "Michał Górny" <mgorny@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" <mgorny@gentoo.org> Message-ID: <1493718480.bd20a709281ca3a755b4d98e2f0916f1ea5cd37d.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/cgkit/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/cgkit/cgkit-2.0.0.ebuild X-VCS-Directories: dev-python/cgkit/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bd20a709281ca3a755b4d98e2f0916f1ea5cd37d X-VCS-Branch: master Date: Tue, 2 May 2017 09:48:09 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5188a0fd-49e4-47b0-b0bd-4e02bb012daf X-Archives-Hash: 9245d1036aac4125b224e5213cb31d33 commit: bd20a709281ca3a755b4d98e2f0916f1ea5cd37d Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Tue May 2 09:07:24 2017 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Tue May 2 09:48:00 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd20a709 dev-python/cgkit: Clean old versions up dev-python/cgkit/cgkit-2.0.0.ebuild | 86 ------------------------------------- 1 file changed, 86 deletions(-) diff --git a/dev-python/cgkit/cgkit-2.0.0.ebuild b/dev-python/cgkit/cgkit-2.0.0.ebuild deleted file mode 100644 index 82a2af82ab7..00000000000 --- a/dev-python/cgkit/cgkit-2.0.0.ebuild +++ /dev/null @@ -1,86 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="5" -PYTHON_COMPAT=( python{2_7,3_4} ) - -inherit distutils-r1 eutils scons-utils toolchain-funcs - -MY_P="${P/_/}" - -DESCRIPTION="Python library for creating 3D images" -HOMEPAGE="http://cgkit.sourceforge.net" -SRC_URI="$(python_gen_cond_dep mirror://sourceforge/${PN}/${PN}/${P}/${P}-py2k.tar.gz 'python2*') - $(python_gen_cond_dep mirror://sourceforge/${PN}/${PN}/${P}/${P}-py3k.tar.gz 'python3*')" - -LICENSE="LGPL-2.1 MPL-1.1 GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="3ds" - -RDEPEND=">=dev-libs/boost-1.48[python,${PYTHON_USEDEP}] - $(python_gen_cond_dep 'dev-python/pyprotocols[${PYTHON_USEDEP}]' 'python2*') - dev-python/pyopengl[${PYTHON_USEDEP}] - dev-python/pygame[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - 3ds? ( ~media-libs/lib3ds-1.3.0 )" -DEPEND="${RDEPEND} - dev-util/scons" - -DISTUTILS_IN_SOURCE_BUILD=1 - -cgkit_unpack() { - local tarball - if [[ ${EPYTHON} == python3* ]]; then - tarball=${P}-py3k.tar.gz - else - tarball=${P}-py2k.tar.gz - fi - mkdir "${BUILD_DIR}" || die - tar -C "${BUILD_DIR}" -x --strip-components 1 -f "${DISTDIR}/${tarball}" || die -} - -src_unpack() { - python_foreach_impl cgkit_unpack - mkdir "${S}" || die -} - -python_prepare_all() { - return 0 -} - -python_prepare() { - if [[ ${EPYTHON} == python3* ]]; then - epatch "${FILESDIR}/${PN}-py3k-pillow.patch" - else - epatch "${FILESDIR}/${PN}-py2k-pillow.patch" - fi - [[ ${PATCHES} ]] && epatch "${PATCHES[@]}" - - sed -e "s/fPIC/fPIC\",\"${CFLAGS// /\",\"}/" -i supportlib/SConstruct - cp config_template.cfg config.cfg - echo "BOOST_LIB = 'boost_python-${EPYTHON#python}'" >> config.cfg - echo "LIBS += ['GL', 'GLU', 'glut']" >> config.cfg - if use 3ds; then - echo "LIB3DS_AVAILABLE = True" >> config.cfg - fi - - sed -e "s:INC_DIRS = \[\]:INC_DIRS = \['/usr/include'\]:" -i setup.py - - # Remove invalid test - rm -f unittests/test_pointcloud.py || die -} - -python_compile() { - pushd supportlib > /dev/null || die - escons - popd > /dev/null || die - distutils-r1_python_compile -} - -python_test() { - pushd unittests > /dev/null || die - mkdir tmp || die - "${PYTHON}" all.py || die "Testing failed with ${EPYTHON}" - popd > /dev/null || die -}