diff options
author | Mike Frysinger <vapier@gentoo.org> | 2012-06-01 06:01:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2012-06-01 06:01:19 +0000 |
commit | 26eef8f8c71f648af51c8494dbcd65be334e853c (patch) | |
tree | a64b5b05b8fad06bc20bf6f2c1df4b5660287d19 /net-misc/gsutil | |
parent | Drop x32 patches for now as these are old and no longer work #418225 by Ostas... (diff) | |
download | gentoo-2-26eef8f8c71f648af51c8494dbcd65be334e853c.tar.gz gentoo-2-26eef8f8c71f648af51c8494dbcd65be334e853c.tar.bz2 gentoo-2-26eef8f8c71f648af51c8494dbcd65be334e853c.zip |
Drop older version to move to non-datestamp releases.
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/gsutil')
-rw-r--r-- | net-misc/gsutil/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/gsutil/gsutil-2011.21.11-r1.ebuild | 59 |
2 files changed, 4 insertions, 60 deletions
diff --git a/net-misc/gsutil/ChangeLog b/net-misc/gsutil/ChangeLog index 541786c87213..7c70e1f623b2 100644 --- a/net-misc/gsutil/ChangeLog +++ b/net-misc/gsutil/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/gsutil # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gsutil/ChangeLog,v 1.5 2012/05/21 21:48:27 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/gsutil/ChangeLog,v 1.6 2012/06/01 06:01:19 vapier Exp $ + + 01 Jun 2012; Mike Frysinger <vapier@gentoo.org> -gsutil-2011.21.11-r1.ebuild: + Drop older version to move to non-datestamp releases. *gsutil-3.7 (21 May 2012) diff --git a/net-misc/gsutil/gsutil-2011.21.11-r1.ebuild b/net-misc/gsutil/gsutil-2011.21.11-r1.ebuild deleted file mode 100644 index 2b038bd2b486..000000000000 --- a/net-misc/gsutil/gsutil-2011.21.11-r1.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/gsutil/gsutil-2011.21.11-r1.ebuild,v 1.1 2011/12/13 19:55:27 vapier Exp $ - -EAPI="3" - -inherit versionator eutils python multilib - -MY_P=$(version_format_string '${PN}_$3-$2-$1') - -DESCRIPTION="command line tool for interacting with cloud storage services" -HOMEPAGE="http://code.google.com/p/gsutil/" -SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="examples" - -DEPEND="" -RDEPEND="${DEPEND} - >=dev-python/boto-2.1.1" - -S=${WORKDIR}/${PN} - -src_prepare() { - # use system boto - rm -rf boto - epatch "${FILESDIR}"/${PN}-system-boto.patch - - # use the custom internal path to avoid polluting python system - sed -i \ - -e "/^gsutil_bin_dir =/s:=.*:= '/usr/$(get_libdir)/${PN}';sys.path.insert(0, gsutil_bin_dir);:" \ - gsutil || die - - # trim some cruft - find gslib third_party -name README -delete -} - -src_install() { - dobin gsutil || die - - insinto /usr/$(get_libdir)/${PN} - doins -r gslib oauth2_plugin third_party VERSION || die - - dodoc README - if use examples ; then - insinto /usr/share/doc/${PF}/examples - doins -r cloud{auth,reader} - fi -} - -pkg_postinst() { - python_mod_optimize /usr/$(get_libdir)/${PN} -} - -pkg_postrm() { - python_mod_cleanup /usr/$(get_libdir)/${PN} -} |