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/anyvc: anyvc-0.3.7.1.ebuild ChangeLog
Date: Thu, 28 Jun 2012 06:03:34
Message-Id: 20120628060324.4650B2004B@flycatcher.gentoo.org
1 patrick 12/06/28 06:03:23
2
3 Modified: ChangeLog
4 Added: anyvc-0.3.7.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 dev-python/anyvc/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/anyvc/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/anyvc/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/anyvc/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/anyvc/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 30 Oct 2010 16:25:34 -0000 1.5
24 +++ ChangeLog 28 Jun 2012 06:03:23 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/anyvc
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/anyvc/ChangeLog,v 1.5 2010/10/30 16:25:34 arfrever Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/anyvc/ChangeLog,v 1.6 2012/06/28 06:03:23 patrick Exp $
31 +
32 +*anyvc-0.3.7.1 (28 Jun 2012)
33 +
34 + 28 Jun 2012; Patrick Lauer <patrick@g.o> +anyvc-0.3.7.1.ebuild:
35 + Bump
36
37 *anyvc-0.3.5 (30 Oct 2010)
38
39 @@ -25,4 +30,3 @@
40 23 Jun 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
41 +anyvc-0.3.1.ebuild, +metadata.xml:
42 Initial addition. Ebuild written by me.
43 -
44
45
46
47 1.1 dev-python/anyvc/anyvc-0.3.7.1.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/anyvc/anyvc-0.3.7.1.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/anyvc/anyvc-0.3.7.1.ebuild?rev=1.1&content-type=text/plain
51
52 Index: anyvc-0.3.7.1.ebuild
53 ===================================================================
54 # Copyright 1999-2012 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/dev-python/anyvc/anyvc-0.3.7.1.ebuild,v 1.1 2012/06/28 06:03:23 patrick Exp $
57
58 EAPI="3"
59 PYTHON_DEPEND="2:2.5"
60 SUPPORT_PYTHON_ABIS="1"
61 RESTRICT_PYTHON_ABIS="2.4 3.*"
62
63 inherit distutils
64
65 DESCRIPTION="Library to access any version control system"
66 HOMEPAGE="http://pypi.python.org/pypi/anyvc"
67 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
68
69 LICENSE="GPL-2"
70 SLOT="0"
71 KEYWORDS="~amd64 ~x86"
72 IUSE="bazaar doc git mercurial subversion"
73
74 RDEPEND="dev-python/apipkg
75 dev-python/execnet
76 dev-python/py
77 bazaar? ( dev-vcs/bzr )
78 git? ( dev-python/dulwich )
79 mercurial? ( dev-vcs/mercurial )
80 subversion? ( dev-python/subvertpy )"
81 DEPEND="${RDEPEND}
82 dev-python/setuptools
83 doc? ( dev-python/sphinx )"
84
85 src_compile() {
86 distutils_src_compile
87
88 if use doc; then
89 einfo "Generation of documentation"
90 sphinx-build -b html docs docs_output || die "Generation of documentation failed"
91 fi
92 }
93
94 src_install() {
95 distutils_src_install
96
97 if use doc; then
98 pushd docs_output > /dev/null
99 docinto html
100 cp -R [a-z]* _static "${ED}usr/share/doc/${PF}/html" || die "Installation of documentation failed"
101 popd > /dev/null
102 fi
103 }