mirror of
https://github.com/flatcar/scripts.git
synced 2025-08-21 14:31:02 +02:00
net-misc/gcutil: remove package
This commit is contained in:
parent
ec21fe648a
commit
a7e98e01f1
@ -1,14 +0,0 @@
|
||||
DEFINED_PHASES=compile configure install prepare test
|
||||
DEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
|
||||
DESCRIPTION=Command line tool for interacting with Google Compute Engine
|
||||
EAPI=5
|
||||
HOMEPAGE=https://developers.google.com/compute/docs/gcutil/
|
||||
IUSE=python_targets_python2_7
|
||||
KEYWORDS=amd64
|
||||
LICENSE=Apache-2.0
|
||||
RDEPEND=python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/httplib2-0.8[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/google-api-python-client-1.2[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/ipaddr-2.1.10[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/iso8601-0.1.4[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/google-apputils-0.4.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] >=dev-python/python-gflags-2.0[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] =dev-python/oauth2client-1.4*[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/pyyaml[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] dev-python/setuptools[python_targets_python2_7(-)?,-python_single_target_python2_7(-)] python_targets_python2_7? ( >=dev-lang/python-2.7.5-r2:2.7 ) >=dev-lang/python-exec-2:=[python_targets_python2_7(-)?,-python_single_target_python2_7(-)]
|
||||
REQUIRED_USE=|| ( python_targets_python2_7 )
|
||||
SLOT=0
|
||||
SRC_URI=https://dl.google.com/dl/cloudsdk/release/artifacts/gcutil-1.16.5.tar.gz
|
||||
_eclasses_=distutils-r1 372bbe39047c0a2550319a3a82f3e063 epatch 8233751dc5105a6ae8fcd86ce2bb0247 estack 43ddf5aaffa7a8d0482df54d25a66a1f eutils 9c113d6a64826c40154cad7be15d95ea ltprune 2770eed66a9b8ef944714cd0e968182e multibuild 72647e255187a1fadc81097b3657e5c3 multilib 97f470f374f2e94ccab04a2fb21d811e multiprocessing 284a473719153462f3e974d86c8cb81c python-r1 e9350ec46bb5c9f3504b4fbe8b8d8987 python-utils-r1 c9de01becf9df3f8c10aeec3dc693f5d toolchain-funcs 8fec6b1eb195836560e70b66d98fb163 xdg-utils b9389dfad0ee8f8e0b2a41b79fcf7120
|
||||
_md5_=c6bf904fe0f85c50425d68f813df96a3
|
@ -1 +0,0 @@
|
||||
DIST gcutil-1.16.5.tar.gz 475617 SHA256 f22e9281cce7a941e4fc622ab77b3bf5efde1fd8ffd5ab713f13ac976f940d15 SHA512 f85c7c74a5945ab0716d74a51832f88363ca7aa607cad112e510521474bc17e2f20d4186067fa96ac6d384434d9a047201c63eb64b6c343e7344f6f7411fa7b9 WHIRLPOOL 8ee96f4532e8e4c604a3575e281ce99c00cc69c8eb7062d8e8442a427ef09ff5cacd7c91f77dda29c205840eb1dfd10c9489d9d65a7a354504b0987ac4371789
|
@ -1,42 +0,0 @@
|
||||
From 6fe56f08bfb93c1a93fb275a292ce8043ab05494 Mon Sep 17 00:00:00 2001
|
||||
From: Michael Marineau <mike@marineau.org>
|
||||
Date: Wed, 20 Nov 2013 13:12:43 -0800
|
||||
Subject: [PATCH] Use friendly version checks
|
||||
|
||||
---
|
||||
setup.py | 14 +++++++-------
|
||||
1 file changed, 7 insertions(+), 7 deletions(-)
|
||||
|
||||
diff --git a/setup.py b/setup.py
|
||||
index b88cb50..b9b3c09 100755
|
||||
--- a/setup.py
|
||||
+++ b/setup.py
|
||||
@@ -23,18 +23,18 @@ except ImportError:
|
||||
ROOT = os.path.dirname(os.path.realpath(__file__))
|
||||
|
||||
REQUIREMENTS = [
|
||||
- 'google-api-python-client==1.2',
|
||||
- 'google-apputils==0.4.0',
|
||||
- 'httplib2==0.8',
|
||||
- 'ipaddr==2.1.10',
|
||||
- 'iso8601==0.1.4',
|
||||
- 'python-gflags==2.0'
|
||||
+ 'google-api-python-client>=1.2',
|
||||
+ 'google-apputils>=0.4.0',
|
||||
+ 'httplib2>=0.8',
|
||||
+ 'ipaddr>=2.1.10',
|
||||
+ 'iso8601>=0.1.4',
|
||||
+ 'python-gflags>=2.0'
|
||||
]
|
||||
|
||||
try:
|
||||
import argparse
|
||||
except ImportError:
|
||||
- REQUIREMENTS.append('argparse==1.2.1')
|
||||
+ REQUIREMENTS.append('argparse>=1.2.1')
|
||||
|
||||
|
||||
def GetVersion():
|
||||
--
|
||||
1.8.1.5
|
||||
|
@ -1,41 +0,0 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
EAPI="5"
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1
|
||||
|
||||
DESCRIPTION="Command line tool for interacting with Google Compute Engine"
|
||||
HOMEPAGE="https://developers.google.com/compute/docs/gcutil/"
|
||||
SRC_URI="https://dl.google.com/dl/cloudsdk/release/artifacts/${P}.tar.gz"
|
||||
|
||||
LICENSE="Apache-2.0"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64"
|
||||
IUSE=""
|
||||
|
||||
DEPEND="${PYTHON_DEPS}"
|
||||
RDEPEND="${DEPEND}
|
||||
>=dev-python/httplib2-0.8[${PYTHON_USEDEP}]
|
||||
>=dev-python/google-api-python-client-1.2[${PYTHON_USEDEP}]
|
||||
>=dev-python/ipaddr-2.1.10[${PYTHON_USEDEP}]
|
||||
>=dev-python/iso8601-0.1.4[${PYTHON_USEDEP}]
|
||||
>=dev-python/google-apputils-0.4.0[${PYTHON_USEDEP}]
|
||||
>=dev-python/python-gflags-2.0[${PYTHON_USEDEP}]
|
||||
=dev-python/oauth2client-1.4*[${PYTHON_USEDEP}]
|
||||
dev-python/pyyaml[${PYTHON_USEDEP}]
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
"
|
||||
|
||||
DOCS=( README CHANGELOG )
|
||||
PATCHES=(
|
||||
${FILESDIR}/${PN}-1.11.0-use-friendly-version-checks.patch
|
||||
)
|
||||
|
||||
python_test() {
|
||||
${PYTHON} setup.py google_test --test-dir "${BUILD_DIR}"/lib || \
|
||||
ewarn "FIXME: Tests failed with ${EPYTHON}"
|
||||
# There seems to be a version compatibility issue...
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user