Gentoo Archives: gentoo-commits

From: Viorel Munteanu <ceamac.paragon@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/guru:dev commit in: dev-python/stone/
Date: Thu, 27 Jan 2022 13:42:54
Message-Id: 1643290945.1c2ca44d53ae9e56fb49284842b975ff4d089e4f.viorel_munteanu@gentoo
1 commit: 1c2ca44d53ae9e56fb49284842b975ff4d089e4f
2 Author: Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
3 AuthorDate: Thu Jan 27 13:41:10 2022 +0000
4 Commit: Viorel Munteanu <ceamac.paragon <AT> gmail <DOT> com>
5 CommitDate: Thu Jan 27 13:42:25 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1c2ca44d
7
8 dev-python/stone: add 3.3.1
9
10 Signed-off-by: Viorel Munteanu <ceamac.paragon <AT> gmail.com>
11
12 dev-python/stone/Manifest | 1 +
13 dev-python/stone/stone-3.3.1.ebuild | 34 ++++++++++++++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/dev-python/stone/Manifest b/dev-python/stone/Manifest
17 index 34da4bbdb..e2d3ffe41 100644
18 --- a/dev-python/stone/Manifest
19 +++ b/dev-python/stone/Manifest
20 @@ -1 +1,2 @@
21 DIST stone-3.2.1.tar.gz 280856 BLAKE2B 496d235c9afa4723d2e705425c243ffcae1550cf1b9cb1950a72401b61b064fa0922e0a3fa4c3ff0bdbcb483872054024b1ceb8ea4d8ff320309d2d7f05b4f81 SHA512 446ad0aefd839795b66d65e18c54d79e91f3927558167631f26a35d749ccb433c587e33a15c1dca4dbfe4320c062fc4e09d5cd3c5d4a60465b208ed553649b74
22 +DIST stone-3.3.1.tar.gz 282831 BLAKE2B b9a866e43feedea28cd33b89f78100be520a2756fa78888e9a786ae27942a5c19df51010c0af952de70c782d3fc3588de1ae0f58450d807053989bb91d285f15 SHA512 ee07f01b6f10e771afbe6ca6f07d7efa24a5460e5c163f339ae84a8b7742a659f5cb535e674a2f315d1bfa95b7c02e56f46db1f397188b5b6705f6c00c1e9d73
23
24 diff --git a/dev-python/stone/stone-3.3.1.ebuild b/dev-python/stone/stone-3.3.1.ebuild
25 new file mode 100644
26 index 000000000..a02a6f116
27 --- /dev/null
28 +++ b/dev-python/stone/stone-3.3.1.ebuild
29 @@ -0,0 +1,34 @@
30 +# Copyright 2021-2022 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 +
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="The Official Api Spec Language for Dropbox"
40 +HOMEPAGE="
41 + https://www.dropbox.com/developers
42 + https://github.com/dropbox/stone
43 + https://pypi.org/project/stone
44 +"
45 +SRC_URI="https://github.com/dropbox/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~x86"
50 +
51 +RDEPEND="
52 + >=dev-python/ply-3.4[${PYTHON_USEDEP}]
53 + >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
54 +"
55 +
56 +distutils_enable_tests pytest
57 +
58 +python_prepare_all() {
59 + # Don't run tests via setup.py pytest
60 + sed -i -e "/'pytest-runner .*',/d" setup.py || die
61 +
62 + distutils-r1_python_prepare_all
63 +}