Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/PyGithub/
Date: Sat, 02 Jun 2018 22:45:17
Message-Id: 1527979508.dd009ff247db86da123861fac63bb5ddf4915e4d.mgorny@gentoo
1 commit: dd009ff247db86da123861fac63bb5ddf4915e4d
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 2 21:42:18 2018 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 2 22:45:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd009ff2
7
8 dev-python/PyGithub: Bump to 1.39
9
10 dev-python/PyGithub/Manifest | 1 +
11 dev-python/PyGithub/PyGithub-1.39.ebuild | 24 ++++++++++++++++++++++++
12 2 files changed, 25 insertions(+)
13
14 diff --git a/dev-python/PyGithub/Manifest b/dev-python/PyGithub/Manifest
15 index 60a4c87c10e..c5bcd4a36c5 100644
16 --- a/dev-python/PyGithub/Manifest
17 +++ b/dev-python/PyGithub/Manifest
18 @@ -1,2 +1,3 @@
19 DIST PyGithub-1.28.tar.gz 2662625 BLAKE2B 86d972c51be81bd1f52ea18d89d22c207b0327ad9c4cc39da3aa8996ec280a164f270256c87718676d8ed2501c9ff7819a59df1ec9c7ddb5db794d141f0ed103 SHA512 e1d9f6f473d757074220f4ec6a96f0e0a6de89af6436b8f0ab30ed22eb24b0955f0b64e6b25eae36bfe19bce580677552aedc82a7749520c5b1baac03428db7d
20 DIST PyGithub-1.35.tar.gz 2677633 BLAKE2B c034ba44e203bf15c47f54087294295f302ea5deaabcaf09f8420a9b0a7fb51bfd6b2f7b64cf2c25004e146d8208cd0d90d2cb8baf2776de25f23ed15a2e7887 SHA512 d852f459e5514310ac7bbb3cd9742a7269f9ea5c3e0fdfb0f385616fa31d35b72b19f63b650c60241c5e2f29860ddc35caa907a623c661bc77a29dfe4da3613b
21 +DIST PyGithub-1.39.tar.gz 2662602 BLAKE2B 5e3e4ca2483e7ade968f170e7615258b4bcca0f1c6741146c38b3c7405fb1fb66351fa5686863892a6751bc4cb6ea39b6cf4ec0d8e6cc878b302c87512c9d159 SHA512 5fa6e5a1b8e7cbe2be13e7f866ce8586f6ba37bfc8f3bfb5a52497a9edc267c14512e4572f56e898c61b8c84dfc8aa8f325c5eb2563e68450b8a3b2acf8308d4
22
23 diff --git a/dev-python/PyGithub/PyGithub-1.39.ebuild b/dev-python/PyGithub/PyGithub-1.39.ebuild
24 new file mode 100644
25 index 00000000000..eb109f4a9b7
26 --- /dev/null
27 +++ b/dev-python/PyGithub/PyGithub-1.39.ebuild
28 @@ -0,0 +1,24 @@
29 +# Copyright 1999-2018 Gentoo Foundation
30 +# Distributed under the terms of the GNU General Public License v2
31 +
32 +EAPI=6
33 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
34 +
35 +inherit distutils-r1
36 +
37 +DESCRIPTION="Python library to access the Github API v3"
38 +HOMEPAGE="https://github.com/PyGithub/PyGithub/"
39 +# Use github since pypi is missing test data
40 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="LGPL-3+"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~x86"
45 +
46 +RDEPEND="dev-python/pyjwt[${PYTHON_USEDEP}]"
47 +DEPEND="${RDEPEND}
48 + dev-python/setuptools[${PYTHON_USEDEP}]"
49 +
50 +python_test() {
51 + esetup.py test
52 +}