summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIlya Tumaykin <itumaykin@gmail.com>2016-09-11 13:06:23 +0300
committerPatrice Clement <monsieurp@gentoo.org>2016-09-12 13:11:09 +0200
commite9efbe929333ac6efc7e387d63d81106ed496732 (patch)
treeeb4c51c38775b9f53437420f34d8c70cef0dcee0 /app-shells
parentapp-shells/mpv-bash-completion: verbump to 3.3.5. (diff)
downloadgentoo-e9efbe929333ac6efc7e387d63d81106ed496732.tar.gz
gentoo-e9efbe929333ac6efc7e387d63d81106ed496732.tar.bz2
gentoo-e9efbe929333ac6efc7e387d63d81106ed496732.zip
app-shells/mpv-bash-completion: remove old.
Closes: https://github.com/gentoo/gentoo/pull/2297 Package-Manager: portage-2.3.0 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-shells')
-rw-r--r--app-shells/mpv-bash-completion/Manifest1
-rw-r--r--app-shells/mpv-bash-completion/mpv-bash-completion-3.3.4.ebuild48
2 files changed, 0 insertions, 49 deletions
diff --git a/app-shells/mpv-bash-completion/Manifest b/app-shells/mpv-bash-completion/Manifest
index 39f9b4e1fd9b..5d18c43392d1 100644
--- a/app-shells/mpv-bash-completion/Manifest
+++ b/app-shells/mpv-bash-completion/Manifest
@@ -1,3 +1,2 @@
DIST mpv-bash-completion-0.17.tar.gz 15033 SHA256 a4c3be027ec52fef684a545a43c05f32cf512da93ae4a569d273e6e182b90ab1 SHA512 851a9f2b5e54f176fc7519a5fceace2b3281bef4062a48e108f17b83ccbd53e7b7545969be9cbccd3f093ba9ee65bd6736650f1b4d88997808a8b1df40d769eb WHIRLPOOL ba077f686d2e9ba4e819cf30f17cdca5b98b321e6c39b72a3bd7c1f5269da3d20abe7f610838a51b941fdba8c6636fc3eaae81f07fcd08f8f61f6262d2d0fab5
-DIST mpv-bash-completion-3.3.4.tar.gz 18400 SHA256 393bee900e505fd40efe4e4f266b5a60de6480daf52c195033e630a5f0fb42e1 SHA512 044adaf554d1de7c9ac984c6aa4b9339fdb9f909ab64d5020f86d1e431918fa83b139fa787e4fcc8575937a824a94ce9d6abb3f69f03d540e54d9f389b4f646b WHIRLPOOL 274986f6beb9ac5f1db6fc7737277052f0057a4d7c70b00a6c42f0f419a9005db5e73d953f2e048f2abd201090bc6b3e2f247efbc3e2fd339bd1b7bab4cb7269
DIST mpv-bash-completion-3.3.5.tar.gz 18485 SHA256 45239a4ed4370236c25e611296b992da34f6e7d65f69440f0a09096472c0a2af SHA512 8d1c0726984c9ef783f964da9434dc7f984407a3c2cbfc80b379f79875a199fcc1c80465371fbce6a966e608acac1be295e5adcd51414e87ddfb82e227337d98 WHIRLPOOL 09fb0de9c3944f8ff2af83bf7653732a7b6d8d27e8ff994e6962be85c9e27330d8e72612cbf08540da2f051a869fc3c731f8d79961704c9c33b0169f0a0617a4
diff --git a/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.4.ebuild b/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.4.ebuild
deleted file mode 100644
index 862931bc975a..000000000000
--- a/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.4.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit bash-completion-r1
-
-DESCRIPTION="Bash completion for the mpv video player"
-HOMEPAGE="https://2ion.github.io/mpv-bash-completion/"
-SRC_URI="https://github.com/2ion/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="luajit"
-
-COMMON_DEPEND=">=media-video/mpv-0.14.0[cli]"
-RDEPEND="${COMMON_DEPEND}
- >=app-shells/bash-completion-2.3-r1
-"
-DEPEND="${COMMON_DEPEND}
- !luajit? ( dev-lang/lua:* )
- luajit? ( dev-lang/luajit:2 )
-"
-
-src_prepare() {
- default_src_prepare
- # Avoid 'mpv' make target that supports lua only.
- sed -i -e 's|check: mpv|check:|' Makefile || die
-}
-
-src_compile() {
- $(usex luajit 'luajit' 'lua') gen.lua > mpv || die
-}
-
-src_install() {
- dobashcomp mpv
- einstalldocs
-}
-
-pkg_postinst() {
- if ! has_version 'x11-apps/xrandr'; then
- echo
- elog "If you want completion of window sizes, please install 'x11-apps/xrandr'."
- echo
- fi
-}