From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 14B1D58974 for ; Wed, 27 Jan 2016 04:18:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8B42A21C017; Wed, 27 Jan 2016 04:18:00 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2179E21C017 for ; Wed, 27 Jan 2016 04:18:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3AE28340A9F for ; Wed, 27 Jan 2016 04:17:59 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3B7571067 for ; Wed, 27 Jan 2016 04:17:55 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1453868235.0b734d0a83e1ca2490e44e7ccd5a363ba1410b9f.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/six/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/six/six-9999.ebuild X-VCS-Directories: dev-python/six/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 0b734d0a83e1ca2490e44e7ccd5a363ba1410b9f X-VCS-Branch: master Date: Wed, 27 Jan 2016 04:17:55 +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: 24f86b12-15fa-4f20-86d9-b17b66922e8e X-Archives-Hash: 509898f850da57b8e800422761b4880a commit: 0b734d0a83e1ca2490e44e7ccd5a363ba1410b9f Author: Mike Gilbert gentoo org> AuthorDate: Wed Jan 27 04:17:04 2016 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Wed Jan 27 04:17:15 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b734d0a dev-python/six: Drop the live ebuild Package-Manager: portage-2.2.27_p49 dev-python/six/six-9999.ebuild | 37 ------------------------------------- 1 file changed, 37 deletions(-) diff --git a/dev-python/six/six-9999.ebuild b/dev-python/six/six-9999.ebuild deleted file mode 100644 index 1807e5e..0000000 --- a/dev-python/six/six-9999.ebuild +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 ) - -inherit distutils-r1 mercurial - -DESCRIPTION="Python 2 and 3 compatibility library" -HOMEPAGE="https://bitbucket.org/gutworth/six https://pypi.python.org/pypi/six" -SRC_URI="" -EHG_REPO_URI="https://bitbucket.org/gutworth/six" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="" -IUSE="doc test" - -DEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx ) - test? ( >=dev-python/pytest-2.2.0[${PYTHON_USEDEP}] )" - -python_compile_all() { - use doc && emake -C documentation html -} - -python_test() { - py.test -v || die "Testing failed with ${EPYTHON}" -} - -python_install_all() { - use doc && local HTML_DOCS=( documentation/_build/html/ ) - distutils-r1_python_install_all -}