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