Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/wsgiintercept: wsgiintercept-0.6.5.ebuild ChangeLog
Date: Tue, 01 Jul 2014 06:36:02
Message-Id: 20140701063558.39A4E2004E@flycatcher.gentoo.org
1 jlec 14/07/01 06:35:58
2
3 Modified: ChangeLog
4 Added: wsgiintercept-0.6.5.ebuild
5 Log:
6 dev-python/wsgiintercept: Version Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.10 dev-python/wsgiintercept/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?rev=1.10&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?rev=1.10&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?r1=1.9&r2=1.10
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v
20 retrieving revision 1.9
21 retrieving revision 1.10
22 diff -u -r1.9 -r1.10
23 --- ChangeLog 10 Jun 2014 10:30:20 -0000 1.9
24 +++ ChangeLog 1 Jul 2014 06:35:58 -0000 1.10
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/wsgiintercept
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.9 2014/06/10 10:30:20 idella4 Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.10 2014/07/01 06:35:58 jlec Exp $
30 +
31 +*wsgiintercept-0.6.5 (01 Jul 2014)
32 +
33 + 01 Jul 2014; Justin Lecher <jlec@g.o> +wsgiintercept-0.6.5.ebuild:
34 + Version Bump
35
36 10 Jun 2014; Ian Delaney <idella4@g.o> -wsgiintercept-0.5.1.ebuild,
37 -wsgiintercept-0.6.0.ebuild, -wsgiintercept-0.6.1.ebuild,
38
39
40
41 1.1 dev-python/wsgiintercept/wsgiintercept-0.6.5.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.6.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.6.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wsgiintercept-0.6.5.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.6.5.ebuild,v 1.1 2014/07/01 06:35:58 jlec Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_7,3_3,3_4} pypy )
55
56 inherit distutils-r1
57
58 MY_PN="wsgi_intercept"
59 MY_P="${MY_PN}-${PV}"
60
61 DESCRIPTION="WSGI application in place of a real URI for testing"
62 HOMEPAGE="https://pypi.python.org/pypi/wsgi_intercept https://github.com/cdent/python3-wsgi-intercept"
63 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
64
65 SLOT="0"
66 LICENSE="MIT"
67 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
68 IUSE="test"
69
70 RDEPEND=""
71 DEPEND="
72 dev-python/setuptools[${PYTHON_USEDEP}]
73 test? (
74 dev-python/httplib2[${PYTHON_USEDEP}]
75 >=dev-python/pytest-2.4[${PYTHON_USEDEP}]
76 >=dev-python/requests-2.0.1[${PYTHON_USEDEP}]
77 )"
78
79 S="${WORKDIR}/${MY_P}"
80
81 python_test() {
82 py.test || die "Tests failed under ${EPYTHON}"
83 }