Gentoo Archives: gentoo-commits

From: Alex Brandt <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/radon/
Date: Sun, 27 Mar 2016 14:06:40
Message-Id: 1459087569.ef6d4e99d8eaf1549d46b9608f280d073466bb17.alunduil@gentoo
1 commit: ef6d4e99d8eaf1549d46b9608f280d073466bb17
2 Author: Alex Brandt <alunduil <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 27 14:06:09 2016 +0000
4 Commit: Alex Brandt <alunduil <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 27 14:06:09 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef6d4e99
7
8 dev-python/radon: remove version 1.2
9
10 Package-Manager: portage-2.2.28
11
12 dev-python/radon/Manifest | 1 -
13 dev-python/radon/radon-1.2.ebuild | 47 ---------------------------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/dev-python/radon/Manifest b/dev-python/radon/Manifest
17 index 6b09e86..6be972d 100644
18 --- a/dev-python/radon/Manifest
19 +++ b/dev-python/radon/Manifest
20 @@ -1,4 +1,3 @@
21 DIST radon-1.2.1.tar.gz 1633366 SHA256 bacc94a4a5c1a3e9410944e8e4e0f0aaf7dcf066c9b35bd92ac8eba5d47429fa SHA512 5676695344b7cf574abd9079ee3856debdf3ac4bda4a1c52e00406e2bbb71ad74f320f43638887e30db073fd623070a97fc44c031eec13588e953b33b549e2bf WHIRLPOOL 2ab535d0fe0b56b538dbe389b68e522468611f25c797c69343f4da700ae6129dc725051998238f0f136c45382f29887cdccc899aeaab000796f22a9962d40505
22 DIST radon-1.2.2.tar.gz 3468244 SHA256 3cab798af062632ad275092c537e409f8948c19034e98d3ab243ce455b4eee9d SHA512 2bd424ca81fd55d1bf444e7b2a228bd11ee23a7f77cad488fa45e8ce888282373f1729f7f00ca2f19838e10bbc1dabb1602f5bbac396702b52309a60671ef0a7 WHIRLPOOL 46e549bd9d29cd7d54a4e9746ea67f541919fdb90769f1cb3b70b51420b85bacac024b6bc0c16f25f4257652f76d750892bf2eefb146ea0ae76ef7718de11781
23 -DIST radon-1.2.tar.gz 1604458 SHA256 289ee3c5ef9e55fb159d589f5c0b20c2ce4f5aaa94502fe7c1d1a5fd444957c7 SHA512 9fe3a505d83b7c69a9adc98247063e91aed9f52187f2d33356a586dcf498492fb5acd283725dc9acd0f03dd1365cc3113925f027f0d0d94a94258b7ac217b62e WHIRLPOOL 5a613cce315feef10392a8fa8a7c2bc050fc35e8ee09b2d4b1afc9b72bae2887ed1d71a206fb1e9415548d554bc74bf52e8e0cc71eadd4be1d6791cb87eb96d7
24 DIST radon-1.3.1.tar.gz 3472429 SHA256 292afbb0e4e489d0b52ea6ce6e34008f2c62e359969d9ef5967ffbd18ae210ba SHA512 21088696f29479ae188064ee3864ae8fdee3687b322f2b60ea8deeafca93e582b37b739e2251da6cd47c18a67fbb527acb6293233652dc8993224ba7cc471d8c WHIRLPOOL 32806fd18bfd5f26148cc78f412179c4f5395d4af1548a61851b957d89eddaef466fff220231fbb17c3f41e0be15cb4a3d9196af67811edadf2b0b67e0f28ee6
25
26 diff --git a/dev-python/radon/radon-1.2.ebuild b/dev-python/radon/radon-1.2.ebuild
27 deleted file mode 100644
28 index fb47f75..0000000
29 --- a/dev-python/radon/radon-1.2.ebuild
30 +++ /dev/null
31 @@ -1,47 +0,0 @@
32 -# Copyright 1999-2015 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -# $Id$
35 -
36 -EAPI=5
37 -PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
38 -
39 -inherit distutils-r1 vcs-snapshot
40 -
41 -DESCRIPTION="Code Metrics in Python"
42 -HOMEPAGE="https://radon.readthedocs.org/"
43 -SRC_URI="https://github.com/rubik/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="~amd64"
48 -IUSE="doc test"
49 -
50 -CDEPEND="
51 - dev-python/mando[${PYTHON_USEDEP}]
52 - dev-python/colorama[${PYTHON_USEDEP}]
53 -"
54 -DEPEND="
55 - dev-python/setuptools[${PYTHON_USEDEP}]
56 - ${CDEPEND}
57 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
58 - test? (
59 - dev-python/nose[${PYTHON_USEDEP}]
60 - dev-python/mock[${PYTHON_USEDEP}]
61 - dev-python/paramunittest[${PYTHON_USEDEP}]
62 - )
63 -"
64 -RDEPEND="${CDEPEND}"
65 -
66 -python_compile_all() {
67 - use doc && emake -C docs html
68 -}
69 -
70 -python_test() {
71 - "${PYTHON}" radon/tests/run.py || die "tests failed to run under ${EPYTHON}"
72 -}
73 -
74 -python_install_all() {
75 - use doc && local HTML_DOCS=( docs/_build/html/. )
76 -
77 - distutils-r1_python_install_all
78 -}