Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/lockfile: ChangeLog lockfile-0.9.ebuild
Date: Mon, 10 May 2010 16:18:37
Message-Id: 20100510161827.430302C596@corvid.gentoo.org
1 arfrever 10/05/10 16:18:27
2
3 Modified: ChangeLog
4 Added: lockfile-0.9.ebuild
5 Log:
6 Version bump.
7 (Portage version: HEAD/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.3 dev-python/lockfile/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/ChangeLog?rev=1.3&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/ChangeLog?rev=1.3&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/ChangeLog?r1=1.2&r2=1.3
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v
19 retrieving revision 1.2
20 retrieving revision 1.3
21 diff -u -r1.2 -r1.3
22 --- ChangeLog 12 Jan 2010 13:40:11 -0000 1.2
23 +++ ChangeLog 10 May 2010 16:18:26 -0000 1.3
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-python/lockfile
26 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.2 2010/01/12 13:40:11 fauli Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/ChangeLog,v 1.3 2010/05/10 16:18:26 arfrever Exp $
29 +
30 +*lockfile-0.9 (10 May 2010)
31 +
32 + 10 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@g.o>
33 + +lockfile-0.9.ebuild:
34 + Version bump.
35
36 12 Jan 2010; Christian Faulhammer <fauli@g.o> lockfile-0.8.ebuild:
37 add ~x86, bug 297725
38
39
40
41 1.1 dev-python/lockfile/lockfile-0.9.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/lockfile-0.9.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/lockfile/lockfile-0.9.ebuild?rev=1.1&content-type=text/plain
45
46 Index: lockfile-0.9.ebuild
47 ===================================================================
48 # Copyright 1999-2010 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/lockfile/lockfile-0.9.ebuild,v 1.1 2010/05/10 16:18:26 arfrever Exp $
51
52 EAPI="3"
53 PYTHON_DEPEND="2:2.5"
54 SUPPORT_PYTHON_ABIS="1"
55
56 inherit distutils
57
58 DESCRIPTION="Platform-independent file locking module"
59 HOMEPAGE="http://code.google.com/p/pylockfile/ http://pypi.python.org/pypi/lockfile http://smontanaro.dyndns.org/python/"
60 SRC_URI="http://smontanaro.dyndns.org/python/${P}.tar.gz"
61
62 LICENSE="MIT"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc"
66
67 DEPEND="doc? ( dev-python/sphinx )"
68 RDEPEND=""
69 RESTRICT_PYTHON_ABIS="2.4 3.*"
70
71 DOCS="ACKS README RELEASE-NOTES"
72
73 src_compile() {
74 distutils_src_compile
75
76 if use doc; then
77 cd doc
78 einfo "Generation of documentation"
79 emake html || die "Generation of documentation failed"
80 fi
81 }
82
83 src_install() {
84 distutils_src_install
85
86 if use doc; then
87 cd doc/.build/html
88 docinto html
89 cp -R [a-z]* _static "${ED}usr/share/doc/${PF}/html" || die "Installation of documentation failed"
90 fi
91 }