Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@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, 29 May 2013 06:10:19
Message-Id: 20130529061010.82DE12171D@flycatcher.gentoo.org
1 idella4 13/05/29 06:10:10
2
3 Modified: pelican-3.2.1.ebuild ChangeLog
4 Log:
5 add py3.3 support, fixes Bug #470278
6
7 (Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 app-text/pelican/pelican-3.2.1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/pelican-3.2.1.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/pelican-3.2.1.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/pelican-3.2.1.ebuild?r1=1.1&r2=1.2
15
16 Index: pelican-3.2.1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/pelican/pelican-3.2.1.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- pelican-3.2.1.ebuild 22 May 2013 09:00:55 -0000 1.1
23 +++ pelican-3.2.1.ebuild 29 May 2013 06:10:10 -0000 1.2
24 @@ -1,9 +1,9 @@
25 # Copyright 1999-2013 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/pelican/pelican-3.2.1.ebuild,v 1.1 2013/05/22 09:00:55 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/pelican/pelican-3.2.1.ebuild,v 1.2 2013/05/29 06:10:10 idella4 Exp $
29
30 EAPI=5
31 -PYTHON_COMPAT=( python2_7 )
32 +PYTHON_COMPAT=( python{2_7,3_2,3_3} )
33
34 inherit distutils-r1
35
36 @@ -21,21 +21,18 @@
37 dev-python/docutils[${PYTHON_USEDEP}]
38 dev-python/pygments[${PYTHON_USEDEP}]
39 dev-python/pytz[${PYTHON_USEDEP}]
40 - dev-python/unidecode
41 + dev-python/unidecode[${PYTHON_USEDEP}]
42 dev-python/blinker[${PYTHON_USEDEP}]
43 dev-python/six[${PYTHON_USEDEP}]
44 markdown? ( dev-python/markdown[${PYTHON_USEDEP}] )
45 virtual/python-argparse[${PYTHON_USEDEP}]"
46 RDEPEND=""
47
48 -DOCS="README.rst"
49 +DOCS=( README.rst )
50
51 -python_install() {
52 - distutils-r1_python_install
53 - if use examples; then
54 - insinto /usr/share/doc/${PF}/examples
55 - doins -r samples/* || die "failed to install examples"
56 - fi
57 +python_install_all() {
58 + use examples && local EXAMPLES=( samples/. )
59 + distutils-r1_python_install_all
60 }
61
62 # no tests: tests/content not in tarball for 2.8.1
63
64
65
66 1.9 app-text/pelican/ChangeLog
67
68 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/ChangeLog?rev=1.9&view=markup
69 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/ChangeLog?rev=1.9&content-type=text/plain
70 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pelican/ChangeLog?r1=1.8&r2=1.9
71
72 Index: ChangeLog
73 ===================================================================
74 RCS file: /var/cvsroot/gentoo-x86/app-text/pelican/ChangeLog,v
75 retrieving revision 1.8
76 retrieving revision 1.9
77 diff -u -r1.8 -r1.9
78 --- ChangeLog 22 May 2013 09:00:55 -0000 1.8
79 +++ ChangeLog 29 May 2013 06:10:10 -0000 1.9
80 @@ -1,6 +1,9 @@
81 # ChangeLog for app-text/pelican
82 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
83 -# $Header: /var/cvsroot/gentoo-x86/app-text/pelican/ChangeLog,v 1.8 2013/05/22 09:00:55 patrick Exp $
84 +# $Header: /var/cvsroot/gentoo-x86/app-text/pelican/ChangeLog,v 1.9 2013/05/29 06:10:10 idella4 Exp $
85 +
86 + 29 May 2013; Ian Delaney <idella4@g.o> pelican-3.2.1.ebuild:
87 + add py3.3 support, fixes Bug #470278
88
89 *pelican-3.2.1 (22 May 2013)