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/transitions/
Date: Wed, 07 Apr 2021 23:11:34
Message-Id: 1617837082.87b54613f00ee435b3a4dce17eebcb1ca350c985.mgorny@gentoo
1 commit: 87b54613f00ee435b3a4dce17eebcb1ca350c985
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 7 22:40:14 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 7 23:11:22 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87b54613
7
8 dev-python/transitions: Bump to 0.8.8
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/transitions/Manifest | 1 +
13 dev-python/transitions/transitions-0.8.8.ebuild | 41 +++++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-python/transitions/Manifest b/dev-python/transitions/Manifest
17 index 7ce3d7c5404..3fb55b6ed30 100644
18 --- a/dev-python/transitions/Manifest
19 +++ b/dev-python/transitions/Manifest
20 @@ -1 +1,2 @@
21 DIST transitions-0.8.7.tar.gz 1094059 BLAKE2B f8a524751567e450818e8e1219af661661985ead8014a060fcde2af5b7c16b3d2d87140804a85cb92d003682aa237de81865336f011f0b46805ba3d2839cf415 SHA512 0a7300a38facf46fe999f53114dc42040ee6aa423f08e378727d0e083a543d1246cb83ca08a861d4e598560e55124905808649e25e57a6002bd12992ba91dc8d
22 +DIST transitions-0.8.8.tar.gz 1100609 BLAKE2B 18ebbb1d45e33e7933208b043b56dca40e8dcda936ffc2af4c38ad9325f3e19c0d3c9a35e4d728be05b97feb47eb922fd48317018761bc5c3243887d2f077e33 SHA512 ff6c039ed5ce9fe484c3469d2aee791010a99af7a9bc8777842f1514d7eca3fd7714694240cb57839754367c58228d59b41a88f12c2b7d75353f75e63768160d
23
24 diff --git a/dev-python/transitions/transitions-0.8.8.ebuild b/dev-python/transitions/transitions-0.8.8.ebuild
25 new file mode 100644
26 index 00000000000..baacbad3ee0
27 --- /dev/null
28 +++ b/dev-python/transitions/transitions-0.8.8.ebuild
29 @@ -0,0 +1,41 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +PYTHON_COMPAT=( python3_{7..9} )
36 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="A lightweight, object-oriented state machine implementation in Python"
40 +HOMEPAGE="https://github.com/pytransitions/transitions"
41 +SRC_URI="https://github.com/pytransitions/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 +
43 +LICENSE="MIT"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +IUSE="examples"
47 +
48 +RDEPEND="
49 + || (
50 + dev-python/pygraphviz[${PYTHON_USEDEP}]
51 + dev-python/graphviz[${PYTHON_USEDEP}]
52 + )
53 + dev-python/six[${PYTHON_USEDEP}]
54 +"
55 +
56 +DEPEND="
57 + test? (
58 + dev-python/dill[${PYTHON_USEDEP}]
59 + dev-python/mock[${PYTHON_USEDEP}]
60 + dev-python/pycodestyle[${PYTHON_USEDEP}]
61 + )
62 +"
63 +
64 +distutils_enable_tests pytest
65 +
66 +src_install() {
67 + distutils-r1_src_install
68 +
69 + use examples && dodoc examples/*.ipynb
70 +}