Gentoo Archives: gentoo-commits

From: Michael Orlitzky <mjo@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
Date: Tue, 27 Oct 2015 23:13:22
Message-Id: 1445987233.778ca5acef69fee4743cb7238a56afecf0923dd6.mjo@gentoo
1 commit: 778ca5acef69fee4743cb7238a56afecf0923dd6
2 Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 27 23:07:13 2015 +0000
4 Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 27 23:07:13 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778ca5ac
7
8 app-admin/drush: remove old version 5.8 (deprecated EAPI, obsolete).
9
10 Package-Manager: portage-2.2.20.1
11
12 app-admin/drush/Manifest | 1 -
13 app-admin/drush/drush-5.8.ebuild | 58 ----------------------------------------
14 2 files changed, 59 deletions(-)
15
16 diff --git a/app-admin/drush/Manifest b/app-admin/drush/Manifest
17 index 523c8f7..77ff48b 100644
18 --- a/app-admin/drush/Manifest
19 +++ b/app-admin/drush/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST drush-5.8.tar.gz 409642 SHA256 15dd85f04c49b4a896b02dd6960d3140f3ae680bab3eea5d3aba27be0481e480 SHA512 85f7572aece8590d23164dc938e00b740718a5b9bf20ca866083f9e8ce2025ec07f57e06234bf50bfe2351f407f5bad21789103c1e04d18d2fd202fa735637e6 WHIRLPOOL 68f4a8ca09fc61c36de3d6cc6e3aeaab2021b677ba9d732a65f4d5a9940ebbee3cd63dc84f165e119770168547b1997aff6c23497dc50dbe548df348c296188c
22 DIST drush-6.5.0.tar.gz 509643 SHA256 0e6bfb8a4bd75846dbca25f6d3e3130a706546f6a62edadce2eb00099750e2a7 SHA512 4afd348c025b9303386131687205af4219a77e6c822518b079a3f0475cbd7ed03647797d613300c7a281e2354f0d855435222fe1afe13447153cdbd6a4393add WHIRLPOOL 1f2a1a725e1c0f89cac90a1338e1541e587c7834560fd23d1a44341696be320e65cf93508d4841f02ca9b30ac62f3fed7de772e00f4eaeea64f287cf19682fcc
23 DIST drush-6.6.0.tar.gz 511330 SHA256 67f7a1f08238c8c3f61d4e93f8c7c83508f392086c9931865fd1022981e8f698 SHA512 d7d361628406dd0f0fc5b07e7a318abd04ca7ac63da9d3fa705b0a64b531394f6e45e944dbd1c2e7eaec6643a92792b9b8558aea6ebb5311ce7acd32aa438a21 WHIRLPOOL ff0f2b1f20cc7a5767513be78b6f7ce1d09fb8929089ac918c4982e57f7c5c4f174c5dfd75235dafde57e65b90717844d4d9dfa199871e5c65bc4deda19b6b8c
24
25 diff --git a/app-admin/drush/drush-5.8.ebuild b/app-admin/drush/drush-5.8.ebuild
26 deleted file mode 100644
27 index daccda3..0000000
28 --- a/app-admin/drush/drush-5.8.ebuild
29 +++ /dev/null
30 @@ -1,58 +0,0 @@
31 -# Copyright 1999-2013 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -# $Id$
34 -
35 -EAPI="4"
36 -
37 -inherit bash-completion-r1
38 -
39 -DESCRIPTION="Drush is a command line shell and scripting interface for Drupal"
40 -HOMEPAGE="http://drupal.org/project/drush"
41 -SRC_URI="http://ftp.drupal.org/files/projects/${PN}-7.x-${PV}.tar.gz -> ${P}.tar.gz"
42 -
43 -LICENSE="GPL-2"
44 -SLOT="0"
45 -KEYWORDS="amd64 x86"
46 -IUSE="+examples"
47 -
48 -DEPEND="dev-lang/php[cli,ctype,simplexml]
49 - dev-php/pear
50 - dev-php/PEAR-Console_Table
51 - dev-php/PEAR-Console_Getopt"
52 -RDEPEND="${DEPEND}"
53 -S="${WORKDIR}/${PN}"
54 -
55 -src_prepare() {
56 - sed -i -e \
57 - "s!/share/doc/drush!/share/doc/${PF}!" \
58 - -e "s!README\.txt!\0.bz2!g" \
59 - includes/bootstrap.inc || die
60 - sed -i \
61 - -e "s!\.php'!.php.bz2'!" \
62 - -e "s!\.ini'!.ini.bz2'!" \
63 - -e "s!\.txt'!.txt.bz2'!" \
64 - -e "s!\.bashrc'!.bashrc.bz2'!" \
65 - commands/core/docs.drush.inc || die
66 - sed \
67 - -e "1,2d" \
68 - -e "5,11d" \
69 - drush.complete.sh > drush.bashcomp
70 -}
71 -
72 -src_install() {
73 - local docs="README.txt docs"
74 - use examples && docs="${docs} examples"
75 - insinto /usr/share/drush
76 - doins -r .
77 - exeinto /usr/share/drush
78 - doexe drush
79 - dosym /usr/share/drush/drush /usr/bin/drush
80 - dodoc -r ${docs}
81 - # cleanup
82 - for i in ${docs} LICENSE.txt drush.bat examples includes/.gitignore \
83 - .gitignore .travis.yml drush.complete.sh ; do
84 - rm -rf "${D}/usr/share/drush/${i}"
85 - done
86 - keepdir /etc/drush
87 - newbashcomp drush.bashcomp drush
88 -}