Gentoo Archives: gentoo-commits

From: Alexys Jacob <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/matterhook/
Date: Sun, 10 May 2020 20:51:02
Message-Id: 1589143824.4a890910ceb0e96232fe6edfa2f50abb3dfd4335.ultrabug@gentoo
1 commit: 4a890910ceb0e96232fe6edfa2f50abb3dfd4335
2 Author: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
3 AuthorDate: Sun May 10 20:49:42 2020 +0000
4 Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
5 CommitDate: Sun May 10 20:50:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a890910
7
8 dev-python/matterhook: add py3.7, 3.8 fix #719094
9
10 Package-Manager: Portage-2.3.89, Repoman-2.3.20
11 Signed-off-by: Alexys Jacob <ultrabug <AT> gentoo.org>
12
13 dev-python/matterhook/matterhook-0.1-r1.ebuild | 22 ++++++++++++++++++++++
14 1 file changed, 22 insertions(+)
15
16 diff --git a/dev-python/matterhook/matterhook-0.1-r1.ebuild b/dev-python/matterhook/matterhook-0.1-r1.ebuild
17 new file mode 100644
18 index 00000000000..0a9016cec09
19 --- /dev/null
20 +++ b/dev-python/matterhook/matterhook-0.1-r1.ebuild
21 @@ -0,0 +1,22 @@
22 +# Copyright 1999-2020 Gentoo Authors
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +PYTHON_COMPAT=( python3_{6,7,8} )
28 +
29 +inherit distutils-r1
30 +
31 +DESCRIPTION="Interact with Mattermost incoming webhooks easily"
32 +HOMEPAGE="https://github.com/numberly/matterhook"
33 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 +
35 +LICENSE="MIT"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~x86"
38 +
39 +RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
40 +
41 +DEPEND="
42 + ${RDEPEND}
43 + dev-python/setuptools[${PYTHON_USEDEP}]"