From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 A1D8B138330 for ; Sat, 6 Jan 2018 13:39:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EC0A5E0970; Sat, 6 Jan 2018 13:39:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id CCFFDE096C for ; Sat, 6 Jan 2018 13:39:41 +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 15BD7335C38 for ; Sat, 6 Jan 2018 13:39:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 966B51B7 for ; Sat, 6 Jan 2018 13:39:37 +0000 (UTC) From: "Michał Górny" 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" Message-ID: <1515245962.1c7db172aad891a7ebbde359dde522fca606380b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/zc-buildout/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/zc-buildout/zc-buildout-2.5.3.ebuild X-VCS-Directories: dev-python/zc-buildout/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 1c7db172aad891a7ebbde359dde522fca606380b X-VCS-Branch: master Date: Sat, 6 Jan 2018 13:39:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 948412b0-8b92-467d-9f6b-0a9631ef4a49 X-Archives-Hash: 78ee30d470943f388b2a351dba2266e6 commit: 1c7db172aad891a7ebbde359dde522fca606380b Author: Michał Górny gentoo org> AuthorDate: Sat Jan 6 10:04:21 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Jan 6 13:39:22 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c7db172 dev-python/zc-buildout: Clean old up dev-python/zc-buildout/zc-buildout-2.5.3.ebuild | 43 ------------------------- 1 file changed, 43 deletions(-) diff --git a/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild b/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild deleted file mode 100644 index a5324fbf46e..00000000000 --- a/dev-python/zc-buildout/zc-buildout-2.5.3.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 -PYTHON_COMPAT=( python{2_7,3_4} pypy pypy3 ) - -inherit distutils-r1 - -MY_PN="${PN/-/.}" -MY_P=${MY_PN}-${PV} - -DESCRIPTION="System for managing development buildouts" -HOMEPAGE="https://pypi.python.org/pypi/zc.buildout" -SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz" - -LICENSE="ZPL" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="test" - -RDEPEND=">=dev-python/setuptools-3.3[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - test? ( dev-python/zope-testing[${PYTHON_USEDEP}] )" - -S="${WORKDIR}"/${MY_P} - -DOCS=( README.rst doc/tutorial.txt ) - -# Prevent incorrect installation of data file -python_prepare_all() { - sed -e '/^ include_package_data/d' -i setup.py || die - distutils-r1_python_prepare_all -} - -python_test() { - if python_is_python3; then - ewarn "Tests are broken for ${EPYTHON}, skipping" - continue - fi - - distutils_install_for_testing - "${PYTHON}" src/zc/buildout/tests.py || die "Tests fail with ${EPYTHON}" -}