Gentoo Archives: gentoo-commits

From: Matthew Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/yappi/
Date: Tue, 09 Apr 2019 07:06:08
Message-Id: 1554793526.1c6294c94161a983b14a00cbd478986f94713fc3.prometheanfire@gentoo
1 commit: 1c6294c94161a983b14a00cbd478986f94713fc3
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 9 06:28:10 2019 +0000
4 Commit: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 9 07:05:26 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c6294c9
7
8 dev-python/yappi: 1.0 bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Matthew Thode <prometheanfire <AT> gentoo.org>
12
13 dev-python/yappi/Manifest | 1 +
14 dev-python/yappi/yappi-1.0.ebuild | 23 +++++++++++++++++++++++
15 2 files changed, 24 insertions(+)
16
17 diff --git a/dev-python/yappi/Manifest b/dev-python/yappi/Manifest
18 index e0f44729c7d..7f521d1616c 100644
19 --- a/dev-python/yappi/Manifest
20 +++ b/dev-python/yappi/Manifest
21 @@ -1 +1,2 @@
22 DIST yappi-0.98.tar.gz 37074 BLAKE2B 3a2c60f7c5987681f242230fc4fa0b87f924c0d1dbaedd3c240d30e6c440e2604e7add789cfd37052301a1f0ab99c81e2de30249fd6c83d5ba00624e131d266a SHA512 699e1845aac8e3c701c495913862597240b264c396b0b6ad0e9d6d533138caaeb883baeb036dc7b57bddf02ba411475401b2db77527d2ee63409d73b80f32098
23 +DIST yappi-1.0.tar.gz 38939 BLAKE2B b07b38bc07ffb6ba7aea3728ba6977680ca7f2dcc499778110aa31e733c512e5704cd580d01faf3344849df6772f110472a01328447228e9c45180beefc36f3e SHA512 d743c471ee3797b9f3b24c831fcb4ddf2cec7c13c56e567c0618eeada9a534ca0b114929da623a2c67142c61f3c38b024b25ba5e32883113148f4377f7574905
24
25 diff --git a/dev-python/yappi/yappi-1.0.ebuild b/dev-python/yappi/yappi-1.0.ebuild
26 new file mode 100644
27 index 00000000000..1c9e69e1669
28 --- /dev/null
29 +++ b/dev-python/yappi/yappi-1.0.ebuild
30 @@ -0,0 +1,23 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +PYTHON_COMPAT=(python{2_7,3_{4,5,6,7}})
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="Yet Another Python Profiler"
39 +HOMEPAGE="https://bitbucket.org/sumerc/yappi/"
40 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm64 ~x86"
45 +IUSE="test"
46 +
47 +RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
48 +DEPEND="${RDEPEND}
49 + test? ( dev-python/nose[${PYTHON_USEDEP}] )"
50 +
51 +python_test() {
52 + esetup.py test
53 +}