mgorny 14/10/27 14:13:13 Modified: bash-completion-2.1-r91.ebuild ChangeLog Log: Work-around race conditions in the Makefile, bug #526996. (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
Revision Changes Path 1.3 app-shells/bash-completion/bash-completion-2.1-r91.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/bash-completion-2.1-r91.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/bash-completion-2.1-r91.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/bash-completion-2.1-r91.ebuild?r1=1.2&r2=1.3 Index: bash-completion-2.1-r91.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-2.1-r91.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- bash-completion-2.1-r91.ebuild 27 Oct 2014 03:06:05 -0000 1.2 +++ bash-completion-2.1-r91.ebuild 27 Oct 2014 14:13:13 -0000 1.3 @@ -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/app-shells/bash-completion/bash-completion-2.1-r91.ebuild,v 1.2 2014/10/27 03:06:05 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/bash-completion-2.1-r91.ebuild,v 1.3 2014/10/27 14:13:13 mgorny Exp $ EAPI=5 @@ -40,8 +40,10 @@ src_test() { :; } # Skip testsuite because of interactive shell wrt #477066 src_install() { - # not parallel-safe - emake -j1 DESTDIR="${D}" install + # work-around race conditions, bug #526996 + mkdir -p "${ED}"/usr/share/bash-completion/{completions,helpers} || die + + default # use the copies from >=sys-apps/util-linux-2.23 wrt #468544 -> hd and ncal # becomes dead symlinks as a result 1.274 app-shells/bash-completion/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/ChangeLog?rev=1.274&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/ChangeLog?rev=1.274&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/ChangeLog?r1=1.273&r2=1.274 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v retrieving revision 1.273 retrieving revision 1.274 diff -u -r1.273 -r1.274 --- ChangeLog 27 Oct 2014 03:06:05 -0000 1.273 +++ ChangeLog 27 Oct 2014 14:13:13 -0000 1.274 @@ -1,6 +1,9 @@ # ChangeLog for app-shells/bash-completion # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.273 2014/10/27 03:06:05 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.274 2014/10/27 14:13:13 mgorny Exp $ + + 27 Oct 2014; Michał Górny <[email protected]> bash-completion-2.1-r91.ebuild: + Work-around race conditions in the Makefile, bug #526996. 27 Oct 2014; Patrick Lauer <[email protected]> bash-completion-2.1-r91.ebuild:
