Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/transitions/
Date: Tue, 24 Sep 2019 05:01:18
Message-Id: 1569301238.e53c42c51207964902efa915bd89d7734061a521.juippis@gentoo
1 commit: e53c42c51207964902efa915bd89d7734061a521
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Mon Sep 23 20:52:35 2019 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 24 05:00:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e53c42c5
7
8 dev-python/transitions: drop old version
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.17
11 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
12 Closes: https://github.com/gentoo/gentoo/pull/12998
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 dev-python/transitions/Manifest | 1 -
16 dev-python/transitions/transitions-0.6.9.ebuild | 46 -------------------------
17 2 files changed, 47 deletions(-)
18
19 diff --git a/dev-python/transitions/Manifest b/dev-python/transitions/Manifest
20 index 0a84b5eebbf..1e38264ce1b 100644
21 --- a/dev-python/transitions/Manifest
22 +++ b/dev-python/transitions/Manifest
23 @@ -1,2 +1 @@
24 -DIST transitions-0.6.9.tar.gz 1354465 BLAKE2B bb536c1209c08717b29d5d60e4b31253b1f5bc759b7693a3ef82d4894cd55bc8a2dd3417e03ba5232d35de060c73cef664994c44c8f14be9ed0743170e7c1c09 SHA512 8104d98795c4212e40ba8274332e2e87336421e61a4398c58907a675708cddc7d3b77bbcada1e2cc16fd9dd518c94f07c2079cf0507b8647a435435151f5eb51
25 DIST transitions-0.7.1.tar.gz 1283833 BLAKE2B 5f2f2813ba158cf5ccac4e2d55700149b986bdd24f9e864cec8d03390724cf79d9d379afa06b1a7b56c6a91376410252fdda169024f6ebbba2ed976fe7a18e7b SHA512 3fe5989faf9dbfdc15d50beaf2656240317f00278727271e5bd64ad465be1640b67e760fb73f4b06a61920343215815a8be03d41dc4d32086222446463ef71d7
26
27 diff --git a/dev-python/transitions/transitions-0.6.9.ebuild b/dev-python/transitions/transitions-0.6.9.ebuild
28 deleted file mode 100644
29 index 65a89daacac..00000000000
30 --- a/dev-python/transitions/transitions-0.6.9.ebuild
31 +++ /dev/null
32 @@ -1,46 +0,0 @@
33 -# Copyright 1999-2019 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
39 -
40 -inherit distutils-r1
41 -
42 -DESCRIPTION="A lightweight, object-oriented state machine implementation in Python"
43 -HOMEPAGE="https://github.com/pytransitions/transitions"
44 -SRC_URI="https://github.com/pytransitions/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="MIT"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~x86"
49 -IUSE="examples test"
50 -
51 -RESTRICT="!test? ( test )"
52 -
53 -RDEPEND="
54 - dev-python/pygraphviz[${PYTHON_USEDEP}]
55 - dev-python/six[${PYTHON_USEDEP}]
56 -"
57 -
58 -DEPEND="
59 - ${RDEPEND}
60 - test? (
61 - dev-python/pycodestyle[${PYTHON_USEDEP}]
62 - dev-python/dill[${PYTHON_USEDEP}]
63 - dev-python/mock[${PYTHON_USEDEP}]
64 - dev-python/nose[${PYTHON_USEDEP}]
65 - )
66 -"
67 -
68 -BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
69 -
70 -python_test() {
71 - esetup.py test
72 -}
73 -
74 -src_install() {
75 - distutils-r1_src_install
76 -
77 - use examples && dodoc examples/*.ipynb
78 -}