Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/git-python: git-python-1.0.1.ebuild ChangeLog
Date: Mon, 01 Jun 2015 07:23:49
Message-Id: 20150601072341.3FE28A13@oystercatcher.gentoo.org
1 patrick 15/06/01 07:23:41
2
3 Modified: ChangeLog
4 Added: git-python-1.0.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.20/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.21 dev-python/git-python/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/git-python/ChangeLog?rev=1.21&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/git-python/ChangeLog?rev=1.21&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/git-python/ChangeLog?r1=1.20&r2=1.21
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/git-python/ChangeLog,v
20 retrieving revision 1.20
21 retrieving revision 1.21
22 diff -u -r1.20 -r1.21
23 --- ChangeLog 17 Apr 2015 09:58:06 -0000 1.20
24 +++ ChangeLog 1 Jun 2015 07:23:41 -0000 1.21
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/git-python
27 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/git-python/ChangeLog,v 1.20 2015/04/17 09:58:06 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/git-python/ChangeLog,v 1.21 2015/06/01 07:23:41 patrick Exp $
30 +
31 +*git-python-1.0.1 (01 Jun 2015)
32 +
33 + 01 Jun 2015; Patrick Lauer <patrick@g.o> +git-python-1.0.1.ebuild:
34 + Bump
35
36 *git-python-1.0.0 (17 Apr 2015)
37
38
39
40
41 1.1 dev-python/git-python/git-python-1.0.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/git-python/git-python-1.0.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/git-python/git-python-1.0.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: git-python-1.0.1.ebuild
47 ===================================================================
48 # Copyright 1999-2015 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/git-python/git-python-1.0.1.ebuild,v 1.1 2015/06/01 07:23:41 patrick Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
55
56 inherit distutils-r1
57
58 MY_PN="GitPython"
59 MY_PV="${PV/_rc/.RC}"
60 MY_P="${MY_PN}-${MY_PV}"
61
62 DESCRIPTION="Library used to interact with Git repositories"
63 HOMEPAGE="http://gitorious.org/git-python http://pypi.python.org/pypi/GitPython"
64 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
65
66 LICENSE="BSD"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
69 IUSE="test"
70
71 # Tests dont make sense without a git repo
72 RESTRICT="test"
73
74 RDEPEND="
75 dev-vcs/git
76 >=dev-python/gitdb-0.6.4[${PYTHON_USEDEP}]"
77 DEPEND="${RDEPEND}
78 dev-python/setuptools[${PYTHON_USEDEP}]
79 test? (
80 dev-python/nose[${PYTHON_USEDEP}]
81 dev-python/mock[${PYTHON_USEDEP}]
82 )"
83 # $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7 pypy)
84 # is the correct entry for mock, however while RESTRICT="test"
85 # there is little point in setting it since it is inactive
86 S="${WORKDIR}/${MY_P}"