Gentoo Archives: gentoo-commits

From: Vadim Misbakh-Soloviov <mva@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/gentoo-zsh-completions/
Date: Mon, 14 Sep 2020 05:16:37
Message-Id: 1600060571.5cfe2cac99022c6d6d8b202dbdd66ec75ecb9916.mva@gentoo
1 commit: 5cfe2cac99022c6d6d8b202dbdd66ec75ecb9916
2 Author: Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 14 05:16:11 2020 +0000
4 Commit: Vadim Misbakh-Soloviov <mva <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 14 05:16:11 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cfe2cac
7
8 app-shells/gentoo-zsh-completions: bump to the new version
9
10 Closes: https://bugs.gentoo.org/439978
11 Package-Manager: Portage-3.0.6, Repoman-2.3.20
12 Signed-off-by: Vadim Misbakh-Soloviov <mva <AT> gentoo.org>
13
14 app-shells/gentoo-zsh-completions/Manifest | 1 +
15 .../gentoo-zsh-completions-20200914.ebuild | 27 ++++++++++++++++++++++
16 2 files changed, 28 insertions(+)
17
18 diff --git a/app-shells/gentoo-zsh-completions/Manifest b/app-shells/gentoo-zsh-completions/Manifest
19 index 0cadb7eac11..593849bd073 100644
20 --- a/app-shells/gentoo-zsh-completions/Manifest
21 +++ b/app-shells/gentoo-zsh-completions/Manifest
22 @@ -1 +1,2 @@
23 DIST gentoo-zsh-completions-20180228.tar.gz 23246 BLAKE2B a6e4004aa7592cbb097cad55fe9d7286f39bd264d8c463ed22e665ca6a60732b0bc8678a0ac09715e2f34abbadd0e4466d783fdb228ce364bcbe13fb7f097649 SHA512 2b3dcfb910e297eb2f03f4ad9f3749b379ceb60f8b6cbcb7c7d03b7921b79aa21f8d3aa50931c5d4eff52f988a208f1a810c6da7c20720be7a3f2ce4a4564788
24 +DIST gentoo-zsh-completions-20200914.tar.gz 25823 BLAKE2B 2a4af0fe85819f5cb8b3669f5a3b5b0e9672864a1562641c1760b7fa889648d3b405d5e28fd863bcea7800faca3c7392ecf3c5169755345bbf75d17c996c0de2 SHA512 a7f65e255a3c9f342d266d3a8604645c117124bd3f714d90aa63b3f6f873a4cf46224d7a9969061fc522107139b97695b8bbeb8a6dcb360f41128079adf9ce8c
25
26 diff --git a/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20200914.ebuild b/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20200914.ebuild
27 new file mode 100644
28 index 00000000000..ff98a19ddf2
29 --- /dev/null
30 +++ b/app-shells/gentoo-zsh-completions/gentoo-zsh-completions-20200914.ebuild
31 @@ -0,0 +1,27 @@
32 +# Copyright 1999-2020 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/gentoo/gentoo-zsh-completions.git"
40 +else
41 + SRC_URI="https://github.com/gentoo/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
42 + KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
43 +fi
44 +
45 +DESCRIPTION="Gentoo specific zsh completion support (includes emerge and ebuild commands)"
46 +HOMEPAGE="https://github.com/gentoo/gentoo-zsh-completions"
47 +
48 +LICENSE="ZSH"
49 +SLOT="0"
50 +
51 +RDEPEND=">=app-shells/zsh-4.3.5"
52 +
53 +src_install() {
54 + insinto /usr/share/zsh/site-functions
55 + doins src/_*
56 +
57 + dodoc AUTHORS
58 +}