public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-libs/boost: boost-1.48.0-r2.ebuild boost-1.49.0-r1.ebuild ChangeLog
@ 2012-05-20 21:16 Mike Gilbert (floppym)
  0 siblings, 0 replies; only message in thread
From: Mike Gilbert (floppym) @ 2012-05-20 21:16 UTC (permalink / raw
  To: gentoo-commits

floppym     12/05/20 21:16:58

  Modified:             boost-1.48.0-r2.ebuild boost-1.49.0-r1.ebuild
                        ChangeLog
  Log:
  Fix paths to commands in src_test() (bug #415719). Patch by Arfrever. Backported from Progress Overlay.
  
  (Portage version: 2.2.0_alpha107/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  dev-libs/boost/boost-1.48.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.48.0-r2.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.48.0-r2.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.48.0-r2.ebuild?r1=1.2&r2=1.3

Index: boost-1.48.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.48.0-r2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- boost-1.48.0-r2.ebuild	16 May 2012 15:40:36 -0000	1.2
+++ boost-1.48.0-r2.ebuild	20 May 2012 21:16:58 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.48.0-r2.ebuild,v 1.2 2012/05/16 15:40:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.48.0-r2.ebuild,v 1.3 2012/05/20 21:16:58 floppym Exp $
 
 EAPI="4"
 PYTHON_DEPEND="python? *"
@@ -569,7 +569,7 @@
 			--dump-tests 2>&1 | tee regress.log || die
 
 		# Postprocessing
-		cat regress.log | ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease/pch-off/process_jam_log --v2
+		cat regress.log | "$(find ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease -name process_jam_log)" --v2
 		if test $? != 0; then
 			die "Postprocessing the build log failed"
 		fi
@@ -579,7 +579,7 @@
 __EOF__
 
 		# Generate the build log html summary page
-		../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease/pch-off/compiler_status --v2 \
+		"$(find ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease -name compiler_status)" --v2 \
 			--comment comment.html "${S}" \
 			cs-$(uname).html cs-$(uname)-links.html
 		if test $? != 0; then



1.2                  dev-libs/boost/boost-1.49.0-r1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.49.0-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.49.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/boost-1.49.0-r1.ebuild?r1=1.1&r2=1.2

Index: boost-1.49.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.49.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- boost-1.49.0-r1.ebuild	6 May 2012 16:22:14 -0000	1.1
+++ boost-1.49.0-r1.ebuild	20 May 2012 21:16:58 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.49.0-r1.ebuild,v 1.1 2012/05/06 16:22:14 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/boost-1.49.0-r1.ebuild,v 1.2 2012/05/20 21:16:58 floppym Exp $
 
 EAPI="4"
 PYTHON_DEPEND="python? *"
@@ -568,7 +568,7 @@
 			--dump-tests 2>&1 | tee regress.log || die
 
 		# Postprocessing
-		cat regress.log | ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease/pch-off/process_jam_log --v2
+		cat regress.log | "$(find ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease -name process_jam_log)" --v2
 		if test $? != 0; then
 			die "Postprocessing the build log failed"
 		fi
@@ -578,7 +578,7 @@
 __EOF__
 
 		# Generate the build log html summary page
-		../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease/pch-off/compiler_status --v2 \
+		"$(find ../tools/regression/build/bin/gcc-$(gcc-version)/gentoorelease -name compiler_status)" --v2 \
 			--comment comment.html "${S}" \
 			cs-$(uname).html cs-$(uname)-links.html
 		if test $? != 0; then



1.245                dev-libs/boost/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.245&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?rev=1.245&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/boost/ChangeLog?r1=1.244&r2=1.245

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v
retrieving revision 1.244
retrieving revision 1.245
diff -u -r1.244 -r1.245
--- ChangeLog	16 May 2012 15:40:36 -0000	1.244
+++ ChangeLog	20 May 2012 21:16:58 -0000	1.245
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/boost
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.244 2012/05/16 15:40:36 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/boost/ChangeLog,v 1.245 2012/05/20 21:16:58 floppym Exp $
+
+  20 May 2012; Mike Gilbert <floppym@gentoo.org> boost-1.48.0-r2.ebuild,
+  boost-1.49.0-r1.ebuild:
+  Fix paths to commands in src_test() (bug #415719). Patch by Arfrever.
+  Backported from Progress Overlay.
 
   16 May 2012; Jeroen Roovers <jer@gentoo.org> boost-1.48.0-r2.ebuild:
   Stable for HPPA (bug #413815).






^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-05-20 21:17 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-20 21:16 [gentoo-commits] gentoo-x86 commit in dev-libs/boost: boost-1.48.0-r2.ebuild boost-1.49.0-r1.ebuild ChangeLog Mike Gilbert (floppym)

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