Hello community, here is the log from the commit of package v8 for openSUSE:Factory checked in at 2013-07-18 17:35:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/v8 (Old) and /work/SRC/openSUSE:Factory/.v8.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "v8" Changes: -------- --- /work/SRC/openSUSE:Factory/v8/v8.changes 2013-04-19 10:03:52.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.v8.new/v8.changes 2013-07-18 18:08:37.000000000 +0200 @@ -1,0 +2,12 @@ +Tue Jul 16 13:20:12 UTC 2013 - [email protected] + +- Update to 3.20.0.1 + * Allowed users of the V8 API to distinguish between unset and + undefined HiddenValues (issue 2746). + * Deprecated old style callbacks in the V8 API. + * Turned on parallel recompilation. + * Performance and stability improvements on all platforms. + +- Add patch fix-gcc48.patch to resolve gcc48 compile issues + +------------------------------------------------------------------- Old: ---- v8-3.18.0.tar.lzma New: ---- fix-gcc48.patch v8.3.20.0.1.tar.lzma ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ v8.spec ++++++ --- /var/tmp/diff_new_pack.R9N2mD/_old 2013-07-18 18:08:38.000000000 +0200 +++ /var/tmp/diff_new_pack.R9N2mD/_new 2013-07-18 18:08:38.000000000 +0200 @@ -17,13 +17,14 @@ Name: v8 -Version: 3.18.0 +Version: 3.20.0.1 Release: 0 Summary: JavaScript Engine License: BSD-3-Clause Group: System/Libraries Url: http://code.google.com/p/v8 -Source0: %{name}-%{version}.tar.lzma +Source0: %{name}.%{version}.tar.lzma +Patch1: fix-gcc48.patch BuildRequires: gcc-c++ BuildRequires: lzma BuildRequires: python-devel @@ -89,6 +90,9 @@ lzma -cd %{SOURCE0} | tar xf - %setup -D -T -n %{name} +%if 0%{?suse_version} > 1230 +%patch1 -p0 +%endif %build ++++++ fix-gcc48.patch ++++++ Index: build/common.gypi =================================================================== --- build/common.gypi (revision 11639) +++ build/common.gypi (working copy) @@ -320,7 +320,8 @@ }], ['OS=="linux" or OS=="freebsd" or OS=="openbsd" or OS=="netbsd"', { 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', - '-Wnon-virtual-dtor', '-Woverloaded-virtual' ], + '-Wnon-virtual-dtor', '-Woverloaded-virtual', + '-Wno-unused-local-typedefs', '-Wno-aggressive-loop-optimizations' ], }], ['OS=="linux" and v8_enable_backtrace==1', { # Support for backtrace_symbols. Index: build/standalone.gypi =================================================================== --- build/standalone.gypi (revision 11639) +++ build/standalone.gypi (working copy) @@ -98,6 +98,7 @@ or OS=="netbsd"', { 'target_defaults': { 'cflags': [ '-Wall', '<(werror)', '-W', '-Wno-unused-parameter', + '-Wno-unused-local-typedefs', '-Wno-aggressive-loop-optimizations', '-pthread', '-fno-exceptions', '-pedantic' ], 'cflags_cc': [ '-Wnon-virtual-dtor', '-fno-rtti' ], 'ldflags': [ '-pthread', ], -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
