From bd6b252ee18ab60b32984607bfe539bce96b763b Mon Sep 17 00:00:00 2001 From: Sergey Morozov Date: Mon, 30 Oct 2017 21:12:35 +0300 Subject: [PATCH] Add app-admin/drush-8.1.10 from mva overlay --- app-admin/drush/Manifest | 2 ++ app-admin/drush/drush-8.1.10.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+) create mode 100644 app-admin/drush/Manifest create mode 100644 app-admin/drush/drush-8.1.10.ebuild diff --git a/app-admin/drush/Manifest b/app-admin/drush/Manifest new file mode 100644 index 0000000..7a46e59 --- /dev/null +++ b/app-admin/drush/Manifest @@ -0,0 +1,2 @@ +DIST drush-8.1.10.phar 6138646 SHA256 af355c7a5a804c4175a3dddcefb1c2a9aed29c1f66d1a26863757d5aa1c0922b SHA512 d35b43109b42cebde35136149aafae800617b2b5bc56146dbed946a44e6e1a20021e8aaaa86212d5af751f52a7661038e0714e2cf6b6d2c004583f645c67ee3c WHIRLPOOL 14edac23071a7482d92d2d8df881465918fc5863a406105fa858ae6c9e373089c5e988fc214a98cad50e3091d1e0128079250ab53fd57ed2eb17f7128641c92b +EBUILD drush-8.1.10.ebuild 498 SHA256 e541b5c169f44c19313b9cf7ceb7d754e36c41e27becfcb49f88089b4108f642 SHA512 020422c1ea42b8e4123717e504c1871fefb254aa96787543e40f5f52e722610b51990d0804051b456c9902794f9887d62de894ecd862e91a0a86dbaf48e20d74 WHIRLPOOL 7e7f59aab96e8d6208a4584eb3a17b98932c2b67bf325c5d2757c93fb1799b4231664fd1214e14ccbbf0490e16b75abb760345ccb1ffd102e5102d790cb4ac57 diff --git a/app-admin/drush/drush-8.1.10.ebuild b/app-admin/drush/drush-8.1.10.ebuild new file mode 100644 index 0000000..1eb54e5 --- /dev/null +++ b/app-admin/drush/drush-8.1.10.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="The command line interface for Drupal" +HOMEPAGE="https://drush.org/" +SRC_URI="https://github.com/${PN}-ops/${PN}/releases/download/${PV}/${PN}.phar -> ${P}.phar" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-lang/php:*" +RDEPEND="${DEPEND}" + +src_unpack() { + mkdir -p "${S}" + cp -L "${DISTDIR}/${A}" "${S}/${PN}" +} + +src_install() { + dobin "${PN}" +}