Gentoo Archives: gentoo-commits

From: "Jeremy Olexa (darkside)" <darkside@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/zsh-completion: ChangeLog zsh-completion-20091203-r1.ebuild
Date: Tue, 04 Jan 2011 04:40:36
Message-Id: 20110104044024.821782005C@flycatcher.gentoo.org
1 darkside 11/01/04 04:40:24
2
3 Modified: ChangeLog
4 Added: zsh-completion-20091203-r1.ebuild
5 Log:
6 revision bump to remove eix completion and block older eix versions to prevent file collisions, bug 350129
7
8 (Portage version: 2.1.9.27/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.44 app-shells/zsh-completion/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completion/ChangeLog?rev=1.44&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completion/ChangeLog?rev=1.44&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completion/ChangeLog?r1=1.43&r2=1.44
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-shells/zsh-completion/ChangeLog,v
20 retrieving revision 1.43
21 retrieving revision 1.44
22 diff -u -r1.43 -r1.44
23 --- ChangeLog 14 Aug 2010 07:08:02 -0000 1.43
24 +++ ChangeLog 4 Jan 2011 04:40:24 -0000 1.44
25 @@ -1,6 +1,13 @@
26 # ChangeLog for app-shells/zsh-completion
27 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh-completion/ChangeLog,v 1.43 2010/08/14 07:08:02 cla Exp $
29 +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh-completion/ChangeLog,v 1.44 2011/01/04 04:40:24 darkside Exp $
31 +
32 +*zsh-completion-20091203-r1 (04 Jan 2011)
33 +
34 + 04 Jan 2011; Jeremy Olexa <darkside@g.o>
35 + +zsh-completion-20091203-r1.ebuild:
36 + revision bump to remove eix completion and block older eix versions to
37 + prevent file collisions, bug 350129
38
39 14 Aug 2010; Dawid Węgliński <cla@g.o>
40 zsh-completion-20080310.ebuild, zsh-completion-20091203.ebuild:
41
42
43
44 1.1 app-shells/zsh-completion/zsh-completion-20091203-r1.ebuild
45
46 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completion/zsh-completion-20091203-r1.ebuild?rev=1.1&view=markup
47 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh-completion/zsh-completion-20091203-r1.ebuild?rev=1.1&content-type=text/plain
48
49 Index: zsh-completion-20091203-r1.ebuild
50 ===================================================================
51 # Copyright 1999-2011 Gentoo Foundation
52 # Distributed under the terms of the GNU General Public License v2
53 # $Header: /var/cvsroot/gentoo-x86/app-shells/zsh-completion/zsh-completion-20091203-r1.ebuild,v 1.1 2011/01/04 04:40:24 darkside Exp $
54
55 MY_PV="20080310"
56 DESCRIPTION="Programmable Completion for zsh (includes emerge and ebuild commands)"
57 HOMEPAGE="http://gentoo.org"
58 SRC_URI="mirror://gentoo/${PN}-${MY_PV}.tar.bz2"
59
60 LICENSE="ZSH"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc64-solaris"
63 IUSE=""
64
65 DEPEND=">=app-shells/zsh-4.3.5"
66 RDEPEND="${DEPEND}
67 !<app-portage/eix-0.22.6"
68
69 S="${WORKDIR}"/${PN}-${MY_PV}
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 rm _eix
75 }
76
77 src_install() {
78 insinto /usr/share/zsh/site-functions
79 doins _*
80
81 dodoc AUTHORS
82 }
83
84 pkg_postinst() {
85 elog
86 elog "If you happen to compile your functions, you may need to delete"
87 elog "~/.zcompdump{,.zwc} and recompile to make zsh-completion available"
88 elog "to your shell."
89 elog
90 }