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