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.1.ebuild ChangeLog
Date: Mon, 03 Feb 2014 12:42:02
Message-Id: 20140203124158.E4D092004C@flycatcher.gentoo.org
1 jlec 14/02/03 12:41:58
2
3 Modified: ChangeLog
4 Added: wsgiintercept-0.6.1.ebuild
5 Log:
6 Version Bump
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
9
10 Revision Changes Path
11 1.4 dev-python/wsgiintercept/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?rev=1.4&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?rev=1.4&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/ChangeLog?r1=1.3&r2=1.4
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v
20 retrieving revision 1.3
21 retrieving revision 1.4
22 diff -u -r1.3 -r1.4
23 --- ChangeLog 27 Nov 2013 17:55:42 -0000 1.3
24 +++ ChangeLog 3 Feb 2014 12:41:58 -0000 1.4
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/wsgiintercept
27 -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.3 2013/11/27 17:55:42 jlec Exp $
29 +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/wsgiintercept/ChangeLog,v 1.4 2014/02/03 12:41:58 jlec Exp $
31 +
32 +*wsgiintercept-0.6.1 (03 Feb 2014)
33 +
34 + 03 Feb 2014; Justin Lecher <jlec@g.o> +wsgiintercept-0.6.1.ebuild:
35 + Version Bump
36
37 27 Nov 2013; Justin Lecher <jlec@g.o> metadata.xml:
38 Add upstream information
39
40
41
42 1.1 dev-python/wsgiintercept/wsgiintercept-0.6.1.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.6.1.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/wsgiintercept/wsgiintercept-0.6.1.ebuild?rev=1.1&content-type=text/plain
46
47 Index: wsgiintercept-0.6.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/dev-python/wsgiintercept/wsgiintercept-0.6.1.ebuild,v 1.1 2014/02/03 12:41:58 jlec Exp $
52
53 EAPI=5
54
55 PYTHON_COMPAT=( python{2_6,2_7,3_3} )
56
57 inherit distutils-r1
58
59 MY_PN="wsgi_intercept"
60 MY_P="${MY_PN}-${PV}"
61
62 DESCRIPTION="WSGI application in place of a real URI for testing"
63 HOMEPAGE="https://pypi.python.org/pypi/wsgi_intercept https://github.com/cdent/python3-wsgi-intercept"
64 SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
65
66 SLOT="0"
67 LICENSE="MIT"
68 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
69 IUSE="test"
70
71 RDEPEND=""
72 DEPEND="
73 dev-python/setuptools[${PYTHON_USEDEP}]
74 test? (
75 dev-python/httplib2[${PYTHON_USEDEP}]
76 >=dev-python/pytest-2.4[${PYTHON_USEDEP}]
77 >=dev-python/requests-2[${PYTHON_USEDEP}]
78 )"
79
80 S="${WORKDIR}/${MY_P}"
81
82 PATCHES=( "${FILESDIR}/0.6.0-fix-tests.patch" )
83
84 python_test() {
85 py.test || die
86 }