Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/zsh: ChangeLog zsh-5.0.2-r1.ebuild
Date: Wed, 29 May 2013 10:26:13
Message-Id: 20130529102609.3A6772171D@flycatcher.gentoo.org
1 radhermit 13/05/29 10:26:09
2
3 Modified: ChangeLog zsh-5.0.2-r1.ebuild
4 Log:
5 Fix build with texinfo-5.1 (bug #464122) and only show elog info on new installs.
6
7 (Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
8
9 Revision Changes Path
10 1.213 app-shells/zsh/ChangeLog
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh/ChangeLog?rev=1.213&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh/ChangeLog?rev=1.213&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh/ChangeLog?r1=1.212&r2=1.213
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v
19 retrieving revision 1.212
20 retrieving revision 1.213
21 diff -u -r1.212 -r1.213
22 --- ChangeLog 15 Mar 2013 13:29:32 -0000 1.212
23 +++ ChangeLog 29 May 2013 10:26:09 -0000 1.213
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-shells/zsh
26 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.212 2013/03/15 13:29:32 ago Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.213 2013/05/29 10:26:09 radhermit Exp $
29 +
30 + 29 May 2013; Tim Harder <radhermit@g.o> zsh-5.0.2-r1.ebuild,
31 + +files/zsh-5.0.2-texinfo-5.1.patch:
32 + Fix build with texinfo-5.1 (bug #464122) and only show elog info on new
33 + installs.
34
35 15 Mar 2013; Agostino Sarubbo <ago@g.o> zsh-5.0.2.ebuild:
36 Stable for sh, wrt bug #436348
37
38
39
40 1.2 app-shells/zsh/zsh-5.0.2-r1.ebuild
41
42 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh/zsh-5.0.2-r1.ebuild?rev=1.2&view=markup
43 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh/zsh-5.0.2-r1.ebuild?rev=1.2&content-type=text/plain
44 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/zsh/zsh-5.0.2-r1.ebuild?r1=1.1&r2=1.2
45
46 Index: zsh-5.0.2-r1.ebuild
47 ===================================================================
48 RCS file: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-5.0.2-r1.ebuild,v
49 retrieving revision 1.1
50 retrieving revision 1.2
51 diff -u -r1.1 -r1.2
52 --- zsh-5.0.2-r1.ebuild 12 Mar 2013 21:47:40 -0000 1.1
53 +++ zsh-5.0.2-r1.ebuild 29 May 2013 10:26:09 -0000 1.2
54 @@ -1,6 +1,6 @@
55 # Copyright 1999-2013 Gentoo Foundation
56 # Distributed under the terms of the GNU General Public License v2
57 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-5.0.2-r1.ebuild,v 1.1 2013/03/12 21:47:40 radhermit Exp $
58 +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-5.0.2-r1.ebuild,v 1.2 2013/05/29 10:26:09 radhermit Exp $
59
60 EAPI=5
61
62 @@ -59,6 +59,7 @@
63
64 epatch "${FILESDIR}"/${PN}-init.d-gentoo-r1.diff
65 epatch "${FILESDIR}"/${PN}-fix-parameter-modifier-crash.patch
66 + epatch "${FILESDIR}"/${PN}-5.0.2-texinfo-5.1.patch
67
68 cp "${FILESDIR}"/zprofile-1 "${T}"/zprofile || die
69 eprefixify "${T}"/zprofile || die
70 @@ -164,17 +165,19 @@
71 }
72
73 pkg_postinst() {
74 - # should link to http://www.gentoo.org/doc/en/zsh.xml
75 - elog
76 - elog "If you want to enable Portage completions and Gentoo prompt,"
77 - elog "emerge app-shells/zsh-completion and add"
78 - elog " autoload -U compinit promptinit"
79 - elog " compinit"
80 - elog " promptinit; prompt gentoo"
81 - elog "to your ~/.zshrc"
82 - elog
83 - elog "Also, if you want to enable cache for the completions, add"
84 - elog " zstyle ':completion::complete:*' use-cache 1"
85 - elog "to your ~/.zshrc"
86 - elog
87 + if [[ -z ${REPLACING_VERSIONS} ]] ; then
88 + # should link to http://www.gentoo.org/doc/en/zsh.xml
89 + elog
90 + elog "If you want to enable Portage completions and Gentoo prompt,"
91 + elog "emerge app-shells/zsh-completion and add"
92 + elog " autoload -U compinit promptinit"
93 + elog " compinit"
94 + elog " promptinit; prompt gentoo"
95 + elog "to your ~/.zshrc"
96 + elog
97 + elog "Also, if you want to enable cache for the completions, add"
98 + elog " zstyle ':completion::complete:*' use-cache 1"
99 + elog "to your ~/.zshrc"
100 + elog
101 + fi
102 }