Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
Date: Fri, 15 Feb 2019 18:42:42
Message-Id: 1550256153.93790bfb084204d20079f4a7670fa80ab4f2613b.zlogene@gentoo
1 commit: 93790bfb084204d20079f4a7670fa80ab4f2613b
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Fri Feb 15 18:42:21 2019 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 15 18:42:33 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93790bfb
7
8 app-admin/drush: Drop old
9
10 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-admin/drush/drush-6.7.0.ebuild | 63 --------------------------------------
14 1 file changed, 63 deletions(-)
15
16 diff --git a/app-admin/drush/drush-6.7.0.ebuild b/app-admin/drush/drush-6.7.0.ebuild
17 deleted file mode 100644
18 index 9052c38c745..00000000000
19 --- a/app-admin/drush/drush-6.7.0.ebuild
20 +++ /dev/null
21 @@ -1,63 +0,0 @@
22 -# Copyright 1999-2016 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -inherit bash-completion-r1 eutils
28 -
29 -DESCRIPTION="Command line shell and scripting interface for Drupal"
30 -HOMEPAGE="https://github.com/drush-ops/drush"
31 -SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
32 -
33 -LICENSE="GPL-2"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -IUSE=""
37 -
38 -DEPEND=""
39 -RDEPEND="dev-lang/php[cli,ctype,json,simplexml]
40 - dev-php/PEAR-Console_Table"
41 -
42 -src_prepare() {
43 - # Fix the bash completion script, check the patch for Gentoo/upstream
44 - # bug numbers.
45 - epatch "${FILESDIR}/update-bash-completion-script-for-2.1.patch"
46 -
47 - # dodoc compresses all of the documentation, so we fix the filenames
48 - # in a few places.
49 -
50 - # First, the README location in bootstrap.inc.
51 - sed -i -e \
52 - "s!/share/doc/drush!/share/doc/${PF}!" \
53 - -e "s!README\.md!\0.bz2!g" \
54 - includes/bootstrap.inc || die
55 -
56 - # Next, the list of documentation in docs.drush.inc. Note that
57 - # html files don't get compressed.
58 - sed -i \
59 - -e "s!\.bashrc'!.bashrc.bz2'!" \
60 - -e "s!\.inc'!.inc.bz2'!" \
61 - -e "s!\.ini'!.ini.bz2'!" \
62 - -e "s!\.md'!.md.bz2'!" \
63 - -e "s!\.php'!.php.bz2'!" \
64 - -e "s!\.script'!.script.bz2'!" \
65 - -e "s!\.txt'!.txt.bz2'!" \
66 - commands/core/docs.drush.inc || die
67 -}
68 -
69 -src_install() {
70 - # Always install the examples; they're referenced within the source
71 - # code and too difficult to exorcise.
72 - dodoc -r README.md docs examples
73 -
74 - insinto /usr/share/drush
75 - doins -r classes commands includes lib misc
76 - doins drush_logo-black.png drush.info drush.php
77 -
78 - exeinto /usr/share/drush
79 - doexe drush
80 - dosym ../share/drush/drush /usr/bin/drush
81 -
82 - keepdir /etc/drush
83 - newbashcomp drush.complete.sh drush
84 -}