app-shells/zsh-completions: Version bump
authorManuel Rüger <mrueg@gentoo.org>
Sat, 6 Feb 2016 13:58:16 +0000 (14:58 +0100)
committerManuel Rüger <mrueg@gentoo.org>
Sat, 6 Feb 2016 13:58:16 +0000 (14:58 +0100)
Package-Manager: portage-2.2.27

app-shells/zsh-completions/Manifest
app-shells/zsh-completions/zsh-completions-0.14.0.ebuild [new file with mode: 0644]

index eec029ad54bae7d7d40baabefc60b4f46b181fc3..036503c4e42f4d8f9466e03c7a7573835fc5a36d 100644 (file)
@@ -1 +1,2 @@
 DIST zsh-completions-0.12.0.tar.gz 193410 SHA256 770d92749b11b22192595b207208508f8bfa319d5d03210a71bc44c8b9cfa0d5 SHA512 3c6b19f10d9598f40cf37ca5c5828e5652b0cad144d48ca681f5a16c1921c308f8cd3d9b8a2dd1c50ddbf167d4bb2e2e5299d1e30591971f4c7d9b28c2250feb WHIRLPOOL 7c5a1cb45d2e045fb0f8eb64deb8d87cab506f11b94996b9ff6cb169fd20672040bdc624de78a58ab5908d2222130de93a179a8e00d5aa75365af0ab0566852a
+DIST zsh-completions-0.14.0.tar.gz 199317 SHA256 54e4f5aad66acd729c46f589dc0b9f2a518b453892e4c21e495f33bb959c7eef SHA512 fd2fa683c5990fba9dfa12e839d70c24b7821b487175f5c51d603d21a494f7e9e921628fdd8fff1c02f8c2f52ac1fba1f48638da6a356240e0b7806c1b747ec2 WHIRLPOOL 28df4d93c0bf80bd5c3bb2c189897042e0cfd99fef77492adfe410dca96e140a8e654c0a896b45991f3605822a209d6561f7b196344b704ccd718f0a284f3e28
diff --git a/app-shells/zsh-completions/zsh-completions-0.14.0.ebuild b/app-shells/zsh-completions/zsh-completions-0.14.0.ebuild
new file mode 100644 (file)
index 0000000..e5b1d5f
--- /dev/null
@@ -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
+}