Gentoo Archives: gentoo-commits

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