libv8 3.3.10.2-x86-linux

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,53 @@
1
+ // Copyright 2010 the V8 project authors. All rights reserved.
2
+ // Redistribution and use in source and binary forms, with or without
3
+ // modification, are permitted provided that the following conditions are
4
+ // met:
5
+ //
6
+ // * Redistributions of source code must retain the above copyright
7
+ // notice, this list of conditions and the following disclaimer.
8
+ // * Redistributions in binary form must reproduce the above
9
+ // copyright notice, this list of conditions and the following
10
+ // disclaimer in the documentation and/or other materials provided
11
+ // with the distribution.
12
+ // * Neither the name of Google Inc. nor the names of its
13
+ // contributors may be used to endorse or promote products derived
14
+ // from this software without specific prior written permission.
15
+ //
16
+ // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17
+ // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18
+ // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19
+ // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20
+ // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21
+ // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22
+ // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
+ // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
+ // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
+ // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26
+ // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
+
28
+ // Load definitions of standard types.
29
+
30
+ #ifndef V8STDINT_H_
31
+ #define V8STDINT_H_
32
+
33
+ #include <stdio.h>
34
+
35
+ #if defined(_WIN32) && !defined(__MINGW32__)
36
+
37
+ typedef signed char int8_t;
38
+ typedef unsigned char uint8_t;
39
+ typedef short int16_t; // NOLINT
40
+ typedef unsigned short uint16_t; // NOLINT
41
+ typedef int int32_t;
42
+ typedef unsigned int uint32_t;
43
+ typedef __int64 int64_t;
44
+ typedef unsigned __int64 uint64_t;
45
+ // intptr_t and friends are defined in crtdefs.h through stdio.h.
46
+
47
+ #else
48
+
49
+ #include <stdint.h>
50
+
51
+ #endif
52
+
53
+ #endif // V8STDINT_H_
@@ -0,0 +1,4 @@
1
+ module Libv8
2
+ V8_VERSION = "3.3.10"
3
+ VERSION = V8_VERSION + ".2"
4
+ end
metadata ADDED
@@ -0,0 +1,88 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: libv8
3
+ version: !ruby/object:Gem::Version
4
+ version: 3.3.10.2
5
+ prerelease:
6
+ platform: x86-linux
7
+ authors:
8
+ - Logan Lowell
9
+ - Charles Lowell
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2011-07-05 00:00:00.000000000 +07:00
14
+ default_executable:
15
+ dependencies:
16
+ - !ruby/object:Gem::Dependency
17
+ name: rake
18
+ requirement: &72019930 !ruby/object:Gem::Requirement
19
+ none: false
20
+ requirements:
21
+ - - ~>
22
+ - !ruby/object:Gem::Version
23
+ version: 0.8.7
24
+ type: :development
25
+ prerelease: false
26
+ version_requirements: *72019930
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: &72019520 !ruby/object:Gem::Requirement
30
+ none: false
31
+ requirements:
32
+ - - ! '>='
33
+ - !ruby/object:Gem::Version
34
+ version: '0'
35
+ type: :development
36
+ prerelease: false
37
+ version_requirements: *72019520
38
+ description: Distributes the V8 JavaScript engine in binary and source forms in order
39
+ to support fast builds of The Ruby Racer
40
+ email:
41
+ - fractaloop@thefrontside.net
42
+ - cowboyd@thefrontside.net
43
+ executables: []
44
+ extensions: []
45
+ extra_rdoc_files: []
46
+ files:
47
+ - lib/libv8.rb
48
+ - lib/libv8/version.rb
49
+ - lib/libv8/v8/include/v8-preparser.h
50
+ - lib/libv8/v8/include/v8stdint.h
51
+ - lib/libv8/v8/include/v8.h
52
+ - lib/libv8/v8/include/v8-profiler.h
53
+ - lib/libv8/v8/include/v8-testing.h
54
+ - lib/libv8/v8/include/v8-debug.h
55
+ - lib/libv8/build/v8/libv8.a
56
+ - lib/libv8/build/v8/libv8preparser.a
57
+ has_rdoc: true
58
+ homepage: http://github.com/fractaloop/libv8
59
+ licenses: []
60
+ post_install_message:
61
+ rdoc_options: []
62
+ require_paths:
63
+ - lib
64
+ required_ruby_version: !ruby/object:Gem::Requirement
65
+ none: false
66
+ requirements:
67
+ - - ! '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ segments:
71
+ - 0
72
+ hash: -401286255
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ none: false
75
+ requirements:
76
+ - - ! '>='
77
+ - !ruby/object:Gem::Version
78
+ version: '0'
79
+ segments:
80
+ - 0
81
+ hash: -401286255
82
+ requirements: []
83
+ rubyforge_project: libv8
84
+ rubygems_version: 1.6.2
85
+ signing_key:
86
+ specification_version: 3
87
+ summary: Distribution of the V8 JavaScript engine
88
+ test_files: []