* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2015-10-27 23:03 Michael Orlitzky
0 siblings, 0 replies; 17+ messages in thread
From: Michael Orlitzky @ 2015-10-27 23:03 UTC (permalink / raw
To: gentoo-commits
commit: abb38536f664542e115936a188d11cc935be7532
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 27 23:00:41 2015 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Oct 27 23:02:01 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abb38536
app-admin/drush: version bump the 6.x series.
A version bump to v7.1.0 was requested in bug #564260. Unfortunately,
the 7.x and 8.x series require Composer, and we cannot package them.
This however alerted me to a new v6.6.0 release -- the subject
of this commit.
Gentoo-Bug: 564260
Package-Manager: portage-2.2.20.1
app-admin/drush/Manifest | 1 +
app-admin/drush/drush-6.6.0.ebuild | 64 ++++++++++++++++++++++++++++++++++++++
2 files changed, 65 insertions(+)
diff --git a/app-admin/drush/Manifest b/app-admin/drush/Manifest
index 5fd5402..523c8f7 100644
--- a/app-admin/drush/Manifest
+++ b/app-admin/drush/Manifest
@@ -1,2 +1,3 @@
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-6.6.0.ebuild b/app-admin/drush/drush-6.6.0.ebuild
new file mode 100644
index 0000000..71807c6
--- /dev/null
+++ b/app-admin/drush/drush-6.6.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit bash-completion-r1 eutils
+
+DESCRIPTION="Command line shell and scripting interface for Drupal"
+HOMEPAGE="https://github.com/drush-ops/${PN}"
+SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="dev-lang/php[cli,ctype,json,simplexml]
+ dev-php/PEAR-Console_Table"
+
+src_prepare() {
+ # Fix the bash completion script, check the patch for Gentoo/upstream
+ # bug numbers.
+ epatch "${FILESDIR}/update-bash-completion-script-for-2.1.patch"
+
+ # dodoc compresses all of the documentation, so we fix the filenames
+ # in a few places.
+
+ # First, the README location in bootstrap.inc.
+ sed -i -e \
+ "s!/share/doc/drush!/share/doc/${PF}!" \
+ -e "s!README\.md!\0.bz2!g" \
+ includes/bootstrap.inc || die
+
+ # Next, the list of documentation in docs.drush.inc. Note that
+ # html files don't get compressed.
+ sed -i \
+ -e "s!\.bashrc'!.bashrc.bz2'!" \
+ -e "s!\.inc'!.inc.bz2'!" \
+ -e "s!\.ini'!.ini.bz2'!" \
+ -e "s!\.md'!.md.bz2'!" \
+ -e "s!\.php'!.php.bz2'!" \
+ -e "s!\.script'!.script.bz2'!" \
+ -e "s!\.txt'!.txt.bz2'!" \
+ commands/core/docs.drush.inc || die
+}
+
+src_install() {
+ # Always install the examples; they're referenced within the source
+ # code and too difficult to exorcise.
+ dodoc -r README.md docs examples
+
+ insinto /usr/share/drush
+ doins -r classes commands includes lib misc
+ doins drush_logo-black.png drush.info drush.php
+
+ exeinto /usr/share/drush
+ doexe drush
+ dosym /usr/share/drush/drush /usr/bin/drush
+
+ keepdir /etc/drush
+ newbashcomp drush.complete.sh drush
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2015-10-27 23:13 Michael Orlitzky
0 siblings, 0 replies; 17+ messages in thread
From: Michael Orlitzky @ 2015-10-27 23:13 UTC (permalink / raw
To: gentoo-commits
commit: 778ca5acef69fee4743cb7238a56afecf0923dd6
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 27 23:07:13 2015 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Oct 27 23:07:13 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=778ca5ac
app-admin/drush: remove old version 5.8 (deprecated EAPI, obsolete).
Package-Manager: portage-2.2.20.1
app-admin/drush/Manifest | 1 -
app-admin/drush/drush-5.8.ebuild | 58 ----------------------------------------
2 files changed, 59 deletions(-)
diff --git a/app-admin/drush/Manifest b/app-admin/drush/Manifest
index 523c8f7..77ff48b 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 daccda3..0000000
--- 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
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2015-10-27 23:23 Michael Orlitzky
0 siblings, 0 replies; 17+ messages in thread
From: Michael Orlitzky @ 2015-10-27 23:23 UTC (permalink / raw
To: gentoo-commits
commit: 1efe76def6671a724b07bc4202f5b06a7593d185
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 27 23:22:53 2015 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Tue Oct 27 23:23:27 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1efe76de
app-admin/drush: remove ${PN} from HOMEPAGE at hasufell's suggestion.
Package-Manager: portage-2.2.20.1
app-admin/drush/drush-6.6.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/drush/drush-6.6.0.ebuild b/app-admin/drush/drush-6.6.0.ebuild
index 71807c6..4737c38 100644
--- a/app-admin/drush/drush-6.6.0.ebuild
+++ b/app-admin/drush/drush-6.6.0.ebuild
@@ -7,7 +7,7 @@ EAPI=5
inherit bash-completion-r1 eutils
DESCRIPTION="Command line shell and scripting interface for Drupal"
-HOMEPAGE="https://github.com/drush-ops/${PN}"
+HOMEPAGE="https://github.com/drush-ops/drush"
SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2015-12-31 23:51 Michael Orlitzky
0 siblings, 0 replies; 17+ messages in thread
From: Michael Orlitzky @ 2015-12-31 23:51 UTC (permalink / raw
To: gentoo-commits
commit: d2e1784ce6a673b87c415179bcffbad7033c4ad0
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 31 23:47:39 2015 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Thu Dec 31 23:48:43 2015 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e1784c
app-admin/drush: version bump 6.6.0 -> 6.7.0.
Package-Manager: portage-2.2.24
app-admin/drush/Manifest | 2 +-
app-admin/drush/{drush-6.6.0.ebuild => drush-6.7.0.ebuild} | 0
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/drush/Manifest b/app-admin/drush/Manifest
index 77ff48b..54d8e31 100644
--- a/app-admin/drush/Manifest
+++ b/app-admin/drush/Manifest
@@ -1,2 +1,2 @@
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
+DIST drush-6.7.0.tar.gz 511581 SHA256 f3ba2a6847f83b1b8a61207b1a514617612a75261e7b39ffc2606b6958f79e8c SHA512 203870190dd8987ad3da71f7625476c1f94bc75513447a740fd8c16268fb9705bcbc3b2bffc49a44045998e3fa49fd5ee9d4c0634a1fb39605ba8e10b7373fa5 WHIRLPOOL 87eb20be4b6bb8280dd1e91c422bdfc7a2181d6eabd37a212ce7b95ef863cd7c526531d98eca09d032f8e8cf3201d746dd615dfcb858dfadfaef41869dc22500
diff --git a/app-admin/drush/drush-6.6.0.ebuild b/app-admin/drush/drush-6.7.0.ebuild
similarity index 100%
rename from app-admin/drush/drush-6.6.0.ebuild
rename to app-admin/drush/drush-6.7.0.ebuild
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2016-01-30 0:11 Michael Orlitzky
0 siblings, 0 replies; 17+ messages in thread
From: Michael Orlitzky @ 2016-01-30 0:11 UTC (permalink / raw
To: gentoo-commits
commit: 7cc895dea697fb44517c1d69a70ccd549d192bf5
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 30 00:01:52 2016 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sat Jan 30 00:11:26 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cc895de
app-admin/drush: remove myself as maintainer.
Upstream now requires Composer to install the project, so it can no
longer be packaged for Gentoo.
Package-Manager: portage-2.2.26
app-admin/drush/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/app-admin/drush/metadata.xml b/app-admin/drush/metadata.xml
index 80ac404..6981e4b 100644
--- a/app-admin/drush/metadata.xml
+++ b/app-admin/drush/metadata.xml
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>mjo@gentoo.org</email>
- <name>Michael Orlitzky</name>
- </maintainer>
<longdescription lang="en">
Drush is a command line shell and scripting interface for Drupal,
a veritable Swiss Army knife designed to make life easier for
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2016-09-24 13:36 Agostino Sarubbo
0 siblings, 0 replies; 17+ messages in thread
From: Agostino Sarubbo @ 2016-09-24 13:36 UTC (permalink / raw
To: gentoo-commits
commit: f6c404243d2ca1566539c353febbdb4cb245f594
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 24 13:36:24 2016 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Sep 24 13:36:24 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c40424
app-admin/drush: amd64 stable wrt bug #592258
Package-Manager: portage-2.2.28
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
app-admin/drush/drush-6.7.0.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/drush/drush-6.7.0.ebuild b/app-admin/drush/drush-6.7.0.ebuild
index 4737c38..e06a93e 100644
--- a/app-admin/drush/drush-6.7.0.ebuild
+++ b/app-admin/drush/drush-6.7.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2016-12-11 18:14 Michael Orlitzky
0 siblings, 0 replies; 17+ messages in thread
From: Michael Orlitzky @ 2016-12-11 18:14 UTC (permalink / raw
To: gentoo-commits
commit: ce9100364d3c8685bc4165ceea10314f82c9d378
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 11 18:06:38 2016 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Sun Dec 11 18:13:49 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce910036
app-admin/drush: new EAPI=6 revision.
Package-Manager: portage-2.3.0
app-admin/drush/drush-6.7.0-r1.ebuild | 66 +++++++++++++++++++++++++++++++++++
1 file changed, 66 insertions(+)
diff --git a/app-admin/drush/drush-6.7.0-r1.ebuild b/app-admin/drush/drush-6.7.0-r1.ebuild
new file mode 100644
index 00000000..d1a8d7d
--- /dev/null
+++ b/app-admin/drush/drush-6.7.0-r1.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit bash-completion-r1
+
+DESCRIPTION="Command line shell and scripting interface for Drupal"
+HOMEPAGE="https://github.com/drush-ops/drush"
+SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="dev-lang/php[cli,ctype,json,simplexml]
+ dev-php/PEAR-Console_Table"
+
+# Fixes the bash completion script, check the patch for Gentoo/upstream
+# bug numbers.
+PATCHES=( "${FILESDIR}/update-bash-completion-script-for-2.1.patch" )
+
+src_prepare() {
+ default
+
+ # dodoc compresses all of the documentation, so we fix the filenames
+ # in a few places.
+ #
+ # First, the README location in bootstrap.inc.
+ sed -i -e \
+ "s!/share/doc/drush!/share/doc/${PF}!" \
+ -e "s!README\.md!\0.bz2!g" \
+ includes/bootstrap.inc || die
+
+ # Next, the list of documentation in docs.drush.inc. Note that
+ # html files don't get compressed.
+ sed -i \
+ -e "s!\.bashrc'!.bashrc.bz2'!" \
+ -e "s!\.inc'!.inc.bz2'!" \
+ -e "s!\.ini'!.ini.bz2'!" \
+ -e "s!\.md'!.md.bz2'!" \
+ -e "s!\.php'!.php.bz2'!" \
+ -e "s!\.script'!.script.bz2'!" \
+ -e "s!\.txt'!.txt.bz2'!" \
+ commands/core/docs.drush.inc || die
+}
+
+src_install() {
+ # Always install the examples; they're referenced within the source
+ # code and too difficult to exorcise.
+ dodoc -r README.md docs examples
+
+ insinto /usr/share/drush
+ doins -r classes commands includes lib misc
+ doins drush_logo-black.png drush.info drush.php
+
+ exeinto /usr/share/drush
+ doexe drush
+ dosym /usr/share/drush/drush /usr/bin/drush
+
+ keepdir /etc/drush
+ newbashcomp drush.complete.sh drush
+}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2016-12-29 10:55 Michael Palimaka
0 siblings, 0 replies; 17+ messages in thread
From: Michael Palimaka @ 2016-12-29 10:55 UTC (permalink / raw
To: gentoo-commits
commit: 80f58851ca51251220660abad9b8bfbf5499ac9b
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 29 10:55:29 2016 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Thu Dec 29 10:55:39 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80f58851
app-admin/drush: remove old
Package-Manager: Portage-2.3.3, Repoman-2.3.1
app-admin/drush/Manifest | 1 -
app-admin/drush/drush-6.5.0.ebuild | 64 --------------------------------------
2 files changed, 65 deletions(-)
diff --git a/app-admin/drush/Manifest b/app-admin/drush/Manifest
index 54d8e31..761bcbb 100644
--- a/app-admin/drush/Manifest
+++ b/app-admin/drush/Manifest
@@ -1,2 +1 @@
-DIST drush-6.5.0.tar.gz 509643 SHA256 0e6bfb8a4bd75846dbca25f6d3e3130a706546f6a62edadce2eb00099750e2a7 SHA512 4afd348c025b9303386131687205af4219a77e6c822518b079a3f0475cbd7ed03647797d613300c7a281e2354f0d855435222fe1afe13447153cdbd6a4393add WHIRLPOOL 1f2a1a725e1c0f89cac90a1338e1541e587c7834560fd23d1a44341696be320e65cf93508d4841f02ca9b30ac62f3fed7de772e00f4eaeea64f287cf19682fcc
DIST drush-6.7.0.tar.gz 511581 SHA256 f3ba2a6847f83b1b8a61207b1a514617612a75261e7b39ffc2606b6958f79e8c SHA512 203870190dd8987ad3da71f7625476c1f94bc75513447a740fd8c16268fb9705bcbc3b2bffc49a44045998e3fa49fd5ee9d4c0634a1fb39605ba8e10b7373fa5 WHIRLPOOL 87eb20be4b6bb8280dd1e91c422bdfc7a2181d6eabd37a212ce7b95ef863cd7c526531d98eca09d032f8e8cf3201d746dd615dfcb858dfadfaef41869dc22500
diff --git a/app-admin/drush/drush-6.5.0.ebuild b/app-admin/drush/drush-6.5.0.ebuild
deleted file mode 100644
index 7e6f4af..00000000
--- a/app-admin/drush/drush-6.5.0.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit bash-completion-r1 eutils
-
-DESCRIPTION="Command line shell and scripting interface for Drupal"
-HOMEPAGE="https://github.com/drush-ops/${PN}"
-SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="dev-lang/php[cli,ctype,json,simplexml]
- dev-php/PEAR-Console_Table"
-
-src_prepare() {
- # Fix the bash completion script, check the patch for Gentoo/upstream
- # bug numbers.
- epatch "${FILESDIR}/update-bash-completion-script-for-2.1.patch"
-
- # dodoc compresses all of the documentation, so we fix the filenames
- # in a few places.
-
- # First, the README location in bootstrap.inc.
- sed -i -e \
- "s!/share/doc/drush!/share/doc/${PF}!" \
- -e "s!README\.md!\0.bz2!g" \
- includes/bootstrap.inc || die
-
- # Next, the list of documentation in docs.drush.inc. Note that
- # html files don't get compressed.
- sed -i \
- -e "s!\.bashrc'!.bashrc.bz2'!" \
- -e "s!\.inc'!.inc.bz2'!" \
- -e "s!\.ini'!.ini.bz2'!" \
- -e "s!\.md'!.md.bz2'!" \
- -e "s!\.php'!.php.bz2'!" \
- -e "s!\.script'!.script.bz2'!" \
- -e "s!\.txt'!.txt.bz2'!" \
- commands/core/docs.drush.inc || die
-}
-
-src_install() {
- # Always install the examples; they're referenced within the source
- # code and too difficult to exorcise.
- dodoc -r README.md docs examples
-
- insinto /usr/share/drush
- doins -r classes commands includes lib misc
- doins drush_logo-black.png drush.info drush.php
-
- exeinto /usr/share/drush
- doexe drush
- dosym /usr/share/drush/drush /usr/bin/drush
-
- keepdir /etc/drush
- newbashcomp drush.complete.sh drush
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2017-08-22 19:59 Michał Górny
0 siblings, 0 replies; 17+ messages in thread
From: Michał Górny @ 2017-08-22 19:59 UTC (permalink / raw
To: gentoo-commits
commit: 1db72194b8b519b881a034b37b52ca965a9996c5
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 22 19:37:25 2017 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Aug 22 19:59:42 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1db72194
app-admin/drush: [QA] Use relative symlink target(s)
app-admin/drush/drush-6.7.0-r1.ebuild | 2 +-
app-admin/drush/drush-6.7.0.ebuild | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-admin/drush/drush-6.7.0-r1.ebuild b/app-admin/drush/drush-6.7.0-r1.ebuild
index e3ee7c54e67..41d92ea5255 100644
--- a/app-admin/drush/drush-6.7.0-r1.ebuild
+++ b/app-admin/drush/drush-6.7.0-r1.ebuild
@@ -58,7 +58,7 @@ src_install() {
exeinto /usr/share/drush
doexe drush
- dosym /usr/share/drush/drush /usr/bin/drush
+ dosym ../share/drush/drush /usr/bin/drush
keepdir /etc/drush
newbashcomp drush.complete.sh drush
diff --git a/app-admin/drush/drush-6.7.0.ebuild b/app-admin/drush/drush-6.7.0.ebuild
index 4aea0e01c7e..9052c38c745 100644
--- a/app-admin/drush/drush-6.7.0.ebuild
+++ b/app-admin/drush/drush-6.7.0.ebuild
@@ -56,7 +56,7 @@ src_install() {
exeinto /usr/share/drush
doexe drush
- dosym /usr/share/drush/drush /usr/bin/drush
+ dosym ../share/drush/drush /usr/bin/drush
keepdir /etc/drush
newbashcomp drush.complete.sh drush
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2019-02-15 18:42 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2019-02-15 18:42 UTC (permalink / raw
To: gentoo-commits
commit: 93790bfb084204d20079f4a7670fa80ab4f2613b
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 15 18:42:21 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Feb 15 18:42:33 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93790bfb
app-admin/drush: Drop old
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
app-admin/drush/drush-6.7.0.ebuild | 63 --------------------------------------
1 file changed, 63 deletions(-)
diff --git a/app-admin/drush/drush-6.7.0.ebuild b/app-admin/drush/drush-6.7.0.ebuild
deleted file mode 100644
index 9052c38c745..00000000000
--- a/app-admin/drush/drush-6.7.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit bash-completion-r1 eutils
-
-DESCRIPTION="Command line shell and scripting interface for Drupal"
-HOMEPAGE="https://github.com/drush-ops/drush"
-SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="dev-lang/php[cli,ctype,json,simplexml]
- dev-php/PEAR-Console_Table"
-
-src_prepare() {
- # Fix the bash completion script, check the patch for Gentoo/upstream
- # bug numbers.
- epatch "${FILESDIR}/update-bash-completion-script-for-2.1.patch"
-
- # dodoc compresses all of the documentation, so we fix the filenames
- # in a few places.
-
- # First, the README location in bootstrap.inc.
- sed -i -e \
- "s!/share/doc/drush!/share/doc/${PF}!" \
- -e "s!README\.md!\0.bz2!g" \
- includes/bootstrap.inc || die
-
- # Next, the list of documentation in docs.drush.inc. Note that
- # html files don't get compressed.
- sed -i \
- -e "s!\.bashrc'!.bashrc.bz2'!" \
- -e "s!\.inc'!.inc.bz2'!" \
- -e "s!\.ini'!.ini.bz2'!" \
- -e "s!\.md'!.md.bz2'!" \
- -e "s!\.php'!.php.bz2'!" \
- -e "s!\.script'!.script.bz2'!" \
- -e "s!\.txt'!.txt.bz2'!" \
- commands/core/docs.drush.inc || die
-}
-
-src_install() {
- # Always install the examples; they're referenced within the source
- # code and too difficult to exorcise.
- dodoc -r README.md docs examples
-
- insinto /usr/share/drush
- doins -r classes commands includes lib misc
- doins drush_logo-black.png drush.info drush.php
-
- exeinto /usr/share/drush
- doexe drush
- dosym ../share/drush/drush /usr/bin/drush
-
- keepdir /etc/drush
- newbashcomp drush.complete.sh drush
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2019-02-15 18:42 Mikle Kolyada
0 siblings, 0 replies; 17+ messages in thread
From: Mikle Kolyada @ 2019-02-15 18:42 UTC (permalink / raw
To: gentoo-commits
commit: 8f87fd0734503811ceb7877ace04aa5c6e658474
Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 15 18:41:34 2019 +0000
Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
CommitDate: Fri Feb 15 18:42:32 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f87fd07
app-admin/drush: amd64 stable wrt bug #676332
Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
RepoMan-Options: --include-arches="amd64"
app-admin/drush/drush-6.7.0-r1.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/drush/drush-6.7.0-r1.ebuild b/app-admin/drush/drush-6.7.0-r1.ebuild
index ad6828fbb62..dfe5917b1f2 100644
--- a/app-admin/drush/drush-6.7.0-r1.ebuild
+++ b/app-admin/drush/drush-6.7.0-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2022-02-20 5:27 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2022-02-20 5:27 UTC (permalink / raw
To: gentoo-commits
commit: 790735293efc50b2406652b7d051b0dc4fdfaf03
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 20 05:12:03 2022 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Feb 20 05:25:56 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79073529
app-admin/drush: drop 6.7.0-r2
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/drush/drush-6.7.0-r2.ebuild | 65 -----------------------------------
1 file changed, 65 deletions(-)
diff --git a/app-admin/drush/drush-6.7.0-r2.ebuild b/app-admin/drush/drush-6.7.0-r2.ebuild
deleted file mode 100644
index ba9c4f699942..000000000000
--- a/app-admin/drush/drush-6.7.0-r2.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit bash-completion-r1
-
-DESCRIPTION="Command line shell and scripting interface for Drupal"
-HOMEPAGE="https://github.com/drush-ops/drush"
-SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="dev-lang/php[cli,ctype,json(+),simplexml]
- dev-php/PEAR-Console_Table"
-
-# Fixes the bash completion script, check the patch for Gentoo/upstream
-# bug numbers.
-PATCHES=( "${FILESDIR}/update-bash-completion-script-for-2.1.patch" )
-
-src_prepare() {
- default
-
- # dodoc compresses all of the documentation, so we fix the filenames
- # in a few places.
- #
- # First, the README location in bootstrap.inc.
- sed -i -e \
- "s!/share/doc/drush!/share/doc/${PF}!" \
- -e "s!README\.md!\0.bz2!g" \
- includes/bootstrap.inc || die
-
- # Next, the list of documentation in docs.drush.inc. Note that
- # html files don't get compressed.
- sed -i \
- -e "s!\.bashrc'!.bashrc.bz2'!" \
- -e "s!\.inc'!.inc.bz2'!" \
- -e "s!\.ini'!.ini.bz2'!" \
- -e "s!\.md'!.md.bz2'!" \
- -e "s!\.php'!.php.bz2'!" \
- -e "s!\.script'!.script.bz2'!" \
- -e "s!\.txt'!.txt.bz2'!" \
- commands/core/docs.drush.inc || die
-}
-
-src_install() {
- # Always install the examples; they're referenced within the source
- # code and too difficult to exorcise.
- dodoc -r README.md docs examples
-
- insinto /usr/share/drush
- doins -r classes commands includes lib misc
- doins drush_logo-black.png drush.info drush.php
-
- exeinto /usr/share/drush
- doexe drush
- dosym ../share/drush/drush /usr/bin/drush
-
- keepdir /etc/drush
- newbashcomp drush.complete.sh drush
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2022-12-18 20:01 Arthur Zamarin
0 siblings, 0 replies; 17+ messages in thread
From: Arthur Zamarin @ 2022-12-18 20:01 UTC (permalink / raw
To: gentoo-commits
commit: 5b72e3c75f011d0c3fd31ca5eb3a9ad4ab856470
Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 18 20:01:50 2022 +0000
Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 18 20:01:50 2022 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b72e3c7
app-admin/drush: Stabilize 6.7.0-r4 amd64, #886647
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
app-admin/drush/drush-6.7.0-r4.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/drush/drush-6.7.0-r4.ebuild b/app-admin/drush/drush-6.7.0-r4.ebuild
index 731673704cb3..888cfc09e2bd 100644
--- a/app-admin/drush/drush-6.7.0-r4.ebuild
+++ b/app-admin/drush/drush-6.7.0-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2023-10-09 8:18 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-10-09 8:18 UTC (permalink / raw
To: gentoo-commits
commit: ff5cb4b14fcccce4a884d57353fc050f403c260f
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 9 08:17:54 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 9 08:17:54 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff5cb4b1
app-admin/drush: Stabilize 6.7.0-r6 x86, #915431
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/drush/drush-6.7.0-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/drush/drush-6.7.0-r6.ebuild b/app-admin/drush/drush-6.7.0-r6.ebuild
index 88c5b8c4ab9b..4931b08453f6 100644
--- a/app-admin/drush/drush-6.7.0-r6.ebuild
+++ b/app-admin/drush/drush-6.7.0-r6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2023-10-09 19:13 Sam James
0 siblings, 0 replies; 17+ messages in thread
From: Sam James @ 2023-10-09 19:13 UTC (permalink / raw
To: gentoo-commits
commit: 483fa2acdfdb89f1a208d6ccccb1dcc53dabc8d8
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 9 19:12:53 2023 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 9 19:12:53 2023 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=483fa2ac
app-admin/drush: Stabilize 6.7.0-r6 amd64, #915431
Signed-off-by: Sam James <sam <AT> gentoo.org>
app-admin/drush/drush-6.7.0-r6.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/app-admin/drush/drush-6.7.0-r6.ebuild b/app-admin/drush/drush-6.7.0-r6.ebuild
index 4931b08453f6..d2eeb415631c 100644
--- a/app-admin/drush/drush-6.7.0-r6.ebuild
+++ b/app-admin/drush/drush-6.7.0-r6.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
IUSE=""
DEPEND=""
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2024-03-22 12:27 Michael Orlitzky
0 siblings, 0 replies; 17+ messages in thread
From: Michael Orlitzky @ 2024-03-22 12:27 UTC (permalink / raw
To: gentoo-commits
commit: 7afe35c747195e1544c52e1b946eb8cdade18429
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 22 12:21:06 2024 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Mar 22 12:21:06 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7afe35c7
app-admin/drush: drop 6.7.0-r4
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
app-admin/drush/drush-6.7.0-r4.ebuild | 68 -----------------------------------
1 file changed, 68 deletions(-)
diff --git a/app-admin/drush/drush-6.7.0-r4.ebuild b/app-admin/drush/drush-6.7.0-r4.ebuild
deleted file mode 100644
index 888cfc09e2bd..000000000000
--- a/app-admin/drush/drush-6.7.0-r4.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1
-
-DESCRIPTION="Command line shell and scripting interface for Drupal"
-HOMEPAGE="https://github.com/drush-ops/drush"
-SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="dev-lang/php[cli,ctype,json(+),simplexml]
- dev-php/PEAR-Console_Table"
-
-PATCHES=(
- "${FILESDIR}/update-bash-completion-script-for-2.1.patch"
- "${FILESDIR}/array-syntax.patch"
- "${FILESDIR}/${P}-php8.0.patch"
- "${FILESDIR}/${P}-gzip-mime.patch"
-)
-
-src_prepare() {
- default
-
- # dodoc compresses all of the documentation, so we fix the filenames
- # in a few places.
- #
- # First, the README location in bootstrap.inc.
- sed -i -e \
- "s!/share/doc/drush!/share/doc/${PF}!" \
- -e "s!README\.md!\0.bz2!g" \
- includes/bootstrap.inc || die
-
- # Next, the list of documentation in docs.drush.inc. Note that
- # html files don't get compressed.
- sed -i \
- -e "s!\.bashrc'!.bashrc.bz2'!" \
- -e "s!\.inc'!.inc.bz2'!" \
- -e "s!\.ini'!.ini.bz2'!" \
- -e "s!\.md'!.md.bz2'!" \
- -e "s!\.php'!.php.bz2'!" \
- -e "s!\.script'!.script.bz2'!" \
- -e "s!\.txt'!.txt.bz2'!" \
- commands/core/docs.drush.inc || die
-}
-
-src_install() {
- # Always install the examples; they're referenced within the source
- # code and too difficult to exorcise.
- dodoc -r README.md docs examples
-
- insinto /usr/share/drush
- doins -r classes commands includes lib misc
- doins drush_logo-black.png drush.info drush.php
-
- exeinto /usr/share/drush
- doexe drush
- dosym ../share/drush/drush /usr/bin/drush
-
- keepdir /etc/drush
- newbashcomp drush.complete.sh drush
-}
^ permalink raw reply related [flat|nested] 17+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/
@ 2024-03-22 12:27 Michael Orlitzky
0 siblings, 0 replies; 17+ messages in thread
From: Michael Orlitzky @ 2024-03-22 12:27 UTC (permalink / raw
To: gentoo-commits
commit: f50b37b2a0fa68f7d18cf2ea00f68d0a69f4dd8c
Author: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 22 12:25:04 2024 +0000
Commit: Michael Orlitzky <mjo <AT> gentoo <DOT> org>
CommitDate: Fri Mar 22 12:25:04 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f50b37b2
app-admin/drush: drop empty IUSE/DEPEND assignments
Signed-off-by: Michael Orlitzky <mjo <AT> gentoo.org>
app-admin/drush/drush-6.7.0-r6.ebuild | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/app-admin/drush/drush-6.7.0-r6.ebuild b/app-admin/drush/drush-6.7.0-r6.ebuild
index d2eeb415631c..4f0d63ad593b 100644
--- a/app-admin/drush/drush-6.7.0-r6.ebuild
+++ b/app-admin/drush/drush-6.7.0-r6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -12,9 +12,7 @@ SRC_URI="https://github.com/drush-ops/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
-IUSE=""
-DEPEND=""
RDEPEND="dev-lang/php[cli,ctype,json(+),simplexml]
dev-php/PEAR-Console_Table"
^ permalink raw reply related [flat|nested] 17+ messages in thread
end of thread, other threads:[~2024-03-22 12:28 UTC | newest]
Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-15 18:42 [gentoo-commits] repo/gentoo:master commit in: app-admin/drush/ Mikle Kolyada
-- strict thread matches above, loose matches on Subject: below --
2024-03-22 12:27 Michael Orlitzky
2024-03-22 12:27 Michael Orlitzky
2023-10-09 19:13 Sam James
2023-10-09 8:18 Sam James
2022-12-18 20:01 Arthur Zamarin
2022-02-20 5:27 Sam James
2019-02-15 18:42 Mikle Kolyada
2017-08-22 19:59 Michał Górny
2016-12-29 10:55 Michael Palimaka
2016-12-11 18:14 Michael Orlitzky
2016-09-24 13:36 Agostino Sarubbo
2016-01-30 0:11 Michael Orlitzky
2015-12-31 23:51 Michael Orlitzky
2015-10-27 23:23 Michael Orlitzky
2015-10-27 23:13 Michael Orlitzky
2015-10-27 23:03 Michael Orlitzky
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox