Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/wsgiintercept: wsgiintercept-0.6.2.ebuild ChangeLog
Date: Sat, 03 May 2014 08:25:42
Message-Id: 20140503082539.7A6732004C@flycatcher.gentoo.org
1 patrick 14/05/03 08:25:39
2
3 Modified: ChangeLog
4 Added: wsgiintercept-0.6.2.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.5 dev-python/wsgiintercept/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?rev=1.5&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?rev=1.5&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?r1=1.4&r2=1.5
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v
20 retrieving revision 1.4
21 retrieving revision 1.5
22 diff -u -r1.4 -r1.5
23 --- ChangeLog 3 Feb 2014 12:41:58 -0000 1.4
24 +++ ChangeLog 3 May 2014 08:25:39 -0000 1.5
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.4 2014/02/03 12:41:58 jlec Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.5 2014/05/03 08:25:39 patrick Exp $
30 +
31 +*wsgiintercept-0.6.2 (03 May 2014)
32 +
33 + 03 May 2014; Patrick Lauer <patrick@g.o> +wsgiintercept-0.6.2.ebuild:
34 + Bump
35
36 *wsgiintercept-0.6.1 (03 Feb 2014)
37
38
39
40
41 1.1 dev-python/wsgiintercept/wsgiintercept-0.6.2.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.6.2.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.6.2.ebuild?rev=1.1&content-type=text/plain
45
46 Index: wsgiintercept-0.6.2.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.2.ebuild,v 1.1 2014/05/03 08:25:39 patrick Exp $
51
52 EAPI=5
53
54 PYTHON_COMPAT=( python{2_6,2_7,3_3} )
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[${PYTHON_USEDEP}]
77 )"
78
79 S="${WORKDIR}/${MY_P}"
80
81 PATCHES=( "${FILESDIR}/0.6.0-fix-tests.patch" )
82
83 python_test() {
84 py.test || die
85 }