phantomjs-linux64 0.0.3

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.
Files changed (41) hide show
  1. data/.gitignore +18 -0
  2. data/.rspec +2 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE +22 -0
  5. data/README.md +29 -0
  6. data/Rakefile +2 -0
  7. data/lib/phantomjs-linux64.rb +13 -0
  8. data/lib/phantomjs-linux64/version.rb +5 -0
  9. data/phantomjs-linux64.gemspec +19 -0
  10. data/spec/phantomjs-linux64_spec.rb +13 -0
  11. data/spec/spec_helper.rb +8 -0
  12. data/vendor/phantomjs/linux64/ChangeLog +177 -0
  13. data/vendor/phantomjs/linux64/LICENSE.BSD +22 -0
  14. data/vendor/phantomjs/linux64/README.md +33 -0
  15. data/vendor/phantomjs/linux64/bin/Info.plist +12 -0
  16. data/vendor/phantomjs/linux64/bin/phantomjs +0 -0
  17. data/vendor/phantomjs/linux64/lib/libQtCore.la +28 -0
  18. data/vendor/phantomjs/linux64/lib/libQtCore.prl +7 -0
  19. data/vendor/phantomjs/linux64/lib/libQtCore.so +0 -0
  20. data/vendor/phantomjs/linux64/lib/libQtCore.so.4 +0 -0
  21. data/vendor/phantomjs/linux64/lib/libQtCore.so.4.8 +0 -0
  22. data/vendor/phantomjs/linux64/lib/libQtCore.so.4.8.0 +0 -0
  23. data/vendor/phantomjs/linux64/lib/libQtGui.la +28 -0
  24. data/vendor/phantomjs/linux64/lib/libQtGui.prl +7 -0
  25. data/vendor/phantomjs/linux64/lib/libQtGui.so +0 -0
  26. data/vendor/phantomjs/linux64/lib/libQtGui.so.4 +0 -0
  27. data/vendor/phantomjs/linux64/lib/libQtGui.so.4.8 +0 -0
  28. data/vendor/phantomjs/linux64/lib/libQtGui.so.4.8.0 +0 -0
  29. data/vendor/phantomjs/linux64/lib/libQtNetwork.la +28 -0
  30. data/vendor/phantomjs/linux64/lib/libQtNetwork.prl +7 -0
  31. data/vendor/phantomjs/linux64/lib/libQtNetwork.so +0 -0
  32. data/vendor/phantomjs/linux64/lib/libQtNetwork.so.4 +0 -0
  33. data/vendor/phantomjs/linux64/lib/libQtNetwork.so.4.8 +0 -0
  34. data/vendor/phantomjs/linux64/lib/libQtNetwork.so.4.8.0 +0 -0
  35. data/vendor/phantomjs/linux64/lib/libQtWebKit.la +28 -0
  36. data/vendor/phantomjs/linux64/lib/libQtWebKit.prl +6 -0
  37. data/vendor/phantomjs/linux64/lib/libQtWebKit.so +0 -0
  38. data/vendor/phantomjs/linux64/lib/libQtWebKit.so.4 +0 -0
  39. data/vendor/phantomjs/linux64/lib/libQtWebKit.so.4.9 +0 -0
  40. data/vendor/phantomjs/linux64/lib/libQtWebKit.so.4.9.0 +0 -0
  41. metadata +99 -0
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .DS_Store
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format progress
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in phantomjs-linux.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2012 Maxwell Salzberg
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Phantomjs::Linux
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'phantomjs-linux'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install phantomjs-linux
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Added some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
@@ -0,0 +1,13 @@
1
+ require "phantomjs-linux64/version"
2
+
3
+ module Phantomjs
4
+ def self.executable_path
5
+ Linux64.full_path
6
+ end
7
+
8
+ module Linux64
9
+ def self.full_path
10
+ File.join(File.dirname(__FILE__), '..', 'vendor', 'phantomjs', 'linux64', 'bin', 'phantomjs')
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,5 @@
1
+ module Phantomjs
2
+ module Linux64
3
+ VERSION = "0.0.3 "
4
+ end
5
+ end
@@ -0,0 +1,19 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/phantomjs-linux64/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["Maxwell Salzberg"]
6
+ gem.email = ["maxwell@joindiaspora.com"]
7
+ gem.description = %q{phantomjs binaries for linux}
8
+ gem.summary = %q{its just the depdencies vendored}
9
+ gem.homepage = "https://github.com/maxwell/phantomjs-linux64"
10
+
11
+ gem.files = `git ls-files`.split($\)
12
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
13
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
14
+ gem.name = "phantomjs-linux64"
15
+ gem.require_paths = ["lib"]
16
+ gem.version = Phantomjs::Linux64::VERSION
17
+
18
+ gem.add_development_dependency 'rspec', '~> 2.9'
19
+ end
@@ -0,0 +1,13 @@
1
+ require 'spec_helper'
2
+
3
+ describe Phantomjs do
4
+ describe '.executable_path' do
5
+ it 'works' do
6
+ File.exists?(Phantomjs.executable_path).should == true
7
+ end
8
+
9
+ it 'points to a linux path' do
10
+ Phantomjs.executable_path.should match /linux/
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,8 @@
1
+ $:.unshift File.dirname(__FILE__) + '/../lib'
2
+ require 'phantomjs-linux64'
3
+
4
+ RSpec.configure do |config|
5
+ config.treat_symbols_as_metadata_keys_with_true_values = true
6
+ config.run_all_when_everything_filtered = true
7
+ config.filter_run :focus
8
+ end
@@ -0,0 +1,177 @@
1
+ Please see also http://code.google.com/p/phantomjs/wiki/ReleaseNotes.
2
+
3
+ 2012-03-20: Version 1.5.0 "Ghost Flower"
4
+
5
+ New features
6
+
7
+ * Added interactive mode, also known as REPL (issue 252)
8
+ * Added setting for web security, to allow cross domain XHR (issue 28)
9
+ * Added error handler for WebPage object (issue 166)
10
+ * Added support for custom HTTP header in the network request (issue 77)
11
+ * Added support for read write encoding in the file system module (issue 367)
12
+ * Added remote debugging support on Linux (issue 6)
13
+ * Added support for proxy authentication (issue 105)
14
+ * Added System module, to retrieve environment variables (issue 271) and arguments (issue 276)
15
+ * Added fs.readLink function (issue 329)
16
+ * Added support for reading and writing binary data (issue 400)
17
+ * Added support to retrieve request data in the WebServer? module (issue 340)
18
+ * Added support for individual top/bottom/left/right print margins (issue 388)
19
+ * Added command-line option --help (issue 347)
20
+ * Added short command-line options -v and -h (issue 408)
21
+ * Removed support for Flash and other plugins (issue 418)
22
+
23
+ Bug fixes
24
+
25
+ * Fixed multiple console.log arguments (issue 36)
26
+ * Fixed file upload (issue 307)
27
+ * Fixed the web server instance to be asynchronous (issue 326) and still support Keep Alive (issue 416)
28
+ * Workaround Qt 4.8.0 crash due to empty URL scheme (issue 365)
29
+ * Fixed a Content-Type problem where POST does not work (issue 337)
30
+ * Fixed reading body request in the web server even without specific Content-Type (issue 439)
31
+ * Fixed Jasmine test runner with Jasmine 1.1 (issue 402)
32
+ * Fixed request URL formatting in the web server (issue 437)
33
+ * Don't display debugging and warning messages (issue 323)
34
+
35
+ 2011-12-31: Version 1.4.1
36
+
37
+ Bug fixes
38
+
39
+ * Fix setting the proxy type (issue 266)
40
+ * Workaround for file upload regression (issue 307)
41
+ * Fix extraneous messsages in non-debug mode (issue 323)
42
+
43
+ 2011-12-22: Version 1.4.0 "Glory of the Snow"
44
+
45
+ New features
46
+
47
+ * Added embedded HTTP server (issue 115)
48
+ * Added convenient build script for Linux (issue 197)
49
+ * Added support for SOCKS5 proxy (issue 266)
50
+ * Updated CoffeeScript compiler to version 1.2 (issue 312)
51
+
52
+ Bug fixes
53
+
54
+ * Fix potential crash in QUrl with Qt 4.8 (issue 304)
55
+ * Fix bug in CookieJar with QSettings and string (PyPhantomJS issue 10)
56
+ * Prevent showing the icon on Mac OS X Dock (issue 281)
57
+
58
+ Examples
59
+
60
+ * Added a new example to detect browsers sniffing (issue 263)
61
+ * Added HTTP server example (issue 115)
62
+
63
+ 2011-09-23: Version 1.3.0 "Water Lily"
64
+
65
+ Bug fixes
66
+
67
+ * Fixed open() and POST method, without specifying the finished handler
68
+ * Fixed script execution warning dialog (issue 165)
69
+ * Added WebPage.release() to free the web page from memory (issue 154)
70
+ * Added special handling of about:blank (issue 235)
71
+ * Made a separate network access manager for each page (issue 190)
72
+
73
+ New features
74
+
75
+ * Introduced file system API based on CommonJS Filesystem proposal (issue 129)
76
+ * Added support for persistent cookies (issue 91)
77
+ * Added event handling, currently only for mouse events (issue 234)
78
+ * Added page scroll position (issue 162)
79
+ * Added HTTP authentication support (issue 45)
80
+ * Added callback for page initialization (issue 143)
81
+ * Added support to specify script and output encoding (issue 186)
82
+ * Added option to allow local content to do cross-domain access (issue 28)
83
+ * Added support to apply configurations from a JSON file (issue 180)
84
+ * Added a convenient WebPage initialization construction (issue 206)
85
+ * Added option to limit the size of disk cache (issue 220)
86
+
87
+ Examples
88
+
89
+ * Added a new example on using Modernizr to detect features (issue 144)
90
+ * Fixed pizza.js example to use Mobile Yelp (issue 200)
91
+ * Fixed netsniff.coffee example due to wrong indentation (issue 225)
92
+ * Added an example to show live network traffic (issue 227)
93
+ * Added an example demonstrating different output encodings (issue 186)
94
+
95
+ 2011-06-21: Version 1.2.0 "Birds of Paradise"
96
+
97
+ Version 1.2.0 is a major update. It introduces a whole set of new API.
98
+
99
+ Bug fixes
100
+
101
+ * Fixed rendering a very large web page (issue 54)
102
+ * Fixed reporting of CoffeeScript compile error (issue 125)
103
+
104
+ New features
105
+
106
+ * Added callback for console message (issue 12)
107
+ * Improved security model via WebPage object (issue 41)
108
+ * Added support for POST, HEAD, PUT, and DELETE (issue 88)
109
+ * Scripts filename is now passed as phantom.scriptName
110
+ * Added callback to capture resource requests and responses (issue 2)
111
+ * Added the ability to load external JavaScript (issue 32)
112
+
113
+ Examples
114
+
115
+ * Ported examples to use WebPage object
116
+ * Added a new example to upload an image to imagebin.org
117
+ * Added a new example to show HTTP POST feature
118
+ * Added a new example to sniff network traffic and save it in HAR format
119
+
120
+
121
+ 2011-04-27: Version 1.1.0 "Cherry Blossom"
122
+
123
+ Fixed the script loading to use UTF-8 encoding (Yasuhiro Matsumoto).
124
+
125
+ Added check for system proxy setting (Yasuhiro Matsumoto).
126
+
127
+ Fixed building with Cygwin and Qt 4.5 (John Dalton).
128
+
129
+ Added a new example: driver for QUnit tests (Łukasz Korecki).
130
+
131
+ Fixed issue #20: problem with JPG transparent color (Alessandro Portale).
132
+
133
+ Fixed issue #9: ignore first line starting with #! (Matthias, aka fourplusone).
134
+
135
+ Fixed issue #7: support for file upload for form submission (Matthias, aka fourplusone).
136
+
137
+ Fixed issue #35: support for disabling images loading (Ariya Hidayat).
138
+
139
+ Fixed issue #14: enable or disable plugins (Ariya Hidayat).
140
+
141
+ Added a new example: using Canvas to produce the color wheel (Ariya Hidayat).
142
+
143
+ Added support for rasterizing as GIF image (Ariya Hidayat).
144
+
145
+ Added support for CoffeeScript (Ariya Hidayat).
146
+
147
+ Fixed issue #19: option for setting the proxy (Clint Berry, Ariya Hidayat).
148
+
149
+ Python implementation using PyQt (James Roe).
150
+
151
+ Fixed issue #17: Specify paper size for PDF export (Alessandro Portale).
152
+
153
+ Fixed issue #60: Win32 and OS/2 icon files (Salvador Parra Camacho).
154
+
155
+ Added clipping rectangle to the render function (Wouter de Bie).
156
+
157
+ Added an example on sychronous waiting (Gabor Torok).
158
+
159
+ Added command line option to use disk cache (Jon Turner).
160
+
161
+ Added text extracting example (Weston Ruter).
162
+
163
+ Fixed issue #93: Build with Qt < 4.7 (Ariya Hidayat).
164
+
165
+ Ported all examples to CoffeeScript (Robert Gieseke).
166
+
167
+ 2011-01-17: Version 1.0.0
168
+
169
+ Initial launch.
170
+
171
+ The API is centralized at the 'phantom' object (as child of
172
+ window object) which has the properties: args, content,
173
+ loadStatus, state, userAgent, version, viewportSize, and
174
+ the following functions: exit, open, render, sleep.
175
+
176
+ Several examples are included, among others: web page rasterizer,
177
+ weather service, headless test framework driver, and many others.
@@ -0,0 +1,22 @@
1
+ Redistribution and use in source and binary forms, with or without
2
+ modification, are permitted provided that the following conditions are met:
3
+
4
+ * Redistributions of source code must retain the above copyright
5
+ notice, this list of conditions and the following disclaimer.
6
+ * Redistributions in binary form must reproduce the above copyright
7
+ notice, this list of conditions and the following disclaimer in the
8
+ documentation and/or other materials provided with the distribution.
9
+ * Neither the name of the <organization> nor the
10
+ names of its contributors may be used to endorse or promote products
11
+ derived from this software without specific prior written permission.
12
+
13
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
14
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16
+ ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
17
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
20
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22
+ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,33 @@
1
+ PhantomJS ([www.phantomjs.org](http://phantomjs.org)) is a headless WebKit with JavaScript API.
2
+
3
+ It has **fast** and **native** support for DOM handling, CSS selector, JSON, Canvas, and SVG.
4
+
5
+ PhantomJS is cross-platform, it can be compiled for Linux, Windows, FreeBSD, and Mac OS X.
6
+ Refer to the [build instructions](http://code.google.com/p/phantomjs/wiki/BuildInstructions)
7
+ for details.
8
+
9
+ **Note**: If you are on Mac OS X, [read the notice](http://code.google.com/p/phantomjs/wiki/BuildInstructions#Mac_OS_X)
10
+ before you start using `brew` or `port` to install Qt and/or PhantomJS.
11
+
12
+ PhantomJS scripts can be written in JavaScript or [CoffeeScript](http://jashkenas.github.com/coffee-script/).
13
+
14
+ See also [quick start guide](http://code.google.com/p/phantomjs/wiki/QuickStart)
15
+ and more [advanced examples](http://code.google.com/p/phantomjs/wiki/ServiceIntegration)
16
+ which show various PhantomJS scripts, covering:
17
+
18
+ * getting driving direction
19
+ * showing weather forecast conditions
20
+ * finding pizza in New York
21
+ * looking up approximate location based on IP address
22
+ * pulling the list of seasonal food
23
+ * running regression tests from command line
24
+ * producing PDF version of a Wikipedia article
25
+ * rasterizing SVG to image
26
+
27
+ Do not forget to consult the concise [API Reference](http://code.google.com/p/phantomjs/wiki/Interface).
28
+
29
+ PhantomJS is based on [Qt](http://qt.nokia.com).
30
+
31
+ The latest [stable release](http://code.google.com/p/phantomjs/wiki/ReleaseNotes) is version 1.5 ("Ghost Flower").
32
+
33
+ If you want to contribute, please read the [Contribution Guide](http://code.google.com/p/phantomjs/wiki/ContributionGuide).
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist SYSTEM "file://localhost/System/Library/DTDs/PropertyList.dtd">
3
+ <plist version="0.9">
4
+ <dict>
5
+ <key>CFBundleExecutable</key>
6
+ <string>phantomjs</string>
7
+ <key>CFBundleIdentifier</key>
8
+ <string>org.phantomjs</string>
9
+ <key>LSUIElement</key>
10
+ <string>1</string>
11
+ </dict>
12
+ </plist>
@@ -0,0 +1,28 @@
1
+ # libQtCore.la - a libtool library file
2
+ # Generated by qmake/libtool (2.01a) (Qt 4.8.0) on: Fri Jan 13 11:58:43 2012
3
+ # The name that we can dlopen(3).
4
+ dlname='libQtCore.so.4'
5
+
6
+ # Names of this library.
7
+ library_names='libQtCore.so.4.8.0 libQtCore.so.4 libQtCore.so'
8
+
9
+ # The name of the static archive.
10
+ old_library='libQtCore.a'
11
+
12
+ # Libraries that this one depends upon.
13
+ dependency_libs='-L/home/turnip/phantomjs/src/qt/lib -lpthread '
14
+
15
+ # Version information for libQtCore.la
16
+ current=48
17
+ age=0
18
+ revision=0
19
+
20
+ # Is this an already installed library.
21
+ installed=yes
22
+
23
+ # Files to dlopen/dlpreopen.
24
+ dlopen=''
25
+ dlpreopen=''
26
+
27
+ # Directory that this library needs to be installed in:
28
+ libdir='/home/turnip/phantomjs/src/qt/lib'
@@ -0,0 +1,7 @@
1
+ QMAKE_PRL_BUILD_DIR = /home/turnip/phantomjs/src/qt/src/corelib/
2
+ QMAKE_PRO_INPUT = corelib.pro
3
+ QMAKE_PRL_TARGET = libQtCore.so.4.8.0
4
+ QMAKE_PRL_DEFINES = QT_SHARED
5
+ QMAKE_PRL_CONFIG = lex yacc warn_on uic resources qt warn_on release incremental link_prl gdb_dwarf_index qpa def_files_disabled no_mocdepend release qt_no_framework release shared dll qpa largefile precompile_header mmx 3dnow sse sse2 sse3 ssse3 sse4_1 sse4_2 avx exceptions_off dylib create_prl link_prl depend_includepath QTDIR_build qt_install_headers qt warn_on depend_includepath qmake_cache target_qt hide_symbols create_libtool create_pc explicitlib moc thread shared dll
6
+ QMAKE_PRL_VERSION = 4.8.0
7
+ QMAKE_PRL_LIBS = -L/home/turnip/phantomjs/src/qt/lib -lpthread
@@ -0,0 +1,28 @@
1
+ # libQtGui.la - a libtool library file
2
+ # Generated by qmake/libtool (2.01a) (Qt 4.8.0) on: Fri Jan 13 11:58:47 2012
3
+ # The name that we can dlopen(3).
4
+ dlname='libQtGui.so.4'
5
+
6
+ # Names of this library.
7
+ library_names='libQtGui.so.4.8.0 libQtGui.so.4 libQtGui.so'
8
+
9
+ # The name of the static archive.
10
+ old_library='libQtGui.a'
11
+
12
+ # Libraries that this one depends upon.
13
+ dependency_libs='-L/home/turnip/phantomjs/src/qt/lib -lQtCore -L/home/turnip/phantomjs/src/qt/lib -lpthread '
14
+
15
+ # Version information for libQtGui.la
16
+ current=48
17
+ age=0
18
+ revision=0
19
+
20
+ # Is this an already installed library.
21
+ installed=yes
22
+
23
+ # Files to dlopen/dlpreopen.
24
+ dlopen=''
25
+ dlpreopen=''
26
+
27
+ # Directory that this library needs to be installed in:
28
+ libdir='/home/turnip/phantomjs/src/qt/lib'
@@ -0,0 +1,7 @@
1
+ QMAKE_PRL_BUILD_DIR = /home/turnip/phantomjs/src/qt/src/gui/
2
+ QMAKE_PRO_INPUT = gui.pro
3
+ QMAKE_PRL_TARGET = libQtGui.so.4.8.0
4
+ QMAKE_PRL_DEFINES = QT_SHARED
5
+ QMAKE_PRL_CONFIG = lex yacc warn_on uic resources qt warn_on release incremental link_prl gdb_dwarf_index qpa def_files_disabled no_mocdepend release qt_no_framework release shared dll qpa largefile precompile_header mmx 3dnow sse sse2 sse3 ssse3 sse4_1 sse4_2 avx exceptions_off dylib create_prl link_prl depend_includepath QTDIR_build qt_install_headers qt warn_on depend_includepath qmake_cache target_qt hide_symbols create_libtool create_pc explicitlib opentype moc thread shared dll
6
+ QMAKE_PRL_VERSION = 4.8.0
7
+ QMAKE_PRL_LIBS = -L/home/turnip/phantomjs/src/qt/lib -lQtCore -L/home/turnip/phantomjs/src/qt/lib -lpthread
@@ -0,0 +1,28 @@
1
+ # libQtNetwork.la - a libtool library file
2
+ # Generated by qmake/libtool (2.01a) (Qt 4.8.0) on: Fri Jan 13 11:58:44 2012
3
+ # The name that we can dlopen(3).
4
+ dlname='libQtNetwork.so.4'
5
+
6
+ # Names of this library.
7
+ library_names='libQtNetwork.so.4.8.0 libQtNetwork.so.4 libQtNetwork.so'
8
+
9
+ # The name of the static archive.
10
+ old_library='libQtNetwork.a'
11
+
12
+ # Libraries that this one depends upon.
13
+ dependency_libs='-L/home/turnip/phantomjs/src/qt/lib -lQtCore -L/home/turnip/phantomjs/src/qt/lib -lpthread '
14
+
15
+ # Version information for libQtNetwork.la
16
+ current=48
17
+ age=0
18
+ revision=0
19
+
20
+ # Is this an already installed library.
21
+ installed=yes
22
+
23
+ # Files to dlopen/dlpreopen.
24
+ dlopen=''
25
+ dlpreopen=''
26
+
27
+ # Directory that this library needs to be installed in:
28
+ libdir='/home/turnip/phantomjs/src/qt/lib'
@@ -0,0 +1,7 @@
1
+ QMAKE_PRL_BUILD_DIR = /home/turnip/phantomjs/src/qt/src/network/
2
+ QMAKE_PRO_INPUT = network.pro
3
+ QMAKE_PRL_TARGET = libQtNetwork.so.4.8.0
4
+ QMAKE_PRL_DEFINES = QT_SHARED
5
+ QMAKE_PRL_CONFIG = lex yacc warn_on uic resources qt warn_on release incremental link_prl gdb_dwarf_index qpa def_files_disabled no_mocdepend release qt_no_framework release shared dll qpa largefile precompile_header mmx 3dnow sse sse2 sse3 ssse3 sse4_1 sse4_2 avx exceptions_off dylib create_prl link_prl depend_includepath QTDIR_build qt_install_headers qt warn_on depend_includepath qmake_cache target_qt hide_symbols create_libtool create_pc explicitlib moc thread shared dll
6
+ QMAKE_PRL_VERSION = 4.8.0
7
+ QMAKE_PRL_LIBS = -L/home/turnip/phantomjs/src/qt/lib -lQtCore -L/home/turnip/phantomjs/src/qt/lib -lpthread
@@ -0,0 +1,28 @@
1
+ # libQtWebKit.la - a libtool library file
2
+ # Generated by qmake/libtool (2.01a) (Qt 4.8.0) on: Fri Jan 13 14:45:44 2012
3
+ # The name that we can dlopen(3).
4
+ dlname='libQtWebKit.so.4'
5
+
6
+ # Names of this library.
7
+ library_names='libQtWebKit.so.4.9.0 libQtWebKit.so.4 libQtWebKit.so'
8
+
9
+ # The name of the static archive.
10
+ old_library='libQtWebKit.a'
11
+
12
+ # Libraries that this one depends upon.
13
+ dependency_libs='-L/home/turnip/phantomjs/src/qt/lib -L../../WebCore/release -L../../JavaScriptCore/release -lwebcore -L/home/turnip/phantomjs/src/qt/lib -ljscore -lQtGui -lQtNetwork -lQtCore -lpthread '
14
+
15
+ # Version information for libQtWebKit.la
16
+ current=49
17
+ age=0
18
+ revision=0
19
+
20
+ # Is this an already installed library.
21
+ installed=yes
22
+
23
+ # Files to dlopen/dlpreopen.
24
+ dlopen=''
25
+ dlpreopen=''
26
+
27
+ # Directory that this library needs to be installed in:
28
+ libdir='/home/turnip/phantomjs/src/qt/lib'
@@ -0,0 +1,6 @@
1
+ QMAKE_PRL_BUILD_DIR = /home/turnip/phantomjs/src/qt/src/3rdparty/webkit/Source/WebKit/qt/
2
+ QMAKE_PRO_INPUT = QtWebKit.pro
3
+ QMAKE_PRL_TARGET = libQtWebKit.so.4.9.0
4
+ QMAKE_PRL_DEFINES = QT_SHARED
5
+ QMAKE_PRL_CONFIG = lex yacc uic resources qt release incremental link_prl gdb_dwarf_index qpa def_files_disabled no_mocdepend release qt_no_framework release shared dll qpa largefile precompile_header mmx 3dnow sse sse2 sse3 ssse3 sse4_1 sse4_2 avx exceptions_off dylib create_prl link_prl depend_includepath QTDIR_build building-libs depend_includepath embedded standalone_package depend_includepath include_webinspector production production embedded no_debug_info link_pkgconfig production qt_install_headers qt warn_on depend_includepath qmake_cache target_qt hide_symbols create_libtool create_pc moc thread shared dll
6
+ QMAKE_PRL_VERSION = 4.9.0
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: phantomjs-linux64
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.3
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Maxwell Salzberg
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-06-14 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rspec
16
+ requirement: &70203737665860 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ~>
20
+ - !ruby/object:Gem::Version
21
+ version: '2.9'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: *70203737665860
25
+ description: phantomjs binaries for linux
26
+ email:
27
+ - maxwell@joindiaspora.com
28
+ executables: []
29
+ extensions: []
30
+ extra_rdoc_files: []
31
+ files:
32
+ - .gitignore
33
+ - .rspec
34
+ - Gemfile
35
+ - LICENSE
36
+ - README.md
37
+ - Rakefile
38
+ - lib/phantomjs-linux64.rb
39
+ - lib/phantomjs-linux64/version.rb
40
+ - phantomjs-linux64.gemspec
41
+ - spec/phantomjs-linux64_spec.rb
42
+ - spec/spec_helper.rb
43
+ - vendor/phantomjs/linux64/ChangeLog
44
+ - vendor/phantomjs/linux64/LICENSE.BSD
45
+ - vendor/phantomjs/linux64/README.md
46
+ - vendor/phantomjs/linux64/bin/Info.plist
47
+ - vendor/phantomjs/linux64/bin/phantomjs
48
+ - vendor/phantomjs/linux64/lib/libQtCore.la
49
+ - vendor/phantomjs/linux64/lib/libQtCore.prl
50
+ - vendor/phantomjs/linux64/lib/libQtCore.so
51
+ - vendor/phantomjs/linux64/lib/libQtCore.so.4
52
+ - vendor/phantomjs/linux64/lib/libQtCore.so.4.8
53
+ - vendor/phantomjs/linux64/lib/libQtCore.so.4.8.0
54
+ - vendor/phantomjs/linux64/lib/libQtGui.la
55
+ - vendor/phantomjs/linux64/lib/libQtGui.prl
56
+ - vendor/phantomjs/linux64/lib/libQtGui.so
57
+ - vendor/phantomjs/linux64/lib/libQtGui.so.4
58
+ - vendor/phantomjs/linux64/lib/libQtGui.so.4.8
59
+ - vendor/phantomjs/linux64/lib/libQtGui.so.4.8.0
60
+ - vendor/phantomjs/linux64/lib/libQtNetwork.la
61
+ - vendor/phantomjs/linux64/lib/libQtNetwork.prl
62
+ - vendor/phantomjs/linux64/lib/libQtNetwork.so
63
+ - vendor/phantomjs/linux64/lib/libQtNetwork.so.4
64
+ - vendor/phantomjs/linux64/lib/libQtNetwork.so.4.8
65
+ - vendor/phantomjs/linux64/lib/libQtNetwork.so.4.8.0
66
+ - vendor/phantomjs/linux64/lib/libQtWebKit.la
67
+ - vendor/phantomjs/linux64/lib/libQtWebKit.prl
68
+ - vendor/phantomjs/linux64/lib/libQtWebKit.so
69
+ - vendor/phantomjs/linux64/lib/libQtWebKit.so.4
70
+ - vendor/phantomjs/linux64/lib/libQtWebKit.so.4.9
71
+ - vendor/phantomjs/linux64/lib/libQtWebKit.so.4.9.0
72
+ homepage: https://github.com/maxwell/phantomjs-linux64
73
+ licenses: []
74
+ post_install_message:
75
+ rdoc_options: []
76
+ require_paths:
77
+ - lib
78
+ required_ruby_version: !ruby/object:Gem::Requirement
79
+ none: false
80
+ requirements:
81
+ - - ! '>='
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
84
+ required_rubygems_version: !ruby/object:Gem::Requirement
85
+ none: false
86
+ requirements:
87
+ - - ! '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ requirements: []
91
+ rubyforge_project:
92
+ rubygems_version: 1.8.17
93
+ signing_key:
94
+ specification_version: 3
95
+ summary: its just the depdencies vendored
96
+ test_files:
97
+ - spec/phantomjs-linux64_spec.rb
98
+ - spec/spec_helper.rb
99
+ has_rdoc: