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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 2C319158087 for ; Mon, 1 Nov 2021 08:32:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 22641E0828; Mon, 1 Nov 2021 08:32:19 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 03015E0829 for ; Mon, 1 Nov 2021 08:32:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 28C30342D09 for ; Mon, 1 Nov 2021 08:32:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 53CEA132 for ; Mon, 1 Nov 2021 08:32:15 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1635755521.36fe2ee3054a982a967fc9dcb0cf5b9584662bf3.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/github3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/github3/Manifest dev-python/github3/github3-3.0.0.ebuild X-VCS-Directories: dev-python/github3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 36fe2ee3054a982a967fc9dcb0cf5b9584662bf3 X-VCS-Branch: master Date: Mon, 1 Nov 2021 08:32:15 +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: 1e5e62ad-208f-4cc8-a7c6-2cc17b03cda6 X-Archives-Hash: f40a5e4954a285652866edf0aca46737 commit: 36fe2ee3054a982a967fc9dcb0cf5b9584662bf3 Author: Michał Górny gentoo org> AuthorDate: Mon Nov 1 07:14:28 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon Nov 1 08:32:01 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36fe2ee3 dev-python/github3: Bump to 3.0.0 Signed-off-by: Michał Górny gentoo.org> dev-python/github3/Manifest | 1 + dev-python/github3/github3-3.0.0.ebuild | 34 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/dev-python/github3/Manifest b/dev-python/github3/Manifest index d32175823fe..88b6d3e2345 100644 --- a/dev-python/github3/Manifest +++ b/dev-python/github3/Manifest @@ -1 +1,2 @@ DIST github3-2.0.0.gh.tar.gz 35361555 BLAKE2B eafbabeb1557e55c27b268feaee4a0b49428ede7a419cb36163dc0437baa53a952b026971f07b30be2c33ed63d4c0b855369ee5260d4a3425e86dea101deea8c SHA512 92b044d0f0362c45773f8982043ab4e31cf180a955351fb9b035a8b2ed884330201d0cbb0e5f8f877c30cf6512f2e3864646a1bb1fe47e258a696720172d64b0 +DIST github3-3.0.0.gh.tar.gz 35410027 BLAKE2B d5da6c7a4612879646af7bfe82ac899c3894c0ecba9d6bf2d467ff497431ddabbbb342a5895d55bee56a03a6ea4b12bb989a903bdef31998da4382619810a9bd SHA512 67b8d30ec44a38344117a2d28f4eed1d86ddc4ffda68e36da9d6540ef4fe57a544e9d793d278a289f61e8874271b3ee21da0d742d9a7463cceccd4f1384669d5 diff --git a/dev-python/github3/github3-3.0.0.ebuild b/dev-python/github3/github3-3.0.0.ebuild new file mode 100644 index 00000000000..e782c17ddde --- /dev/null +++ b/dev-python/github3/github3-3.0.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +inherit distutils-r1 + +DESCRIPTION="A wrapper for the GitHub API written in python" +HOMEPAGE="https://github3py.readthedocs.io/en/master/" +SRC_URI=" + https://github.com/sigmavirus24/${PN}.py/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" +S="${WORKDIR}/${PN}.py-${PV}" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-vcs/git + >=dev-python/requests-2.18.0[${PYTHON_USEDEP}] + >=dev-python/uritemplate-3.0.0[${PYTHON_USEDEP}] + >=dev-python/python-dateutil-2.6.0[${PYTHON_USEDEP}] + >=dev-python/jwcrypto-0.5.0[${PYTHON_USEDEP}] +" +BDEPEND=" + test? ( + >=dev-python/betamax-0.8.0[${PYTHON_USEDEP}] + >=dev-python/betamax-matchers-0.1.0[${PYTHON_USEDEP}] + )" + +distutils_enable_tests pytest