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: Thu, 04 Nov 2021 11:03:03
Message-Id: 1636023523.9e47a04828098e744d296eb7bcc1547f80162242.conikost@gentoo
1 commit: 9e47a04828098e744d296eb7bcc1547f80162242
2 Author: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
3 AuthorDate: Thu Nov 4 10:58:43 2021 +0000
4 Commit: Conrad Kostecki <conikost <AT> gentoo <DOT> org>
5 CommitDate: Thu Nov 4 10:58:43 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e47a048
7
8 dev-python/transitions: drop old version
9
10 Package-Manager: Portage-3.0.28, Repoman-3.0.3
11 Signed-off-by: Conrad Kostecki <conikost <AT> gentoo.org>
12
13 dev-python/transitions/Manifest | 1 -
14 dev-python/transitions/transitions-0.8.9.ebuild | 39 -------------------------
15 2 files changed, 40 deletions(-)
16
17 diff --git a/dev-python/transitions/Manifest b/dev-python/transitions/Manifest
18 index 79f0df6d6a0..d1aef386cd0 100644
19 --- a/dev-python/transitions/Manifest
20 +++ b/dev-python/transitions/Manifest
21 @@ -1,2 +1 @@
22 DIST transitions-0.8.10.tar.gz 1103547 BLAKE2B caeeb97406d1d2ba926f5ff14c4961acb7c2b9b979a1a20614e1017e4b20a664b069f384cfe878df95dffe832f00cfeb4c0ce96efe2156cc858e14eba5746137 SHA512 a598d65431a2d0241b5ea4c806631edf2e1f06537224e8716d531e86bcb10817d1cf32a62672147d1c1b398fd755a9ef046d884dcd0b4de6a9f8c1bfd04af62a
23 -DIST transitions-0.8.9.tar.gz 1103063 BLAKE2B 2f640ee9882817e1e8fbadcbdc726eff7bfd67f9aafd8afd5aecf2b7ee88e8fe7ae57345515235b74787a9ccff2f19062c90b9a5a70d0bf58dec4b9838ad0e0b SHA512 139a84658d422468fcd0c3ed501b608edeef12c15f2b6969eabb75f02d146c9f4a6857ebb0fc333cb9b51a985666cfd4879ccc89d9fb25e0f1f756c92094c941
24
25 diff --git a/dev-python/transitions/transitions-0.8.9.ebuild b/dev-python/transitions/transitions-0.8.9.ebuild
26 deleted file mode 100644
27 index ae88c5e1102..00000000000
28 --- a/dev-python/transitions/transitions-0.8.9.ebuild
29 +++ /dev/null
30 @@ -1,39 +0,0 @@
31 -# Copyright 1999-2021 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=8
35 -
36 -PYTHON_COMPAT=( python3_{8..10} )
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 -BDEPEND="
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 - use examples && dodoc examples/*.ipynb
69 -}