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