public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-9999.ebuild ChangeLog
@ 2010-12-14 15:54 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 6+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2010-12-14 15:54 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    10/12/14 15:54:38

  Modified:             ChangeLog
  Added:                v8-9999.ebuild
  Log:
  Add live ebuild, bug #266502 by Vladimir Dolzhenko <vladimir.dolzhenko@gmail.com>. Used modified ebuild by Mike Gilbert <floppymaster@gmail.com>.
  
  (Portage version: 2.1.9.24/cvs/Linux i686)

Revision  Changes    Path
1.18                 dev-lang/v8/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	10 Dec 2010 17:08:38 -0000	1.17
+++ ChangeLog	14 Dec 2010 15:54:38 -0000	1.18
@@ -1,6 +1,13 @@
 # ChangeLog for dev-lang/v8
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.17 2010/12/10 17:08:38 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.18 2010/12/14 15:54:38 phajdan.jr Exp $
+
+*v8-9999 (14 Dec 2010)
+
+  14 Dec 2010; Pawel Hajdan jr <phajdan.jr@gentoo.org> +v8-9999.ebuild:
+  Add live ebuild, bug #266502 by Vladimir Dolzhenko
+  <vladimir.dolzhenko@gmail.com>. Used modified ebuild by Mike Gilbert
+  <floppymaster@gmail.com>.
 
 *v8-2.4.9.14 (10 Dec 2010)
 



1.1                  dev-lang/v8/v8-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.1&content-type=text/plain

Index: v8-9999.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.1 2010/12/14 15:54:38 phajdan.jr Exp $

EAPI="2"

inherit eutils flag-o-matic multilib scons-utils subversion toolchain-funcs

DESCRIPTION="Google's open source JavaScript engine"
HOMEPAGE="http://code.google.com/p/v8"
ESVN_REPO_URI="http://v8.googlecode.com/svn/trunk"
LICENSE="BSD"

SLOT="0"
KEYWORDS=""
IUSE="readline"

RDEPEND="readline? ( >=sys-libs/readline-6.1 )"
DEPEND="${RDEPEND}"

EXTRA_ESCONS="library=shared importenv=\"LINKFLAGS\""

pkg_setup() {
	tc-export AR CC CXX RANLIB

	# Make the build respect LDFLAGS.
	export LINKFLAGS="${LDFLAGS}"
}

src_prepare() {
	# Stop -Werror from breaking the build.
	epatch "${FILESDIR}"/${PN}-no-werror-r0.patch

	# Respect the user's CFLAGS, including the optimization level.
	epatch "${FILESDIR}"/${PN}-no-O3-r0.patch

	# Remove a test that is known to fail:
	# http://groups.google.com/group/v8-users/browse_thread/thread/b8a3f42b5aa18d06
	rm test/mjsunit/debug-script.js || die
}

src_configure() {
	# GCC issues multiple warnings about strict-aliasing issues in v8 code.
	append-flags -fno-strict-aliasing
}

src_compile() {
	local myconf=""

	# Use target arch detection logic from bug #296917.
	local myarch="$ABI"
	[[ $myarch = "" ]] && myarch="$ARCH"

	if [[ $myarch = amd64 ]] ; then
		myconf+=" arch=x64"
	elif [[ $myarch = x86 ]] ; then
		myconf+=" arch=ia32"
	elif [[ $myarch = arm ]] ; then
		myconf+=" arch=arm"
	else
		die "Failed to determine target arch, got '$myarch'."
	fi

	escons $(use_scons readline console readline dumb) ${myconf} . || die
}

src_install() {
	insinto /usr
	doins -r include || die

	dobin d8 || die
	dolib libv8.so || die

	dodoc AUTHORS ChangeLog || die
}

src_test() {
	tools/test.py --no-build -p dots --shell d8 || die
}

pkg_postinst() {
	einfo "The live ebuild does not use SONAME."
	einfo "You must rebuild all packages depending on ${PN}"
	einfo "to avoid ABI breakages."
}






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-9999.ebuild ChangeLog
@ 2011-01-28  9:55 PaweA Hajdan (phajdan.jr)
  0 siblings, 0 replies; 6+ messages in thread
From: PaweA Hajdan (phajdan.jr) @ 2011-01-28  9:55 UTC (permalink / raw
  To: gentoo-commits

phajdan.jr    11/01/28 09:55:31

  Modified:             v8-9999.ebuild ChangeLog
  Log:
  Remove patch applied upstream, bug #352899 by Julien Sanchez <julien.sanchez@gmail.com>.
  
  (Portage version: 2.1.9.25/cvs/Linux i686)

Revision  Changes    Path
1.6                  dev-lang/v8/v8-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?r1=1.5&r2=1.6

Index: v8-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- v8-9999.ebuild	22 Jan 2011 10:05:32 -0000	1.5
+++ v8-9999.ebuild	28 Jan 2011 09:55:31 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.5 2011/01/22 10:05:32 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.6 2011/01/28 09:55:31 phajdan.jr Exp $
 
 EAPI="2"
 
@@ -36,9 +36,6 @@
 	# Respect the user's CFLAGS, including the optimization level.
 	epatch "${FILESDIR}"/${PN}-no-O3-r0.patch
 
-	# Fix a compile error (bug #349794), to be upstreamed.
-	epatch "${FILESDIR}"/${PN}-gentoo-bug-349794-r0.patch
-
 	# Remove a test that is known to fail:
 	# http://groups.google.com/group/v8-users/browse_thread/thread/b8a3f42b5aa18d06
 	rm test/mjsunit/debug-script.js || die



1.33                 dev-lang/v8/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.33&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.33&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?r1=1.32&r2=1.33

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	27 Jan 2011 10:43:45 -0000	1.32
+++ ChangeLog	28 Jan 2011 09:55:31 -0000	1.33
@@ -1,6 +1,10 @@
 # ChangeLog for dev-lang/v8
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.32 2011/01/27 10:43:45 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.33 2011/01/28 09:55:31 phajdan.jr Exp $
+
+  28 Jan 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> v8-9999.ebuild:
+  Remove patch applied upstream, bug #352899 by Julien Sanchez
+  <julien.sanchez@gmail.com>.
 
 *v8-3.0.9 (27 Jan 2011)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-9999.ebuild ChangeLog
@ 2011-11-23 19:29 Mike Gilbert (floppym)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert (floppym) @ 2011-11-23 19:29 UTC (permalink / raw
  To: gentoo-commits

floppym     11/11/23 19:29:36

  Modified:             v8-9999.ebuild ChangeLog
  Log:
  Add pkg_pretend check to live ebuild.
  
  (Portage version: 2.2.0_alpha77/cvs/Linux x86_64)

Revision  Changes    Path
1.22                 dev-lang/v8/v8-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.22&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.22&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?r1=1.21&r2=1.22

Index: v8-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- v8-9999.ebuild	14 Nov 2011 12:45:41 -0000	1.21
+++ v8-9999.ebuild	23 Nov 2011 19:29:35 -0000	1.22
@@ -1,8 +1,8 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.21 2011/11/14 12:45:41 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.22 2011/11/23 19:29:35 floppym Exp $
 
-EAPI="3"
+EAPI="4"
 
 PYTHON_DEPEND="2:2.6"
 
@@ -17,6 +17,15 @@
 KEYWORDS=""
 IUSE=""
 
+pkg_pretend() {
+	local gccver=$(gcc-fullversion)
+	if [[ ${gccver} = 4.5.2 ]]; then
+		eerror "The currently selected version of gcc is known to segfault when building this"
+		eerror "version of V8. Please use at least gcc-4.5.3."
+		die "gcc-${gccver} detected."
+	fi
+}
+
 pkg_setup() {
 	python_set_active_version 2
 	python_pkg_setup



1.111                dev-lang/v8/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.111&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.111&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?r1=1.110&r2=1.111

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -r1.110 -r1.111
--- ChangeLog	23 Nov 2011 19:27:23 -0000	1.110
+++ ChangeLog	23 Nov 2011 19:29:35 -0000	1.111
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/v8
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.110 2011/11/23 19:27:23 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.111 2011/11/23 19:29:35 floppym Exp $
+
+  23 Nov 2011; Mike Gilbert <floppym@gentoo.org> v8-9999.ebuild:
+  Add pkg_pretend check to live ebuild.
 
   23 Nov 2011; Mike Gilbert <floppym@gentoo.org> v8-3.6.6.5.ebuild,
   v8-3.6.6.6.ebuild, v8-3.7.6.ebuild, v8-3.7.7.ebuild:






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-9999.ebuild ChangeLog
@ 2012-07-28 20:25 Mike Gilbert (floppym)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert (floppym) @ 2012-07-28 20:25 UTC (permalink / raw
  To: gentoo-commits

floppym     12/07/28 20:25:57

  Modified:             v8-9999.ebuild ChangeLog
  Log:
  Drop incorrect usage of GYPFLAGS in live ebuild. Bug 428468 by dottomi.
  
  (Portage version: 2.2.0_alpha120/cvs/Linux x86_64)

Revision  Changes    Path
1.31                 dev-lang/v8/v8-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.31&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.31&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?r1=1.30&r2=1.31

Index: v8-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- v8-9999.ebuild	10 Jul 2012 03:02:23 -0000	1.30
+++ v8-9999.ebuild	28 Jul 2012 20:25:57 -0000	1.31
@@ -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-lang/v8/v8-9999.ebuild,v 1.30 2012/07/10 03:02:23 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.31 2012/07/28 20:25:57 floppym Exp $
 
 EAPI="4"
 
@@ -56,7 +56,6 @@
 	# http://code.google.com/p/v8/issues/detail?id=1781
 
 	emake V=1 \
-		GYPFLAGS="-Dmac_deployment_target=${MACOSX_DEPLOYMENT_TARGET}" \
 		library=shared \
 		werror=no \
 		soname_version=${soname_version} \



1.215                dev-lang/v8/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.215&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.215&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?r1=1.214&r2=1.215

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
retrieving revision 1.214
retrieving revision 1.215
diff -u -r1.214 -r1.215
--- ChangeLog	26 Jul 2012 16:44:28 -0000	1.214
+++ ChangeLog	28 Jul 2012 20:25:57 -0000	1.215
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/v8
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.214 2012/07/26 16:44:28 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.215 2012/07/28 20:25:57 floppym Exp $
+
+  28 Jul 2012; Mike Gilbert <floppym@gentoo.org> v8-9999.ebuild:
+  Drop incorrect usage of GYPFLAGS in live ebuild. Bug 428468 by dottomi.
 
 *v8-3.11.10.17 (26 Jul 2012)
 





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

* [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-9999.ebuild ChangeLog
@ 2013-02-18 16:59 Mike Gilbert (floppym)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert (floppym) @ 2013-02-18 16:59 UTC (permalink / raw
  To: gentoo-commits

floppym     13/02/18 16:59:00

  Modified:             v8-9999.ebuild ChangeLog
  Log:
  Convert live ebuild to python-any-r1.
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.36                 dev-lang/v8/v8-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.36&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.36&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?r1=1.35&r2=1.36

Index: v8-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- v8-9999.ebuild	18 Feb 2013 16:53:53 -0000	1.35
+++ v8-9999.ebuild	18 Feb 2013 16:59:00 -0000	1.36
@@ -1,10 +1,11 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.35 2013/02/18 16:53:53 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.36 2013/02/18 16:59:00 floppym Exp $
 
 EAPI="5"
+PYTHON_COMPAT=( python2_{6,7} )
 
-inherit eutils multilib pax-utils python-utils-r1 subversion toolchain-funcs
+inherit eutils multilib pax-utils python-any-r1 subversion toolchain-funcs
 
 DESCRIPTION="Google's open source JavaScript engine"
 HOMEPAGE="http://code.google.com/p/v8"
@@ -15,7 +16,7 @@
 KEYWORDS=""
 IUSE=""
 
-DEPEND="|| ( dev-lang/python:2.7 dev-lang/python:2.6 )"
+DEPEND="${PYTHON_DEPS}"
 
 src_unpack() {
 	subversion_src_unpack
@@ -26,7 +27,6 @@
 src_configure() {
 	tc-export AR CC CXX RANLIB
 	export LINK=${CXX}
-	python_export python2 EPYTHON
 
 	local hardfp=off
 



1.278                dev-lang/v8/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.278&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.278&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?r1=1.277&r2=1.278

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
retrieving revision 1.277
retrieving revision 1.278
diff -u -r1.277 -r1.278
--- ChangeLog	18 Feb 2013 16:53:53 -0000	1.277
+++ ChangeLog	18 Feb 2013 16:59:00 -0000	1.278
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/v8
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.277 2013/02/18 16:53:53 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.278 2013/02/18 16:59:00 floppym Exp $
+
+  18 Feb 2013; Mike Gilbert <floppym@gentoo.org> v8-9999.ebuild:
+  Convert live ebuild to python-any-r1.
 
   18 Feb 2013; Mike Gilbert <floppym@gentoo.org> v8-3.16.11.1.ebuild,
   v8-9999.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-9999.ebuild ChangeLog
@ 2013-04-05 23:05 Mike Gilbert (floppym)
  0 siblings, 0 replies; 6+ messages in thread
From: Mike Gilbert (floppym) @ 2013-04-05 23:05 UTC (permalink / raw
  To: gentoo-commits

floppym     13/04/05 23:05:12

  Modified:             v8-9999.ebuild ChangeLog
  Log:
  Ditto for live ebuild.
  
  (Portage version: 2.2.0_alpha171/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)

Revision  Changes    Path
1.40                 dev-lang/v8/v8-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.40&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?rev=1.40&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/v8-9999.ebuild?r1=1.39&r2=1.40

Index: v8-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- v8-9999.ebuild	11 Mar 2013 22:01:50 -0000	1.39
+++ v8-9999.ebuild	5 Apr 2013 23:05:12 -0000	1.40
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.39 2013/03/11 22:01:50 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-9999.ebuild,v 1.40 2013/04/05 23:05:12 floppym Exp $
 
 EAPI="5"
 PYTHON_COMPAT=( python2_{6,7} )
@@ -84,7 +84,7 @@
 
 	# Build everything else.
 	emake "${makeargs[@]}"
-	pax-mark m out/${mytarget}/{cctest,d8,shell}
+	pax-mark m out/${mytarget}/{cctest,d8}
 }
 
 src_test() {



1.300                dev-lang/v8/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.300&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?rev=1.300&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lang/v8/ChangeLog?r1=1.299&r2=1.300

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
retrieving revision 1.299
retrieving revision 1.300
diff -u -r1.299 -r1.300
--- ChangeLog	5 Apr 2013 23:04:30 -0000	1.299
+++ ChangeLog	5 Apr 2013 23:05:12 -0000	1.300
@@ -1,6 +1,9 @@
 # ChangeLog for dev-lang/v8
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.299 2013/04/05 23:04:30 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.300 2013/04/05 23:05:12 floppym Exp $
+
+  05 Apr 2013; Mike Gilbert <floppym@gentoo.org> v8-9999.ebuild:
+  Ditto for live ebuild.
 
   05 Apr 2013; Mike Gilbert <floppym@gentoo.org> v8-3.17.15.3.ebuild:
   Don't bother pax-marking the 'shell' binary. We don't use it for tests and we





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

end of thread, other threads:[~2013-04-05 23:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-23 19:29 [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-9999.ebuild ChangeLog Mike Gilbert (floppym)
  -- strict thread matches above, loose matches on Subject: below --
2013-04-05 23:05 Mike Gilbert (floppym)
2013-02-18 16:59 Mike Gilbert (floppym)
2012-07-28 20:25 Mike Gilbert (floppym)
2011-01-28  9:55 PaweA Hajdan (phajdan.jr)
2010-12-14 15:54 PaweA Hajdan (phajdan.jr)

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