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/translationstring: translationstring-0.4.ebuild ChangeLog
Date: Wed, 08 Feb 2012 07:04:08
Message-Id: 20120208070359.00F792004B@flycatcher.gentoo.org
1 patrick 12/02/08 07:03:58
2
3 Modified: ChangeLog
4 Added: translationstring-0.4.ebuild
5 Log:
6 Bump for #401953
7
8 (Portage version: 2.2.0_alpha85/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.6 dev-python/translationstring/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/translationstring/ChangeLog?rev=1.6&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/translationstring/ChangeLog?rev=1.6&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/translationstring/ChangeLog?r1=1.5&r2=1.6
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/translationstring/ChangeLog,v
20 retrieving revision 1.5
21 retrieving revision 1.6
22 diff -u -r1.5 -r1.6
23 --- ChangeLog 30 Jul 2011 01:27:30 -0000 1.5
24 +++ ChangeLog 8 Feb 2012 07:03:58 -0000 1.6
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/translationstring
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/translationstring/ChangeLog,v 1.5 2011/07/30 01:27:30 rafaelmartins Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/translationstring/ChangeLog,v 1.6 2012/02/08 07:03:58 patrick Exp $
31 +
32 +*translationstring-0.4 (08 Feb 2012)
33 +
34 + 08 Feb 2012; Patrick Lauer <patrick@g.o> +translationstring-0.4.ebuild:
35 + Bump for #401953
36
37 30 Jul 2011; Rafael G. Martins <rafaelmartins@g.o>
38 translationstring-0.3.ebuild:
39
40
41
42 1.1 dev-python/translationstring/translationstring-0.4.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/translationstring/translationstring-0.4.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/translationstring/translationstring-0.4.ebuild?rev=1.1&content-type=text/plain
46
47 Index: translationstring-0.4.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/dev-python/translationstring/translationstring-0.4.ebuild,v 1.1 2012/02/08 07:03:58 patrick Exp $
52
53 EAPI=3
54
55 SUPPORT_PYTHON_ABIS=1
56 PYTHON_DEPEND="2"
57 RESTRICT_PYTHON_ABIS="3.*"
58 DISTUTILS_SRC_TEST="setup.py"
59
60 inherit distutils
61
62 DESCRIPTION="Utility library for i18n relied on by various Repoze packages"
63 HOMEPAGE="http://www.repoze.org/ http://pypi.python.org/pypi/translationstring"
64 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
65
66 LICENSE="repoze"
67 SLOT="0"
68 KEYWORDS="~amd64 ~x86"
69 IUSE="doc test"
70
71 DEPEND="dev-python/setuptools
72 doc? ( dev-python/sphinx )
73 test? ( dev-python/Babel )"
74 RDEPEND=""
75
76 src_compile() {
77 distutils_src_compile
78
79 if use doc; then
80 (cd docs && emake html) || die "make html failed"
81 fi
82 }
83
84 src_install() {
85 distutils_src_install
86
87 if use doc; then
88 dohtml -r docs/.build/html/* || die "dohtml failed"
89 fi
90 }