Gentoo Archives: gentoo-commits

From: Conrad Kostecki <conikost@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/transitions/
Date: Fri, 29 Jan 2021 22:41:43
Message-Id: 1611960081.8300e62118cc80b306b4f9cc036de1ec3d8494b2.conikost@gentoo
1 commit: 8300e62118cc80b306b4f9cc036de1ec3d8494b2
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 29 22:40:01 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 29 22:41:21 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8300e621
7
8 dev-python/transitions: drop old version
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 dev-python/transitions/Manifest | 1 -
14 dev-python/transitions/transitions-0.8.2-r1.ebuild | 43 ----------------------
15 2 files changed, 44 deletions(-)
16
17 diff --git a/dev-python/transitions/Manifest b/dev-python/transitions/Manifest
18 index 1ede0c796f0..0d6050d3201 100644
19 --- a/dev-python/transitions/Manifest
20 +++ b/dev-python/transitions/Manifest
21 @@ -1,2 +1 @@
22 -DIST transitions-0.8.2.tar.gz 1084797 BLAKE2B 9ff6284e7c42365c5a169388057acffd53dd31c3ca6d9dee240b253ca34118a67d3f070fd8b6a86cb6a01a2e15023e0bad02ccc07813ee0855a54008ac3d7597 SHA512 d10e513806801d0c874be3eb59e92ad61584b5f7992ba26db8828848df1225fb806621abc118a8d43f2efaa353d988b5becbe4296bc054754e551c86495a540f
23 DIST transitions-0.8.6.tar.gz 1092437 BLAKE2B 14a8f50bb3ab34e5a6589c1ccc14482373fcbe670d64cd822ef483da10d5e19771bea28ce26690907862422a7687cacccb8c82f5f623ba34888e88dbf2601945 SHA512 9ada9075074a1201c0858786ea446e5dd36576e154238dccbebc2523da0bd46cb676e7eb4abf1102207b2e674d3214dd4869b3c51a6b9e9799c38bd6be8aedac
24
25 diff --git a/dev-python/transitions/transitions-0.8.2-r1.ebuild b/dev-python/transitions/transitions-0.8.2-r1.ebuild
26 deleted file mode 100644
27 index f97d135b41f..00000000000
28 --- a/dev-python/transitions/transitions-0.8.2-r1.ebuild
29 +++ /dev/null
30 @@ -1,43 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -
36 -DISTUTILS_USE_SETUPTOOLS="bdepend"
37 -PYTHON_COMPAT=( python3_{6..9} )
38 -
39 -inherit distutils-r1
40 -
41 -DESCRIPTION="A lightweight, object-oriented state machine implementation in Python"
42 -HOMEPAGE="https://github.com/pytransitions/transitions"
43 -SRC_URI="https://github.com/pytransitions/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
44 -
45 -LICENSE="MIT"
46 -SLOT="0"
47 -KEYWORDS="amd64 x86"
48 -IUSE="examples test"
49 -
50 -RESTRICT="!test? ( test )"
51 -
52 -RDEPEND="
53 - dev-python/graphviz[${PYTHON_USEDEP}]
54 - dev-python/six[${PYTHON_USEDEP}]
55 -"
56 -
57 -DEPEND="
58 - ${RDEPEND}
59 - test? (
60 - dev-python/dill[${PYTHON_USEDEP}]
61 - dev-python/mock[${PYTHON_USEDEP}]
62 - dev-python/nose[${PYTHON_USEDEP}]
63 - dev-python/pycodestyle[${PYTHON_USEDEP}]
64 - )
65 -"
66 -
67 -distutils_enable_tests pytest
68 -
69 -src_install() {
70 - distutils-r1_src_install
71 -
72 - use examples && dodoc examples/*.ipynb
73 -}