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/statsd/
Date: Sun, 06 Nov 2022 06:11:54
Message-Id: 1667715108.7255ac2936c87f1cbfff907c5a5eb6bd505503af.mgorny@gentoo
1 commit: 7255ac2936c87f1cbfff907c5a5eb6bd505503af
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 6 06:11:17 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 6 06:11:48 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7255ac29
7
8 dev-python/statsd: Bump to 4.0.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/statsd/Manifest | 1 +
13 dev-python/statsd/statsd-4.0.0.ebuild | 26 ++++++++++++++++++++++++++
14 2 files changed, 27 insertions(+)
15
16 diff --git a/dev-python/statsd/Manifest b/dev-python/statsd/Manifest
17 index 843b002b0208..2d6c5526e7af 100644
18 --- a/dev-python/statsd/Manifest
19 +++ b/dev-python/statsd/Manifest
20 @@ -1 +1,2 @@
21 DIST statsd-3.3.0.tar.gz 259045 BLAKE2B 015eb32d40d1eb45d64266f0bd62d9496a7eb8815dccf4ad482bb3b81b45fceef14a25893b05ad3b5a8da8582434a46725598a90ebd06c6120dac32169a1f201 SHA512 e2693bc7f179e275c53044d13a4685dd72ebd47adafcab5064e803fbf9e8df4a0f20f61c3695846d3c33178be17dd7286f487213fa2bd8545ed1612e200c8f36
22 +DIST statsd-4.0.0.tar.gz 27793 BLAKE2B 9ba08458ecfaa9f5cf3a981eee06abec72b9d8c3a49869ae67be0863799f1198dd915c3b351d5f75404d649a832af17fe1f60346e47863f238dd65ed4a96a9f2 SHA512 e4bc232b755ba439a5401edca2b9d5f1b66b04b6ee20c46ab8da8c38a718437e1010809bae4479da8cda8323e40203cc3b9952a40df187bf1c73fd2ffdf3da8d
23
24 diff --git a/dev-python/statsd/statsd-4.0.0.ebuild b/dev-python/statsd/statsd-4.0.0.ebuild
25 new file mode 100644
26 index 000000000000..b92830f6e6a2
27 --- /dev/null
28 +++ b/dev-python/statsd/statsd-4.0.0.ebuild
29 @@ -0,0 +1,26 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..11} pypy3 )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="A simple statsd client"
41 +HOMEPAGE="
42 + https://github.com/jsocol/pystatsd/
43 + https://pypi.org/project/statsd/
44 +"
45 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
46 +
47 +LICENSE="MIT"
48 +SLOT="0"
49 +KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
50 +
51 +distutils_enable_tests pytest
52 +
53 +python_test() {
54 + epytest statsd/tests.py
55 +}