diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2016-10-16 15:14:28 +0200 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2016-10-16 15:15:17 +0200 |
commit | 9f81854d9e2abe708025af462a6cf51a09f9be69 (patch) | |
tree | b9134f56f79735fcd04de0c86191b40045d3d260 /app-shells/zsh-completions/zsh-completions-0.21.0.ebuild | |
parent | app-editors/mg: Remove old. (diff) | |
download | gentoo-9f81854d9e2abe708025af462a6cf51a09f9be69.tar.gz gentoo-9f81854d9e2abe708025af462a6cf51a09f9be69.tar.bz2 gentoo-9f81854d9e2abe708025af462a6cf51a09f9be69.zip |
app-shells/zsh-completions: Version bump to 0.21.0
Package-Manager: portage-2.3.2
Diffstat (limited to 'app-shells/zsh-completions/zsh-completions-0.21.0.ebuild')
-rw-r--r-- | app-shells/zsh-completions/zsh-completions-0.21.0.ebuild | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/app-shells/zsh-completions/zsh-completions-0.21.0.ebuild b/app-shells/zsh-completions/zsh-completions-0.21.0.ebuild new file mode 100644 index 000000000000..e5b1d5f40bc0 --- /dev/null +++ b/app-shells/zsh-completions/zsh-completions-0.21.0.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +if [[ ${PV} == 9999* ]] ; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/zsh-users/zsh-completions.git" +else + SRC_URI="https://github.com/zsh-users/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" +fi + +DESCRIPTION="Additional completion definitions for Zsh" +HOMEPAGE="https://github.com/zsh-users/zsh-completions" + +LICENSE="BSD" +SLOT="0" + +RDEPEND="app-shells/zsh" + +src_install() { + insinto /usr/share/zsh/site-functions + doins src/_* +} + +pkg_postinst() { + elog + elog "If you happen to compile your functions, you may need to delete" + elog "~/.zcompdump{,.zwc} and recompile to make the new completions available" + elog "to your shell." + elog +} |