public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-2.1-r91.ebuild ChangeLog
@ 2014-10-27  3:06 Patrick Lauer (patrick)
  0 siblings, 0 replies; 2+ messages in thread
From: Patrick Lauer (patrick) @ 2014-10-27  3:06 UTC (permalink / raw
  To: gentoo-commits

patrick     14/10/27 03:06:05

  Modified:             bash-completion-2.1-r91.ebuild ChangeLog
  Log:
  Fix src_install breakage
  
  (Portage version: 2.2.14/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  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.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/bash-completion-2.1-r91.ebuild?rev=1.2&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.1&r2=1.2

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.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bash-completion-2.1-r91.ebuild	24 Oct 2014 23:03:19 -0000	1.1
+++ bash-completion-2.1-r91.ebuild	27 Oct 2014 03:06:05 -0000	1.2
@@ -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.1 2014/10/24 23:03:19 mgorny Exp $
+# $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 $
 
 EAPI=5
 
@@ -40,7 +40,8 @@
 src_test() { :; } # Skip testsuite because of interactive shell wrt #477066
 
 src_install() {
-	default
+	# not parallel-safe
+	emake -j1 DESTDIR="${D}" install
 
 	# use the copies from >=sys-apps/util-linux-2.23 wrt #468544 -> hd and ncal
 	# becomes dead symlinks as a result



1.273                app-shells/bash-completion/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/ChangeLog?rev=1.273&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/ChangeLog?rev=1.273&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash-completion/ChangeLog?r1=1.272&r2=1.273

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v
retrieving revision 1.272
retrieving revision 1.273
diff -u -r1.272 -r1.273
--- ChangeLog	24 Oct 2014 23:03:19 -0000	1.272
+++ ChangeLog	27 Oct 2014 03:06:05 -0000	1.273
@@ -1,6 +1,10 @@
 # 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.272 2014/10/24 23:03:19 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash-completion/ChangeLog,v 1.273 2014/10/27 03:06:05 patrick Exp $
+
+  27 Oct 2014; Patrick Lauer <patrick@gentoo.org>
+  bash-completion-2.1-r91.ebuild:
+  Fix src_install breakage
 
 *bash-completion-2.1-r91 (24 Oct 2014)
 





^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-2.1-r91.ebuild ChangeLog
@ 2014-10-27 14:13 Michal Gorny (mgorny)
  0 siblings, 0 replies; 2+ messages in thread
From: Michal Gorny (mgorny) @ 2014-10-27 14:13 UTC (permalink / raw
  To: gentoo-commits

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 <mgorny@gentoo.org> bash-completion-2.1-r91.ebuild:
+  Work-around race conditions in the Makefile, bug #526996.
 
   27 Oct 2014; Patrick Lauer <patrick@gentoo.org>
   bash-completion-2.1-r91.ebuild:





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-10-27 14:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-10-27 14:13 [gentoo-commits] gentoo-x86 commit in app-shells/bash-completion: bash-completion-2.1-r91.ebuild ChangeLog Michal Gorny (mgorny)
  -- strict thread matches above, loose matches on Subject: below --
2014-10-27  3:06 Patrick Lauer (patrick)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox