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/pykka/
Date: Fri, 08 Oct 2021 19:47:32
Message-Id: 1633722443.d1f2d8864c8dc3bb6bb8571942b9f75a6dd38954.mgorny@gentoo
1 commit: d1f2d8864c8dc3bb6bb8571942b9f75a6dd38954
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Oct 8 19:24:18 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Oct 8 19:47:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1f2d886
7
8 dev-python/pykka: Bump to 3.0.2
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pykka/Manifest | 1 +
13 dev-python/pykka/pykka-3.0.2.ebuild | 28 ++++++++++++++++++++++++++++
14 2 files changed, 29 insertions(+)
15
16 diff --git a/dev-python/pykka/Manifest b/dev-python/pykka/Manifest
17 index 654c85f4ce3..0ae55af79da 100644
18 --- a/dev-python/pykka/Manifest
19 +++ b/dev-python/pykka/Manifest
20 @@ -1,3 +1,4 @@
21 DIST Pykka-2.0.2.tar.gz 51858 BLAKE2B 62132a3ded257d44d9504258418abc73ec9cc09353ab8e1948c9910fc11f67f770510b2dc7cf122db9af9ff62091757b648dce69cbdab0ffc17567169749d0d2 SHA512 98b2e6122dc5158da489265cf7cf9e358bfa432d0a0eaab9f50a07c0050083afb19aad494e4cd27347c376947eafb7d9796909c18e3648ef1bf0685bd6384e5b
22 DIST Pykka-2.0.3.tar.gz 55749 BLAKE2B 5da98dcc786c2bb7728485e16090b8dad7a96858aa86f024564286bb03d3faa93673ed3db87882e3dc6555a5b64c9c62433ab782ceb94e89965fa870bbb78d2f SHA512 0f4d6d9e0c92a7e7cafb340f343afa1e78bcefdd0454341d3f457fa202acdd3de979881689cb3cd5f2cbd3a08f80177f6470db4fb895b20d9c1b4d0b9ef627ee
23 DIST pykka-3.0.1.gh.tar.gz 59252 BLAKE2B fd0ca0742f3c372a5983d01929b34587390929fae28b70e0ee939f651f7655bb924ae08fac039225a8040c9bf523177af7bf3fa7c1db6ea1f04ec460cc3a1c6a SHA512 c96503019a190663cd4054c2488668143ff5d0d92b0c2d1ab3df577ab9fc9f0f2f575677a9f955a7b940e725d588c0caa6097515f1236df9a453fb3b0a2cb8c8
24 +DIST pykka-3.0.2.gh.tar.gz 44440 BLAKE2B 8649e4b5134d902a459cd7f43ced59fb88bf6e9f7435aaf89a3c68fd349b941eea8154703107611a027c39b9eaca374d39497dd4f0dea72a1edfc4df99153539 SHA512 0e10366739839d792ac8866b2dc5f7a2d352b04f896ffa1c1922b215e8907f6fb9300ec955d5ed5f8c19d0714720b7f20569177cd1a9f2c98fbd27e42a9bd3f5
25
26 diff --git a/dev-python/pykka/pykka-3.0.2.ebuild b/dev-python/pykka/pykka-3.0.2.ebuild
27 new file mode 100644
28 index 00000000000..c2c6981f6e7
29 --- /dev/null
30 +++ b/dev-python/pykka/pykka-3.0.2.ebuild
31 @@ -0,0 +1,28 @@
32 +# Copyright 1999-2021 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +DISTUTILS_USE_SETUPTOOLS=pyproject.toml
38 +PYTHON_COMPAT=( python3_{8..10} )
39 +
40 +inherit distutils-r1
41 +
42 +DESCRIPTION="A Python implementation of the actor model"
43 +HOMEPAGE="
44 + https://www.pykka.org/en/latest/
45 + https://github.com/jodal/pykka/"
46 +SRC_URI="
47 + https://github.com/jodal/pykka/archive/v${PV}.tar.gz
48 + -> ${P}.gh.tar.gz"
49 +
50 +LICENSE="Apache-2.0"
51 +SLOT="0"
52 +KEYWORDS="~amd64"
53 +
54 +BDEPEND="
55 + test? (
56 + dev-python/pytest-mock[${PYTHON_USEDEP}]
57 + )"
58 +
59 +distutils_enable_tests pytest