From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B0C961381F3 for ; Fri, 22 Apr 2016 13:01:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7722BE0810; Fri, 22 Apr 2016 13:01:02 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 23B0DE0810 for ; Fri, 22 Apr 2016 13:01:02 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D253D340BEA for ; Fri, 22 Apr 2016 13:01:00 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 278E2CB for ; Fri, 22 Apr 2016 13:00:58 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1461330045.a578ab60c98db1bea52877afa5f813a8c1e2fd72.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/youtube-dl/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/youtube-dl/youtube-dl-2016.04.19-r1.ebuild net-misc/youtube-dl/youtube-dl-2016.04.19.ebuild X-VCS-Directories: net-misc/youtube-dl/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: a578ab60c98db1bea52877afa5f813a8c1e2fd72 X-VCS-Branch: master Date: Fri, 22 Apr 2016 13:00:58 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 61caf1cc-8e37-4c05-88b4-89e9e31ab0e7 X-Archives-Hash: 35f21fe11040431ff3e8949883200e8e commit: a578ab60c98db1bea52877afa5f813a8c1e2fd72 Author: Jeroen Roovers gentoo org> AuthorDate: Fri Apr 22 13:00:45 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Apr 22 13:00:45 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a578ab60 net-misc/youtube-dl: Add zsh completion (bug #533672 by Elias Probst), fish completion. Package-Manager: portage-2.2.28 ...tube-dl-2016.04.19.ebuild => youtube-dl-2016.04.19-r1.ebuild} | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/net-misc/youtube-dl/youtube-dl-2016.04.19.ebuild b/net-misc/youtube-dl/youtube-dl-2016.04.19-r1.ebuild similarity index 94% rename from net-misc/youtube-dl/youtube-dl-2016.04.19.ebuild rename to net-misc/youtube-dl/youtube-dl-2016.04.19-r1.ebuild index 5cf89a1..fc649fc 100644 --- a/net-misc/youtube-dl/youtube-dl-2016.04.19.ebuild +++ b/net-misc/youtube-dl/youtube-dl-2016.04.19-r1.ebuild @@ -80,8 +80,17 @@ src_test() { src_install() { python_domodule youtube_dl dobin bin/${PN} + dodoc README.txt doman ${PN}.1 + newbashcomp ${PN}.bash-completion ${PN} + + insinto /usr/share/zsh/site-functions + newins youtube-dl.zsh _youtube-dl + + insinto /usr/share/fish/completions + doins youtube-dl.fish + python_fix_shebang "${ED}" }