forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-shells/zsh-completions: Version bump to 0.21.0
Package-Manager: portage-2.3.2
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST zsh-completions-0.18.0.tar.gz 232872 SHA256 b94eb63d044920a4ea6d5d51ae4f237f21b0c3174f3c58ff464b5284477cdb7a SHA512 68510ce1823c59318ffa7ff85b3c0385d056912c68e6513fbbcaf49c3757cca69531e7f3dfb5f75424f8bbf3722ebebc00170b10588de619cdd1353d6754d1ac WHIRLPOOL e48a24b3d612b4797264d28c02b4b151dd5f8bdac981ed24a47ce1490d4ce3372dcaae4ac7d9aeb4dd6d0cbe56c5a3752bec2f83561eb9aa23f43816a31d7e1d | ||
DIST zsh-completions-0.19.0.tar.gz 231152 SHA256 8108692b9f9bfb630b9b96a8ff57e87a9437fd183599972f6b0a60f8552c89e0 SHA512 f105b77a3941caf681861369d32558d0fe54d15761400c3ed8e827c86e924cc5449d03a60a9ff7f7cb5dab275ab2f4b6c6a316f8af8b649eff8c20da0b9b21f6 WHIRLPOOL 4db5e4c178c8c742d01fe49227152e7e427f98d8d29258bc6a1c5b236a91dd7a39ad96da60cf01e7654af2f66696f1d24062acdacef9bbeb5745215cd25f1783 | ||
DIST zsh-completions-0.20.0.tar.gz 193091 SHA256 c697d1d6bd093b5f761f9171a28fa9de2133fee929028bbe5ae2b71352800ad5 SHA512 1b494cc8ce3b549018ca27847a52ff94fd6520a6990c6b65527e34d54cc4ed4e4a17153bb23af50c6dd7a3d236d2389c850fe73e849624f111d5a39143dd7f0f WHIRLPOOL e959894b78224fe1862889838e97f3b85ed3fa9195782acf51a7574e4cf183719e7dc1d11c5d0e340dcea200ee86fe32d808171ce755909669667b6ea03465a5 | ||
DIST zsh-completions-0.21.0.tar.gz 202122 SHA256 be465b1850d66a90d536460aeba1502aa31829b663023f255e81693420ba7048 SHA512 a8b8c7fed8a126906560f86f29d5e0d6372a7da47f40037d74813ff2a796a0a011da4635bf941ee04bc0e741558bd56247ca0e2c69ce38896e24ef101483e547 WHIRLPOOL 8913628898c7083f59072c416dd202ce4fce90f14baf454e40830f4f36dcb6872c015c536935ef3ab2746955c0987e5f50a97b817455d8ce4ff0ea15f7e8a0be |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |