Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/pelican: pelican-3.2.1.ebuild ChangeLog
Date: Wed, 22 May 2013 09:00:59
Message-Id: 20130522090055.C61EC2171D@flycatcher.gentoo.org
1 patrick 13/05/22 09:00:55
2
3 Modified: ChangeLog
4 Added: pelican-3.2.1.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.0_alpha176/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.8 app-text/pelican/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/ChangeLog?rev=1.8&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/ChangeLog?rev=1.8&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/ChangeLog?r1=1.7&r2=1.8
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/pelican/ChangeLog,v
20 retrieving revision 1.7
21 retrieving revision 1.8
22 diff -u -r1.7 -r1.8
23 --- ChangeLog 2 May 2013 05:56:24 -0000 1.7
24 +++ ChangeLog 22 May 2013 09:00:55 -0000 1.8
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/pelican
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/pelican/ChangeLog,v 1.7 2013/05/02 05:56:24 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/pelican/ChangeLog,v 1.8 2013/05/22 09:00:55 patrick Exp $
30 +
31 +*pelican-3.2.1 (22 May 2013)
32 +
33 + 22 May 2013; Patrick Lauer <patrick@g.o> +pelican-3.2.1.ebuild:
34 + Bump
35
36 *pelican-3.2 (02 May 2013)
37
38
39
40
41 1.1 app-text/pelican/pelican-3.2.1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/pelican-3.2.1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/pelican-3.2.1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: pelican-3.2.1.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/app-text/pelican/pelican-3.2.1.ebuild,v 1.1 2013/05/22 09:00:55 patrick Exp $
51
52 EAPI=5
53 PYTHON_COMPAT=( python2_7 )
54
55 inherit distutils-r1
56
57 DESCRIPTION="A tool to generate a static blog, with restructured text (or markdown) input files."
58 HOMEPAGE="http://pelican.notmyidea.org/ http://pypi.python.org/pypi/pelican"
59 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
60
61 LICENSE="AGPL-3"
62 SLOT="0"
63 KEYWORDS="~amd64 ~x86"
64 IUSE="examples markdown"
65
66 DEPEND="dev-python/feedgenerator[${PYTHON_USEDEP}]
67 dev-python/jinja[${PYTHON_USEDEP}]
68 dev-python/docutils[${PYTHON_USEDEP}]
69 dev-python/pygments[${PYTHON_USEDEP}]
70 dev-python/pytz[${PYTHON_USEDEP}]
71 dev-python/unidecode
72 dev-python/blinker[${PYTHON_USEDEP}]
73 dev-python/six[${PYTHON_USEDEP}]
74 markdown? ( dev-python/markdown[${PYTHON_USEDEP}] )
75 virtual/python-argparse[${PYTHON_USEDEP}]"
76 RDEPEND=""
77
78 DOCS="README.rst"
79
80 python_install() {
81 distutils-r1_python_install
82 if use examples; then
83 insinto /usr/share/doc/${PF}/examples
84 doins -r samples/* || die "failed to install examples"
85 fi
86 }
87
88 # no tests: tests/content not in tarball for 2.8.1
89 # for 3.0, should be based on tox (refer to virtualenvwrapper)