mrueg 15/06/30 18:12:51 Modified: zsh-completions-9999.ebuild ChangeLog Added: zsh-completions-0.12.0-r2.ebuild Removed: zsh-completions-0.12.0-r1.ebuild Log: Fix file collision with app-emulation/docker. (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Revision Changes Path 1.2 app-shells/zsh-completions/zsh-completions-9999.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completions/zsh-completions-9999.ebuild?rev=1.2&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completions/zsh-completions-9999.ebuild?rev=1.2&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completions/zsh-completions-9999.ebuild?r1=1.1&r2=1.2 Index: zsh-completions-9999.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-shells/zsh-completions/zsh-completions-9999.ebuild,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- zsh-completions-9999.ebuild 21 Nov 2014 10:28:13 -0000 1.1 +++ zsh-completions-9999.ebuild 30 Jun 2015 18:12:51 -0000 1.2 @@ -1,6 +1,6 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh-completions/zsh-completions-9999.ebuild,v 1.1 2014/11/21 10:28:13 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh-completions/zsh-completions-9999.ebuild,v 1.2 2015/06/30 18:12:51 mrueg Exp $ EAPI=5 1.5 app-shells/zsh-completions/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completions/ChangeLog?rev=1.5&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completions/ChangeLog?rev=1.5&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completions/ChangeLog?r1=1.4&r2=1.5 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-shells/zsh-completions/ChangeLog,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- ChangeLog 6 Jun 2015 07:53:13 -0000 1.4 +++ ChangeLog 30 Jun 2015 18:12:51 -0000 1.5 @@ -1,6 +1,13 @@ # ChangeLog for app-shells/zsh-completions # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh-completions/ChangeLog,v 1.4 2015/06/06 07:53:13 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh-completions/ChangeLog,v 1.5 2015/06/30 18:12:51 mrueg Exp $ + +*zsh-completions-0.12.0-r2 (30 Jun 2015) + + 30 Jun 2015; Manuel RĂ¼ger <[email protected]> + +zsh-completions-0.12.0-r2.ebuild, -zsh-completions-0.12.0-r1.ebuild, + zsh-completions-9999.ebuild: + Fix file collision with app-emulation/docker. 06 Jun 2015; Justin Lecher <[email protected]> metadata.xml: Add github to remote-id in metadata.xml 1.1 app-shells/zsh-completions/zsh-completions-0.12.0-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completions/zsh-completions-0.12.0-r2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completions/zsh-completions-0.12.0-r2.ebuild?rev=1.1&content-type=text/plain Index: zsh-completions-0.12.0-r2.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-shells/zsh-completions/zsh-completions-0.12.0-r2.ebuild,v 1.1 2015/06/30 18:12:51 mrueg Exp $ 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_prepare() { # File collision with dev-python/pip rm src/_pip || die # File collision with app-emulation/docker rm src/_docker || die } 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 }
