Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/enaml/
Date: Tue, 02 May 2017 09:48:47
Message-Id: 1493718479.7c5cce68be48397ce67c810cc04f39326b3a70c1.mgorny@gentoo
1 commit: 7c5cce68be48397ce67c810cc04f39326b3a70c1
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 2 09:06:04 2017 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue May 2 09:47:59 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c5cce68
7
8 dev-python/enaml: Clean old versions up
9
10 dev-python/enaml/Manifest | 1 -
11 dev-python/enaml/enaml-0.6.8-r1.ebuild | 56 ----------------------------------
12 2 files changed, 57 deletions(-)
13
14 diff --git a/dev-python/enaml/Manifest b/dev-python/enaml/Manifest
15 index 480e0f8de1d..03fa00865f5 100644
16 --- a/dev-python/enaml/Manifest
17 +++ b/dev-python/enaml/Manifest
18 @@ -1,2 +1 @@
19 -DIST enaml-0.6.8.tar.gz 4550240 SHA256 e0f3f5775bfd471b9ca748a547cde1b9b129e0e43f1b6adbcde6fcdcbbb18a9f SHA512 8942ae1f44aee97acc1813e684534ce982fcc48090a9295e95c56a8bbc2063a94c2561ff0752cb5ff9f1f08b7ebaa44bb3b16ea78cbb0821efdcb56f3cf72446 WHIRLPOOL d1d912cb62f3b33c848d89ed9e8f2bb4e03d5f9732903f7bd8180ed58cbf80993600b629e7753909c4d599db74d1d369a59b5dc568e2cb46773e579914e213bc
20 DIST enaml-0.9.8.tar.gz 1455642 SHA256 c646f12dc7928555f2f24a10706c0d668b11a5e63e4b878dcb267247bf22a1d5 SHA512 e9b88d1fbb9e82564d3a865f74685b1b1f8b8918e29dd4d7ce7d6b4b2e6d386c6388e99f9bf0adb02fb9277a57519f8502a33bd6e0548fd1a4d52d0a4b33cf02 WHIRLPOOL f9c6874f7fec569acdbf74c5cdd24c6189506980ca65028c3ea53ed076338a5edea6b19d018d19b8662385b058d9c96c7e36239a1f86d8c1cdcada559f49bfd8
21
22 diff --git a/dev-python/enaml/enaml-0.6.8-r1.ebuild b/dev-python/enaml/enaml-0.6.8-r1.ebuild
23 deleted file mode 100644
24 index 7cbe391666d..00000000000
25 --- a/dev-python/enaml/enaml-0.6.8-r1.ebuild
26 +++ /dev/null
27 @@ -1,56 +0,0 @@
28 -# Copyright 1999-2015 Gentoo Foundation
29 -# Distributed under the terms of the GNU General Public License v2
30 -
31 -EAPI=5
32 -
33 -PYTHON_COMPAT=( python2_7 )
34 -
35 -inherit distutils-r1 virtualx
36 -
37 -DESCRIPTION="Enthought Tool Suite: framework for writing declarative interfaces"
38 -HOMEPAGE="http://code.enthought.com/projects/enaml/ https://pypi.python.org/pypi/enaml"
39 -SRC_URI="http://www.enthought.com/repo/ets/${P}.tar.gz"
40 -
41 -LICENSE="BSD"
42 -SLOT="0"
43 -KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
44 -IUSE="doc examples test"
45 -
46 -RDEPEND="
47 - dev-python/casuarius[${PYTHON_USEDEP}]
48 - dev-python/ply[${PYTHON_USEDEP}]
49 - dev-python/traits[${PYTHON_USEDEP}]
50 - || (
51 - dev-python/wxpython:*[${PYTHON_USEDEP}] \
52 - dev-python/PyQt4[${PYTHON_USEDEP}] \
53 - dev-python/pyside[${PYTHON_USEDEP}] )"
54 -
55 -DEPEND="${RDEPEND}
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
58 - test? ( dev-python/python-dateutil[${PYTHON_USEDEP}]
59 - dev-python/wxpython[${PYTHON_USEDEP}]
60 - dev-python/python-dateutil[${PYTHON_USEDEP}]
61 - dev-python/pyside[${PYTHON_USEDEP}]
62 - dev-python/nose[${PYTHON_USEDEP}] )"
63 -
64 -python_prepare_all() {
65 - # crash doc and gone upstream (> 0.2.0)
66 - sed -i -e '/enthought.debug.api/d' enamldoc/sphinx_ext.py || die
67 -}
68 -
69 -python_compile_all() {
70 - use doc && emake -C docs html
71 -}
72 -
73 -python_test() {
74 - export ETS_TOOLKIT=qt4
75 - export QT_API=pyside
76 - VIRTUALX_COMMAND="nosetests -v" virtualmake
77 -}
78 -
79 -python_install_all() {
80 - use doc && local HTML_DOCS=( docs/build/html/. )
81 - use examples && local EXAMPLES=( examples/. )
82 - distutils-r1_python_install_all
83 -}