Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/git-python/
Date: Sun, 30 Jul 2017 09:35:07
Message-Id: 1501407265.4be467688bece838eda621dd83875785b36deeee.soap@gentoo
1 commit: 4be467688bece838eda621dd83875785b36deeee
2 Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
3 AuthorDate: Mon Jul 24 07:59:55 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 30 09:34:25 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4be46768
7
8 dev-python/git-python: Version bump to 2.1.5
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.1
11 Closes: https://github.com/gentoo/gentoo/pull/5198
12
13 dev-python/git-python/Manifest | 1 +
14 dev-python/git-python/git-python-2.1.5.ebuild | 37 +++++++++++++++++++++++++++
15 2 files changed, 38 insertions(+)
16
17 diff --git a/dev-python/git-python/Manifest b/dev-python/git-python/Manifest
18 index cce09448385..e85c7a11b16 100644
19 --- a/dev-python/git-python/Manifest
20 +++ b/dev-python/git-python/Manifest
21 @@ -1,2 +1,3 @@
22 DIST GitPython-1.0.2.tar.gz 387615 SHA256 85de72556781480a38897a77de5b458ae3838b0fd589593679a1b5f34d181d84 SHA512 faff50d5272158f1d05d932e7827c05272f9a28772aabbcabd631b735bb4d8306d2861d13c327d02a4c554bd9a9902c473fb282318036405497dd8bf0fcc51a8 WHIRLPOOL c12e850114d101faa673d4d87e6885b1d7cd55544d335e08d4579c160e4d8ef488dd09359cfbd9a39e11f4555b8cb3cd2bfec214c95883b5a83565ad1e28b403
23 DIST GitPython-2.0.6.tar.gz 406234 SHA256 282268c4eab0d53a44fe40af038625be307560370c38d2882f3b6763642785db SHA512 97a64e715b2d78d58542de5adcf679aa73a64bae49b6c76c2ac56a8ffaa0f712f80b239a39408d79395bf4c3a6e5ca7c5ee21a166a8b4da597c898f92a5a123d WHIRLPOOL c0a540f2b84059a038127182d515ce8c91b93fde4328ed32c7f57d847c2f7bc62dfd0275ead5c23498f4e8ba756d9c2067b2d608167031b352416b197117ed44
24 +DIST GitPython-2.1.5.tar.gz 420147 SHA256 5c00cbd256e2b1d039381d4f7d71fcb7ee5cc196ca10c101ff7191bd82ab5d9c SHA512 40350434edb12d3335ea6a9f0176df4eff0564c8c8388f6a9769d2ab9e46c708625849a079eaf4e1c5aa9eaf10d91f439097277d67e3c6b5e9659a88bfcdd4e2 WHIRLPOOL 62df18eca5400b96bb99939256f3e601a48241ad79b360eb3ff570c1faf48d48e449d319b5860859ac0f974a21038f9b572418f5a14000c22f2f63f9d631ea28
25
26 diff --git a/dev-python/git-python/git-python-2.1.5.ebuild b/dev-python/git-python/git-python-2.1.5.ebuild
27 new file mode 100644
28 index 00000000000..88367417a70
29 --- /dev/null
30 +++ b/dev-python/git-python/git-python-2.1.5.ebuild
31 @@ -0,0 +1,37 @@
32 +# Copyright 1999-2017 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
36 +
37 +PYTHON_COMPAT=( python3_{4,5,6} )
38 +PYTHON_REQ_USE="threads(+)"
39 +
40 +inherit distutils-r1
41 +
42 +MY_PN="GitPython"
43 +MY_PV="${PV/_rc/.RC}"
44 +MY_P="${MY_PN}-${MY_PV}"
45 +
46 +DESCRIPTION="Library used to interact with Git repositories"
47 +HOMEPAGE="https://github.com/gitpython-developers/GitPython https://pypi.python.org/pypi/GitPython"
48 +SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
49 +
50 +LICENSE="BSD"
51 +SLOT="0"
52 +KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
53 +IUSE="test"
54 +
55 +# Tests only work with the GitPython repo
56 +RESTRICT="test"
57 +
58 +RDEPEND="
59 + dev-vcs/git
60 + >=dev-python/gitdb2-2.0.0[${PYTHON_USEDEP}]"
61 +DEPEND="${RDEPEND}
62 + dev-python/setuptools[${PYTHON_USEDEP}]
63 + test? (
64 + >=dev-python/ddt-1.1.0[${PYTHON_USEDEP}]
65 + dev-python/nose[${PYTHON_USEDEP}]
66 + )"
67 +
68 +S="${WORKDIR}/${MY_P}"