summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Orlitzky <mjo@gentoo.org>2015-10-27 19:07:13 -0400
committerMichael Orlitzky <mjo@gentoo.org>2015-10-27 19:07:13 -0400
commit778ca5acef69fee4743cb7238a56afecf0923dd6 (patch)
tree41c9516abbccc55f145ac497d0bacf7f8570ccb8
parentapp-admin/drush: version bump the 6.x series. (diff)
downloadgentoo-778ca5acef69fee4743cb7238a56afecf0923dd6.tar.gz
gentoo-778ca5acef69fee4743cb7238a56afecf0923dd6.tar.bz2
gentoo-778ca5acef69fee4743cb7238a56afecf0923dd6.zip
app-admin/drush: remove old version 5.8 (deprecated EAPI, obsolete).
Package-Manager: portage-2.2.20.1
-rw-r--r--app-admin/drush/Manifest1
-rw-r--r--app-admin/drush/drush-5.8.ebuild58
2 files changed, 0 insertions, 59 deletions
diff --git a/app-admin/drush/Manifest b/app-admin/drush/Manifest
index 523c8f757e0b..77ff48bb451d 100644
--- a/app-admin/drush/Manifest
+++ b/app-admin/drush/Manifest
@@ -1,3 +1,2 @@
-DIST drush-5.8.tar.gz 409642 SHA256 15dd85f04c49b4a896b02dd6960d3140f3ae680bab3eea5d3aba27be0481e480 SHA512 85f7572aece8590d23164dc938e00b740718a5b9bf20ca866083f9e8ce2025ec07f57e06234bf50bfe2351f407f5bad21789103c1e04d18d2fd202fa735637e6 WHIRLPOOL 68f4a8ca09fc61c36de3d6cc6e3aeaab2021b677ba9d732a65f4d5a9940ebbee3cd63dc84f165e119770168547b1997aff6c23497dc50dbe548df348c296188c
DIST drush-6.5.0.tar.gz 509643 SHA256 0e6bfb8a4bd75846dbca25f6d3e3130a706546f6a62edadce2eb00099750e2a7 SHA512 4afd348c025b9303386131687205af4219a77e6c822518b079a3f0475cbd7ed03647797d613300c7a281e2354f0d855435222fe1afe13447153cdbd6a4393add WHIRLPOOL 1f2a1a725e1c0f89cac90a1338e1541e587c7834560fd23d1a44341696be320e65cf93508d4841f02ca9b30ac62f3fed7de772e00f4eaeea64f287cf19682fcc
DIST drush-6.6.0.tar.gz 511330 SHA256 67f7a1f08238c8c3f61d4e93f8c7c83508f392086c9931865fd1022981e8f698 SHA512 d7d361628406dd0f0fc5b07e7a318abd04ca7ac63da9d3fa705b0a64b531394f6e45e944dbd1c2e7eaec6643a92792b9b8558aea6ebb5311ce7acd32aa438a21 WHIRLPOOL ff0f2b1f20cc7a5767513be78b6f7ce1d09fb8929089ac918c4982e57f7c5c4f174c5dfd75235dafde57e65b90717844d4d9dfa199871e5c65bc4deda19b6b8c
diff --git a/app-admin/drush/drush-5.8.ebuild b/app-admin/drush/drush-5.8.ebuild
deleted file mode 100644
index daccda321913..000000000000
--- a/app-admin/drush/drush-5.8.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit bash-completion-r1
-
-DESCRIPTION="Drush is a command line shell and scripting interface for Drupal"
-HOMEPAGE="http://drupal.org/project/drush"
-SRC_URI="http://ftp.drupal.org/files/projects/${PN}-7.x-${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+examples"
-
-DEPEND="dev-lang/php[cli,ctype,simplexml]
- dev-php/pear
- dev-php/PEAR-Console_Table
- dev-php/PEAR-Console_Getopt"
-RDEPEND="${DEPEND}"
-S="${WORKDIR}/${PN}"
-
-src_prepare() {
- sed -i -e \
- "s!/share/doc/drush!/share/doc/${PF}!" \
- -e "s!README\.txt!\0.bz2!g" \
- includes/bootstrap.inc || die
- sed -i \
- -e "s!\.php'!.php.bz2'!" \
- -e "s!\.ini'!.ini.bz2'!" \
- -e "s!\.txt'!.txt.bz2'!" \
- -e "s!\.bashrc'!.bashrc.bz2'!" \
- commands/core/docs.drush.inc || die
- sed \
- -e "1,2d" \
- -e "5,11d" \
- drush.complete.sh > drush.bashcomp
-}
-
-src_install() {
- local docs="README.txt docs"
- use examples && docs="${docs} examples"
- insinto /usr/share/drush
- doins -r .
- exeinto /usr/share/drush
- doexe drush
- dosym /usr/share/drush/drush /usr/bin/drush
- dodoc -r ${docs}
- # cleanup
- for i in ${docs} LICENSE.txt drush.bat examples includes/.gitignore \
- .gitignore .travis.yml drush.complete.sh ; do
- rm -rf "${D}/usr/share/drush/${i}"
- done
- keepdir /etc/drush
- newbashcomp drush.bashcomp drush
-}