vapier 14/03/09 07:12:48 Modified: grub-2.00_p5107-r2.ebuild grub-2.02_beta2.ebuild grub-9999-r1.ebuild ChangeLog Log: Use single quotes around ~ to get consistent behavior in <=bash-4.2 and >=bash-4.3 versions #503860 by Lars Wendler. (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key D2E96200)
Revision Changes Path 1.7 sys-boot/grub/grub-2.00_p5107-r2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-2.00_p5107-r2.ebuild?rev=1.7&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-2.00_p5107-r2.ebuild?rev=1.7&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-2.00_p5107-r2.ebuild?r1=1.6&r2=1.7 Index: grub-2.00_p5107-r2.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.00_p5107-r2.ebuild,v retrieving revision 1.6 retrieving revision 1.7 diff -u -r1.6 -r1.7 --- grub-2.00_p5107-r2.ebuild 9 Dec 2013 23:27:48 -0000 1.6 +++ grub-2.00_p5107-r2.ebuild 9 Mar 2014 07:12:47 -0000 1.7 @@ -1,6 +1,6 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.00_p5107-r2.ebuild,v 1.6 2013/12/09 23:27:48 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.00_p5107-r2.ebuild,v 1.7 2014/03/09 07:12:47 vapier Exp $ EAPI=5 @@ -13,7 +13,8 @@ if [[ ${PV} != 9999 ]]; then if [[ ${PV} == *_alpha* || ${PV} == *_beta* || ${PV} == *_rc* ]]; then - MY_P=${P/_/~} + # The quote style is to work with <=bash-4.2 and >=bash-4.3 #503860 + MY_P=${P/_/'~'} SRC_URI="mirror://gnu-alpha/${PN}/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} else 1.4 sys-boot/grub/grub-2.02_beta2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-2.02_beta2.ebuild?rev=1.4&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-2.02_beta2.ebuild?rev=1.4&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-2.02_beta2.ebuild?r1=1.3&r2=1.4 Index: grub-2.02_beta2.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.02_beta2.ebuild,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- grub-2.02_beta2.ebuild 13 Feb 2014 02:29:59 -0000 1.3 +++ grub-2.02_beta2.ebuild 9 Mar 2014 07:12:47 -0000 1.4 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.02_beta2.ebuild,v 1.3 2014/02/13 02:29:59 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-2.02_beta2.ebuild,v 1.4 2014/03/09 07:12:47 vapier Exp $ EAPI=5 @@ -18,7 +18,8 @@ if [[ ${PV} != 9999 ]]; then if [[ ${PV} == *_alpha* || ${PV} == *_beta* || ${PV} == *_rc* ]]; then - MY_P="${P/_/~}" + # The quote style is to work with <=bash-4.2 and >=bash-4.3 #503860 + MY_P=${P/_/'~'} SRC_URI="mirror://gnu-alpha/${PN}/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} else 1.13 sys-boot/grub/grub-9999-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-9999-r1.ebuild?rev=1.13&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-9999-r1.ebuild?rev=1.13&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/grub-9999-r1.ebuild?r1=1.12&r2=1.13 Index: grub-9999-r1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999-r1.ebuild,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- grub-9999-r1.ebuild 13 Feb 2014 02:29:59 -0000 1.12 +++ grub-9999-r1.ebuild 9 Mar 2014 07:12:47 -0000 1.13 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999-r1.ebuild,v 1.12 2014/02/13 02:29:59 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/grub-9999-r1.ebuild,v 1.13 2014/03/09 07:12:47 vapier Exp $ EAPI=5 @@ -18,7 +18,8 @@ if [[ ${PV} != 9999 ]]; then if [[ ${PV} == *_alpha* || ${PV} == *_beta* || ${PV} == *_rc* ]]; then - MY_P="${P/_/~}" + # The quote style is to work with <=bash-4.2 and >=bash-4.3 #503860 + MY_P=${P/_/'~'} SRC_URI="mirror://gnu-alpha/${PN}/${MY_P}.tar.xz" S=${WORKDIR}/${MY_P} else 1.308 sys-boot/grub/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.308&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?rev=1.308&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-boot/grub/ChangeLog?r1=1.307&r2=1.308 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v retrieving revision 1.307 retrieving revision 1.308 diff -u -r1.307 -r1.308 --- ChangeLog 28 Feb 2014 18:14:39 -0000 1.307 +++ ChangeLog 9 Mar 2014 07:12:47 -0000 1.308 @@ -1,6 +1,11 @@ # ChangeLog for sys-boot/grub # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.307 2014/02/28 18:14:39 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-boot/grub/ChangeLog,v 1.308 2014/03/09 07:12:47 vapier Exp $ + + 09 Mar 2014; Mike Frysinger <vap...@gentoo.org> grub-2.00_p5107-r2.ebuild, + grub-2.02_beta2.ebuild, grub-9999-r1.ebuild: + Use single quotes around ~ to get consistent behavior in <=bash-4.2 and + >=bash-4.3 versions #503860 by Lars Wendler. 28 Feb 2014; Mike Gilbert <flop...@gentoo.org> -files/1.99-call_proper_grub_probe.patch,