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/pytextile: pytextile-2.1.8.ebuild ChangeLog
Date: Thu, 29 May 2014 15:32:51
Message-Id: 20140529153247.A2A3D2004E@flycatcher.gentoo.org
1 idella4 14/05/29 15:32:47
2
3 Modified: ChangeLog
4 Added: pytextile-2.1.8.ebuild
5 Log:
6 bump; add py3 pypy support, test phase
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.31 app-text/pytextile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.31&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.31&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.30&r2=1.31
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
20 retrieving revision 1.30
21 retrieving revision 1.31
22 diff -u -r1.30 -r1.31
23 --- ChangeLog 9 Apr 2012 03:41:03 -0000 1.30
24 +++ ChangeLog 29 May 2014 15:32:47 -0000 1.31
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/pytextile
27 -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.30 2012/04/09 03:41:03 floppym Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.31 2014/05/29 15:32:47 idella4 Exp $
31 +
32 +*pytextile-2.1.8 (29 May 2014)
33 +
34 + 29 May 2014; Ian Delaney <idella4@g.o> +pytextile-2.1.8.ebuild:
35 + bump; add py3 pypy support, test phase
36
37 09 Apr 2012; Mike Gilbert <floppym@g.o> -pytextile-2.1.4.ebuild,
38 pytextile-2.1.5.ebuild:
39 @@ -112,4 +117,3 @@
40 +pytextile-2.0.10.ebuild:
41 New ebuild, closes bug #92151.
42 Thanks to Tyson Burghardt <tysonburghardt@×××××××××.net> for initial input.
43 -
44
45
46
47 1.1 app-text/pytextile/pytextile-2.1.8.ebuild
48
49 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.1&view=markup
50 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild?rev=1.1&content-type=text/plain
51
52 Index: pytextile-2.1.8.ebuild
53 ===================================================================
54 # Copyright 1999-2014 Gentoo Foundation
55 # Distributed under the terms of the GNU General Public License v2
56 # $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.1.8.ebuild,v 1.1 2014/05/29 15:32:47 idella4 Exp $
57
58 EAPI=5
59 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
60
61 inherit distutils-r1
62
63 MY_PN="textile"
64 MY_P="${MY_PN}-${PV}"
65
66 DESCRIPTION="A Python implementation of Textile, Dean Allen's Human Text Generator for creating (X)HTML."
67 HOMEPAGE="https://github.com/ikirudennis/python-textile"
68 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
69
70 LICENSE="BSD"
71 SLOT="0"
72 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
73 IUSE="test"
74
75 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
76 test? ( dev-python/nose[${PYTHON_USEDEP}] )"
77
78 RDEPEND=""
79
80 S="${WORKDIR}/${MY_P}"
81
82 python_prepare_all() {
83 # https://github.com/ikirudennis/python-textile/issues/6
84 sed -e s':testSanitize:_&:' -i textile/tests/__init__.py || die
85 distutils-r1_python_prepare_all
86 }
87
88 python_test() {
89 nosetests textile/tests/ || die "Tests failed under ${EPYTHON}"
90 }