Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-vcs/python-gitlab/
Date: Wed, 27 Nov 2019 19:51:29
Message-Id: 1574883967.2c377c14e55b4e92e36f27ab8d9e315488cab9a8.williamh@gentoo
1 commit: 2c377c14e55b4e92e36f27ab8d9e315488cab9a8
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 27 19:46:07 2019 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 27 19:46:07 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c377c14
7
8 dev-vcs/python-gitlab: 1.13.0 bump
9
10 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
11
12 dev-vcs/python-gitlab/Manifest | 1 +
13 dev-vcs/python-gitlab/python-gitlab-1.13.0.ebuild | 41 +++++++++++++++++++++++
14 2 files changed, 42 insertions(+)
15
16 diff --git a/dev-vcs/python-gitlab/Manifest b/dev-vcs/python-gitlab/Manifest
17 index 87398e4c9e4..61ebc53c3f2 100644
18 --- a/dev-vcs/python-gitlab/Manifest
19 +++ b/dev-vcs/python-gitlab/Manifest
20 @@ -1,3 +1,4 @@
21 +DIST python-gitlab-1.13.0.tar.gz 121434 BLAKE2B f8a9af4f389b4759891e26de305c48a70b4255667d4bda869e4e9738f37a1d9a99777a3aa3d1617df343e6b10fe58ad42d2f1d309da931c92690233347a21f2d SHA512 483133d6bc3244c28a2cfa7382262692ed5eef5be5217c5f9786883667d777bac7f952946c50cb8ca6bbe07f63691ec19be4fbfeb7d9cd733fb049a0c3378721
22 DIST python-gitlab-1.7.0.tar.gz 110657 BLAKE2B 1003d3373d3ef5474b1d5c10b1c6af57e7467cec432fc1eb75b4e1ba7766361641f25461ac2bf1b7692dab855d4e5cbc204240ede3568e71ed1af75682807fb0 SHA512 ad50d989e27948ff5188f4191ad3b7f1e1b45608627b2042bf02d635b2aa8da0a24f6b0383f483a01df54e4ab14576e7e4252576b9c2bdf67a187ae6aad69d53
23 DIST python-gitlab-1.8.0.tar.gz 115603 BLAKE2B 8ebebc1735e5531b4f95d82122b6ecf78fd541bce503f0cdf8c47b2ec2edab89efcad6c0ab39d82b57ffb8c3e341cb2160916b7df6c4886465e90557db3141c3 SHA512 4843aefb7cd363520e9065cfc08b81ec2c5c2c9cbdb5d6adbd35ec0f615bafd40e66746739c910b5e7e041f06e2aa9dc8beb8a884a714e6837cd5fb6fefb53be
24 DIST python-gitlab-1.9.0.tar.gz 116460 BLAKE2B f0a0d9679e4e742d966c678f8dcc6b2464e5ae8a013038221b3c484e6bb6ae23c166f82fec85c3560ebbce3cf80bc23657b1b906d8c6f284a64589545acdb035 SHA512 cb0d58896f55837f7088ab08551f2e9f9f82e8a04c19979a69bc042c95cdb2d04174dec49a236ddcf1344c50e9ffc6f929750b008bf6e619225c80bf9490afaa
25
26 diff --git a/dev-vcs/python-gitlab/python-gitlab-1.13.0.ebuild b/dev-vcs/python-gitlab/python-gitlab-1.13.0.ebuild
27 new file mode 100644
28 index 00000000000..2ee27c73fd0
29 --- /dev/null
30 +++ b/dev-vcs/python-gitlab/python-gitlab-1.13.0.ebuild
31 @@ -0,0 +1,41 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +PYTHON_COMPAT=( python3_{5,6} )
37 +
38 +if [[ ${PV} = *9999* ]]; then
39 + EGIT_REPO_URI="https://github.com/python-gitlab/python-gitlab"
40 + inherit git-r3
41 +else
42 + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
43 + KEYWORDS="~amd64"
44 +fi
45 +
46 +inherit distutils-r1
47 +
48 +DESCRIPTION="Python command line interface to gitlab API"
49 +HOMEPAGE="https://github.com/python-gitlab/python-gitlab/"
50 +
51 +LICENSE="LGPL-3"
52 +SLOT="0"
53 +IUSE="test"
54 +
55 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
56 + test? (
57 + dev-python/testrepository[${PYTHON_USEDEP}]
58 + dev-python/hacking[${PYTHON_USEDEP}]
59 + dev-python/httmock[${PYTHON_USEDEP}]
60 + dev-python/jinja[${PYTHON_USEDEP}]
61 + dev-python/mock[${PYTHON_USEDEP}]
62 + >=dev-python/sphinx-1.3
63 + dev-python/sphinx_rtd_theme )"
64 +
65 +RDEPEND="dev-python/requests[${PYTHON_USEDEP}]
66 + dev-python/setuptools[${PYTHON_USEDEP}]
67 + dev-python/six[${PYTHON_USEDEP}]"
68 +
69 +python_install_all() {
70 + distutils-r1_python_install_all
71 + dodoc -r *.rst docs
72 +}