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/unicodecsv: unicodecsv-0.13.0.ebuild ChangeLog
Date: Sun, 02 Aug 2015 10:01:55
Message-Id: 20150802100146.7227F119@oystercatcher.gentoo.org
1 jlec 15/08/02 10:01:46
2
3 Modified: unicodecsv-0.13.0.ebuild ChangeLog
4 Log:
5 Add py3 support
6
7 (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key E9402A79B03529A2!)
8
9 Revision Changes Path
10 1.2 dev-python/unicodecsv/unicodecsv-0.13.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unicodecsv/unicodecsv-0.13.0.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unicodecsv/unicodecsv-0.13.0.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unicodecsv/unicodecsv-0.13.0.ebuild?r1=1.1&r2=1.2
15
16 Index: unicodecsv-0.13.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/unicodecsv/unicodecsv-0.13.0.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- unicodecsv-0.13.0.ebuild 29 May 2015 03:45:35 -0000 1.1
23 +++ unicodecsv-0.13.0.ebuild 2 Aug 2015 10:01:46 -0000 1.2
24 @@ -1,14 +1,15 @@
25 # Copyright 1999-2015 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/unicodecsv/unicodecsv-0.13.0.ebuild,v 1.1 2015/05/29 03:45:35 patrick Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/unicodecsv/unicodecsv-0.13.0.ebuild,v 1.2 2015/08/02 10:01:46 jlec Exp $
29
30 EAPI=5
31 -PYTHON_COMPAT=( python2_7 )
32 +
33 +PYTHON_COMPAT=( python2_7 python3_{3,4} )
34
35 inherit distutils-r1
36
37 DESCRIPTION="Drop-in replacement for python stdlib csv module supporting unicode"
38 -HOMEPAGE="https://pypi.python.org/pypi/unicodecsv"
39 +HOMEPAGE="https://pypi.python.org/pypi/unicodecsv https://github.com/jdunck/python-unicodecsv"
40 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41
42 LICENSE="BSD"
43 @@ -16,5 +17,9 @@
44 KEYWORDS="~amd64 ~x86"
45 IUSE=""
46
47 -RDEPEND=""
48 -DEPEND="${RDEPEND}"
49 +# not contained in the release tarball
50 +RESTRICT="test"
51 +
52 +python_test() {
53 + esetup.py test
54 +}
55
56
57
58 1.8 dev-python/unicodecsv/ChangeLog
59
60 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unicodecsv/ChangeLog?rev=1.8&view=markup
61 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unicodecsv/ChangeLog?rev=1.8&content-type=text/plain
62 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unicodecsv/ChangeLog?r1=1.7&r2=1.8
63
64 Index: ChangeLog
65 ===================================================================
66 RCS file: /var/cvsroot/gentoo-x86/dev-python/unicodecsv/ChangeLog,v
67 retrieving revision 1.7
68 retrieving revision 1.8
69 diff -u -r1.7 -r1.8
70 --- ChangeLog 29 May 2015 03:45:35 -0000 1.7
71 +++ ChangeLog 2 Aug 2015 10:01:46 -0000 1.8
72 @@ -1,6 +1,9 @@
73 # ChangeLog for dev-python/unicodecsv
74 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
75 -# $Header: /var/cvsroot/gentoo-x86/dev-python/unicodecsv/ChangeLog,v 1.7 2015/05/29 03:45:35 patrick Exp $
76 +# $Header: /var/cvsroot/gentoo-x86/dev-python/unicodecsv/ChangeLog,v 1.8 2015/08/02 10:01:46 jlec Exp $
77 +
78 + 02 Aug 2015; Justin Lecher <jlec@g.o> unicodecsv-0.13.0.ebuild:
79 + Add py3 support
80
81 *unicodecsv-0.13.0 (29 May 2015)