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: Thu, 19 Oct 2017 18:43:46
Message-Id: 1508438601.7a3a4bbb37befa94cd648f5e69244aab9d42d877.mrueg@gentoo
1 commit: 7a3a4bbb37befa94cd648f5e69244aab9d42d877
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 19 18:42:03 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Thu Oct 19 18:43:21 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a3a4bbb
7
8 app-shells/zsh-completions: Version bump to 0.27.0
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 app-shells/zsh-completions/Manifest | 1 +
13 .../zsh-completions/zsh-completions-0.27.0.ebuild | 33 ++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/app-shells/zsh-completions/Manifest b/app-shells/zsh-completions/Manifest
17 index a6b1cbc2bf2..97645196c44 100644
18 --- a/app-shells/zsh-completions/Manifest
19 +++ b/app-shells/zsh-completions/Manifest
20 @@ -1 +1,2 @@
21 DIST zsh-completions-0.26.0.tar.gz 218057 SHA256 783768c8308cc0ff37bce346c66386308550ede05121e352b1a284ff6bf88540 SHA512 78ba96e0c6a30271181270244488b7f2c783047714dcf1eb39918d4b258fbaf1f54b718407418ffcc62f5bf552192aca3841497c0ffb8d3e9c6ea4fb85bc1754 WHIRLPOOL 27a6273f2ae35c4413283a30c506a40c19034af89fe22cba12ec0167f5caa9e8b9e29f057fe4be609c0f54cba8f6f9c610bfe481dccc78f91c653d78b81a5849
22 +DIST zsh-completions-0.27.0.tar.gz 218869 SHA256 9b817b73e709aca0e7e5a41471b5b63467d1e7aa69ef755b6ce39b99e61cd47a SHA512 1c25fce14117d6eb652e2d3bfb49e68baa9f7c5832031582ec8c3066b91f07491067ff887647177048b51146beda1bcac7080abf140ea5ef846fcdd8ac388b8c WHIRLPOOL 5438c9d2cfb222179598a623f35cb7e3d61db98be0e9b204ec1c99a3475c192fa858c6a2ca7a3b78c8df617acc5471c3c032636f933f4e9800849aa1ee21b551
23
24 diff --git a/app-shells/zsh-completions/zsh-completions-0.27.0.ebuild b/app-shells/zsh-completions/zsh-completions-0.27.0.ebuild
25 new file mode 100644
26 index 00000000000..74e18cd0dbf
27 --- /dev/null
28 +++ b/app-shells/zsh-completions/zsh-completions-0.27.0.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +
35 +if [[ ${PV} == 9999* ]] ; then
36 + inherit git-r3
37 + EGIT_REPO_URI="https://github.com/zsh-users/zsh-completions.git"
38 +else
39 + SRC_URI="https://github.com/zsh-users/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 + KEYWORDS="~amd64 ~arm ~x86"
41 +fi
42 +
43 +DESCRIPTION="Additional completion definitions for Zsh"
44 +HOMEPAGE="https://github.com/zsh-users/zsh-completions"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +
49 +RDEPEND="app-shells/zsh"
50 +
51 +src_install() {
52 + insinto /usr/share/zsh/site-functions
53 + doins src/_*
54 +}
55 +
56 +pkg_postinst() {
57 + elog
58 + elog "If you happen to compile your functions, you may need to delete"
59 + elog "~/.zcompdump{,.zwc} and recompile to make the new completions available"
60 + elog "to your shell."
61 + elog
62 +}