public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "David Seifert" <soap@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/mpv-bash-completion/
Date: Sun, 16 Apr 2017 19:05:59 +0000 (UTC)	[thread overview]
Message-ID: <1492369348.8233eb3dc011458f112fd701fcb1e5ace39b1f38.soap@gentoo> (raw)

commit:     8233eb3dc011458f112fd701fcb1e5ace39b1f38
Author:     Ilya Tumaykin <itumaykin <AT> gmail <DOT> com>
AuthorDate: Sat Apr 15 11:44:38 2017 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Apr 16 19:02:28 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8233eb3d

app-shells/mpv-bash-completion: remove old

Closes: https://github.com/gentoo/gentoo/pull/4425
Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-shells/mpv-bash-completion/Manifest            |  1 -
 .../mpv-bash-completion-3.3.11.ebuild              | 47 ----------------------
 2 files changed, 48 deletions(-)

diff --git a/app-shells/mpv-bash-completion/Manifest b/app-shells/mpv-bash-completion/Manifest
index 028eee5241c..b79417c7e2e 100644
--- a/app-shells/mpv-bash-completion/Manifest
+++ b/app-shells/mpv-bash-completion/Manifest
@@ -1,4 +1,3 @@
-DIST mpv-bash-completion-3.3.11.tar.gz 19225 SHA256 b74a180c3318bafc9e8d240bb90f2de1f26a653776abd18f6f7c188fe8a38626 SHA512 ac0244c048c7d468fb6f971e58c631c39c919be9a049bb600abed9df9b2ae1429aba918714f6ad60b3cec48bf4dbcf81673946bc5736c0deb0d57585af460f21 WHIRLPOOL 1e25ffb8baba95381463d9ddd1b6ca18d8e954470fa8a384d00645049978869bc00408e7596fe0878c6a6a7e8fe8cf5567ad47a71a1f69945ca469dc560aa799
 DIST mpv-bash-completion-3.3.12.tar.gz 19310 SHA256 9291ef730af6f69cc0efc82e88d170d43d79266a1500461b08719130507870ef SHA512 f019e9a66072333b40213437f07097cacb9f01a1f322fded763e695ef5ef4656016ca07fcb402d406fd99785026dba1fc7292a2c04a14ac18a24557bb8ab2cd1 WHIRLPOOL 96db10c112767d8c8e648a989f416cb02123018e8406842ee27bfc603f5f6ca9ee6360f6aa46a19e14a194f44d510eb971219b10bb598785720c3a6f23047f6c
 DIST mpv-bash-completion-3.3.13.tar.gz 19726 SHA256 65172975bfca59f9921afd9788c1e1532c734c068a6af21517eeec63b9a1ea34 SHA512 0f9301447c4f1d9443106e01c602a17f8d3ea62eacf63be807157c7b39a08d54c3cacb3a103fc8f77bc88dd71df433fe7bcb6c09bd3b9aeaa685c407c64cc3c7 WHIRLPOOL 3a1696dcf3cce68186e3fbee5f90982daaadf7fd238d022722b3e7d363a17551e066b953e08e40aac762d587d4cb839f3c704ac379572b62ad29ff5acba89779
 DIST mpv-bash-completion-3.3.8.tar.gz 19002 SHA256 67bb3565daafb1e3f64b24262b0859f7843ac052960e0159e3fe3a375ffed181 SHA512 4d6cfc3ac2d1fd6a28be1a40e3ca28d61f5d9ed40a850c5c60e45501b958b929d6ef9266027d2be95ed0c2b0dedccfdbb04fe4115bb7bcfd39435cb73f2dc452 WHIRLPOOL 62012925d3fb212c473e889930c1add93ce36533313a677cc9ddbc7acce2d9dfc1a18f9054dad901f7a0cb2b57c56a05f302f1fadc83b4bbeda5baa06fb2c7c8

diff --git a/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.11.ebuild b/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.11.ebuild
deleted file mode 100644
index dc4633a3b92..00000000000
--- a/app-shells/mpv-bash-completion/mpv-bash-completion-3.3.11.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-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
-		elog
-		elog "If you want completion of window sizes, please install 'x11-apps/xrandr'."
-		elog
-	fi
-}


             reply	other threads:[~2017-04-16 19:06 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-04-16 19:05 David Seifert [this message]
  -- strict thread matches above, loose matches on Subject: below --
2018-07-29 10:50 [gentoo-commits] repo/gentoo:master commit in: app-shells/mpv-bash-completion/ Mikle Kolyada
2018-07-28 13:24 Thomas Deutschmann
2018-06-07 18:55 Michał Górny
2018-05-27  8:51 Mikle Kolyada
2018-05-02 16:33 Thomas Deutschmann
2018-04-30 15:38 Mikle Kolyada
2018-02-07 19:22 Michał Górny
2018-01-26 14:48 Mikle Kolyada
2017-11-19  7:58 Michael Palimaka
2017-08-29 20:15 Patrice Clement
2017-08-29 20:15 Patrice Clement
2017-05-15  9:09 Michał Górny
2017-05-11 17:51 Michał Górny
2017-05-10  9:32 Agostino Sarubbo
2017-04-16 19:05 David Seifert
2017-04-08 21:22 Patrice Clement
2017-03-30 22:26 Patrice Clement
2017-03-30 22:26 Patrice Clement
2017-03-21 23:17 Patrice Clement
2017-02-25  1:03 Michael Palimaka
2017-02-23 15:55 Agostino Sarubbo
2017-01-20 19:34 David Seifert
2017-01-08 21:58 Patrice Clement
2017-01-08  9:52 Aaron Bauman
2016-12-08 21:11 Patrice Clement
2016-09-21  8:19 Patrice Clement
2016-09-21  8:19 Patrice Clement
2016-09-12 11:11 Patrice Clement
2016-09-12 11:11 Patrice Clement
2016-08-09 18:27 Patrice Clement
2016-07-31  9:04 Patrice Clement
2016-07-31  9:04 Patrice Clement
2016-07-22 13:05 Patrice Clement
2016-07-22 13:05 Patrice Clement
2016-06-28 13:59 Patrice Clement
2016-06-23 21:44 Patrice Clement
2016-05-09 12:22 Ian Delaney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1492369348.8233eb3dc011458f112fd701fcb1e5ace39b1f38.soap@gentoo \
    --to=soap@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox