diff options
author | 2014-02-03 15:31:51 +0000 | |
---|---|---|
committer | 2014-02-03 15:31:51 +0000 | |
commit | 3b14a2ebbd2cb9fc70cd72ce26147d299bd2144a (patch) | |
tree | 5bccd4756c86492a932b7306e37dff1209043a6d /net-misc/gsutil | |
parent | Add fix from upstream for running tests w/python-2.7 #447482 by Michał Górny. (diff) | |
download | gentoo-2-3b14a2ebbd2cb9fc70cd72ce26147d299bd2144a.tar.gz gentoo-2-3b14a2ebbd2cb9fc70cd72ce26147d299bd2144a.tar.bz2 gentoo-2-3b14a2ebbd2cb9fc70cd72ce26147d299bd2144a.zip |
Version bump.
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Diffstat (limited to 'net-misc/gsutil')
-rw-r--r-- | net-misc/gsutil/ChangeLog | 10 | ||||
-rw-r--r-- | net-misc/gsutil/files/gsutil-3.42-use-friendy-version-checks.patch | 20 | ||||
-rw-r--r-- | net-misc/gsutil/gsutil-3.42.ebuild | 44 |
3 files changed, 72 insertions, 2 deletions
diff --git a/net-misc/gsutil/ChangeLog b/net-misc/gsutil/ChangeLog index 123a1a4d87b6..e633c3e88bd1 100644 --- a/net-misc/gsutil/ChangeLog +++ b/net-misc/gsutil/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-misc/gsutil -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gsutil/ChangeLog,v 1.12 2013/12/09 07:08:06 vapier Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gsutil/ChangeLog,v 1.13 2014/02/03 15:31:51 vapier Exp $ + +*gsutil-3.42 (03 Feb 2014) + + 03 Feb 2014; Mike Frysinger <vapier@gentoo.org> + +files/gsutil-3.42-use-friendy-version-checks.patch, +gsutil-3.42.ebuild: + Version bump. *gsutil-3.37 (09 Dec 2013) diff --git a/net-misc/gsutil/files/gsutil-3.42-use-friendy-version-checks.patch b/net-misc/gsutil/files/gsutil-3.42-use-friendy-version-checks.patch new file mode 100644 index 000000000000..5d8bbbc7635e --- /dev/null +++ b/net-misc/gsutil/files/gsutil-3.42-use-friendy-version-checks.patch @@ -0,0 +1,20 @@ +--- a/setup.py ++++ b/setup.py +@@ -33,15 +33,13 @@ management tasks, including: + """ + + requires = [ +- 'boto==2.22.1', ++ 'boto>=2.22.1', + 'httplib2>=0.8', + 'python-gflags>=2.0', + 'google-api-python-client>=1.1', + 'pyOpenSSL>=0.13', + 'crcmod>=1.7', +- # Not using 1.02 because of: +- # https://code.google.com/p/socksipy-branch/issues/detail?id=3 +- 'SocksiPy-branch==1.01', ++ 'SocksiPy-branch>=1.01', + 'retry_decorator>=1.0.0', + ] + diff --git a/net-misc/gsutil/gsutil-3.42.ebuild b/net-misc/gsutil/gsutil-3.42.ebuild new file mode 100644 index 000000000000..c633314682e1 --- /dev/null +++ b/net-misc/gsutil/gsutil-3.42.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/gsutil/gsutil-3.42.ebuild,v 1.1 2014/02/03 15:31:51 vapier Exp $ + +EAPI="5" +PYTHON_COMPAT=( python{2_6,2_7} ) + +inherit distutils-r1 + +DESCRIPTION="command line tool for interacting with cloud storage services" +HOMEPAGE="https://github.com/GoogleCloudPlatform/gsutil" +SRC_URI="http://commondatastorage.googleapis.com/pub/${PN}_${PV}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="${PYTHON_DEPS}" +RDEPEND="${DEPEND} + >=dev-python/boto-2.22.1[${PYTHON_USEDEP}] + >=dev-python/crcmod-1.7 + >=dev-python/httplib2-0.8[${PYTHON_USEDEP}] + >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}] + >=dev-python/google-api-python-client-1.1[${PYTHON_USEDEP}] + >=dev-python/python-gflags-2.0[${PYTHON_USEDEP}] + >=dev-python/retry-decorator-1.0.0[${PYTHON_USEDEP}] + dev-python/setuptools[${PYTHON_USEDEP}] + >=dev-python/socksipy-1.01[${PYTHON_USEDEP}] + " + +S=${WORKDIR}/${PN} + +DOCS=( README.md CHANGES.md ) + +PATCHES=( + "${FILESDIR}/${P}-use-friendy-version-checks.patch" + "${FILESDIR}/${PN}-3.37-drop-http_proxy-clearing.patch" +) + +python_test() { + export BOTO_CONFIG=${FILESDIR}/dummy.boto + ${PYTHON} gslib/__main__.py test -u || die "tests failed" +} |