Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/gsutil: gsutil-4.7.ebuild ChangeLog
Date: Wed, 31 Dec 2014 01:55:33
Message-Id: 20141231015527.2C8C6E88D@oystercatcher.gentoo.org
1 vapier 14/12/31 01:55:27
2
3 Modified: ChangeLog
4 Added: gsutil-4.7.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
9
10 Revision Changes Path
11 1.20 net-misc/gsutil/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gsutil/ChangeLog?rev=1.20&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gsutil/ChangeLog?rev=1.20&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gsutil/ChangeLog?r1=1.19&r2=1.20
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-misc/gsutil/ChangeLog,v
20 retrieving revision 1.19
21 retrieving revision 1.20
22 diff -u -r1.19 -r1.20
23 --- ChangeLog 30 Nov 2014 16:39:18 -0000 1.19
24 +++ ChangeLog 31 Dec 2014 01:55:27 -0000 1.20
25 @@ -1,6 +1,13 @@
26 # ChangeLog for net-misc/gsutil
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gsutil/ChangeLog,v 1.19 2014/11/30 16:39:18 mgorny Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gsutil/ChangeLog,v 1.20 2014/12/31 01:55:27 vapier Exp $
30 +
31 +*gsutil-4.7 (31 Dec 2014)
32 +
33 + 31 Dec 2014; Mike Frysinger <vapier@g.o>
34 + +files/gsutil-4.7-drop-http_proxy-clearing.patch,
35 + +files/gsutil-4.7-use-friendy-version-checks.patch, +gsutil-4.7.ebuild:
36 + Version bump.
37
38 30 Nov 2014; Michał Górny <mgorny@g.o> gsutil-4.4.ebuild,
39 gsutil-4.5.ebuild, gsutil-4.6.ebuild:
40
41
42
43 1.1 net-misc/gsutil/gsutil-4.7.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gsutil/gsutil-4.7.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/gsutil/gsutil-4.7.ebuild?rev=1.1&content-type=text/plain
47
48 Index: gsutil-4.7.ebuild
49 ===================================================================
50 # Copyright 1999-2014 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-misc/gsutil/gsutil-4.7.ebuild,v 1.1 2014/12/31 01:55:27 vapier Exp $
53
54 EAPI="5"
55 PYTHON_COMPAT=( python2_7 )
56
57 inherit distutils-r1
58
59 DESCRIPTION="command line tool for interacting with cloud storage services"
60 HOMEPAGE="https://github.com/GoogleCloudPlatform/gsutil"
61 SRC_URI="http://commondatastorage.googleapis.com/pub/${PN}_${PV}.tar.gz"
62
63 LICENSE="Apache-2.0"
64 SLOT="0"
65 KEYWORDS="~amd64 ~arm ~x86"
66 IUSE=""
67
68 DEPEND="${PYTHON_DEPS}"
69 RDEPEND="${DEPEND}
70 >=dev-python/boto-2.30.0[${PYTHON_USEDEP}]
71 >=dev-python/crcmod-1.7[${PYTHON_USEDEP}]
72 >=dev-python/httplib2-0.8[${PYTHON_USEDEP}]
73 >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
74 >=dev-python/gcs-oauth2-boto-plugin-1.8[${PYTHON_USEDEP}]
75 >=dev-python/oauth2client-1.4.1[${PYTHON_USEDEP}]
76 >=dev-python/python-gflags-2.0[${PYTHON_USEDEP}]
77 >=dev-python/retry-decorator-1.0.0[${PYTHON_USEDEP}]
78 dev-python/setuptools[${PYTHON_USEDEP}]
79 >=dev-python/six-1.8.0[${PYTHON_USEDEP}]
80 >=dev-python/socksipy-1.01[${PYTHON_USEDEP}]"
81
82 S=${WORKDIR}/${PN}
83
84 DOCS=( README.md CHANGES.md )
85
86 PATCHES=(
87 "${FILESDIR}/${PN}-4.7-use-friendy-version-checks.patch"
88 "${FILESDIR}/${PN}-4.7-drop-http_proxy-clearing.patch"
89 )
90
91 python_test() {
92 export BOTO_CONFIG=${FILESDIR}/dummy.boto
93 ${PYTHON} gslib/__main__.py test -u || die "tests failed"
94 }