|
15 | 15 | # within the dependency chain. We use these stamp files so that the |
16 | 16 | # checksumming approach properly invalidates the entire chain of dependencies |
17 | 17 | # when build files change (whereas just using "deps" in go-task doesn't fully |
18 | | -# work for multiple levels of dependencies). So, for example, if the libgeoip |
19 | | -# dependency changes, rebuilding it properly cascades and triggers a rebuild |
20 | | -# of openresty (1st level dependency) and luarocks (2nd level dependency). |
| 18 | +# work for multiple levels of dependencies). So, for example, if the |
| 19 | +# libmaxminddb dependency changes, rebuilding it properly cascades and |
| 20 | +# triggers a rebuild of openresty (1st level dependency) and luarocks (2nd |
| 21 | +# level dependency). |
21 | 22 | # - For colorized output we use the "unbuffer" tool to force color output on |
22 | 23 | # some commands, since Task doesn't easily support detecting colorized output |
23 | 24 | # (as of the output changes in 2.0.3): |
@@ -91,14 +92,14 @@ tasks: |
91 | 92 | - ./build/work/stamp/deps/libfastjson |
92 | 93 | method: checksum |
93 | 94 |
|
94 | | - deps:libgeoip: |
| 95 | + deps:libmaxminddb: |
95 | 96 | cmds: |
96 | | - - ./tasks/deps/libgeoip |
| 97 | + - ./tasks/deps/libmaxminddb |
97 | 98 | sources: |
98 | | - - ./tasks/deps/libgeoip |
| 99 | + - ./tasks/deps/libmaxminddb |
99 | 100 | - ./tasks/helpers.sh |
100 | 101 | generates: |
101 | | - - ./build/work/stamp/deps/libgeoip |
| 102 | + - ./build/work/stamp/deps/libmaxminddb |
102 | 103 | method: checksum |
103 | 104 |
|
104 | 105 | deps:luarocks: |
@@ -136,11 +137,11 @@ tasks: |
136 | 137 |
|
137 | 138 | deps:openresty: |
138 | 139 | deps: |
139 | | - - deps:libgeoip |
| 140 | + - deps:libmaxminddb |
140 | 141 | cmds: |
141 | 142 | - ./tasks/deps/openresty |
142 | 143 | sources: |
143 | | - - ./build/work/stamp/deps/libgeoip |
| 144 | + - ./build/work/stamp/deps/libmaxminddb |
144 | 145 | - ./tasks/deps/openresty |
145 | 146 | - ./tasks/helpers.sh |
146 | 147 | generates: |
@@ -299,19 +300,6 @@ tasks: |
299 | 300 | - ./build/work/stamp/app-deps/lua/cmsgpack |
300 | 301 | method: checksum |
301 | 302 |
|
302 | | - app-deps:lua:iconv: |
303 | | - deps: |
304 | | - - deps:luarocks |
305 | | - cmds: |
306 | | - - ./tasks/app-deps/lua/iconv |
307 | | - sources: |
308 | | - - ./build/work/stamp/deps/luarocks |
309 | | - - ./tasks/app-deps/lua/iconv |
310 | | - - ./tasks/helpers.sh |
311 | | - generates: |
312 | | - - ./build/work/stamp/app-deps/lua/iconv |
313 | | - method: checksum |
314 | | - |
315 | 303 | app-deps:lua:icu-date: |
316 | 304 | deps: |
317 | 305 | - deps:luarocks |
@@ -517,7 +505,6 @@ tasks: |
517 | 505 | - task: app-deps:admin-ui:yarn |
518 | 506 | - task: app-deps:lua:argparse |
519 | 507 | - task: app-deps:lua:cmsgpack |
520 | | - - task: app-deps:lua:iconv |
521 | 508 | - task: app-deps:lua:icu-date |
522 | 509 | - task: app-deps:lua:inspect |
523 | 510 | - task: app-deps:lua:libcidr-ffi |
|
0 commit comments