1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
|
--!A cross-platform build utility based on Lua
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--
-- Copyright (C) 2015-2020, TBOOX Open Source Group.
--
-- @author ruki
-- @file package.lua
--
-- imports
import("core.base.semver")
import("core.base.option")
import("core.base.global")
import("core.base.hashset")
import("core.base.scheduler")
import("private.async.runjobs")
import("lib.detect.cache", {alias = "detectcache"})
import("core.project.project")
import("core.package.package", {alias = "core_package"})
import("action")
import("devel.git")
import("net.fasturl")
import("repository")
--
-- parse require string
--
-- add_requires("zlib")
-- add_requires("tbox >=1.5.1", "zlib >=1.2.11")
-- add_requires("zlib master")
-- add_requires("xmake-repo@tbox >=1.5.1")
-- add_requires("aaa_bbb_ccc >=1.5.1 <1.6.0", {optional = true, alias = "mypkg", debug = true})
-- add_requires("tbox", {config = {coroutine = true, abc = "xxx"}})
-- add_requires("xmake::xmake-repo@tbox >=1.5.1")
-- add_requires("conan::OpenSSL/1.0.2n@conan/stable")
-- add_requires("brew::pcre2/libpcre2-8 10.x", {alias = "pcre2"})
--
-- {system = nil/true/false}:
-- nil: get local or system packages
-- true: only get system package
-- false: only get local packages
--
function _parse_require(require_str, requires_extra, parentinfo)
-- get it from cache first
local requires = _g._REQUIRES or {}
local required = requires[require_str]
if required then
return required.packagename, required.requireinfo
end
-- split package and version info
local splitinfo = require_str:split('%s+')
assert(splitinfo and #splitinfo > 0, "require(\"%s\"): invalid!", require_str)
-- get package info
local packageinfo = splitinfo[1]
-- get version
--
-- e.g.
--
-- latest
-- >=1.5.1 <1.6.0
-- master || >1.4
-- ~1.2.3
-- ^1.1
--
local version = "latest"
if #splitinfo > 1 then
version = table.concat(table.slice(splitinfo, 2), " ")
end
assert(version, "require(\"%s\"): unknown version!", require_str)
-- require third-party packages? e.g. brew::pcre2/libpcre2-8
local reponame = nil
local packagename = nil
if require_str:find("::", 1, true) then
packagename = packageinfo
else
-- get repository name, package name and package url
local pos = packageinfo:lastof('@', true)
if pos then
-- get package name
packagename = packageinfo:sub(pos + 1)
-- get reponame
reponame = packageinfo:sub(1, pos - 1)
else
packagename = packageinfo
end
end
-- check package name
assert(packagename, "require(\"%s\"): the package name not found!", require_str)
-- get require extra
local require_extra = {}
if requires_extra then
require_extra = requires_extra[require_str] or {}
end
-- get required building configurations
local require_build_configs = require_extra.configs or require_extra.config
if require_extra.debug then
require_build_configs = require_build_configs or {}
require_build_configs.debug = true
end
-- require packge in the current host platform
if require_extra.host then
require_extra.plat = os.host()
require_extra.arch = os.arch()
end
-- init required item
local required = {}
parentinfo = parentinfo or {}
required.packagename = packagename
required.requireinfo =
{
originstr = require_str,
reponame = reponame,
version = version,
plat = require_extra.plat, -- require package in the given platform
arch = require_extra.arch, -- require package in the given architecture
alias = require_extra.alias, -- set package alias name
group = require_extra.group, -- only uses the first package in same group
system = require_extra.system, -- default: true, we can set it to disable system package manually
option = require_extra.option, -- set and attach option
configs = require_build_configs, -- the required building configurations
default = require_extra.default, -- default: true, we can set it to disable package manually
optional = parentinfo.optional or require_extra.optional -- default: false, inherit parentinfo.optional
}
-- save this required item to cache
requires[require_str] = required
_g._REQUIRES = requires
-- ok
return required.packagename, required.requireinfo
end
-- load package package from system
function _load_package_from_system(packagename)
return core_package.load_from_system(packagename)
end
-- load package package from project
function _load_package_from_project(packagename)
return core_package.load_from_project(packagename)
end
-- load package package from repositories
function _load_package_from_repository(packagename, reponame)
-- get package directory from the given package name
local packagedir, repo = repository.packagedir(packagename, reponame)
if packagedir then
-- load it
return core_package.load_from_repository(packagename, repo, packagedir)
end
end
-- search packages from repositories
function _search_packages(name)
local packages = {}
for _, packageinfo in ipairs(repository.searchdirs(name)) do
local package = core_package.load_from_repository(packageinfo.name, packageinfo.repo, packageinfo.packagedir)
if package then
table.insert(packages, package)
end
end
return packages
end
-- sort package deps
--
-- e.g.
--
-- a.deps = b
-- b.deps = c
--
-- orderdeps: c -> b -> a
--
function _sort_packagedeps(package)
local orderdeps = {}
for _, dep in pairs(package:deps()) do
table.join2(orderdeps, _sort_packagedeps(dep))
table.insert(orderdeps, dep)
end
return orderdeps
end
-- add some builtin configurations to package
function _add_package_configurations(package)
package:add("configs", "debug", {builtin = true, description = "Enable debug symbols.", default = false, type = "boolean"})
package:add("configs", "shared", {builtin = true, description = "Enable shared library.", default = false, type = "boolean"})
package:add("configs", "cflags", {builtin = true, description = "Set the C compiler flags."})
package:add("configs", "cxflags", {builtin = true, description = "Set the C/C++ compiler flags."})
package:add("configs", "cxxflags", {builtin = true, description = "Set the C++ compiler flags."})
package:add("configs", "asflags", {builtin = true, description = "Set the assembler flags."})
package:add("configs", "vs_runtime", {builtin = true, description = "Set vs compiler runtime.", default = "MT", values = {"MT", "MD"}})
end
-- select package version
function _select_package_version(package, requireinfo)
-- exists urls? otherwise be phony package (only as package group)
if #package:urls() > 0 then
-- has git url?
local has_giturl = false
for _, url in ipairs(package:urls()) do
if git.checkurl(url) then
has_giturl = true
break
end
end
-- select package version
local source = nil
local version = nil
local require_version = requireinfo.version
if #package:versions() > 0 and (require_version == "latest" or require_version:find('.', 1, true)) then -- select version?
version, source = semver.select(require_version, package:versions())
elseif has_giturl then -- select branch?
version, source = require_version ~= "latest" and require_version or "master", "branches"
else
raise("package(%s %s): not found!", package:name(), require_version)
end
return version, source
end
end
-- check the configurations of packages
--
-- package("pcre2")
-- add_configs("bitwidth", {description = "Set the code unit width.", default = "8", values = {"8", "16", "32"}})
-- add_configs("bitwidth", {type = "number", values = {8, 16, 32}})
-- add_configs("bitwidth", {restrict = function(value) if tonumber(value) < 100 then return true end})
--
function _check_package_configurations(package)
local configs_defined = {}
for _, name in ipairs(package:get("configs")) do
configs_defined[name] = package:extraconf("configs", name) or {}
end
for name, value in pairs(package:configs()) do
local conf = configs_defined[name]
if conf then
local config_type = conf.type or "string"
if type(value) ~= config_type then
raise("package(%s %s): invalid type(%s) for config(%s), need type(%s)!", package:name(), package:version_str(), type(value), name, config_type)
end
if conf.values then
local found = false
for _, config_value in ipairs(conf.values) do
if tostring(value) == tostring(config_value) then
found = true
break
end
end
if not found then
raise("package(%s %s): invalid value(%s) for config(%s), please run `xmake require --info %s` to get all valid values!", package:name(), package:version_str(), value, name, package:name())
end
end
if conf.restrict then
if not conf.restrict(value) then
raise("package(%s %s): invalid value(%s) for config(%s)!", package:name(), package:version_str(), value, name)
end
end
else
raise("package(%s %s): invalid config(%s), please run `xmake require --info %s` to get all configurations!", package:name(), package:version_str(), name, package:name())
end
end
end
-- load required packages
function _load_package(packagename, requireinfo, opt)
-- attempt to get it from cache first
opt = opt or {}
local packages = _g._PACKAGES or {}
local package = packages[packagename]
if package then
-- satisfy required version?
local version_required = _select_package_version(package, requireinfo)
if version_required and version_required ~= package:version_str() then
raise("package(%s): version conflict, '%s' does not satisfy '%s'!", packagename, package:version_str(), requireinfo.version)
end
return package
end
-- load package from project first
if os.isfile(os.projectfile()) then
package = _load_package_from_project(packagename)
end
-- load package from repositories
if not package then
package = _load_package_from_repository(packagename, requireinfo.reponame)
end
-- load package from system
if not package and opt.system ~= false then
package = _load_package_from_system(packagename)
end
-- check
assert(package, "package(%s) not found!", packagename)
-- select package version
local version, source = _select_package_version(package, requireinfo)
if version then
package:version_set(version, source)
end
-- save require info to package
package:requireinfo_set(requireinfo)
-- add some builtin configurations to package
_add_package_configurations(package)
-- check package configurations
_check_package_configurations(package)
-- do load for package
local on_load = package:script("load")
if on_load then
on_load(package)
end
-- load environments from the manifest to enable the environments of on_install()
package:envs_load()
-- save this package package to cache
packages[packagename] = package
_g._PACKAGES = packages
-- ok
return package
end
-- load all required packages
function _load_packages(requires, opt)
-- no requires?
if not requires or #requires == 0 then
return {}
end
-- load packages
local packages = {}
for _, requireinfo in ipairs(load_requires(requires, opt.requires_extra, opt.parentinfo)) do
-- load package
local package = _load_package(requireinfo.name, requireinfo.info, opt)
-- maybe package not found and optional
if package then
-- load dependent packages and save them first of this package
if not package._DEPS then
local deps = package:get("deps")
if deps and opt.nodeps ~= true then
-- get the extra configs dependent packages and inherit some builtin configs
local extraconfs = package:extraconf("deps") or {}
if not package:config("shared") then
for _, depstr in ipairs(deps) do
local depconf = extraconfs[depstr]
if not depconf then
depconf = {}
extraconfs[depstr] = depconf
end
depconf.configs = depconf.configs or {}
if depconf.configs.vs_runtime == nil then
depconf.configs.vs_runtime = package:config("vs_runtime")
end
end
end
-- load dependent packages and do not load system packages for package/deps()
local packagedeps = {}
for _, dep in ipairs(_load_packages(deps, {requires_extra = extraconfs, parentinfo = requireinfo.info, nodeps = opt.nodeps, system = false})) do
dep:parents_add(package)
table.insert(packages, dep)
packagedeps[dep:name()] = dep
end
package._DEPS = packagedeps
package._ORDERDEPS = table.unique(_sort_packagedeps(package))
end
end
-- save this package package
table.insert(packages, package)
end
end
return packages
end
-- sort packages urls
function _sort_packages_urls(packages)
-- add all urls to fasturl and prepare to sort them together
for _, package in pairs(packages) do
fasturl.add(package:urls())
end
-- sort and update urls
for _, package in pairs(packages) do
package:urls_set(fasturl.sort(package:urls()))
end
end
-- get package status string
function _get_package_status_str(package)
local status = {}
if package:debug() then
table.insert(status, "debug")
end
if package:optional() then
table.insert(status, "optional")
end
return #status > 0 and "(" .. table.concat(status, ", ") .. ")" or ""
end
-- get user confirm
function _get_confirm(packages)
-- no confirmed packages?
if #packages == 0 then
return true
end
-- get confirm
local confirm = utils.confirm({default = true, description = function ()
-- get packages for each repositories
local packages_repo = {}
local packages_group = {}
for _, package in ipairs(packages) do
-- achive packages by repository
local reponame = package:repo() and package:repo():name() or (package:isSys() and "system" or "")
if package:is3rd() then
reponame = package:name():lower():split("::")[1]
end
packages_repo[reponame] = packages_repo[reponame] or {}
table.insert(packages_repo[reponame], package)
-- achive packages by group
local group = package:group()
if group then
packages_group[group] = packages_group[group] or {}
table.insert(packages_group[group], package)
end
end
-- show tips
cprint("${bright color.warning}note: ${clear}try installing these packages (pass -y to skip confirm)?")
for reponame, packages in pairs(packages_repo) do
if reponame ~= "" then
print("in %s:", reponame)
end
local packages_showed = {}
for _, package in ipairs(packages) do
if not packages_showed[tostring(package)] then
local group = package:group()
if group and packages_group[group] and #packages_group[group] > 1 then
for idx, package_in_group in ipairs(packages_group[group]) do
cprint(" ${yellow}%s${clear} %s %s %s", idx == 1 and "->" or " or", package_in_group:name(), package_in_group:version_str() or "", _get_package_status_str(package_in_group))
packages_showed[tostring(package_in_group)] = true
end
packages_group[group] = nil
else
cprint(" ${yellow}->${clear} %s %s %s", package:name(), package:version_str() or "", _get_package_status_str(package))
packages_showed[tostring(package)] = true
end
end
end
end
end})
return confirm
end
-- patch some builtin dependent packages
function _patch_packages(packages_install, packages_download)
-- @NOTE use git.apply instead of patch
-- we can add some builtin packages like this
--[[
-- add package(patch)
local patched_package = nil
for _, package in ipairs(packages_install) do
if package:patches() then
patched_package = package
break
end
end
if patched_package then
local packages = load_packages("patch")
if packages and #packages > 0 then
-- install patch package
local package = packages[1]
if not package:fetch() then
packages_download[tostring(package)] = package
table.insert(packages_install, 1, package)
end
-- add dependences to ensure to be installed first
patched_package:deps_add(package)
end
end
]]
end
-- install packages
function _install_packages(packages_install, packages_download)
-- we need hide wait characters if is not a tty
local show_wait = io.isatty()
-- do install
local waitindex = 0
local waitchars = {'\\', '-', '/', '|'}
local packages_installing = {}
local packages_downloading = {}
local packages_pending = table.copy(packages_install)
local packages_in_group = {}
local installing_count = 0
local parallelize = true
runjobs("install_packages", function (index)
-- fetch a new package
local package = nil
while package == nil and #packages_pending > 0 do
for idx, pkg in ipairs(packages_pending) do
-- all dependences has been installed? we install it now
local ready = true
for _, dep in ipairs(pkg:orderdeps()) do
if not dep:exists() then
ready = false
end
end
local group = pkg:group()
if ready and group then
-- this group has been installed? skip it
local group_status = packages_in_group[group]
if group_status == 1 then
table.remove(packages_pending, idx)
break
-- this group is installing? wait it
elseif group_status == 0 then
ready = false
end
end
-- get a package with the ready status
if ready then
package = pkg
table.remove(packages_pending, idx)
break
end
end
if package == nil and #packages_pending > 0 then
scheduler.co_yield()
end
end
if package then
-- only install the first package in same group
local group = package:group()
if not group or not packages_in_group[group] then
-- disable parallelize?
if not package:parallelize() then
parallelize = false
end
if not parallelize then
while installing_count > 0 do
scheduler.co_yield()
end
end
installing_count = installing_count + 1
-- mark this group as 'installing'
if group then
packages_in_group[group] = 0
end
-- download this package first
local downloaded = true
if packages_download[tostring(package)] then
packages_downloading[index] = package
downloaded = action.download(package)
packages_downloading[index] = nil
end
-- install this package
packages_installing[index] = package
if downloaded then
action.install(package)
end
packages_installing[index] = nil
-- mark this group as 'installed' or 'failed'
if group then
packages_in_group[group] = package:exists() and 1 or -1
end
-- enable parallelize
parallelize = true
installing_count = installing_count - 1
end
end
packages_installing[index] = nil
packages_downloading[index] = nil
end, {total = #packages_install, comax = (option.get("verbose") or option.get("diagnosis")) and 1 or 4, timer = function (running_jobs_indices)
-- do not print progress info if be verbose
if option.get("verbose") or not show_wait then
return
end
-- update waitchar index
waitindex = ((waitindex + 1) % #waitchars)
-- make installing and downloading packages list
local installing = {}
local downloading = {}
for _, index in ipairs(running_jobs_indices) do
local package = packages_installing[index]
if package then
table.insert(installing, package:name())
end
local package = packages_downloading[index]
if package then
table.insert(downloading, package:name())
end
end
-- get waitobjs tips
local tips = nil
local waitobjs = scheduler.co_group_waitobjs("install_packages")
if waitobjs:size() > 0 then
local names = {}
for _, obj in waitobjs:keys() do
if obj:otype() == scheduler.OT_PROC then
table.insert(names, obj:name())
elseif obj:otype() == scheduler.OT_SOCK then
table.insert(names, "sock")
elseif obj:otype() == scheduler.OT_PIPE then
table.insert(names, "pipe")
end
end
names = table.unique(names)
if #names > 0 then
names = table.concat(names, ",")
if #names > 16 then
names = names:sub(1, 16) .. ".."
end
tips = string.format("(%d/%s)", waitobjs:size(), names)
end
end
-- trace
utils.clearline()
cprintf("${yellow} => ")
if #downloading > 0 then
cprintf("downloading ${magenta}%s", table.concat(downloading, ", "))
end
if #installing > 0 then
cprintf("%sinstalling ${magenta}%s", #downloading > 0 and ", " or "", table.concat(installing, ", "))
end
cprintf(" .. %s%s", tips and ("${dim}" .. tips .. "${clear} ") or "", waitchars[waitindex + 1])
io.flush()
end, exit = function(errors)
if errors then
utils.clearline()
io.flush()
end
end})
end
-- the cache directory
function cachedir()
return path.join(global.directory(), "cache", "packages")
end
-- load requires
function load_requires(requires, requires_extra, parentinfo)
-- parse requires
local requireinfos = {}
for _, require_str in ipairs(requires) do
-- parse require info
local packagename, requireinfo = _parse_require(require_str, requires_extra, parentinfo)
-- save this required package
table.insert(requireinfos, {name = packagename, info = requireinfo})
end
-- ok
return requireinfos
end
-- load all required packages
function load_packages(requires, opt)
opt = opt or {}
local unique = {}
local packages = {}
for _, package in ipairs(_load_packages(requires, opt)) do
-- remove repeat packages with same the package name and version
local key = package:name() .. (package:version_str() or "")
if not unique[key] then
table.insert(packages, package)
unique[key] = true
end
end
return packages
end
-- install packages
function install_packages(requires, opt)
-- init options
opt = opt or {}
-- load packages
local packages = load_packages(requires, opt)
-- fetch packages (with system) from local first
runjobs("fetch_packages", function (index)
local package = packages[index]
if package and (not option.get("force") or (option.get("shallow") and package:parents())) then
package:envs_enter()
package:fetch()
package:envs_leave()
end
end, {total = #packages})
-- filter packages
local packages_install = {}
local packages_download = {}
local packages_unsupported = {}
for _, package in ipairs(packages) do
if not package:exists() and (#package:urls() > 0 or package:script("install")) then
if package:supported() then
if #package:urls() > 0 then
packages_download[tostring(package)] = package
end
table.insert(packages_install, package)
elseif not package:optional() then
table.insert(packages_unsupported, package)
end
end
end
-- exists unsupported packages?
if #packages_unsupported > 0 then
-- show tips
cprint("${bright color.warning}note: ${clear}the following packages are unsupported for $(plat)/$(arch)!")
for _, package in ipairs(packages_unsupported) do
print(" -> %s %s", package:name(), package:version_str() or "")
end
raise()
end
-- patch some dependent builtin packages
_patch_packages(packages_install, packages_download)
-- get user confirm
if not _get_confirm(packages_install) then
local packages_must = {}
for _, package in ipairs(packages_install) do
if not package:optional() then
table.insert(packages_must, package:name())
end
end
if #packages_must > 0 then
raise("packages(%s): must be installed!", table.concat(packages_must, ", "))
else
-- continue other actions
return
end
end
-- sort package urls
_sort_packages_urls(packages_download)
-- install all required packages from repositories
_install_packages(packages_install, packages_download)
-- ok
return packages
end
-- uninstall packages
function uninstall_packages(requires, opt)
-- init options
opt = opt or {}
-- do not remove dependent packages
opt.nodeps = true
-- clear the detect cache
detectcache.clear()
-- remove all packages
local packages = {}
for _, instance in ipairs(load_packages(requires, opt)) do
if os.isfile(instance:manifest_file()) then
table.insert(packages, instance)
end
os.tryrm(instance:installdir())
end
return packages
end
-- export packages
function export_packages(requires, opt)
-- init options
opt = opt or {}
-- do not export dependent packages
opt.nodeps = true
-- get the export directory
local exportdir = assert(opt.exportdir)
-- export all packages
local packages = {}
for _, instance in ipairs(load_packages(requires, opt)) do
-- get the exported name
local name = instance:name():lower():gsub("::", "_")
if instance:version_str() then
name = name .. "_" .. instance:version_str()
end
name = name .. "_" .. instance:buildhash()
-- export this package
os.cp(instance:installdir(), path.join(exportdir, name))
table.insert(packages, instance)
end
return packages
end
-- search packages
function search_packages(names)
-- search all names
local results = {}
for _, name in ipairs(names) do
local packages = _search_packages(name)
if packages then
results[name] = packages
end
end
return results
end
|