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 8276D1396D0 for ; Sat, 12 Aug 2017 04:44:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C5EEA1FC00F; Sat, 12 Aug 2017 04:44:31 +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 A393A1FC00F for ; Sat, 12 Aug 2017 04:44:31 +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 8A125341A76 for ; Sat, 12 Aug 2017 04:44:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 24FA87634 for ; Sat, 12 Aug 2017 04:44:29 +0000 (UTC) From: "Tim Harder" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tim Harder" Message-ID: <1502513003.77142d37c82bdedb492cd06aa4df2f804ab9f739.radhermit@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/PyGithub/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/PyGithub/Manifest dev-python/PyGithub/PyGithub-1.35.ebuild X-VCS-Directories: dev-python/PyGithub/ X-VCS-Committer: radhermit X-VCS-Committer-Name: Tim Harder X-VCS-Revision: 77142d37c82bdedb492cd06aa4df2f804ab9f739 X-VCS-Branch: master Date: Sat, 12 Aug 2017 04:44:29 +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-Archives-Salt: 94ad7c24-ceb1-4f24-bdab-d0c19857f2f4 X-Archives-Hash: 486eb1feadb1bdcc093f61450d7a5e91 commit: 77142d37c82bdedb492cd06aa4df2f804ab9f739 Author: Tim Harder gentoo org> AuthorDate: Sat Aug 12 04:40:26 2017 +0000 Commit: Tim Harder gentoo org> CommitDate: Sat Aug 12 04:43:23 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77142d37 dev-python/PyGithub: version bump to 1.35 dev-python/PyGithub/Manifest | 1 + dev-python/PyGithub/PyGithub-1.35.ebuild | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/dev-python/PyGithub/Manifest b/dev-python/PyGithub/Manifest index eec611232da..987d2957f0e 100644 --- a/dev-python/PyGithub/Manifest +++ b/dev-python/PyGithub/Manifest @@ -1 +1,2 @@ DIST PyGithub-1.28.tar.gz 2662625 SHA256 44feab87eefcdf311fe4ad9c356c279b56ba0fc4dd90baeaec1a52e9875cad76 SHA512 e1d9f6f473d757074220f4ec6a96f0e0a6de89af6436b8f0ab30ed22eb24b0955f0b64e6b25eae36bfe19bce580677552aedc82a7749520c5b1baac03428db7d WHIRLPOOL 6a17617816b90120b358b0181ea5743f5380367cc4b725452bf281d2f313d2bac67edff0e50178afff2a87f312befdc1809ee7494d51299d02d694f8b2ded110 +DIST PyGithub-1.35.tar.gz 2677633 SHA256 cbcddf4584c264d7b09f4e308d13f9729fa065d963adc0d3eebf0f51e0ec9908 SHA512 d852f459e5514310ac7bbb3cd9742a7269f9ea5c3e0fdfb0f385616fa31d35b72b19f63b650c60241c5e2f29860ddc35caa907a623c661bc77a29dfe4da3613b WHIRLPOOL 53acbcb05437f59a616b4450a46ee35cf66a474a852008317751769f1979de81e949fe0d2f8fbe27e7c038fdb05b2871b753c4945e883c7a101fc7500dea2a07 diff --git a/dev-python/PyGithub/PyGithub-1.35.ebuild b/dev-python/PyGithub/PyGithub-1.35.ebuild new file mode 100644 index 00000000000..f7c3a670c22 --- /dev/null +++ b/dev-python/PyGithub/PyGithub-1.35.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) + +inherit distutils-r1 + +DESCRIPTION="Python library to access the Github API v3" +HOMEPAGE="https://github.com/PyGithub/PyGithub/" +# Use github since pypi is missing test data +SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-python/pyjwt[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + esetup.py test +}