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.2.1.ebuild ChangeLog
Date: Wed, 29 Oct 2014 15:56:25
Message-Id: 20141029155621.D45269021@oystercatcher.gentoo.org
1 idella4 14/10/29 15:56:21
2
3 Modified: ChangeLog
4 Added: pytextile-2.2.1.ebuild
5 Log:
6 bump; add new dep for testsuite, drop ppc ppc64 sparc x86-fbsd keywords accordingly, drop redundant patch
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
9
10 Revision Changes Path
11 1.35 app-text/pytextile/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.35&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?rev=1.35&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/ChangeLog?r1=1.34&r2=1.35
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v
20 retrieving revision 1.34
21 retrieving revision 1.35
22 diff -u -r1.34 -r1.35
23 --- ChangeLog 10 Aug 2014 18:30:21 -0000 1.34
24 +++ ChangeLog 29 Oct 2014 15:56:21 -0000 1.35
25 @@ -1,6 +1,12 @@
26 # ChangeLog for app-text/pytextile
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.34 2014/08/10 18:30:21 slyfox Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/ChangeLog,v 1.35 2014/10/29 15:56:21 idella4 Exp $
30 +
31 +*pytextile-2.2.1 (29 Oct 2014)
32 +
33 + 29 Oct 2014; Ian Delaney <idella4@g.o> +pytextile-2.2.1.ebuild:
34 + bump; add new dep for testsuite, drop ppc ppc64 sparc x86-fbsd keywords
35 + accordingly, drop redundant patch
36
37 10 Aug 2014; Sergei Trofimovich <slyfox@g.o> pytextile-2.1.5.ebuild,
38 pytextile-2.1.8.ebuild:
39
40
41
42 1.1 app-text/pytextile/pytextile-2.2.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.2.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/pytextile/pytextile-2.2.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: pytextile-2.2.1.ebuild
48 ===================================================================
49 # Copyright 1999-2014 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-text/pytextile/pytextile-2.2.1.ebuild,v 1.1 2014/10/29 15:56:21 idella4 Exp $
52
53 EAPI=5
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
55
56 inherit distutils-r1
57
58 MY_PN="textile"
59 MY_P="${MY_PN}-${PV}"
60
61 DESCRIPTION="A Python implementation of Textile, Dean Allen's Human Text Generator for creating (X)HTML"
62 HOMEPAGE="https://github.com/ikirudennis/python-textile"
63 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
64
65 LICENSE="BSD"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="test"
69
70 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
71 test? ( dev-python/nose[${PYTHON_USEDEP}] )"
72 RDEPEND="
73 dev-python/regex[${PYTHON_USEDEP}]"
74
75 S="${WORKDIR}/${MY_P}"
76
77 python_prepare_all() {
78 # This resolves a nasty race condition, courtesy of Arfrever
79 sed -e 's:with-id = 1::' -i setup.cfg || die
80 distutils-r1_python_prepare_all
81 }
82
83 python_test() {
84 nosetests textile/tests/ || die "Tests failed under ${EPYTHON}"
85 }