diff options
author | Mike Gilbert <floppym@gentoo.org> | 2013-08-11 02:45:33 +0000 |
---|---|---|
committer | Mike Gilbert <floppym@gentoo.org> | 2013-08-11 02:45:33 +0000 |
commit | b85fc1758691aa4fb4d7d6a1da97fb89267254f2 (patch) | |
tree | 767bec7967d511bead2f9355ad91efd86d429850 /dev-lang | |
parent | Don't call EXPORT_FUNCTONS if CHROMIUM_EXPORT_PHASES is set to 'no'. (diff) | |
download | gentoo-2-b85fc1758691aa4fb4d7d6a1da97fb89267254f2.tar.gz gentoo-2-b85fc1758691aa4fb4d7d6a1da97fb89267254f2.tar.bz2 gentoo-2-b85fc1758691aa4fb4d7d6a1da97fb89267254f2.zip |
Remove old.
(Portage version: 2.2.0_alpha196/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
Diffstat (limited to 'dev-lang')
-rw-r--r-- | dev-lang/v8/ChangeLog | 6 | ||||
-rw-r--r-- | dev-lang/v8/v8-3.18.5.5.ebuild | 151 | ||||
-rw-r--r-- | dev-lang/v8/v8-3.18.5.8.ebuild | 151 | ||||
-rw-r--r-- | dev-lang/v8/v8-3.18.5.9.ebuild | 151 |
4 files changed, 5 insertions, 454 deletions
diff --git a/dev-lang/v8/ChangeLog b/dev-lang/v8/ChangeLog index d0f2d063996a..c9a3af139e25 100644 --- a/dev-lang/v8/ChangeLog +++ b/dev-lang/v8/ChangeLog @@ -1,6 +1,10 @@ # 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.330 2013/08/09 03:44:33 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/v8/ChangeLog,v 1.331 2013/08/11 02:45:33 floppym Exp $ + + 11 Aug 2013; Mike Gilbert <floppym@gentoo.org> -v8-3.18.5.5.ebuild, + -v8-3.18.5.8.ebuild, -v8-3.18.5.9.ebuild: + Remove old. *v8-3.19.18.18 (09 Aug 2013) diff --git a/dev-lang/v8/v8-3.18.5.5.ebuild b/dev-lang/v8/v8-3.18.5.5.ebuild deleted file mode 100644 index 2d0e1fa41fab..000000000000 --- a/dev-lang/v8/v8-3.18.5.5.ebuild +++ /dev/null @@ -1,151 +0,0 @@ -# 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-3.18.5.5.ebuild,v 1.1 2013/05/21 21:34:25 phajdan.jr Exp $ - -EAPI="5" -PYTHON_COMPAT=( python2_{6,7} ) - -inherit chromium eutils multilib multiprocessing pax-utils python-any-r1 \ - toolchain-funcs versionator - -DESCRIPTION="Google's open source JavaScript engine" -HOMEPAGE="http://code.google.com/p/v8" -SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.bz2" -LICENSE="BSD" - -soname_version="${PV}" -SLOT="0/${soname_version}" -KEYWORDS="~amd64 ~arm ~x86 ~x86-fbsd ~x64-macos ~x86-macos" -IUSE="neon readline" - -RDEPEND="readline? ( sys-libs/readline:0 )" -DEPEND="${PYTHON_DEPS} - ${RDEPEND}" - -src_configure() { - tc-export AR CC CXX RANLIB - export LINK=${CXX} - - local myconf="" - - # Always build v8 as a shared library with proper SONAME. - myconf+=" -Dcomponent=shared_library -Dsoname_version=${soname_version}" - - # Use target arch detection logic from bug #354601. - case ${CHOST} in - i?86-*) - myarch="ia32" - myconf+=" -Dv8_target_arch=ia32" ;; - x86_64-*) - if [[ $ABI = x86 ]] ; then - myarch="ia32" - myconf+=" -Dv8_target_arch=ia32" - else - myarch="x64" - myconf+=" -Dv8_target_arch=x64" - fi ;; - arm*-*) - myarch="arm" - myconf+=" -Dv8_target_arch=arm -Darm_fpu=" - if [[ ${CHOST} == *-hardfloat-* ]] ; then - myconf+=" -Dv8_use_arm_eabi_hardfloat=true" - else - myconf+=" -Dv8_use_arm_eabi_hardfloat=false" - fi - if [[ ${CHOST} == armv7*-* ]] ; then - myconf+=" -Darmv7=1" - else - myconf+=" -Darmv7=0" - fi - myconf+=" $(gyp_use neon arm_neon)" ;; - *) die "Unrecognized CHOST: ${CHOST}" - esac - - myconf+=" $(gyp_use readline console readline dumb)" - - # Make sure that -Werror doesn't get added to CFLAGS by the build system. - # Depending on GCC version the warnings are different and we don't - # want the build to fail because of that. - myconf+=" -Dwerror=" - - # gyp does this only for linux, but we always want to use "out" dir, or - # all else below fails due to not finding "out" dir - myconf+=" --generator-output=out" - # gyp defaults to whatever makes the most sense on the platform at hand, - # but we want to build using Makefiles, so force that - myconf+=" -f make" - - EGYP_CHROMIUM_COMMAND=build/gyp_v8 egyp_chromium ${myconf} || die -} - -src_compile() { - local makeargs=( - -C out - builddir="${S}/out/Release" - V=1 - BUILDTYPE=Release - ) - - # Build mksnapshot so we can pax-mark it. - emake "${makeargs[@]}" mksnapshot.${myarch} - pax-mark m out/Release/mksnapshot.${myarch} - - # Build everything else. - emake "${makeargs[@]}" - pax-mark m out/Release/{cctest,d8,preparser} -} - -src_test() { - LD_LIBRARY_PATH=out/Release/lib.target tools/run-tests.py \ - -j$(makeopts_jobs) \ - --no-presubmit \ - --outdir=out \ - --buildbot \ - --arch=native \ - --mode=Release \ - --progress=dots || die -} - -src_install() { - insinto /usr - doins -r include - - if [[ ${CHOST} == *-darwin* ]] ; then - # buildsystem is too horrific to get this built correctly - mkdir -p out/Release/lib.target || die - mv out/Release/libv8.so.${soname_version} \ - out/Release/lib.target/libv8$(get_libname ${soname_version}) || die - install_name_tool \ - -id "${EPREFIX}"/usr/$(get_libdir)/libv8$(get_libname) \ - out/Release/lib.target/libv8$(get_libname ${soname_version}) \ - || die - install_name_tool \ - -change \ - /usr/local/lib/libv8.so.${soname_version} \ - "${EPREFIX}"/usr/$(get_libdir)/libv8$(get_libname) \ - out/Release/d8 || die - fi - - dobin out/Release/d8 - pax-mark m "${ED}usr/bin/d8" - - dolib out/Release/lib.target/libv8$(get_libname ${soname_version}) - dosym libv8$(get_libname ${soname_version}) /usr/$(get_libdir)/libv8$(get_libname) - - dodoc AUTHORS ChangeLog -} - -# TODO: remove functions below after they are removed from chromium.eclass' -# EXPORT_FUNCTIONS . - -pkg_preinst() { - return -} - -pkg_postinst() { - return -} - -pkg_postrm() { - return -} diff --git a/dev-lang/v8/v8-3.18.5.8.ebuild b/dev-lang/v8/v8-3.18.5.8.ebuild deleted file mode 100644 index dab3a4ef6a5e..000000000000 --- a/dev-lang/v8/v8-3.18.5.8.ebuild +++ /dev/null @@ -1,151 +0,0 @@ -# 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-3.18.5.8.ebuild,v 1.1 2013/06/07 01:06:25 floppym Exp $ - -EAPI="5" -PYTHON_COMPAT=( python2_{6,7} ) - -inherit chromium eutils multilib multiprocessing pax-utils python-any-r1 \ - toolchain-funcs versionator - -DESCRIPTION="Google's open source JavaScript engine" -HOMEPAGE="http://code.google.com/p/v8" -SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.bz2" -LICENSE="BSD" - -soname_version="${PV}" -SLOT="0/${soname_version}" -KEYWORDS="~amd64 ~arm ~x86 ~x86-fbsd ~x64-macos ~x86-macos" -IUSE="neon readline" - -RDEPEND="readline? ( sys-libs/readline:0 )" -DEPEND="${PYTHON_DEPS} - ${RDEPEND}" - -src_configure() { - tc-export AR CC CXX RANLIB - export LINK=${CXX} - - local myconf="" - - # Always build v8 as a shared library with proper SONAME. - myconf+=" -Dcomponent=shared_library -Dsoname_version=${soname_version}" - - # Use target arch detection logic from bug #354601. - case ${CHOST} in - i?86-*) - myarch="ia32" - myconf+=" -Dv8_target_arch=ia32" ;; - x86_64-*) - if [[ $ABI = x86 ]] ; then - myarch="ia32" - myconf+=" -Dv8_target_arch=ia32" - else - myarch="x64" - myconf+=" -Dv8_target_arch=x64" - fi ;; - arm*-*) - myarch="arm" - myconf+=" -Dv8_target_arch=arm -Darm_fpu=" - if [[ ${CHOST} == *-hardfloat-* ]] ; then - myconf+=" -Dv8_use_arm_eabi_hardfloat=true" - else - myconf+=" -Dv8_use_arm_eabi_hardfloat=false" - fi - if [[ ${CHOST} == armv7*-* ]] ; then - myconf+=" -Darmv7=1" - else - myconf+=" -Darmv7=0" - fi - myconf+=" $(gyp_use neon arm_neon)" ;; - *) die "Unrecognized CHOST: ${CHOST}" - esac - - myconf+=" $(gyp_use readline console readline dumb)" - - # Make sure that -Werror doesn't get added to CFLAGS by the build system. - # Depending on GCC version the warnings are different and we don't - # want the build to fail because of that. - myconf+=" -Dwerror=" - - # gyp does this only for linux, but we always want to use "out" dir, or - # all else below fails due to not finding "out" dir - myconf+=" --generator-output=out" - # gyp defaults to whatever makes the most sense on the platform at hand, - # but we want to build using Makefiles, so force that - myconf+=" -f make" - - EGYP_CHROMIUM_COMMAND=build/gyp_v8 egyp_chromium ${myconf} || die -} - -src_compile() { - local makeargs=( - -C out - builddir="${S}/out/Release" - V=1 - BUILDTYPE=Release - ) - - # Build mksnapshot so we can pax-mark it. - emake "${makeargs[@]}" mksnapshot.${myarch} - pax-mark m out/Release/mksnapshot.${myarch} - - # Build everything else. - emake "${makeargs[@]}" - pax-mark m out/Release/{cctest,d8,preparser} -} - -src_test() { - LD_LIBRARY_PATH=out/Release/lib.target tools/run-tests.py \ - -j$(makeopts_jobs) \ - --no-presubmit \ - --outdir=out \ - --buildbot \ - --arch=native \ - --mode=Release \ - --progress=dots || die -} - -src_install() { - insinto /usr - doins -r include - - if [[ ${CHOST} == *-darwin* ]] ; then - # buildsystem is too horrific to get this built correctly - mkdir -p out/Release/lib.target || die - mv out/Release/libv8.so.${soname_version} \ - out/Release/lib.target/libv8$(get_libname ${soname_version}) || die - install_name_tool \ - -id "${EPREFIX}"/usr/$(get_libdir)/libv8$(get_libname) \ - out/Release/lib.target/libv8$(get_libname ${soname_version}) \ - || die - install_name_tool \ - -change \ - /usr/local/lib/libv8.so.${soname_version} \ - "${EPREFIX}"/usr/$(get_libdir)/libv8$(get_libname) \ - out/Release/d8 || die - fi - - dobin out/Release/d8 - pax-mark m "${ED}usr/bin/d8" - - dolib out/Release/lib.target/libv8$(get_libname ${soname_version}) - dosym libv8$(get_libname ${soname_version}) /usr/$(get_libdir)/libv8$(get_libname) - - dodoc AUTHORS ChangeLog -} - -# TODO: remove functions below after they are removed from chromium.eclass' -# EXPORT_FUNCTIONS . - -pkg_preinst() { - return -} - -pkg_postinst() { - return -} - -pkg_postrm() { - return -} diff --git a/dev-lang/v8/v8-3.18.5.9.ebuild b/dev-lang/v8/v8-3.18.5.9.ebuild deleted file mode 100644 index f2268e08bfd0..000000000000 --- a/dev-lang/v8/v8-3.18.5.9.ebuild +++ /dev/null @@ -1,151 +0,0 @@ -# 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-3.18.5.9.ebuild,v 1.3 2013/07/10 20:11:06 ago Exp $ - -EAPI="5" -PYTHON_COMPAT=( python2_{6,7} ) - -inherit chromium eutils multilib multiprocessing pax-utils python-any-r1 \ - toolchain-funcs versionator - -DESCRIPTION="Google's open source JavaScript engine" -HOMEPAGE="http://code.google.com/p/v8" -SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.bz2" -LICENSE="BSD" - -soname_version="${PV}" -SLOT="0/${soname_version}" -KEYWORDS="amd64 ~arm x86 ~x86-fbsd ~x64-macos ~x86-macos" -IUSE="neon readline" - -RDEPEND="readline? ( sys-libs/readline:0 )" -DEPEND="${PYTHON_DEPS} - ${RDEPEND}" - -src_configure() { - tc-export AR CC CXX RANLIB - export LINK=${CXX} - - local myconf="" - - # Always build v8 as a shared library with proper SONAME. - myconf+=" -Dcomponent=shared_library -Dsoname_version=${soname_version}" - - # Use target arch detection logic from bug #354601. - case ${CHOST} in - i?86-*) - myarch="ia32" - myconf+=" -Dv8_target_arch=ia32" ;; - x86_64-*) - if [[ $ABI = x86 ]] ; then - myarch="ia32" - myconf+=" -Dv8_target_arch=ia32" - else - myarch="x64" - myconf+=" -Dv8_target_arch=x64" - fi ;; - arm*-*) - myarch="arm" - myconf+=" -Dv8_target_arch=arm -Darm_fpu=" - if [[ ${CHOST} == *-hardfloat-* ]] ; then - myconf+=" -Dv8_use_arm_eabi_hardfloat=true" - else - myconf+=" -Dv8_use_arm_eabi_hardfloat=false" - fi - if [[ ${CHOST} == armv7*-* ]] ; then - myconf+=" -Darmv7=1" - else - myconf+=" -Darmv7=0" - fi - myconf+=" $(gyp_use neon arm_neon)" ;; - *) die "Unrecognized CHOST: ${CHOST}" - esac - - myconf+=" $(gyp_use readline console readline dumb)" - - # Make sure that -Werror doesn't get added to CFLAGS by the build system. - # Depending on GCC version the warnings are different and we don't - # want the build to fail because of that. - myconf+=" -Dwerror=" - - # gyp does this only for linux, but we always want to use "out" dir, or - # all else below fails due to not finding "out" dir - myconf+=" --generator-output=out" - # gyp defaults to whatever makes the most sense on the platform at hand, - # but we want to build using Makefiles, so force that - myconf+=" -f make" - - EGYP_CHROMIUM_COMMAND=build/gyp_v8 egyp_chromium ${myconf} || die -} - -src_compile() { - local makeargs=( - -C out - builddir="${S}/out/Release" - V=1 - BUILDTYPE=Release - ) - - # Build mksnapshot so we can pax-mark it. - emake "${makeargs[@]}" mksnapshot.${myarch} - pax-mark m out/Release/mksnapshot.${myarch} - - # Build everything else. - emake "${makeargs[@]}" - pax-mark m out/Release/{cctest,d8,preparser} -} - -src_test() { - LD_LIBRARY_PATH=out/Release/lib.target tools/run-tests.py \ - -j$(makeopts_jobs) \ - --no-presubmit \ - --outdir=out \ - --buildbot \ - --arch=native \ - --mode=Release \ - --progress=dots || die -} - -src_install() { - insinto /usr - doins -r include - - if [[ ${CHOST} == *-darwin* ]] ; then - # buildsystem is too horrific to get this built correctly - mkdir -p out/Release/lib.target || die - mv out/Release/libv8.so.${soname_version} \ - out/Release/lib.target/libv8$(get_libname ${soname_version}) || die - install_name_tool \ - -id "${EPREFIX}"/usr/$(get_libdir)/libv8$(get_libname) \ - out/Release/lib.target/libv8$(get_libname ${soname_version}) \ - || die - install_name_tool \ - -change \ - /usr/local/lib/libv8.so.${soname_version} \ - "${EPREFIX}"/usr/$(get_libdir)/libv8$(get_libname) \ - out/Release/d8 || die - fi - - dobin out/Release/d8 - pax-mark m "${ED}usr/bin/d8" - - dolib out/Release/lib.target/libv8$(get_libname ${soname_version}) - dosym libv8$(get_libname ${soname_version}) /usr/$(get_libdir)/libv8$(get_libname) - - dodoc AUTHORS ChangeLog -} - -# TODO: remove functions below after they are removed from chromium.eclass' -# EXPORT_FUNCTIONS . - -pkg_preinst() { - return -} - -pkg_postinst() { - return -} - -pkg_postrm() { - return -} |