Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/zsh-completions/
Date: Sat, 30 Apr 2016 10:43:54
Message-Id: 1462013004.0f1ec4b04bb394e370d05bf887f6f45f22b15fdb.mrueg@gentoo
1 commit: 0f1ec4b04bb394e370d05bf887f6f45f22b15fdb
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 30 10:37:23 2016 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 30 10:43:24 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f1ec4b0
7
8 Version bump to 0.18.0
9
10 Package-Manager: portage-2.2.28
11
12 app-shells/zsh-completions/Manifest | 1 +
13 .../zsh-completions/zsh-completions-0.18.0.ebuild | 34 ++++++++++++++++++++++
14 2 files changed, 35 insertions(+)
15
16 diff --git a/app-shells/zsh-completions/Manifest b/app-shells/zsh-completions/Manifest
17 index 0817497..8f4da99 100644
18 --- a/app-shells/zsh-completions/Manifest
19 +++ b/app-shells/zsh-completions/Manifest
20 @@ -1,2 +1,3 @@
21 DIST zsh-completions-0.16.0.tar.gz 218282 SHA256 37fec2bfa7497165530b6afe6d6b837cefff3c8f918c36556cc5ef89f2781102 SHA512 f438dd42fed5cb6b18bc0de3d68792d0fcc6364ff7fc286a9359976987a812010d0c0ce7845d8794a87f1106968cb1afd72cbf73628d7128c1f6e76497f25108 WHIRLPOOL 3724acd47502de7a940c93d9d48d5bef1832c99ac9169a5b77fd2596d187c0d0f52e43e4bd6e88bd95b861cf022bfcb3c4e3920d26ab333b9177ff76d5016c6c
22 DIST zsh-completions-0.17.0.tar.gz 221135 SHA256 e1797e22e2bbbe50bf61f88db43216c0aef53713c84373bafddf6090b1fe8f68 SHA512 1c14d8842fd1b09588ab177ae1b85ef5ce698f753ca1e606521477476801c135d8463a6fff2eff2ae26410b7c3db0ac27f1c43aea07668cba007a3e762143ee7 WHIRLPOOL 7010ad5defec40fecd044b1890bf61682964883cb35aba803f038c4cfd271d20cb30021f7679dbdf104de38811ca3223c4c5ed56dad918e1066d142c833b7dfc
23 +DIST zsh-completions-0.18.0.tar.gz 232872 SHA256 b94eb63d044920a4ea6d5d51ae4f237f21b0c3174f3c58ff464b5284477cdb7a SHA512 68510ce1823c59318ffa7ff85b3c0385d056912c68e6513fbbcaf49c3757cca69531e7f3dfb5f75424f8bbf3722ebebc00170b10588de619cdd1353d6754d1ac WHIRLPOOL e48a24b3d612b4797264d28c02b4b151dd5f8bdac981ed24a47ce1490d4ce3372dcaae4ac7d9aeb4dd6d0cbe56c5a3752bec2f83561eb9aa23f43816a31d7e1d
24
25 diff --git a/app-shells/zsh-completions/zsh-completions-0.18.0.ebuild b/app-shells/zsh-completions/zsh-completions-0.18.0.ebuild
26 new file mode 100644
27 index 0000000..e5b1d5f
28 --- /dev/null
29 +++ b/app-shells/zsh-completions/zsh-completions-0.18.0.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2016 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +if [[ ${PV} == 9999* ]] ; then
38 + inherit git-r3
39 + EGIT_REPO_URI="https://github.com/zsh-users/zsh-completions.git"
40 +else
41 + SRC_URI="https://github.com/zsh-users/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 + KEYWORDS="~amd64 ~x86"
43 +fi
44 +
45 +DESCRIPTION="Additional completion definitions for Zsh"
46 +HOMEPAGE="https://github.com/zsh-users/zsh-completions"
47 +
48 +LICENSE="BSD"
49 +SLOT="0"
50 +
51 +RDEPEND="app-shells/zsh"
52 +
53 +src_install() {
54 + insinto /usr/share/zsh/site-functions
55 + doins src/_*
56 +}
57 +
58 +pkg_postinst() {
59 + elog
60 + elog "If you happen to compile your functions, you may need to delete"
61 + elog "~/.zcompdump{,.zwc} and recompile to make the new completions available"
62 + elog "to your shell."
63 + elog
64 +}