blob: fe96055efa5f9bcca3541d1e0e9093ad61cf3731 (
plain)
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
|
(.module:
[lux #*
[abstract
[monad (#+ do)]]
[control
[pipe (#+ do>)]
["." try (#+ Try)]
[concurrency
["." promise (#+ Promise) ("#\." monad)]]
["<>" parser
["<.>" xml]]]
[data
[binary (#+ Binary)]
[text
["%" format (#+ format)]
["." encoding]]
[collection
["." set]]
[format
["." binary]
["." tar]
["." xml]]]
[time
["." instant (#+ Instant)]]
[world
["." file]
["." console (#+ Console)]]]
[program
[compositor
["." export]]]
["." // #_
["#." clean]
["/#" // #_
[command (#+ Command)]
["/" profile]
["#." action (#+ Action)]
["#." pom]
["#." hash]
["#." package]
["#." dependency
["#/." deployment]
["#/." status (#+ Status)]]
["#." repository (#+ Repository)
[identity (#+ Identity)]
["#/." remote]
["#/." origin]]
["#." metadata
["#/." artifact]
["#/." snapshot]]
["#." artifact (#+ Artifact)
["#/." extension (#+ Extension)]
["#/." type]]]])
(def: #export (do! console repository fs artifact profile)
(-> (Console Promise) (Repository Promise) (file.System Promise) Artifact (Command Any))
(do {! ///action.monad}
[library (|> profile
(get@ #/.sources)
set.to_list
(export.library fs)
(\ ! map (binary.run tar.writer)))
pom (\ promise.monad wrap (///pom.write profile))
_ (///dependency/deployment.one
repository
[artifact ///artifact/type.lux_library]
{#///package.origin (#///repository/origin.Remote "")
#///package.library [library
(///dependency/status.verified library)]
#///package.pom [pom
(|> pom
(\ xml.codec encode)
(\ encoding.utf8 encode)
///dependency/status.verified)]})]
(console.write_line //clean.success console)))
|