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: Sun, 28 Oct 2018 16:02:09
Message-Id: 1540742432.29da512733cfaa66d33ad2a052b65e8d406e47f8.mrueg@gentoo
1 commit: 29da512733cfaa66d33ad2a052b65e8d406e47f8
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 28 16:00:32 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 28 16:00:32 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29da5127
7
8 app-shells/zsh-completions: Version bump to 0.29.0
9
10 Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 app-shells/zsh-completions/Manifest | 1 +
14 .../zsh-completions/zsh-completions-0.29.0.ebuild | 33 ++++++++++++++++++++++
15 2 files changed, 34 insertions(+)
16
17 diff --git a/app-shells/zsh-completions/Manifest b/app-shells/zsh-completions/Manifest
18 index 48d3d0464c8..08906548d30 100644
19 --- a/app-shells/zsh-completions/Manifest
20 +++ b/app-shells/zsh-completions/Manifest
21 @@ -1,2 +1,3 @@
22 DIST zsh-completions-0.27.0.tar.gz 218869 BLAKE2B 7214506be2100d596842988f946b0f25f9c434f31a6b1d66c40baa1ccf259f827be96011d790f41b85abecfcb0fc1e5d56a715ca80c9926a5fd6ccc779ab98b0 SHA512 1c25fce14117d6eb652e2d3bfb49e68baa9f7c5832031582ec8c3066b91f07491067ff887647177048b51146beda1bcac7080abf140ea5ef846fcdd8ac388b8c
23 DIST zsh-completions-0.28.0.tar.gz 248600 BLAKE2B 406b8a91dc7d4471519444efdf2eedf644a696eea69c2e00f33fa61e71ca8cb34935f824f62e2d4312d5fd27fc25875d51b122b4f2d7cc8a1a16d9d46ce0e336 SHA512 744b2b02de2154b31548d12c73091e5d4ee501dc39552dd7d526c67908fb7f65c06074d799da7ebed3a8f62b532a1482ba74ed26239979b050dbede4be9986d5
24 +DIST zsh-completions-0.29.0.tar.gz 251934 BLAKE2B 474f15cc8d492da0bbabc2a93edf316b9bb44bfb64ef8b8feae67fc381393b76701d9aca6eb64f6430f881b73a136985c8b17b392da139bd64afabe71e8183ba SHA512 4b2d79dd69576ce688fe24fe8c6e337319f2b96f5e668b9d58c8eb04f68198695a2652e8ad1e93a7ef9cf04cc53265c8db62f420b9ab6e1a2aff97ae24414945
25
26 diff --git a/app-shells/zsh-completions/zsh-completions-0.29.0.ebuild b/app-shells/zsh-completions/zsh-completions-0.29.0.ebuild
27 new file mode 100644
28 index 00000000000..926c471ffa0
29 --- /dev/null
30 +++ b/app-shells/zsh-completions/zsh-completions-0.29.0.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2018 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=6
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 ~arm ~sparc ~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 +}