Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/mpv-bash-completion/
Date: Tue, 29 Aug 2017 20:15:49
Message-Id: 1504037741.53a99c44b5b1d04ce9b896f5318bc8b575911eaa.monsieurp@gentoo
1 commit: 53a99c44b5b1d04ce9b896f5318bc8b575911eaa
2 Author: Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
3 AuthorDate: Sun Aug 20 15:59:49 2017 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 29 20:15:41 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53a99c44
7
8 app-shells/mpv-bash-completion: remove old.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 app-shells/mpv-bash-completion/Manifest | 1 -
13 .../mpv-bash-completion-3.3.13.ebuild | 47 ----------------------
14 2 files changed, 48 deletions(-)
15
16 diff --git a/app-shells/mpv-bash-completion/Manifest b/app-shells/mpv-bash-completion/Manifest
17 index 8f15adfae75..1b01f923653 100644
18 --- a/app-shells/mpv-bash-completion/Manifest
19 +++ b/app-shells/mpv-bash-completion/Manifest
20 @@ -1,3 +1,2 @@
21 DIST mpv-bash-completion-3.3.12.tar.gz 19310 SHA256 9291ef730af6f69cc0efc82e88d170d43d79266a1500461b08719130507870ef SHA512 f019e9a66072333b40213437f07097cacb9f01a1f322fded763e695ef5ef4656016ca07fcb402d406fd99785026dba1fc7292a2c04a14ac18a24557bb8ab2cd1 WHIRLPOOL 96db10c112767d8c8e648a989f416cb02123018e8406842ee27bfc603f5f6ca9ee6360f6aa46a19e14a194f44d510eb971219b10bb598785720c3a6f23047f6c
22 -DIST mpv-bash-completion-3.3.13.tar.gz 19726 SHA256 65172975bfca59f9921afd9788c1e1532c734c068a6af21517eeec63b9a1ea34 SHA512 0f9301447c4f1d9443106e01c602a17f8d3ea62eacf63be807157c7b39a08d54c3cacb3a103fc8f77bc88dd71df433fe7bcb6c09bd3b9aeaa685c407c64cc3c7 WHIRLPOOL 3a1696dcf3cce68186e3fbee5f90982daaadf7fd238d022722b3e7d363a17551e066b953e08e40aac762d587d4cb839f3c704ac379572b62ad29ff5acba89779
23 DIST mpv-bash-completion-3.3.15.tar.gz 19830 SHA256 1c3f4a6b95de7b573db3480dc79f7359207f7c95d31ac7368f6f5c84e9176ed8 SHA512 d4e263bb7c21f80b962bac9f1b01c594d5038d7a7095af0e7702dc5688fd69a9de1b5d8976f24d7a652a8fba4ceaf3ea2a81c771e7ea704807aeac0c526a09f6 WHIRLPOOL 740dc9f3e43031cba115b8c23bd7ac8d000f10f0a6e7a89144437c39b085d20dc09b47d540772afe7b2743cd444d71cda6231c795602fe9d262e8a699a4cdb77
24
25 diff --git a/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.13.ebuild b/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.13.ebuild
26 deleted file mode 100644
27 index dc4633a3b92..00000000000
28 --- a/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.13.ebuild
29 +++ /dev/null
30 @@ -1,47 +0,0 @@
31 -# Copyright 1999-2017 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=6
35 -
36 -inherit bash-completion-r1
37 -
38 -DESCRIPTION="Bash completion for the mpv video player"
39 -HOMEPAGE="https://2ion.github.io/mpv-bash-completion/"
40 -SRC_URI="https://github.com/2ion/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 -
42 -LICENSE="GPL-3+"
43 -SLOT="0"
44 -KEYWORDS="~amd64"
45 -IUSE="luajit"
46 -
47 -COMMON_DEPEND=">=media-video/mpv-0.14.0[cli]"
48 -RDEPEND="${COMMON_DEPEND}
49 - >=app-shells/bash-completion-2.3-r1
50 -"
51 -DEPEND="${COMMON_DEPEND}
52 - !luajit? ( dev-lang/lua:* )
53 - luajit? ( dev-lang/luajit:2 )
54 -"
55 -
56 -src_prepare() {
57 - default_src_prepare
58 - # Avoid 'mpv' make target that supports lua only.
59 - sed -i -e 's|check: mpv|check:|' Makefile || die
60 -}
61 -
62 -src_compile() {
63 - $(usex luajit 'luajit' 'lua') gen.lua > mpv || die
64 -}
65 -
66 -src_install() {
67 - dobashcomp mpv
68 - einstalldocs
69 -}
70 -
71 -pkg_postinst() {
72 - if ! has_version 'x11-apps/xrandr'; then
73 - elog
74 - elog "If you want completion of window sizes, please install 'x11-apps/xrandr'."
75 - elog
76 - fi
77 -}