Gentoo Archives: gentoo-commits

From: "Ian Delaney (idella4)" <idella4@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/google-apputils: google-apputils-0.4.0.ebuild ChangeLog
Date: Tue, 30 Sep 2014 09:55:03
Message-Id: 20140930095458.52F65694A@oystercatcher.gentoo.org
1 idella4 14/09/30 09:54:58
2
3 Modified: google-apputils-0.4.0.ebuild ChangeLog
4 Log:
5 update deps to current python-dateutil, versioning set in source wrong as it was set 2.5 years ago at this point in time. Observed by and ack to Arfrever for the archival search providing confirmation of the out of date state
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
8
9 Revision Changes Path
10 1.2 dev-python/google-apputils/google-apputils-0.4.0.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/google-apputils/google-apputils-0.4.0.ebuild?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/google-apputils/google-apputils-0.4.0.ebuild?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/google-apputils/google-apputils-0.4.0.ebuild?r1=1.1&r2=1.2
15
16 Index: google-apputils-0.4.0.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-python/google-apputils/google-apputils-0.4.0.ebuild,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- google-apputils-0.4.0.ebuild 30 Sep 2014 05:05:00 -0000 1.1
23 +++ google-apputils-0.4.0.ebuild 30 Sep 2014 09:54:58 -0000 1.2
24 @@ -1,10 +1,10 @@
25 # Copyright 1999-2014 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-python/google-apputils/google-apputils-0.4.0.ebuild,v 1.1 2014/09/30 05:05:00 idella4 Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-python/google-apputils/google-apputils-0.4.0.ebuild,v 1.2 2014/09/30 09:54:58 idella4 Exp $
29
30 EAPI="5"
31
32 -PYTHON_COMPAT=( python2_7 )
33 +PYTHON_COMPAT=( python2_7 ) # Doesn't yet support py3
34
35 inherit distutils-r1
36
37 @@ -17,15 +17,23 @@
38 KEYWORDS="~amd64 ~x86"
39 IUSE="test"
40
41 -RDEPEND="dev-python/python-dateutil:python-2
42 +RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]
43 +
44 dev-python/python-gflags[${PYTHON_USEDEP}]
45 dev-python/pytz[${PYTHON_USEDEP}]"
46 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
47 test? ( ${RDEPEND}
48 dev-python/mox[${PYTHON_USEDEP}] )"
49 -
50 # version borders needed are already confluent with versions in the tree
51
52 +python_prepare_all() {
53 + # https://code.google.com/p/google-apputils-python/source/detail?r=12
54 + # This version bordering is long out of date and wrong since end of March 2012!
55 + sed -e 's:>=1.4,<2:>=1.4:' -i setup.py || die
56 +
57 + distutils-r1_python_prepare_all
58 +}
59 +
60 python_test() {
61 # These yield 2 fails which are in fact expected errors run from a shell script!
62 # They seemingly have no immediate mechanism to exit 0 in an expected fail style.
63
64
65
66 1.3 dev-python/google-apputils/ChangeLog
67
68 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/google-apputils/ChangeLog?rev=1.3&view=markup
69 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/google-apputils/ChangeLog?rev=1.3&content-type=text/plain
70 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/google-apputils/ChangeLog?r1=1.2&r2=1.3
71
72 Index: ChangeLog
73 ===================================================================
74 RCS file: /var/cvsroot/gentoo-x86/dev-python/google-apputils/ChangeLog,v
75 retrieving revision 1.2
76 retrieving revision 1.3
77 diff -u -r1.2 -r1.3
78 --- ChangeLog 30 Sep 2014 05:09:15 -0000 1.2
79 +++ ChangeLog 30 Sep 2014 09:54:58 -0000 1.3
80 @@ -1,6 +1,11 @@
81 # ChangeLog for dev-python/google-apputils
82 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
83 -# $Header: /var/cvsroot/gentoo-x86/dev-python/google-apputils/ChangeLog,v 1.2 2014/09/30 05:09:15 idella4 Exp $
84 +# $Header: /var/cvsroot/gentoo-x86/dev-python/google-apputils/ChangeLog,v 1.3 2014/09/30 09:54:58 idella4 Exp $
85 +
86 + 30 Sep 2014; Ian Delaney <idella4@g.o> google-apputils-0.4.0.ebuild:
87 + update deps to current python-dateutil, versioning set in source wrong as it
88 + was set 2.5 years ago at this point in time. Observed by and ack to Arfrever
89 + for the archival search providing confirmation of the out of date state
90
91 *google-apputils-0.4.0 (30 Sep 2014)