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: Thu, 20 Aug 2020 10:57:40
Message-Id: 1597921045.077f198277177f9ebf6c682ce5fd8498152f1068.ultrabug@gentoo
1 commit: 077f198277177f9ebf6c682ce5fd8498152f1068
2 Author: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 20 10:57:25 2020 +0000
4 Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 20 10:57:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=077f1982
7
8 dev-python/matterhook: version bump
9
10 Package-Manager: Portage-3.0.2, Repoman-2.3.23
11 Signed-off-by: Alexys Jacob <ultrabug <AT> gentoo.org>
12
13 dev-python/matterhook/Manifest | 1 +
14 dev-python/matterhook/matterhook-0.2.ebuild | 22 ++++++++++++++++++++++
15 2 files changed, 23 insertions(+)
16
17 diff --git a/dev-python/matterhook/Manifest b/dev-python/matterhook/Manifest
18 index e3d38bb3f44..9f6ba1a33e0 100644
19 --- a/dev-python/matterhook/Manifest
20 +++ b/dev-python/matterhook/Manifest
21 @@ -1 +1,2 @@
22 DIST matterhook-0.1.tar.gz 3150 BLAKE2B 841b64875d3ecc55c5056a15e07e8c46ac13ec48f1fd2752ec0c3934608172c8970cc4ad6ce984e227bef811aaee9ca2fc352afbf4e4925a6930adf798edbdd3 SHA512 1c9d264fb80b7d6d746f8379c869903e80f0b4a134efb3ca571630fdbe53eb7b1ac244470f7c2f8229cfe54e7597594427e253f35f0b103fc4c4123a935c5193
23 +DIST matterhook-0.2.tar.gz 4458 BLAKE2B 83dae9d38eaa9de3abdca4925378475660ab6f9571565f9275425cb9579397c2f3d106735d4268b7045d6af2572bdb8e1f60aa89030b1fa44c4c5c1b19fcd106 SHA512 aa476a00a5b571c5c8bb21eccc5b1c325e0932da7e4f8095e3ad29356afd4716384abfa9e4927a820e6d1fcf8e62a516943f6372d90cd7a9e76d0292c352c483
24
25 diff --git a/dev-python/matterhook/matterhook-0.2.ebuild b/dev-python/matterhook/matterhook-0.2.ebuild
26 new file mode 100644
27 index 00000000000..0a9016cec09
28 --- /dev/null
29 +++ b/dev-python/matterhook/matterhook-0.2.ebuild
30 @@ -0,0 +1,22 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +PYTHON_COMPAT=( python3_{6,7,8} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Interact with Mattermost incoming webhooks easily"
41 +HOMEPAGE="https://github.com/numberly/matterhook"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +RDEPEND="dev-python/requests[${PYTHON_USEDEP}]"
49 +
50 +DEPEND="
51 + ${RDEPEND}
52 + dev-python/setuptools[${PYTHON_USEDEP}]"