public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-3.8.9.19.ebuild ChangeLog
@ 2012-05-01  3:31 Mike Gilbert (floppym)
  0 siblings, 0 replies; 3+ messages in thread
From: Mike Gilbert (floppym) @ 2012-05-01  3:31 UTC (permalink / raw
  To: gentoo-commits

floppym     12/05/01 03:31:27

  Modified:             ChangeLog
  Added:                v8-3.8.9.19.ebuild
  Log:
  Version bump for stable channel release.
  
  (Portage version: 2.2.0_alpha101/cvs/Linux x86_64)

Revision  Changes    Path
1.171                dev-lang/v8/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -r1.170 -r1.171
--- ChangeLog	26 Apr 2012 07:21:12 -0000	1.170
+++ ChangeLog	1 May 2012 03:31:26 -0000	1.171
@@ -1,6 +1,11 @@
 # 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.170 2012/04/26 07:21:12 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.171 2012/05/01 03:31:26 floppym Exp $
+
+*v8-3.8.9.19 (01 May 2012)
+
+  01 May 2012; Mike Gilbert <floppym@gentoo.org> +v8-3.8.9.19.ebuild:
+  Version bump for stable channel release.
 
 *v8-3.10.5 (26 Apr 2012)
 



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

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

Index: v8-3.8.9.19.ebuild
===================================================================
# 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-3.8.9.19.ebuild,v 1.1 2012/05/01 03:31:26 floppym Exp $

EAPI="4"

PYTHON_DEPEND="2:2.6"

inherit eutils multilib pax-utils python toolchain-funcs versionator

DESCRIPTION="Google's open source JavaScript engine"
HOMEPAGE="http://code.google.com/p/v8"
SRC_URI="http://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.bz2"
LICENSE="BSD"

SLOT="0"
KEYWORDS="~amd64 ~x86 ~x64-macos ~x86-macos"
IUSE=""

pkg_setup() {
	python_set_active_version 2
	python_pkg_setup
}

src_prepare() {
	# don't force 32-bits mode on Darwin
	sed -i -e '/-arch i386/d' build/gyp/pylib/gyp/generator/make.py || die
	# force using Makefiles, instead of Xcode project file on Darwin
	sed -i -e '/darwin/s/xcode/make/' build/gyp/pylib/gyp/__init__.py || die
	# don't refuse to build shared_libs because we build somewhere else
	sed -i \
		-e '/params\.get.*mac.*darwin.*linux/s/mac/darwin/' \
		-e "/if GetFlavor(params) == 'mac':/s/mac/darwin/" \
		-e "/^  if flavor == 'mac':/s/mac/darwin/" \
		build/gyp/pylib/gyp/generator/make.py || die
	# make sure our v8.dylib doesn't end up being empty and give it a proper
	# install_name (soname)
	sed -i \
		-e '/^LINK_COMMANDS_MAC =/,/^SHARED_HEADER =/s#-shared#-dynamiclib -all_load -install_name '"${EPREFIX}/usr/$(get_libdir)/libv8$(get_libname $(get_version_component_range 1-3))"'#' \
		build/gyp/pylib/gyp/generator/make.py || die
}

src_compile() {
	tc-export AR CC CXX RANLIB
	export LINK="${CXX}"

	# Use target arch detection logic from bug #354601.
	case ${CHOST} in
		i?86-*) myarch=ia32 ;;
		x86_64-*)
			if [[ $ABI = x86 ]] ; then
				myarch=ia32
			else
				myarch=x64
			fi ;;
		arm*-*) myarch=arm ;;
		*) die "Unrecognized CHOST: ${CHOST}"
	esac
	mytarget=${myarch}.release

	soname_version="$(get_version_component_range 1-3)"

	local snapshot=on
	host-is-pax && snapshot=off

	# TODO: Add console=readline option once implemented upstream
	# http://code.google.com/p/v8/issues/detail?id=1781

	emake V=1 \
		library=shared \
		werror=no \
		soname_version=${soname_version} \
		snapshot=${snapshot} \
		${mytarget} || die

	pax-mark m out/${mytarget}/{cctest,d8,shell} || die
}

src_test() {
	local arg testjobs
	for arg in ${MAKEOPTS}; do
		case ${arg} in
			-j*) testjobs=${arg#-j} ;;
			--jobs=*) testjobs=${arg#--jobs=} ;;
		esac
	done

	tools/test-wrapper-gypbuild.py \
		-j${testjobs:-1} \
		--arch-and-mode=${mytarget} \
		--no-presubmit \
		--progress=dots || die
}

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

	dobin out/${mytarget}/d8 || die

	if [[ ${CHOST} == *-darwin* ]] ; then
		# buildsystem is too horrific to get this built correctly
		mv out/${mytarget}/lib.target/libv8.so.${soname_version} \
			out/${mytarget}/lib.target/libv8$(get_libname ${soname_version}) || die
	fi

	dolib out/${mytarget}/lib.target/libv8$(get_libname ${soname_version}) || die
	dosym libv8$(get_libname ${soname_version}) /usr/$(get_libdir)/libv8$(get_libname) || die

	dodoc AUTHORS ChangeLog || die
}

pkg_preinst() {
	preserved_libs=()
	local baselib candidate

	eshopts_push -s nullglob

	for candidate in "${EROOT}usr/$(get_libdir)"/libv8-*$(get_libname) \
		"${EROOT}usr/$(get_libdir)"/libv8$(get_libname).*; do
		baselib=${candidate##*/}
		if [[ ! -e "${ED}usr/$(get_libdir)/${baselib}" ]]; then
			preserved_libs+=( "${EPREFIX}/usr/$(get_libdir)/${baselib}" )
		fi
	done

	eshopts_pop

	if [[ ${#preserved_libs[@]} -gt 0 ]]; then
		preserve_old_lib "${preserved_libs[@]}"
	fi
}

pkg_postinst() {
	if [[ ${#preserved_libs[@]} -gt 0 ]]; then
		preserve_old_lib_notify "${preserved_libs[@]}"
	fi
}






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-3.8.9.19.ebuild ChangeLog
@ 2012-05-01  9:35 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-05-01  9:35 UTC (permalink / raw
  To: gentoo-commits

ago         12/05/01 09:35:12

  Modified:             v8-3.8.9.19.ebuild ChangeLog
  Log:
  Stable for AMD64, wrt bug #414199
  
  (Portage version: 2.1.10.49/cvs/Linux i686)

Revision  Changes    Path
1.2                  dev-lang/v8/v8-3.8.9.19.ebuild

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

Index: v8-3.8.9.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.8.9.19.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- v8-3.8.9.19.ebuild	1 May 2012 03:31:26 -0000	1.1
+++ v8-3.8.9.19.ebuild	1 May 2012 09:35:12 -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-lang/v8/v8-3.8.9.19.ebuild,v 1.1 2012/05/01 03:31:26 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.8.9.19.ebuild,v 1.2 2012/05/01 09:35:12 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 LICENSE="BSD"
 
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~x86 ~x64-macos ~x86-macos"
 IUSE=""
 
 pkg_setup() {



1.172                dev-lang/v8/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
retrieving revision 1.171
retrieving revision 1.172
diff -u -r1.171 -r1.172
--- ChangeLog	1 May 2012 03:31:26 -0000	1.171
+++ ChangeLog	1 May 2012 09:35:12 -0000	1.172
@@ -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.171 2012/05/01 03:31:26 floppym Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.172 2012/05/01 09:35:12 ago Exp $
+
+  01 May 2012; Agostino Sarubbo <ago@gentoo.org> v8-3.8.9.19.ebuild:
+  Stable for AMD64, wrt bug #414199
 
 *v8-3.8.9.19 (01 May 2012)
 






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

* [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-3.8.9.19.ebuild ChangeLog
@ 2012-05-02  8:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 3+ messages in thread
From: Agostino Sarubbo (ago) @ 2012-05-02  8:03 UTC (permalink / raw
  To: gentoo-commits

ago         12/05/02 08:03:53

  Modified:             v8-3.8.9.19.ebuild ChangeLog
  Log:
  Stable for X86, wrt bug #414199
  
  (Portage version: 2.1.10.49/cvs/Linux i686)

Revision  Changes    Path
1.3                  dev-lang/v8/v8-3.8.9.19.ebuild

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

Index: v8-3.8.9.19.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.8.9.19.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- v8-3.8.9.19.ebuild	1 May 2012 09:35:12 -0000	1.2
+++ v8-3.8.9.19.ebuild	2 May 2012 08:03:53 -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-lang/v8/v8-3.8.9.19.ebuild,v 1.2 2012/05/01 09:35:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/v8-3.8.9.19.ebuild,v 1.3 2012/05/02 08:03:53 ago Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 LICENSE="BSD"
 
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~x64-macos ~x86-macos"
+KEYWORDS="amd64 x86 ~x64-macos ~x86-macos"
 IUSE=""
 
 pkg_setup() {



1.173                dev-lang/v8/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -r1.172 -r1.173
--- ChangeLog	1 May 2012 09:35:12 -0000	1.172
+++ ChangeLog	2 May 2012 08:03:53 -0000	1.173
@@ -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.172 2012/05/01 09:35:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.173 2012/05/02 08:03:53 ago Exp $
+
+  02 May 2012; Agostino Sarubbo <ago@gentoo.org> v8-3.8.9.19.ebuild:
+  Stable for X86, wrt bug #414199
 
   01 May 2012; Agostino Sarubbo <ago@gentoo.org> v8-3.8.9.19.ebuild:
   Stable for AMD64, wrt bug #414199






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

end of thread, other threads:[~2012-05-02  8:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-01  9:35 [gentoo-commits] gentoo-x86 commit in dev-lang/v8: v8-3.8.9.19.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2012-05-02  8:03 Agostino Sarubbo (ago)
2012-05-01  3:31 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