Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-3.2_p39.ebuild ChangeLog bash-3.2_p48.ebuild bash-4.0.ebuild bash-3.2_p48-r1.ebuild
Date: Wed, 25 Feb 2009 21:20:59
Message-Id: E1LcRBX-0004ve-ME@stork.gentoo.org
1 vapier 09/02/25 21:20:55
2
3 Modified: bash-3.2_p39.ebuild ChangeLog bash-3.2_p48.ebuild
4 bash-4.0.ebuild bash-3.2_p48-r1.ebuild
5 Log:
6 Stop auto-removing bash_logout in pkg_preinst() as this confuses newer versions of portage.
7 (Portage version: 2.2_rc23/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.18 app-shells/bash/bash-3.2_p39.ebuild
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-3.2_p39.ebuild?rev=1.18&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-3.2_p39.ebuild?rev=1.18&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-3.2_p39.ebuild?r1=1.17&r2=1.18
15
16 Index: bash-3.2_p39.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p39.ebuild,v
19 retrieving revision 1.17
20 retrieving revision 1.18
21 diff -u -r1.17 -r1.18
22 --- bash-3.2_p39.ebuild 21 Feb 2009 21:58:41 -0000 1.17
23 +++ bash-3.2_p39.ebuild 25 Feb 2009 21:20:55 -0000 1.18
24 @@ -1,6 +1,6 @@
25 # Copyright 1999-2009 Gentoo Foundation
26 # Distributed under the terms of the GNU General Public License v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p39.ebuild,v 1.17 2009/02/21 21:58:41 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p39.ebuild,v 1.18 2009/02/25 21:20:55 vapier Exp $
29
30 inherit eutils flag-o-matic toolchain-funcs multilib
31
32 @@ -177,12 +177,6 @@
33 mv -f "${ROOT}"/etc/bashrc "${ROOT}"/etc/bash/
34 fi
35
36 - # our bash_logout is just a place holder so dont
37 - # force users to go through etc-update all the time
38 - if [[ -e ${ROOT}/etc/bash/bash_logout ]] ; then
39 - rm -f "${D}"/etc/bash/bash_logout
40 - fi
41 -
42 if [[ -L ${ROOT}/bin/sh ]]; then
43 # rewrite the symlink to ensure that its mtime changes. having /bin/sh
44 # missing even temporarily causes a fatal error with paludis.
45
46
47
48 1.203 app-shells/bash/ChangeLog
49
50 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/ChangeLog?rev=1.203&view=markup
51 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/ChangeLog?rev=1.203&content-type=text/plain
52 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/ChangeLog?r1=1.202&r2=1.203
53
54 Index: ChangeLog
55 ===================================================================
56 RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
57 retrieving revision 1.202
58 retrieving revision 1.203
59 diff -u -r1.202 -r1.203
60 --- ChangeLog 25 Feb 2009 17:22:26 -0000 1.202
61 +++ ChangeLog 25 Feb 2009 21:20:55 -0000 1.203
62 @@ -1,6 +1,11 @@
63 # ChangeLog for app-shells/bash
64 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
65 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.202 2009/02/25 17:22:26 vapier Exp $
66 +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.203 2009/02/25 21:20:55 vapier Exp $
67 +
68 + 25 Feb 2009; Mike Frysinger <vapier@g.o> bash-3.2_p39.ebuild,
69 + bash-3.2_p48.ebuild, bash-3.2_p48-r1.ebuild, bash-4.0.ebuild:
70 + Stop auto-removing bash_logout in pkg_preinst() as this confuses newer
71 + versions of portage.
72
73 25 Feb 2009; Mike Frysinger <vapier@g.o>
74 +files/bash-4.0-declare-identifier.patch, bash-4.0.ebuild:
75
76
77
78 1.2 app-shells/bash/bash-3.2_p48.ebuild
79
80 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-3.2_p48.ebuild?rev=1.2&view=markup
81 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-3.2_p48.ebuild?rev=1.2&content-type=text/plain
82 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-3.2_p48.ebuild?r1=1.1&r2=1.2
83
84 Index: bash-3.2_p48.ebuild
85 ===================================================================
86 RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p48.ebuild,v
87 retrieving revision 1.1
88 retrieving revision 1.2
89 diff -u -r1.1 -r1.2
90 --- bash-3.2_p48.ebuild 20 Nov 2008 20:57:20 -0000 1.1
91 +++ bash-3.2_p48.ebuild 25 Feb 2009 21:20:55 -0000 1.2
92 @@ -1,6 +1,6 @@
93 -# Copyright 1999-2008 Gentoo Foundation
94 +# Copyright 1999-2009 Gentoo Foundation
95 # Distributed under the terms of the GNU General Public License v2
96 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p48.ebuild,v 1.1 2008/11/20 20:57:20 loki_val Exp $
97 +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p48.ebuild,v 1.2 2009/02/25 21:20:55 vapier Exp $
98
99 inherit eutils flag-o-matic toolchain-funcs multilib
100
101 @@ -177,12 +177,6 @@
102 mv -f "${ROOT}"/etc/bashrc "${ROOT}"/etc/bash/
103 fi
104
105 - # our bash_logout is just a place holder so dont
106 - # force users to go through etc-update all the time
107 - if [[ -e ${ROOT}/etc/bash/bash_logout ]] ; then
108 - rm -f "${D}"/etc/bash/bash_logout
109 - fi
110 -
111 if [[ -L ${ROOT}/bin/sh ]]; then
112 # rewrite the symlink to ensure that its mtime changes. having /bin/sh
113 # missing even temporarily causes a fatal error with paludis.
114
115
116
117 1.8 app-shells/bash/bash-4.0.ebuild
118
119 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-4.0.ebuild?rev=1.8&view=markup
120 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-4.0.ebuild?rev=1.8&content-type=text/plain
121 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-4.0.ebuild?r1=1.7&r2=1.8
122
123 Index: bash-4.0.ebuild
124 ===================================================================
125 RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.0.ebuild,v
126 retrieving revision 1.7
127 retrieving revision 1.8
128 diff -u -r1.7 -r1.8
129 --- bash-4.0.ebuild 25 Feb 2009 17:22:26 -0000 1.7
130 +++ bash-4.0.ebuild 25 Feb 2009 21:20:55 -0000 1.8
131 @@ -1,6 +1,6 @@
132 # Copyright 1999-2009 Gentoo Foundation
133 # Distributed under the terms of the GNU General Public License v2
134 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.0.ebuild,v 1.7 2009/02/25 17:22:26 vapier Exp $
135 +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.0.ebuild,v 1.8 2009/02/25 21:20:55 vapier Exp $
136
137 EAPI="1"
138
139 @@ -174,12 +174,6 @@
140 mv -f "${ROOT}"/etc/bashrc "${ROOT}"/etc/bash/
141 fi
142
143 - # our bash_logout is just a place holder so dont
144 - # force users to go through etc-update all the time
145 - if [[ -e ${ROOT}/etc/bash/bash_logout ]] ; then
146 - rm -f "${D}"/etc/bash/bash_logout
147 - fi
148 -
149 if [[ -L ${ROOT}/bin/sh ]]; then
150 # rewrite the symlink to ensure that its mtime changes. having /bin/sh
151 # missing even temporarily causes a fatal error with paludis.
152
153
154
155 1.3 app-shells/bash/bash-3.2_p48-r1.ebuild
156
157 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-3.2_p48-r1.ebuild?rev=1.3&view=markup
158 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-3.2_p48-r1.ebuild?rev=1.3&content-type=text/plain
159 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/bash-3.2_p48-r1.ebuild?r1=1.2&r2=1.3
160
161 Index: bash-3.2_p48-r1.ebuild
162 ===================================================================
163 RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p48-r1.ebuild,v
164 retrieving revision 1.2
165 retrieving revision 1.3
166 diff -u -r1.2 -r1.3
167 --- bash-3.2_p48-r1.ebuild 21 Feb 2009 23:01:33 -0000 1.2
168 +++ bash-3.2_p48-r1.ebuild 25 Feb 2009 21:20:55 -0000 1.3
169 @@ -1,6 +1,6 @@
170 # Copyright 1999-2009 Gentoo Foundation
171 # Distributed under the terms of the GNU General Public License v2
172 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p48-r1.ebuild,v 1.2 2009/02/21 23:01:33 vapier Exp $
173 +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-3.2_p48-r1.ebuild,v 1.3 2009/02/25 21:20:55 vapier Exp $
174
175 EAPI=1
176
177 @@ -182,12 +182,6 @@
178 mv -f "${ROOT}"/etc/bashrc "${ROOT}"/etc/bash/
179 fi
180
181 - # our bash_logout is just a place holder so dont
182 - # force users to go through etc-update all the time
183 - if [[ -e ${ROOT}/etc/bash/bash_logout ]] ; then
184 - rm -f "${D}"/etc/bash/bash_logout
185 - fi
186 -
187 if [[ -L ${ROOT}/bin/sh ]]; then
188 # rewrite the symlink to ensure that its mtime changes. having /bin/sh
189 # missing even temporarily causes a fatal error with paludis.