Gentoo Archives: gentoo-commits

From: Mike Gilbert <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/six/
Date: Wed, 27 Jan 2016 04:18:02
Message-Id: 1453868235.0b734d0a83e1ca2490e44e7ccd5a363ba1410b9f.floppym@gentoo
1 commit: 0b734d0a83e1ca2490e44e7ccd5a363ba1410b9f
2 Author: Mike Gilbert <floppym <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 27 04:17:04 2016 +0000
4 Commit: Mike Gilbert <floppym <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 27 04:17:15 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b734d0a
7
8 dev-python/six: Drop the live ebuild
9
10 Package-Manager: portage-2.2.27_p49
11
12 dev-python/six/six-9999.ebuild | 37 -------------------------------------
13 1 file changed, 37 deletions(-)
14
15 diff --git a/dev-python/six/six-9999.ebuild b/dev-python/six/six-9999.ebuild
16 deleted file mode 100644
17 index 1807e5e..0000000
18 --- a/dev-python/six/six-9999.ebuild
19 +++ /dev/null
20 @@ -1,37 +0,0 @@
21 -# Copyright 1999-2015 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -PYTHON_COMPAT=( python2_7 python3_{3,4} pypy pypy3 )
28 -
29 -inherit distutils-r1 mercurial
30 -
31 -DESCRIPTION="Python 2 and 3 compatibility library"
32 -HOMEPAGE="https://bitbucket.org/gutworth/six https://pypi.python.org/pypi/six"
33 -SRC_URI=""
34 -EHG_REPO_URI="https://bitbucket.org/gutworth/six"
35 -
36 -LICENSE="MIT"
37 -SLOT="0"
38 -KEYWORDS=""
39 -IUSE="doc test"
40 -
41 -DEPEND="
42 - dev-python/setuptools[${PYTHON_USEDEP}]
43 - doc? ( dev-python/sphinx )
44 - test? ( >=dev-python/pytest-2.2.0[${PYTHON_USEDEP}] )"
45 -
46 -python_compile_all() {
47 - use doc && emake -C documentation html
48 -}
49 -
50 -python_test() {
51 - py.test -v || die "Testing failed with ${EPYTHON}"
52 -}
53 -
54 -python_install_all() {
55 - use doc && local HTML_DOCS=( documentation/_build/html/ )
56 - distutils-r1_python_install_all
57 -}