Gentoo Archives: gentoo-commits

From: "Rafael Martins (rafaelmartins)" <rafaelmartins@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in www-apps/blohg: ChangeLog blohg-0.4.ebuild blohg-0.3.ebuild
Date: Mon, 02 May 2011 00:22:29
Message-Id: 20110502002209.4318C20054@flycatcher.gentoo.org
1 rafaelmartins 11/05/02 00:22:09
2
3 Modified: ChangeLog
4 Added: blohg-0.4.ebuild
5 Removed: blohg-0.3.ebuild
6 Log:
7 Version bump.
8
9 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.2 www-apps/blohg/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/ChangeLog?rev=1.2&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/ChangeLog?rev=1.2&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/ChangeLog?r1=1.1&r2=1.2
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/www-apps/blohg/ChangeLog,v
21 retrieving revision 1.1
22 retrieving revision 1.2
23 diff -u -r1.1 -r1.2
24 --- ChangeLog 30 Apr 2011 04:59:55 -0000 1.1
25 +++ ChangeLog 2 May 2011 00:22:09 -0000 1.2
26 @@ -1,6 +1,12 @@
27 # ChangeLog for www-apps/blohg
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/ChangeLog,v 1.1 2011/04/30 04:59:55 rafaelmartins Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/ChangeLog,v 1.2 2011/05/02 00:22:09 rafaelmartins Exp $
31 +
32 +*blohg-0.4 (02 May 2011)
33 +
34 + 02 May 2011; Rafael G. Martins <rafaelmartins@g.o> -blohg-0.3.ebuild,
35 + +blohg-0.4.ebuild:
36 + Version bump.
37
38 *blohg-0.3 (30 Apr 2011)
39
40
41
42
43 1.1 www-apps/blohg/blohg-0.4.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/blohg-0.4.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/blohg-0.4.ebuild?rev=1.1&content-type=text/plain
47
48 Index: blohg-0.4.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/blohg-0.4.ebuild,v 1.1 2011/05/02 00:22:09 rafaelmartins Exp $
53
54 EAPI="3"
55
56 PYTHON_DEPEND="2:2.5"
57 SUPPORT_PYTHON_ABIS="1"
58 RESTRICT_PYTHON_ABIS="2.4 3.*"
59
60 inherit distutils
61
62 DESCRIPTION="A Mercurial-based blogging engine."
63 HOMEPAGE="http://blohg.org/ http://pypi.python.org/pypi/blohg"
64 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
65 KEYWORDS="~amd64 ~x86"
66
67 LICENSE="GPL-2"
68 SLOT="0"
69 IUSE="doc"
70
71 DEPEND=">=dev-python/docutils-0.7
72 >=dev-python/flask-0.6
73 >=dev-python/flask-babel-0.6
74 >=dev-python/flask-script-0.3
75 >=dev-python/jinja-2.5.2
76 >=dev-vcs/mercurial-1.6
77 dev-python/pyyaml
78 dev-python/setuptools
79 doc? ( dev-python/sphinx )"
80
81 RDEPEND="${DEPEND}"
82
83 src_compile() {
84 distutils_src_compile
85
86 if use doc; then
87 einfo 'building documentation'
88 emake -C docs html
89 fi
90 }
91
92 src_install() {
93 distutils_src_install
94
95 if use doc; then
96 einfo 'installing documentation'
97 dohtml -r docs/_build/html/*
98 fi
99 }