From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 360381382C5 for ; Thu, 4 Mar 2021 11:48:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4F1A3E0877; Thu, 4 Mar 2021 11:48:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2B1ABE0877 for ; Thu, 4 Mar 2021 11:48:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DB48C340F0E for ; Thu, 4 Mar 2021 11:48:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6274B573 for ; Thu, 4 Mar 2021 11:48:51 +0000 (UTC) From: "Alexys Jacob" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexys Jacob" Message-ID: <1614858497.9afb35cc396986db14534a949fdbc03e6818bdf6.ultrabug@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/matterhook/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/matterhook/matterhook-0.2-r1.ebuild X-VCS-Directories: dev-python/matterhook/ X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: 9afb35cc396986db14534a949fdbc03e6818bdf6 X-VCS-Branch: master Date: Thu, 4 Mar 2021 11:48:51 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6bb95749-7099-478a-a7cc-432ce977af43 X-Archives-Hash: 8e0317ead0fb7f0ff92af34d5dffa1ae commit: 9afb35cc396986db14534a949fdbc03e6818bdf6 Author: Alexys Jacob gentoo org> AuthorDate: Thu Mar 4 11:48:17 2021 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Thu Mar 4 11:48:17 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9afb35cc dev-python/matterhook: bump to support python3.9 Package-Manager: Portage-3.0.14, Repoman-3.0.2 Signed-off-by: Alexys Jacob gentoo.org> dev-python/matterhook/matterhook-0.2-r1.ebuild | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/dev-python/matterhook/matterhook-0.2-r1.ebuild b/dev-python/matterhook/matterhook-0.2-r1.ebuild new file mode 100644 index 00000000000..c892d85008a --- /dev/null +++ b/dev-python/matterhook/matterhook-0.2-r1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{7,8,9} ) + +inherit distutils-r1 + +DESCRIPTION="Interact with Mattermost incoming webhooks easily" +HOMEPAGE="https://github.com/numberly/matterhook" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/requests[${PYTHON_USEDEP}]" + +DEPEND=" + ${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]"