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: metadata.xml blohg-0.3.ebuild ChangeLog
Date: Sat, 30 Apr 2011 05:00:11
Message-Id: 20110430045955.9F63C20051@flycatcher.gentoo.org
1 rafaelmartins 11/04/30 04:59:55
2
3 Added: metadata.xml blohg-0.3.ebuild ChangeLog
4 Log:
5 Initial commit.
6
7 (Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 www-apps/blohg/metadata.xml
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/metadata.xml?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/metadata.xml?rev=1.1&content-type=text/plain
14
15 Index: metadata.xml
16 ===================================================================
17 <?xml version="1.0" encoding="UTF-8"?>
18 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
19 <pkgmetadata>
20 <herd>no-herd</herd>
21 <maintainer>
22 <email>rafaelmartins@g.o</email>
23 <name>Rafael G. Martins</name>
24 </maintainer>
25 <longdescription lang="en">
26 blohg is a Mercurial-based blogging engine written in Python, built with
27 the Flask micro-framework and some of his available extensions. All the
28 content of the blogs are stored inside Mercurial repositories and the
29 repository history is used for build the posts and pages. blohg uses
30 Jinja2 as template engine.
31 </longdescription>
32 </pkgmetadata>
33
34
35
36
37 1.1 www-apps/blohg/blohg-0.3.ebuild
38
39 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/blohg-0.3.ebuild?rev=1.1&view=markup
40 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/blohg-0.3.ebuild?rev=1.1&content-type=text/plain
41
42 Index: blohg-0.3.ebuild
43 ===================================================================
44 # Copyright 1999-2011 Gentoo Foundation
45 # Distributed under the terms of the GNU General Public License v2
46 # $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/blohg-0.3.ebuild,v 1.1 2011/04/30 04:59:55 rafaelmartins Exp $
47
48 EAPI="3"
49
50 PYTHON_DEPEND="2:2.5"
51 SUPPORT_PYTHON_ABIS="1"
52 RESTRICT_PYTHON_ABIS="2.4 3.*"
53
54 inherit distutils
55
56 DESCRIPTION="A Mercurial-based blogging engine."
57 HOMEPAGE="http://blohg.org/ http://pypi.python.org/pypi/blohg"
58 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
59 KEYWORDS="~amd64 ~x86"
60
61 LICENSE="GPL-2"
62 SLOT="0"
63 IUSE="doc"
64
65 DEPEND=">=dev-python/docutils-0.7
66 >=dev-python/flask-0.6
67 >=dev-python/flask-babel-0.6
68 >=dev-python/flask-script-0.3
69 >=dev-python/jinja-2.5.2
70 >=dev-vcs/mercurial-1.6
71 dev-python/pyyaml
72 dev-python/setuptools
73 doc? ( dev-python/sphinx )"
74
75 RDEPEND="${DEPEND}"
76
77 src_compile() {
78 distutils_src_compile
79
80 if use doc; then
81 einfo 'building documentation'
82 emake -C docs html
83 fi
84 }
85
86 src_install() {
87 distutils_src_install
88
89 if use doc; then
90 einfo 'installing documentation'
91 dohtml -r docs/_build/html/*
92 fi
93 }
94
95
96
97 1.1 www-apps/blohg/ChangeLog
98
99 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/ChangeLog?rev=1.1&view=markup
100 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-apps/blohg/ChangeLog?rev=1.1&content-type=text/plain
101
102 Index: ChangeLog
103 ===================================================================
104 # ChangeLog for www-apps/blohg
105 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
106 # $Header: /var/cvsroot/gentoo-x86/www-apps/blohg/ChangeLog,v 1.1 2011/04/30 04:59:55 rafaelmartins Exp $
107
108 *blohg-0.3 (30 Apr 2011)
109
110 30 Apr 2011; Rafael G. Martins <rafaelmartins@g.o> +blohg-0.3.ebuild,
111 +metadata.xml:
112 Initial commit.