rake-delphi 0.0.16 → 0.0.17
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.
- data/lib/rake/common/ziptask.rb +19 -39
- data/lib/rake/delphi/version.rb +1 -1
- data/test/test-zip.rb +14 -0
- metadata +92 -106
- checksums.yaml +0 -7
- data/Gemfile.lock +0 -26
- data/Messages.txt +0 -336
- data/test/resources/testproject/resources.res +0 -0
- data/test/resources/testproject/testproject.cfg.1 +0 -8
- data/test/resources/testproject/testproject.rc +0 -62
- data/test/resources/testproject/testproject.res +0 -0
- data/test/resources/testproject-android/AndroidManifest.xml +0 -35
- data/test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas +0 -17
- data/test/resources/testproject-android/TestProject.cfg +0 -4
- data/test/resources/testproject-android/TestProject.cfg.1 +0 -8
- data/test/resources/testproject-android/TestProject.rc +0 -62
- data/test/resources/testproject-android/TestProject.res +0 -0
- data/test/resources/testproject-android/lib/AnyLib/LibUnit.pas +0 -17
- data/test/resources/testproject-android/resources.res +0 -0
data/lib/rake/common/ziptask.rb
CHANGED
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
require 'zlib'
|
4
4
|
require 'rake/common/classes'
|
5
|
+
require 'rake/common/logger'
|
5
6
|
require 'rake/helpers/raketask'
|
6
7
|
|
7
8
|
module Rake
|
@@ -41,32 +42,18 @@ module Rake
|
|
41
42
|
@norubyzip = nil
|
42
43
|
@options = options || {}
|
43
44
|
begin
|
44
|
-
require '
|
45
|
+
require 'zip/zip'
|
45
46
|
rescue LoadError
|
46
|
-
|
47
|
-
require 'zip/zip'
|
48
|
-
rescue LoadError
|
49
|
-
@norubyzip = true
|
50
|
-
end
|
47
|
+
@norubyzip = true
|
51
48
|
end
|
52
|
-
raise "no ZIP library (
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
end
|
61
|
-
else
|
62
|
-
# work with rubyzip
|
63
|
-
Logger.trace(Logger::VERBOSE, '`rubyzip` gem is used')
|
64
|
-
File.unlink(zipfile) if File.exists?(zipfile)
|
65
|
-
Zip.options[:continue_on_exists_proc] = true
|
66
|
-
Zip::ZipFile.open(zipfile, Zip::ZipFile::CREATE) do |z|
|
67
|
-
files.each do |f|
|
68
|
-
zip_addfile(z, f)
|
69
|
-
end
|
49
|
+
raise "no ZIP library (rubyzip) found!" if @norubyzip
|
50
|
+
# work with rubyzip
|
51
|
+
Logger.trace(Logger::VERBOSE, '`rubyzip` gem is used')
|
52
|
+
File.unlink(zipfile) if File.exists?(zipfile) && ! @options[:add]
|
53
|
+
Zip.options[:continue_on_exists_proc] = true
|
54
|
+
Zip::ZipFile.open(zipfile, Zip::ZipFile::CREATE) do |z|
|
55
|
+
files.each do |f|
|
56
|
+
zip_addfile(z, f)
|
70
57
|
end
|
71
58
|
end
|
72
59
|
end
|
@@ -76,22 +63,15 @@ module Rake
|
|
76
63
|
return if ! File.exists?(file)
|
77
64
|
filename = File.basename(file)
|
78
65
|
@task.out "Zipping #{file}..."
|
79
|
-
if
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
zipfile.add_file(filename, file)
|
87
|
-
else
|
88
|
-
if @options[:preserve_paths]
|
89
|
-
dir = File.dirname(file)
|
90
|
-
# avoid "./<filename>" entries (instead of "<filename>")
|
91
|
-
filename = File.join(dir, filename) if dir != '.'
|
92
|
-
end
|
93
|
-
zipfile.add(filename, file)
|
66
|
+
if @options[:preserve_paths]
|
67
|
+
dir = File.dirname(file)
|
68
|
+
# avoid "./<filename>" entries (instead of "<filename>")
|
69
|
+
filename = File.join(dir, filename) if dir != '.'
|
70
|
+
|
71
|
+
# remove leading slash (for absolute paths)
|
72
|
+
filename.gsub!(/^\//, '')
|
94
73
|
end
|
74
|
+
zipfile.add(filename, file)
|
95
75
|
end
|
96
76
|
end
|
97
77
|
end
|
data/lib/rake/delphi/version.rb
CHANGED
data/test/test-zip.rb
CHANGED
@@ -30,6 +30,20 @@ public
|
|
30
30
|
|
31
31
|
def test_zip_file
|
32
32
|
Rake::Delphi::ZipTask.new(@rake_task, @zip, [__FILE__])
|
33
|
+
assert(File.exists?(@zip), "File #{@zip} not created")
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_zip_file_twice
|
37
|
+
test_zip_file
|
38
|
+
test_zip_file
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_add_to_zip_file
|
42
|
+
test_zip_file
|
43
|
+
Rake::Delphi::ZipTask.new(@rake_task, @zip, [__FILE__], { :preserve_paths => true, :add => true })
|
33
44
|
assert(File.exists?(@zip))
|
45
|
+
Zip::ZipFile.open(@zip) do |z|
|
46
|
+
assert_equal 2, z.entries.length, 'Files in an archive'
|
47
|
+
end
|
34
48
|
end
|
35
49
|
end
|
metadata
CHANGED
@@ -1,18 +1,20 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rake-delphi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.17
|
5
|
+
prerelease:
|
5
6
|
platform: ruby
|
6
7
|
authors:
|
7
8
|
- Alexey Shumkin
|
8
9
|
autorequire:
|
9
10
|
bindir: bin
|
10
11
|
cert_chain: []
|
11
|
-
date: 2014-
|
12
|
+
date: 2014-12-03 00:00:00.000000000 Z
|
12
13
|
dependencies:
|
13
14
|
- !ruby/object:Gem::Dependency
|
14
15
|
name: bundler
|
15
16
|
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
16
18
|
requirements:
|
17
19
|
- - ~>
|
18
20
|
- !ruby/object:Gem::Version
|
@@ -20,6 +22,7 @@ dependencies:
|
|
20
22
|
type: :development
|
21
23
|
prerelease: false
|
22
24
|
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
23
26
|
requirements:
|
24
27
|
- - ~>
|
25
28
|
- !ruby/object:Gem::Version
|
@@ -27,6 +30,7 @@ dependencies:
|
|
27
30
|
- !ruby/object:Gem::Dependency
|
28
31
|
name: rake
|
29
32
|
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
30
34
|
requirements:
|
31
35
|
- - ~>
|
32
36
|
- !ruby/object:Gem::Version
|
@@ -34,6 +38,7 @@ dependencies:
|
|
34
38
|
type: :development
|
35
39
|
prerelease: false
|
36
40
|
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
37
42
|
requirements:
|
38
43
|
- - ~>
|
39
44
|
- !ruby/object:Gem::Version
|
@@ -41,20 +46,23 @@ dependencies:
|
|
41
46
|
- !ruby/object:Gem::Dependency
|
42
47
|
name: xml-simple
|
43
48
|
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
44
50
|
requirements:
|
45
|
-
- - '>='
|
51
|
+
- - ! '>='
|
46
52
|
- !ruby/object:Gem::Version
|
47
53
|
version: '0'
|
48
54
|
type: :development
|
49
55
|
prerelease: false
|
50
56
|
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
51
58
|
requirements:
|
52
|
-
- - '>='
|
59
|
+
- - ! '>='
|
53
60
|
- !ruby/object:Gem::Version
|
54
61
|
version: '0'
|
55
62
|
- !ruby/object:Gem::Dependency
|
56
63
|
name: rubyzip
|
57
64
|
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
58
66
|
requirements:
|
59
67
|
- - ~>
|
60
68
|
- !ruby/object:Gem::Version
|
@@ -62,6 +70,7 @@ dependencies:
|
|
62
70
|
type: :development
|
63
71
|
prerelease: false
|
64
72
|
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
65
74
|
requirements:
|
66
75
|
- - ~>
|
67
76
|
- !ruby/object:Gem::Version
|
@@ -69,15 +78,17 @@ dependencies:
|
|
69
78
|
- !ruby/object:Gem::Dependency
|
70
79
|
name: apktools
|
71
80
|
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
72
82
|
requirements:
|
73
|
-
- - '>='
|
83
|
+
- - ! '>='
|
74
84
|
- !ruby/object:Gem::Version
|
75
85
|
version: '0'
|
76
86
|
type: :development
|
77
87
|
prerelease: false
|
78
88
|
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
79
90
|
requirements:
|
80
|
-
- - '>='
|
91
|
+
- - ! '>='
|
81
92
|
- !ruby/object:Gem::Version
|
82
93
|
version: '0'
|
83
94
|
description: Tasks for building Delphi projects
|
@@ -88,11 +99,12 @@ extensions: []
|
|
88
99
|
extra_rdoc_files: []
|
89
100
|
files:
|
90
101
|
- Gemfile
|
91
|
-
- Gemfile.lock
|
92
102
|
- LICENSE.txt
|
93
|
-
-
|
94
|
-
-
|
103
|
+
- rake-delphi-cygwin.env.cmd
|
104
|
+
- rake-delphi-cygwin.env.sh
|
105
|
+
- rake-delphi.gemspec
|
95
106
|
- Rakefile.rb
|
107
|
+
- README.md
|
96
108
|
- lib/rake/common/chdirtask.rb
|
97
109
|
- lib/rake/common/classes.rb
|
98
110
|
- lib/rake/common/dsl.rb
|
@@ -105,7 +117,6 @@ files:
|
|
105
117
|
- lib/rake/common/logger.rb
|
106
118
|
- lib/rake/common/sendmailtask.rb
|
107
119
|
- lib/rake/common/ziptask.rb
|
108
|
-
- lib/rake/delphi.rb
|
109
120
|
- lib/rake/delphi/androidmanifest.rb
|
110
121
|
- lib/rake/delphi/dcc32.rb
|
111
122
|
- lib/rake/delphi/dcc32tool.rb
|
@@ -120,6 +131,7 @@ files:
|
|
120
131
|
- lib/rake/delphi/resources.rb
|
121
132
|
- lib/rake/delphi/tool.rb
|
122
133
|
- lib/rake/delphi/version.rb
|
134
|
+
- lib/rake/delphi.rb
|
123
135
|
- lib/rake/helpers/digest.rb
|
124
136
|
- lib/rake/helpers/file.rb
|
125
137
|
- lib/rake/helpers/filelist.rb
|
@@ -130,159 +142,133 @@ files:
|
|
130
142
|
- lib/rake/helpers/string.rb
|
131
143
|
- lib/rake/helpers/unittest.rb
|
132
144
|
- lib/rake/templates/project.erb
|
133
|
-
-
|
134
|
-
-
|
135
|
-
-
|
145
|
+
- test/test-delphi-android.rb
|
146
|
+
- test/test-delphi-xe7-android.rb
|
147
|
+
- test/test-delphi.rb
|
148
|
+
- test/test-echo.rb
|
149
|
+
- test/test-envvariables.rb
|
150
|
+
- test/test-gemversion.rb
|
151
|
+
- test/test-git.rb
|
152
|
+
- test/test-hashes.rb
|
153
|
+
- test/test-ini.rb
|
154
|
+
- test/test-libstask.rb
|
155
|
+
- test/test-projectinfo-android-xe7.rb
|
156
|
+
- test/test-projectinfo-android.rb
|
157
|
+
- test/test-projectinfo.rb
|
158
|
+
- test/test-string.rb
|
159
|
+
- test/test-zip.rb
|
136
160
|
- test/helpers/consts.rb
|
137
161
|
- test/helpers/verinfo.rb
|
138
|
-
- test/resources/FakeDelphi/dcc32.exe
|
139
|
-
- test/resources/FakeDelphi/rc.exe
|
140
162
|
- test/resources/echo/file.in
|
141
163
|
- test/resources/echo/file.out
|
164
|
+
- test/resources/FakeDelphi/dcc32.exe
|
165
|
+
- test/resources/FakeDelphi/rc.exe
|
142
166
|
- test/resources/hashes/hash.2.file
|
143
167
|
- test/resources/hashes/hash.file
|
144
168
|
- test/resources/ini/file.ini
|
145
|
-
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
146
|
-
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
147
|
-
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
148
|
-
- test/resources/testproject-android/AndroidManifest.erb
|
149
|
-
- test/resources/testproject-android/AndroidManifest.xml
|
150
|
-
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
151
|
-
- test/resources/testproject-android/Rakefile.rb
|
152
|
-
- test/resources/testproject-android/TestProject.cfg
|
153
|
-
- test/resources/testproject-android/TestProject.cfg.1
|
154
|
-
- test/resources/testproject-android/TestProject.dpr
|
155
|
-
- test/resources/testproject-android/TestProject.rc
|
156
|
-
- test/resources/testproject-android/TestProject.res
|
157
|
-
- test/resources/testproject-android/TestProject.xe5.dproj
|
158
|
-
- test/resources/testproject-android/TestProject.xe7.dproj
|
159
|
-
- test/resources/testproject-android/external/module.ext
|
160
|
-
- test/resources/testproject-android/fmTest.fmx
|
161
|
-
- test/resources/testproject-android/fmTest.pas
|
162
|
-
- test/resources/testproject-android/lib/AnyLib/LibUnit.pas
|
163
|
-
- test/resources/testproject-android/local.resources.txt
|
164
|
-
- test/resources/testproject-android/release.dcc.cfg
|
165
|
-
- test/resources/testproject-android/resources.rc
|
166
|
-
- test/resources/testproject-android/resources.res
|
167
169
|
- test/resources/testproject/ExplicitLib/ExplicitLibUnit.pas
|
168
|
-
- test/resources/testproject/Rakefile.rb
|
169
170
|
- test/resources/testproject/lib/AnyLib/LibUnit.pas
|
170
171
|
- test/resources/testproject/local.resources.txt
|
172
|
+
- test/resources/testproject/Rakefile.rb
|
171
173
|
- test/resources/testproject/release.dcc.cfg
|
172
174
|
- test/resources/testproject/resources.rc
|
173
|
-
- test/resources/testproject/resources.res
|
174
175
|
- test/resources/testproject/testproject.2006.bdsproj
|
175
176
|
- test/resources/testproject/testproject.2007.dproj
|
176
177
|
- test/resources/testproject/testproject.2010.dproj
|
177
178
|
- test/resources/testproject/testproject.cfg
|
178
|
-
- test/resources/testproject/testproject.cfg.1
|
179
179
|
- test/resources/testproject/testproject.dpr
|
180
180
|
- test/resources/testproject/testproject.ico
|
181
|
-
- test/resources/testproject/testproject.rc
|
182
|
-
- test/resources/testproject/testproject.res
|
183
181
|
- test/resources/testproject/testproject.xe5.dproj
|
184
182
|
- test/resources/testproject/testproject.xe7.dproj
|
185
|
-
- test/
|
186
|
-
- test/
|
187
|
-
- test/
|
188
|
-
- test/
|
189
|
-
- test/
|
190
|
-
- test/
|
191
|
-
- test/
|
192
|
-
- test/
|
193
|
-
- test/
|
194
|
-
- test/
|
195
|
-
- test/
|
196
|
-
- test/
|
197
|
-
- test/
|
198
|
-
- test/
|
199
|
-
- test/test-zip.rb
|
183
|
+
- test/resources/testproject-android/AndroidManifest.erb
|
184
|
+
- test/resources/testproject-android/external/module.ext
|
185
|
+
- test/resources/testproject-android/fmTest.fmx
|
186
|
+
- test/resources/testproject-android/fmTest.pas
|
187
|
+
- test/resources/testproject-android/local.resources.txt
|
188
|
+
- test/resources/testproject-android/Rakefile.rb
|
189
|
+
- test/resources/testproject-android/release.dcc.cfg
|
190
|
+
- test/resources/testproject-android/resources.rc
|
191
|
+
- test/resources/testproject-android/TestProject.dpr
|
192
|
+
- test/resources/testproject-android/TestProject.xe5.dproj
|
193
|
+
- test/resources/testproject-android/TestProject.xe7.dproj
|
194
|
+
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
195
|
+
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
196
|
+
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
200
197
|
homepage: http://github.com/ashumkin/rake-delphi.gem
|
201
198
|
licenses:
|
202
199
|
- MIT
|
203
|
-
metadata: {}
|
204
200
|
post_install_message:
|
205
201
|
rdoc_options: []
|
206
202
|
require_paths:
|
207
203
|
- lib
|
208
204
|
required_ruby_version: !ruby/object:Gem::Requirement
|
205
|
+
none: false
|
209
206
|
requirements:
|
210
|
-
- - '>='
|
207
|
+
- - ! '>='
|
211
208
|
- !ruby/object:Gem::Version
|
212
209
|
version: '0'
|
213
210
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
211
|
+
none: false
|
214
212
|
requirements:
|
215
|
-
- - '>='
|
213
|
+
- - ! '>='
|
216
214
|
- !ruby/object:Gem::Version
|
217
215
|
version: '0'
|
218
216
|
requirements: []
|
219
217
|
rubyforge_project:
|
220
|
-
rubygems_version:
|
218
|
+
rubygems_version: 1.8.25
|
221
219
|
signing_key:
|
222
|
-
specification_version:
|
220
|
+
specification_version: 3
|
223
221
|
summary: Tasks for building Delphi projects
|
224
222
|
test_files:
|
223
|
+
- test/test-delphi-android.rb
|
224
|
+
- test/test-delphi-xe7-android.rb
|
225
|
+
- test/test-delphi.rb
|
226
|
+
- test/test-echo.rb
|
227
|
+
- test/test-envvariables.rb
|
228
|
+
- test/test-gemversion.rb
|
229
|
+
- test/test-git.rb
|
230
|
+
- test/test-hashes.rb
|
231
|
+
- test/test-ini.rb
|
232
|
+
- test/test-libstask.rb
|
233
|
+
- test/test-projectinfo-android-xe7.rb
|
234
|
+
- test/test-projectinfo-android.rb
|
235
|
+
- test/test-projectinfo.rb
|
236
|
+
- test/test-string.rb
|
237
|
+
- test/test-zip.rb
|
225
238
|
- test/helpers/consts.rb
|
226
239
|
- test/helpers/verinfo.rb
|
227
|
-
- test/resources/FakeDelphi/dcc32.exe
|
228
|
-
- test/resources/FakeDelphi/rc.exe
|
229
240
|
- test/resources/echo/file.in
|
230
241
|
- test/resources/echo/file.out
|
242
|
+
- test/resources/FakeDelphi/dcc32.exe
|
243
|
+
- test/resources/FakeDelphi/rc.exe
|
231
244
|
- test/resources/hashes/hash.2.file
|
232
245
|
- test/resources/hashes/hash.file
|
233
246
|
- test/resources/ini/file.ini
|
234
|
-
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
235
|
-
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
236
|
-
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
237
|
-
- test/resources/testproject-android/AndroidManifest.erb
|
238
|
-
- test/resources/testproject-android/AndroidManifest.xml
|
239
|
-
- test/resources/testproject-android/ExplicitLib/ExplicitLibUnit.pas
|
240
|
-
- test/resources/testproject-android/Rakefile.rb
|
241
|
-
- test/resources/testproject-android/TestProject.cfg
|
242
|
-
- test/resources/testproject-android/TestProject.cfg.1
|
243
|
-
- test/resources/testproject-android/TestProject.dpr
|
244
|
-
- test/resources/testproject-android/TestProject.rc
|
245
|
-
- test/resources/testproject-android/TestProject.res
|
246
|
-
- test/resources/testproject-android/TestProject.xe5.dproj
|
247
|
-
- test/resources/testproject-android/TestProject.xe7.dproj
|
248
|
-
- test/resources/testproject-android/external/module.ext
|
249
|
-
- test/resources/testproject-android/fmTest.fmx
|
250
|
-
- test/resources/testproject-android/fmTest.pas
|
251
|
-
- test/resources/testproject-android/lib/AnyLib/LibUnit.pas
|
252
|
-
- test/resources/testproject-android/local.resources.txt
|
253
|
-
- test/resources/testproject-android/release.dcc.cfg
|
254
|
-
- test/resources/testproject-android/resources.rc
|
255
|
-
- test/resources/testproject-android/resources.res
|
256
247
|
- test/resources/testproject/ExplicitLib/ExplicitLibUnit.pas
|
257
|
-
- test/resources/testproject/Rakefile.rb
|
258
248
|
- test/resources/testproject/lib/AnyLib/LibUnit.pas
|
259
249
|
- test/resources/testproject/local.resources.txt
|
250
|
+
- test/resources/testproject/Rakefile.rb
|
260
251
|
- test/resources/testproject/release.dcc.cfg
|
261
252
|
- test/resources/testproject/resources.rc
|
262
|
-
- test/resources/testproject/resources.res
|
263
253
|
- test/resources/testproject/testproject.2006.bdsproj
|
264
254
|
- test/resources/testproject/testproject.2007.dproj
|
265
255
|
- test/resources/testproject/testproject.2010.dproj
|
266
256
|
- test/resources/testproject/testproject.cfg
|
267
|
-
- test/resources/testproject/testproject.cfg.1
|
268
257
|
- test/resources/testproject/testproject.dpr
|
269
258
|
- test/resources/testproject/testproject.ico
|
270
|
-
- test/resources/testproject/testproject.rc
|
271
|
-
- test/resources/testproject/testproject.res
|
272
259
|
- test/resources/testproject/testproject.xe5.dproj
|
273
260
|
- test/resources/testproject/testproject.xe7.dproj
|
274
|
-
- test/
|
275
|
-
- test/
|
276
|
-
- test/
|
277
|
-
- test/
|
278
|
-
- test/
|
279
|
-
- test/
|
280
|
-
- test/
|
281
|
-
- test/
|
282
|
-
- test/
|
283
|
-
- test/
|
284
|
-
- test/
|
285
|
-
- test/
|
286
|
-
- test/
|
287
|
-
- test/
|
288
|
-
- test/test-zip.rb
|
261
|
+
- test/resources/testproject-android/AndroidManifest.erb
|
262
|
+
- test/resources/testproject-android/external/module.ext
|
263
|
+
- test/resources/testproject-android/fmTest.fmx
|
264
|
+
- test/resources/testproject-android/fmTest.pas
|
265
|
+
- test/resources/testproject-android/local.resources.txt
|
266
|
+
- test/resources/testproject-android/Rakefile.rb
|
267
|
+
- test/resources/testproject-android/release.dcc.cfg
|
268
|
+
- test/resources/testproject-android/resources.rc
|
269
|
+
- test/resources/testproject-android/TestProject.dpr
|
270
|
+
- test/resources/testproject-android/TestProject.xe5.dproj
|
271
|
+
- test/resources/testproject-android/TestProject.xe7.dproj
|
272
|
+
- test/resources/libstask/lib/level-1/level-2-1/level-3-1/.gitkeep
|
273
|
+
- test/resources/libstask/lib/level-1/level-2-1/level-3-2/.gitkeep
|
274
|
+
- test/resources/libstask/lib/level-1/level-2-2/.gitkeep
|
checksums.yaml
DELETED
@@ -1,7 +0,0 @@
|
|
1
|
-
---
|
2
|
-
SHA1:
|
3
|
-
metadata.gz: e926c0c307918011140c697d230543014c50d47b
|
4
|
-
data.tar.gz: 47cf9c8485d77efba1506e467f8ba62660d83e11
|
5
|
-
SHA512:
|
6
|
-
metadata.gz: 5223331ea692ffa7f91ccf2fc737a4bd1212066bc0abd5f74586ccf74683b8bb848226d51ad0bfd1e2f2d1f9ecadd4371cb96d419a87adc925c1d47de01b1d6d
|
7
|
-
data.tar.gz: 0ab626b04ea1cad286cfabd22503479b1504259300f74d6b392f93485663ece42753241af4f9dfaf2473dc1b1c55d1fec6883bd322909b09a43cd49b346f0a06
|
data/Gemfile.lock
DELETED
@@ -1,26 +0,0 @@
|
|
1
|
-
PATH
|
2
|
-
remote: .
|
3
|
-
specs:
|
4
|
-
rake-delphi (0.0.14)
|
5
|
-
|
6
|
-
GEM
|
7
|
-
remote: https://rubygems.org/
|
8
|
-
specs:
|
9
|
-
apktools (0.6.0)
|
10
|
-
rubyzip
|
11
|
-
inifile (3.0.0)
|
12
|
-
rake (10.0.4)
|
13
|
-
rubyzip (0.9.9)
|
14
|
-
xml-simple (1.1.4)
|
15
|
-
|
16
|
-
PLATFORMS
|
17
|
-
ruby
|
18
|
-
|
19
|
-
DEPENDENCIES
|
20
|
-
apktools
|
21
|
-
bundler (~> 1.3)
|
22
|
-
inifile
|
23
|
-
rake (~> 10.0.4)
|
24
|
-
rake-delphi!
|
25
|
-
rubyzip (~> 0.9.9)
|
26
|
-
xml-simple
|
data/Messages.txt
DELETED
@@ -1,336 +0,0 @@
|
|
1
|
-
Build
|
2
|
-
Checking project dependencies...
|
3
|
-
Building HW.dproj (Debug, Android)
|
4
|
-
brcc32 command line for "HW.vrc"
|
5
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\cgrc.exe -c65001 HW.vrc -foHW.res
|
6
|
-
dcc command line for "HW.dpr"
|
7
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\dccaarm.exe -$O- --no-config -B -Q -TX.so -AGenerics.Collections=System.Generics.Collections;
|
8
|
-
Generics.Defaults=System.Generics.Defaults;WinTypes=Winapi.Windows;WinProcs=Winapi.Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE -DDEBUG
|
9
|
-
-E.\Android\Debug -I"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad
|
10
|
-
studio\12.0\lib\Android\Release" -LE"C:\Users\Public\Documents\RAD Studio\12.0\Bpl\Android" -LN"C:\Users\Public\Documents\RAD
|
11
|
-
Studio\12.0\Dcp\Android" -NU.\Android\Debug -NSSystem;Xml;Data;Datasnap;Web;Soap; -O"c:\program files (x86)\embarcadero\rad
|
12
|
-
studio\12.0\lib\Android\Release" -R"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -U"c:\program files (x86)\embarcadero\rad
|
13
|
-
studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" --libpath:"C:\Users\Public\Documents\RAD
|
14
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\platforms\android-14\arch-arm\usr\lib" --linker:"C:\Users\Public\Documents\RAD
|
15
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe" -V -VN
|
16
|
-
--linker-option:" -L \"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\sources\cxx-stl\stlport\libs\armeabi-v7a\""
|
17
|
-
-NO.\Android\Debug HW.dpr
|
18
|
-
Success
|
19
|
-
Elapsed time: 00:00:14.5
|
20
|
-
Deploy
|
21
|
-
paclient command line
|
22
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
23
|
-
paclient command line
|
24
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
25
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
26
|
-
paclient command line
|
27
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
28
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
29
|
-
paclient command line
|
30
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
31
|
-
studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
32
|
-
paclient command line
|
33
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD
|
34
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
35
|
-
paclient command line
|
36
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
37
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
38
|
-
paclient command line
|
39
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe
|
40
|
-
--put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
41
|
-
paclient command line
|
42
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
43
|
-
paclient command line
|
44
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
45
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
46
|
-
paclient command line
|
47
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
48
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
49
|
-
paclient command line
|
50
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD
|
51
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
52
|
-
|
53
|
-
paclient command line
|
54
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD
|
55
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD
|
56
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
57
|
-
Failed
|
58
|
-
Elapsed time: 00:00:06.7
|
59
|
-
Deploy
|
60
|
-
paclient command line
|
61
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
62
|
-
paclient command line
|
63
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
64
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
65
|
-
paclient command line
|
66
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
67
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
68
|
-
paclient command line
|
69
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
70
|
-
studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
71
|
-
paclient command line
|
72
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD
|
73
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
74
|
-
paclient command line
|
75
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
76
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
77
|
-
paclient command line
|
78
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe
|
79
|
-
--put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
80
|
-
paclient command line
|
81
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
82
|
-
paclient command line
|
83
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
84
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
85
|
-
paclient command line
|
86
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad
|
87
|
-
studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
88
|
-
paclient command line
|
89
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD
|
90
|
-
Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
91
|
-
|
92
|
-
paclient command line
|
93
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD
|
94
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD
|
95
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
96
|
-
paclient command line
|
97
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --jarsign="C:\Program
|
98
|
-
Files\Java\jdk1.7.0_51\bin\JarSigner.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,androiddebugkey,C:\Users\kriv.RARUS\AppData\Roaming\Embarcadero\BDS\12.0\debug.keystore,MD5withRSA,SHA1,android,android"
|
99
|
-
|
100
|
-
paclient command line
|
101
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --zipalign="C:\Users\Public\Documents\RAD
|
102
|
-
Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\tools\ZipAlign.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,.\Android\Debug\HW\bin\HW.apk,4"
|
103
|
-
|
104
|
-
Success
|
105
|
-
Elapsed time: 00:00:11.3
|
106
|
-
Output
|
107
|
-
Build started 11.06.2014 16:04:11.
|
108
|
-
__________________________________________________
|
109
|
-
Project "C:\OCP\Temp\Android_Hello_Word\HW.dproj" (Build target(s)):
|
110
|
-
Target CreateProjectDirectories:
|
111
|
-
Creating directory ".\Android\Debug".
|
112
|
-
Target BuildVersionResource:
|
113
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\cgrc.exe -c65001 HW.vrc -foHW.res
|
114
|
-
CodeGear Resource Compiler/Binder
|
115
|
-
Version 1.2.2 Copyright (c) 2008-2012 Embarcadero Technologies Inc.
|
116
|
-
|
117
|
-
Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0
|
118
|
-
|
119
|
-
Copyright (C) Microsoft Corporation. All rights reserved.
|
120
|
-
|
121
|
-
|
122
|
-
Deleting file "HW.vrc".
|
123
|
-
Target _PasCoreCompile:
|
124
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\dccaarm.exe -$O- --no-config -B -Q -TX.so -AGenerics.Collections=System.Generics.Collections;Generics.Defaults=System.Generics.Defaults;WinTypes=Winapi.Windows;WinProcs=Winapi.Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE -DDEBUG -E.\Android\Debug -I"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -LE"C:\Users\Public\Documents\RAD Studio\12.0\Bpl\Android" -LN"C:\Users\Public\Documents\RAD Studio\12.0\Dcp\Android" -NU.\Android\Debug -NSSystem;Xml;Data;Datasnap;Web;Soap; -O"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -R"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" -U"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\debug";"c:\program files (x86)\embarcadero\rad studio\12.0\lib\Android\Release" --libpath:"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\platforms\android-14\arch-arm\usr\lib" --linker:"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-ld.exe" -V -VN --linker-option:" -L \"C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\sources\cxx-stl\stlport\libs\armeabi-v7a\"" -NO.\Android\Debug HW.dpr
|
125
|
-
Build succeeded.
|
126
|
-
0 Warning(s)
|
127
|
-
0 Error(s)
|
128
|
-
Time Elapsed 00:00:14.45
|
129
|
-
Build started 11.06.2014 16:04:53.
|
130
|
-
__________________________________________________
|
131
|
-
Project "C:\OCP\Temp\Android_Hello_Word\HW.dproj" (Deploy target(s)):
|
132
|
-
Target _CleanRemoteDir:
|
133
|
-
Cleaning APK Output Directory: .\Android\Debug\HW
|
134
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
135
|
-
Platform Assistant Client Version 4.2.0.05
|
136
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
137
|
-
|
138
|
-
Deleting file(s)...
|
139
|
-
Total file(s) deleted: 0 file(s) 0 dir(s)
|
140
|
-
Deleting file "C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp".
|
141
|
-
Target _DeployFiles:
|
142
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
143
|
-
Platform Assistant Client Version 4.2.0.05
|
144
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
145
|
-
|
146
|
-
Copying file(s)...
|
147
|
-
Total file(s) copied: 1 file(s) 863 bytes
|
148
|
-
Target _DeployFiles:
|
149
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
150
|
-
Platform Assistant Client Version 4.2.0.05
|
151
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
152
|
-
|
153
|
-
Copying file(s)...
|
154
|
-
Total file(s) copied: 1 file(s) 1а921 bytes
|
155
|
-
Target _DeployFiles:
|
156
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
157
|
-
Platform Assistant Client Version 4.2.0.05
|
158
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
159
|
-
|
160
|
-
Copying file(s)...
|
161
|
-
Total file(s) copied: 1 file(s) 1а343а644 bytes
|
162
|
-
Target _DeployFiles:
|
163
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
164
|
-
Platform Assistant Client Version 4.2.0.05
|
165
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
166
|
-
|
167
|
-
Copying file(s)...
|
168
|
-
Total file(s) copied: 1 file(s) 268а812 bytes
|
169
|
-
Target _DeployFiles:
|
170
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
171
|
-
Platform Assistant Client Version 4.2.0.05
|
172
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
173
|
-
|
174
|
-
Copying file(s)...
|
175
|
-
Total file(s) copied: 1 file(s) 1а034 bytes
|
176
|
-
Target _DeployFiles:
|
177
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
178
|
-
Platform Assistant Client Version 4.2.0.05
|
179
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
180
|
-
|
181
|
-
Copying file(s)...
|
182
|
-
Total file(s) copied: 1 file(s) 2а343 bytes
|
183
|
-
Target _DeployFiles:
|
184
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
185
|
-
Platform Assistant Client Version 4.2.0.05
|
186
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
187
|
-
|
188
|
-
Copying file(s)...
|
189
|
-
Total file(s) copied: 1 file(s) 51а785а360 bytes
|
190
|
-
Target _DeployFiles:
|
191
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
192
|
-
Platform Assistant Client Version 4.2.0.05
|
193
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
194
|
-
|
195
|
-
Copying file(s)...
|
196
|
-
Total file(s) copied: 1 file(s) 1а532 bytes
|
197
|
-
Target _DeployFiles:
|
198
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
199
|
-
Platform Assistant Client Version 4.2.0.05
|
200
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
201
|
-
|
202
|
-
Copying file(s)...
|
203
|
-
Total file(s) copied: 1 file(s) 2а674 bytes
|
204
|
-
Target __CreateAPKDirs:
|
205
|
-
Creating directory ".\Android\Debug\HW\bin".
|
206
|
-
Creating directory ".\Android\Debug\HW\assets".
|
207
|
-
Target __StripOutputFile:
|
208
|
-
Creating directory ".\Android\Debug\HW\debug".
|
209
|
-
Copying file from ".\Android\Debug\HW\library\lib\armeabi\libHW.so" to ".\Android\Debug\HW\debug\libHW.so".
|
210
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
211
|
-
Platform Assistant Client Version 4.2.0.05
|
212
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
213
|
-
|
214
|
-
Target _AndroidPackaging:
|
215
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
216
|
-
Platform Assistant Client Version 4.2.0.05
|
217
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
218
|
-
|
219
|
-
Build FAILED.
|
220
|
-
0 Warning(s)
|
221
|
-
0 Error(s)
|
222
|
-
Time Elapsed 00:00:06.70
|
223
|
-
Build started 11.06.2014 16:05:07.
|
224
|
-
__________________________________________________
|
225
|
-
Project "C:\OCP\Temp\Android_Hello_Word\HW.dproj" (Deploy target(s)):
|
226
|
-
Target _CleanRemoteDir:
|
227
|
-
Cleaning APK Output Directory: .\Android\Debug\HW
|
228
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --Clean=".\Android\Debug\HW,C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp"
|
229
|
-
Platform Assistant Client Version 4.2.0.05
|
230
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
231
|
-
|
232
|
-
Deleting file(s)...
|
233
|
-
Total file(s) deleted: 2 file(s) 3 dir(s)
|
234
|
-
Deleting file "C:\OCP\Temp\Android_Hello_Word\HW._@emb_.tmp".
|
235
|
-
Target _DeployFiles:
|
236
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_36x36.png,.\Android\Debug\HW\res\drawable-ldpi\,1,ic_launcher.png"
|
237
|
-
Platform Assistant Client Version 4.2.0.05
|
238
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
239
|
-
|
240
|
-
Copying file(s)...
|
241
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
242
|
-
Target _DeployFiles:
|
243
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_96x96.png,.\Android\Debug\HW\res\drawable-xhdpi\,1,ic_launcher.png"
|
244
|
-
Platform Assistant Client Version 4.2.0.05
|
245
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
246
|
-
|
247
|
-
Copying file(s)...
|
248
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
249
|
-
Target _DeployFiles:
|
250
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\lib\android\debug\classes.dex,.\Android\Debug\HW\classes\,1,classes.dex"
|
251
|
-
Platform Assistant Client Version 4.2.0.05
|
252
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
253
|
-
|
254
|
-
Copying file(s)...
|
255
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
256
|
-
Target _DeployFiles:
|
257
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\prebuilt\android-arm\gdbserver\gdbserver,.\Android\Debug\HW\library\lib\armeabi\,1,gdbserver"
|
258
|
-
Platform Assistant Client Version 4.2.0.05
|
259
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
260
|
-
|
261
|
-
Copying file(s)...
|
262
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
263
|
-
Target _DeployFiles:
|
264
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_48x48.png,.\Android\Debug\HW\res\drawable-mdpi\,1,ic_launcher.png"
|
265
|
-
Platform Assistant Client Version 4.2.0.05
|
266
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
267
|
-
|
268
|
-
Copying file(s)...
|
269
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
270
|
-
Target _DeployFiles:
|
271
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\AndroidManifest.xml,.\Android\Debug\HW\,1,AndroidManifest.xml"
|
272
|
-
Platform Assistant Client Version 4.2.0.05
|
273
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
274
|
-
|
275
|
-
Copying file(s)...
|
276
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
277
|
-
Target _DeployFiles:
|
278
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="Android\Debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\,1,libHW.so"
|
279
|
-
Platform Assistant Client Version 4.2.0.05
|
280
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
281
|
-
|
282
|
-
Copying file(s)...
|
283
|
-
Total file(s) copied: 1 file(s) 51а785а360 bytes
|
284
|
-
Target _DeployFiles:
|
285
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_72x72.png,.\Android\Debug\HW\res\drawable-hdpi\,1,ic_launcher.png"
|
286
|
-
Platform Assistant Client Version 4.2.0.05
|
287
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
288
|
-
|
289
|
-
Copying file(s)...
|
290
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
291
|
-
Target _DeployFiles:
|
292
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --put="c:\program files (x86)\embarcadero\rad studio\12.0\bin\Artwork\Android\FM_LauncherIcon_144x144.png,.\Android\Debug\HW\res\drawable-xxhdpi\,1,ic_launcher.png"
|
293
|
-
Platform Assistant Client Version 4.2.0.05
|
294
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
295
|
-
|
296
|
-
Copying file(s)...
|
297
|
-
Total file(s) copied: 0 file(s) 0 bytes
|
298
|
-
Target __CreateAPKDirs:
|
299
|
-
Creating directory ".\Android\Debug\HW\bin".
|
300
|
-
Creating directory ".\Android\Debug\HW\assets".
|
301
|
-
Target __StripOutputFile:
|
302
|
-
Creating directory ".\Android\Debug\HW\debug".
|
303
|
-
Copying file from ".\Android\Debug\HW\library\lib\armeabi\libHW.so" to ".\Android\Debug\HW\debug\libHW.so".
|
304
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --stripdebug="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\android-ndk-r8e\toolchains\arm-linux-androideabi-4.6\prebuilt\windows\bin\arm-linux-androideabi-strip.exe,.\Android\Debug\HW\debug\libHW.so,.\Android\Debug\HW\library\lib\armeabi\libHW.so"
|
305
|
-
Platform Assistant Client Version 4.2.0.05
|
306
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
307
|
-
|
308
|
-
Target _AndroidPackaging:
|
309
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --aaptpackage="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\build-tools\android-4.2.2\Aapt.exe,.\Android\Debug\HW\library,.\Android\Debug\HW\classes,.\Android\Debug\HW\res,.\Android\Debug\HW\assets,.\Android\Debug\HW\AndroidManifest.xml,C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\platforms\android-17\android.jar,.\Android\Debug\HW\bin\HW-unsigned.apk"
|
310
|
-
Platform Assistant Client Version 4.2.0.05
|
311
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
312
|
-
|
313
|
-
Target _AndroidSign:
|
314
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --jarsign="C:\Program Files\Java\jdk1.7.0_51\bin\JarSigner.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,androiddebugkey,C:\Users\kriv.RARUS\AppData\Roaming\Embarcadero\BDS\12.0\debug.keystore,MD5withRSA,SHA1,android,android"
|
315
|
-
Platform Assistant Client Version 4.2.0.05
|
316
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
317
|
-
|
318
|
-
Target _AndroidZipAlign:
|
319
|
-
c:\program files (x86)\embarcadero\rad studio\12.0\bin\paclient.exe --zipalign="C:\Users\Public\Documents\RAD Studio\12.0\PlatformSDKs\adt-bundle-windows-x86-20130522\sdk\tools\ZipAlign.exe,.\Android\Debug\HW\bin\HW-unsigned.apk,.\Android\Debug\HW\bin\HW.apk,4"
|
320
|
-
Platform Assistant Client Version 4.2.0.05
|
321
|
-
Copyright (c) 2010-2013 Embarcadero Technologies, Inc.
|
322
|
-
|
323
|
-
Target __DeleteUnsignedAPKFile:
|
324
|
-
Deleting file ".\Android\Debug\HW\bin\HW-unsigned.apk".
|
325
|
-
Build succeeded.
|
326
|
-
0 Warning(s)
|
327
|
-
0 Error(s)
|
328
|
-
Time Elapsed 00:00:11.28
|
329
|
-
Search for 'RTL220_UP'
|
330
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc [6]
|
331
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(357): RTL220_UP Defined when compiling with Delphi or C++Builder Personalities of BDS 8.0 or higher
|
332
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(745): {$DEFINE RTL220_UP}
|
333
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(999): {$IFDEF RTL230_UP} {$DEFINE RTL220_UP} {$ENDIF}
|
334
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(1000): {$IFDEF RTL220_UP} {$DEFINE RTL210_UP} {$ENDIF}
|
335
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(1304): {$IFDEF RTL220_UP}
|
336
|
-
C:\OCP\lib\Jedi\jcl\source\include\jedi\jedi.inc(1306): {$ENDIF RTL220_UP}
|
Binary file
|
@@ -1,62 +0,0 @@
|
|
1
|
-
#define VS_FF_DEBUG 0x00000001
|
2
|
-
#define VS_FF_PRERELEASE 0x00000002
|
3
|
-
#define VS_FF_PATCHED 0x00000004
|
4
|
-
#define VS_FF_PRIVATEBUILD 0x00000008
|
5
|
-
#define VS_FF_INFOINFERRED 0x00000010
|
6
|
-
#define VS_FF_SPECIALBUILD 0x00000020
|
7
|
-
|
8
|
-
#ifndef DEBUG
|
9
|
-
#define VER_DEBUG 0
|
10
|
-
#else
|
11
|
-
#define VER_DEBUG VS_FF_DEBUG
|
12
|
-
#endif
|
13
|
-
|
14
|
-
#ifndef RC
|
15
|
-
#define VER_PRERELEASE 0
|
16
|
-
#else
|
17
|
-
#define VER_PRERELEASE VS_FF_PRERELEASE
|
18
|
-
#endif
|
19
|
-
|
20
|
-
|
21
|
-
#define _FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
|
22
|
-
|
23
|
-
LANGUAGE 0x19, 0x01
|
24
|
-
#ifdef MAIN_ICON
|
25
|
-
MAINICON ICON "C:/cygwin/home/ashu/projects/MobileClientAlfaAuto/lib/rake-delphi/test/resources/testproject/testproject.ico"
|
26
|
-
#endif
|
27
|
-
1 VERSIONINFO
|
28
|
-
FILEVERSION 0,0,0,0
|
29
|
-
PRODUCTVERSION 1,2,3,4
|
30
|
-
FILEOS 0x40004
|
31
|
-
FILETYPE 0x1
|
32
|
-
FILEFLAGSMASK _FILEFLAGS
|
33
|
-
FILEFLAGS _FILEFLAGS
|
34
|
-
BEGIN
|
35
|
-
BLOCK "StringFileInfo"
|
36
|
-
BEGIN
|
37
|
-
BLOCK "041904E3"
|
38
|
-
BEGIN
|
39
|
-
VALUE "CompanyName", "Rake\0"
|
40
|
-
VALUE "FileDescription", "Test rake-delphi project XE7 description\0"
|
41
|
-
VALUE "FileVersion", "0.0.0.0\0"
|
42
|
-
VALUE "InternalName", "testproject.exe\0"
|
43
|
-
VALUE "LegalCopyright", "Copyright. ��������\0"
|
44
|
-
VALUE "LegalTrademarks", "Trademark. �������� �����\0"
|
45
|
-
VALUE "OriginalFilename", "testproject.exe\0"
|
46
|
-
VALUE "ProductName", "Test rake-delphi project XE7 product name\0"
|
47
|
-
VALUE "ProductVersion", "1.2.3.4\0"
|
48
|
-
VALUE "Comments", "Test project comment\0"
|
49
|
-
#ifdef DEBUG
|
50
|
-
VALUE "DebugBuild", "DebugBuild\0"
|
51
|
-
#endif
|
52
|
-
#ifdef RC
|
53
|
-
VALUE "ReleaseCandidate", "\0"
|
54
|
-
#endif
|
55
|
-
END
|
56
|
-
END
|
57
|
-
|
58
|
-
BLOCK "VarFileInfo"
|
59
|
-
BEGIN
|
60
|
-
VALUE "Translation", 0x0419 0x04E3
|
61
|
-
END
|
62
|
-
END
|
Binary file
|
@@ -1,35 +0,0 @@
|
|
1
|
-
<?xml version="1.0" encoding="utf-8"?>
|
2
|
-
<!-- BEGIN_INCLUDE(manifest) -->
|
3
|
-
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
4
|
-
package="com.embarcadero.HelloWorld"
|
5
|
-
android:versionCode="2"
|
6
|
-
android:versionName="1.3.2.4">
|
7
|
-
|
8
|
-
<!-- This is the platform API where NativeActivity was introduced. -->
|
9
|
-
<uses-sdk android:minSdkVersion="9" />
|
10
|
-
|
11
|
-
<application android:persistent="False"
|
12
|
-
android:restoreAnyVersion="False"
|
13
|
-
android:label="HelloWorld"
|
14
|
-
android:installLocation="preferExternal"
|
15
|
-
android:debuggable="True"
|
16
|
-
android:largeHeap="False"
|
17
|
-
android:icon="@drawable/ic_launcher"
|
18
|
-
android:theme="@android:style/Theme.NoTitleBar">
|
19
|
-
<!-- Our activity is a subclass of the built-in NativeActivity framework class.
|
20
|
-
This will take care of integrating with our NDK code. -->
|
21
|
-
<activity android:name="com.embarcadero.firemonkey.FMXNativeActivity"
|
22
|
-
android:label="HelloWorld"
|
23
|
-
android:configChanges="orientation|keyboardHidden">
|
24
|
-
<!-- Tell NativeActivity the name of our .so -->
|
25
|
-
<meta-data android:name="android.app.lib_name"
|
26
|
-
android:value="TestProject" />
|
27
|
-
<intent-filter>
|
28
|
-
<action android:name="android.intent.action.MAIN" />
|
29
|
-
<category android:name="android.intent.category.LAUNCHER" />
|
30
|
-
</intent-filter>
|
31
|
-
</activity>
|
32
|
-
<receiver android:name="com.embarcadero.firemonkey.notifications.FMXNotificationAlarm" />
|
33
|
-
</application>
|
34
|
-
</manifest>
|
35
|
-
<!-- END_INCLUDE(manifest) -->
|
@@ -1,62 +0,0 @@
|
|
1
|
-
#define VS_FF_DEBUG 0x00000001
|
2
|
-
#define VS_FF_PRERELEASE 0x00000002
|
3
|
-
#define VS_FF_PATCHED 0x00000004
|
4
|
-
#define VS_FF_PRIVATEBUILD 0x00000008
|
5
|
-
#define VS_FF_INFOINFERRED 0x00000010
|
6
|
-
#define VS_FF_SPECIALBUILD 0x00000020
|
7
|
-
|
8
|
-
#ifndef DEBUG
|
9
|
-
#define VER_DEBUG 0
|
10
|
-
#else
|
11
|
-
#define VER_DEBUG VS_FF_DEBUG
|
12
|
-
#endif
|
13
|
-
|
14
|
-
#ifndef RC
|
15
|
-
#define VER_PRERELEASE 0
|
16
|
-
#else
|
17
|
-
#define VER_PRERELEASE VS_FF_PRERELEASE
|
18
|
-
#endif
|
19
|
-
|
20
|
-
|
21
|
-
#define _FILEFLAGS (VER_PRERELEASE|VER_DEBUG)
|
22
|
-
|
23
|
-
LANGUAGE 0x19, 0x01
|
24
|
-
#ifdef MAIN_ICON
|
25
|
-
MAINICON ICON "C:/cygwin/home/ashu/projects/MobileClientAlfaAuto/lib/rake-delphi/test/resources/testproject-android/TestProject.ico"
|
26
|
-
#endif
|
27
|
-
1 VERSIONINFO
|
28
|
-
FILEVERSION 1,3,2,4
|
29
|
-
PRODUCTVERSION 1,2,3,4
|
30
|
-
FILEOS 0x40004
|
31
|
-
FILETYPE 0x1
|
32
|
-
FILEFLAGSMASK _FILEFLAGS
|
33
|
-
FILEFLAGS _FILEFLAGS
|
34
|
-
BEGIN
|
35
|
-
BLOCK "StringFileInfo"
|
36
|
-
BEGIN
|
37
|
-
BLOCK "041904E3"
|
38
|
-
BEGIN
|
39
|
-
VALUE "CompanyName", "Rake\0"
|
40
|
-
VALUE "FileDescription", "Test rake-delphi project XE5 description\0"
|
41
|
-
VALUE "FileVersion", "1.3.2.4\0"
|
42
|
-
VALUE "InternalName", "testproject.exe\0"
|
43
|
-
VALUE "LegalCopyright", "Copyright. ��������\0"
|
44
|
-
VALUE "LegalTrademarks", "Trademark. �������� �����\0"
|
45
|
-
VALUE "OriginalFilename", "testproject.exe\0"
|
46
|
-
VALUE "ProductName", "Test rake-delphi project XE5 product name\0"
|
47
|
-
VALUE "ProductVersion", "1.2.3.4\0"
|
48
|
-
VALUE "Comments", "Test project comment\0"
|
49
|
-
#ifdef DEBUG
|
50
|
-
VALUE "DebugBuild", "DebugBuild\0"
|
51
|
-
#endif
|
52
|
-
#ifdef RC
|
53
|
-
VALUE "ReleaseCandidate", "\0"
|
54
|
-
#endif
|
55
|
-
END
|
56
|
-
END
|
57
|
-
|
58
|
-
BLOCK "VarFileInfo"
|
59
|
-
BEGIN
|
60
|
-
VALUE "Translation", 0x0419 0x04E3
|
61
|
-
END
|
62
|
-
END
|
Binary file
|
Binary file
|