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.9.2.ebuild blohg-0.9.1-r1.ebuild
Date: Fri, 06 Apr 2012 00:15:55
Message-Id: 20120406001543.BD0AF2004B@flycatcher.gentoo.org
1 rafaelmartins 12/04/06 00:15:43
2
3 Modified: ChangeLog
4 Added: blohg-0.9.2.ebuild
5 Removed: blohg-0.9.1-r1.ebuild
6 Log:
7 Version bump. Clean 0.9.1.
8
9 (Portage version: 2.2.0_alpha90_p25/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.16 www-apps/blohg/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/ChangeLog?rev=1.16&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/ChangeLog?rev=1.16&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/ChangeLog?r1=1.15&r2=1.16
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/www-apps/blohg/ChangeLog,v
21 retrieving revision 1.15
22 retrieving revision 1.16
23 diff -u -r1.15 -r1.16
24 --- ChangeLog 8 Jan 2012 13:50:14 -0000 1.15
25 +++ ChangeLog 6 Apr 2012 00:15:43 -0000 1.16
26 @@ -1,6 +1,13 @@
27 # ChangeLog for www-apps/blohg
28 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/ChangeLog,v 1.15 2012/01/08 13:50:14 rafaelmartins Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/ChangeLog,v 1.16 2012/04/06 00:15:43 rafaelmartins Exp $
31 +
32 +*blohg-0.9.2 (06 Apr 2012)
33 +
34 + 06 Apr 2012; Rafael G. Martins <rafaelmartins@g.o>
35 + -blohg-0.9.1-r1.ebuild, -files/blohg-0.9.1-fix_tests.patch,
36 + +blohg-0.9.2.ebuild:
37 + Version bump. Clean 0.9.1.
38
39 *blohg-0.9.1-r1 (08 Jan 2012)
40
41
42
43
44 1.1 www-apps/blohg/blohg-0.9.2.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/blohg-0.9.2.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/blohg-0.9.2.ebuild?rev=1.1&content-type=text/plain
48
49 Index: blohg-0.9.2.ebuild
50 ===================================================================
51 # Copyright 1999-2012 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/blohg-0.9.2.ebuild,v 1.1 2012/04/06 00:15:43 rafaelmartins Exp $
54
55 EAPI="3"
56
57 PYTHON_DEPEND="2:2.6"
58 SUPPORT_PYTHON_ABIS="1"
59 RESTRICT_PYTHON_ABIS="2.4 2.5 3.*"
60 DISTUTILS_SRC_TEST="setup.py"
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 test"
72
73 DEPEND=">=dev-python/docutils-0.7
74 >=dev-python/flask-0.8
75 >=dev-python/flask-babel-0.6
76 >=dev-python/flask-script-0.3
77 >=dev-python/frozen-flask-0.7
78 >=dev-python/jinja-2.5.2
79 >=dev-vcs/mercurial-1.6
80 dev-python/pyyaml
81 dev-python/setuptools
82 dev-python/pygments
83 doc? ( dev-python/sphinx )"
84
85 RDEPEND="${DEPEND}"
86
87 src_compile() {
88 distutils_src_compile
89
90 if use doc; then
91 einfo 'building documentation'
92 emake -C docs html
93 fi
94 }
95
96 src_install() {
97 distutils_src_install
98
99 if use doc; then
100 einfo 'installing documentation'
101 dohtml -r docs/_build/html/*
102 fi
103 }
104
105 pkg_postinst() {
106 distutils_pkg_postinst
107
108 einfo "If you're upgrading from <=blohg-0.5.1, please read the upgrade notes:"
109 einfo "http://docs.blohg.org/upgrade/#from-0-5-1-to-0-6"
110 }