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: Wed, 19 Jul 2017 14:34:58
Message-Id: 1500474829.234b58c5760b52d18780266a05331bd855c58e6a.mrueg@gentoo
1 commit: 234b58c5760b52d18780266a05331bd855c58e6a
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 19 14:33:49 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 19 14:33:49 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=234b58c5
7
8 app-shells/zsh-completions: Version bump to 0.26.0
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 app-shells/zsh-completions/Manifest | 1 +
13 .../zsh-completions/zsh-completions-0.26.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 4a3cec8bd38..470bb360827 100644
18 --- a/app-shells/zsh-completions/Manifest
19 +++ b/app-shells/zsh-completions/Manifest
20 @@ -1,3 +1,4 @@
21 DIST zsh-completions-0.22.0.tar.gz 204849 SHA256 cfb8c4af39c3df4c2d087f5829dc6f0c1cfcc2b2110bcc7e47b59cff5615a79f SHA512 46c2db28cb58d9abecd51172978c210b3de3b26956e8f8a6a26ebeeacd105ee904b79e2079b046c53b56e6aacd98fb34ef31e1deacdd9230763931f2ae806001 WHIRLPOOL 5e2ee49660a32671de98507e7408901f9f2e717c52fc5bc8c9985f2cff530ac1f4312bd950907bf84f1832ef1b83295633ce0cc066fb765318a08c9cf2c9383f
22 DIST zsh-completions-0.24.0.tar.gz 210053 SHA256 124e585332dc35830a9169ab27710def24618e0083e1ccc18c6a0664e2f3406e SHA512 edf13cf2ee8f092d40f6a47e9a7f945e100a02f25d4ce70d7ccb0b006ace9516b66dc44a47a0ae172019b8f4c55e109b63c3abf00ee75a92df65c24800ae132f WHIRLPOOL a936185c914b1f79627525c14a08bf8e77c68a66eaf844acf69b247dc1bd64bb69bdbf8ed4235cfe0111d0b5ef7c48418fe3024fdfb4f8a671f06e4727cdb871
23 DIST zsh-completions-0.25.0.tar.gz 214947 SHA256 6a89fb148313577ea81a36630bc2bf009aaaf74a116109cb33f422396e23ab0f SHA512 42df89f39b8a9077142aa4d06faf57596b50d300726e2078f819f64a4282a0d5216141696fd9bbfb8e47f21d0ef9a0f20f24f98daf9244f927078105aa1df031 WHIRLPOOL 32945ba8477f17750da6269e8db1106822bcf13b1f7e5c4056342f544528fc0cc303db4a453e7270e049f1dc2c008d14d7e64efa04eb80d445595b34eefc517c
24 +DIST zsh-completions-0.26.0.tar.gz 218057 SHA256 783768c8308cc0ff37bce346c66386308550ede05121e352b1a284ff6bf88540 SHA512 78ba96e0c6a30271181270244488b7f2c783047714dcf1eb39918d4b258fbaf1f54b718407418ffcc62f5bf552192aca3841497c0ffb8d3e9c6ea4fb85bc1754 WHIRLPOOL 27a6273f2ae35c4413283a30c506a40c19034af89fe22cba12ec0167f5caa9e8b9e29f057fe4be609c0f54cba8f6f9c610bfe481dccc78f91c653d78b81a5849
25
26 diff --git a/app-shells/zsh-completions/zsh-completions-0.26.0.ebuild b/app-shells/zsh-completions/zsh-completions-0.26.0.ebuild
27 new file mode 100644
28 index 00000000000..74e18cd0dbf
29 --- /dev/null
30 +++ b/app-shells/zsh-completions/zsh-completions-0.26.0.ebuild
31 @@ -0,0 +1,33 @@
32 +# Copyright 1999-2017 Gentoo Foundation
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 ~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 +}