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