Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/webhelpers: webhelpers-1.3-r1.ebuild ChangeLog
Date: Thu, 01 Jan 2015 23:56:27
Message-Id: 20150101235622.56317EABC@oystercatcher.gentoo.org
1 mgorny 15/01/01 23:56:22
2
3 Modified: webhelpers-1.3-r1.ebuild ChangeLog
4 Log:
5 Add missing nose dependency, remove obsolete vars. Add missing distutils-r1_python_prepare_all call.
6
7 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
8
9 Revision Changes Path
10 1.4 dev-python/webhelpers/webhelpers-1.3-r1.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webhelpers/webhelpers-1.3-r1.ebuild?rev=1.4&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webhelpers/webhelpers-1.3-r1.ebuild?rev=1.4&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webhelpers/webhelpers-1.3-r1.ebuild?r1=1.3&r2=1.4
15
16 Index: webhelpers-1.3-r1.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/webhelpers/webhelpers-1.3-r1.ebuild,v
19 retrieving revision 1.3
20 retrieving revision 1.4
21 diff -u -r1.3 -r1.4
22 --- webhelpers-1.3-r1.ebuild 31 Mar 2014 20:39:53 -0000 1.3
23 +++ webhelpers-1.3-r1.ebuild 1 Jan 2015 23:56:22 -0000 1.4
24 @@ -1,10 +1,9 @@
25 -# Copyright 1999-2014 Gentoo Foundation
26 +# Copyright 1999-2015 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webhelpers/webhelpers-1.3-r1.ebuild,v 1.3 2014/03/31 20:39:53 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webhelpers/webhelpers-1.3-r1.ebuild,v 1.4 2015/01/01 23:56:22 mgorny Exp $
30
31 EAPI=5
32 -PYTHON_COMPAT=( python{2_6,2_7} pypy pypy2_0 )
33 -#DISTUTILS_SRC_TEST="nosetests"
34 +PYTHON_COMPAT=( python2_7 pypy )
35
36 inherit distutils-r1
37
38 @@ -18,14 +17,15 @@
39 LICENSE="BSD"
40 SLOT="0"
41 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
42 -IUSE="doc"
43 +IUSE="doc test"
44
45 RDEPEND=">=dev-python/markupsafe-0.9.2[${PYTHON_USEDEP}]
46 dev-python/webob[${PYTHON_USEDEP}]
47 dev-python/routes[${PYTHON_USEDEP}]"
48 DEPEND="${RDEPEND}
49 dev-python/setuptools[${PYTHON_USEDEP}]
50 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
51 + doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
52 + test? ( dev-python/nose[${PYTHON_USEDEP}] )"
53
54 S="${WORKDIR}/${MY_P}"
55
56 @@ -37,6 +37,8 @@
57 -i tests/test_feedgenerator.py || die "sed failed"
58
59 epatch "${FILESDIR}"/mime9ad434b.patch
60 +
61 + distutils-r1_python_prepare_all
62 }
63
64 python_compile_all() {
65
66
67
68 1.17 dev-python/webhelpers/ChangeLog
69
70 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webhelpers/ChangeLog?rev=1.17&view=markup
71 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webhelpers/ChangeLog?rev=1.17&content-type=text/plain
72 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/webhelpers/ChangeLog?r1=1.16&r2=1.17
73
74 Index: ChangeLog
75 ===================================================================
76 RCS file: /var/cvsroot/gentoo-x86/dev-python/webhelpers/ChangeLog,v
77 retrieving revision 1.16
78 retrieving revision 1.17
79 diff -u -r1.16 -r1.17
80 --- ChangeLog 31 Mar 2014 20:39:53 -0000 1.16
81 +++ ChangeLog 1 Jan 2015 23:56:22 -0000 1.17
82 @@ -1,6 +1,10 @@
83 # ChangeLog for dev-python/webhelpers
84 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
85 -# $Header: /var/cvsroot/gentoo-x86/dev-python/webhelpers/ChangeLog,v 1.16 2014/03/31 20:39:53 mgorny Exp $
86 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
87 +# $Header: /var/cvsroot/gentoo-x86/dev-python/webhelpers/ChangeLog,v 1.17 2015/01/01 23:56:22 mgorny Exp $
88 +
89 + 01 Jan 2015; Michał Górny <mgorny@g.o> webhelpers-1.3-r1.ebuild:
90 + Add missing nose dependency, remove obsolete vars. Add missing distutils-
91 + r1_python_prepare_all call.
92
93 31 Mar 2014; Michał Górny <mgorny@g.o> webhelpers-1.3-r1.ebuild:
94 Add support for the new PyPy slotting.