|
1 | 1 | [submodule "libsodium/libsodium"] |
2 | 2 | path = libsodium/libsodium |
3 | 3 | url = https://github.com/jedisct1/libsodium.git |
| 4 | + # libsodium doesn't tag new releases since 0.18.0, 'stable' branch is considered |
| 5 | + # to be the latest stable release. See: |
| 6 | + # https://github.com/jedisct1/libsodium/issues/1041#issuecomment-799812417 |
| 7 | + # However since idf_component.yml had the version already set to 0.20.0, |
| 8 | + # we can't update the version automatically (it would be set it back to 0.18.0~n) |
| 9 | + # autoupdate = false |
4 | 10 | [submodule "cbor/tinycbor"] |
5 | 11 | path = cbor/tinycbor |
6 | 12 | url = https://github.com/intel/tinycbor.git |
| 13 | + autoupdate = true |
| 14 | + autoupdate-branch = main |
| 15 | + autoupdate-tag-glob = v[0-9]*.[0-9]*.[0-9]* |
| 16 | + autoupdate-manifest = cbor/idf_component.yml |
| 17 | + autoupdate-ver-regex = v([0-9]+).([0-9]+).([0-9]+) |
7 | 18 | [submodule "nghttp/nghttp2"] |
8 | 19 | path = nghttp/nghttp2 |
9 | 20 | url = https://github.com/nghttp2/nghttp2.git |
| 21 | + autoupdate = true |
| 22 | + autoupdate-branch = master |
| 23 | + autoupdate-tag-glob = v[0-9]*.[0-9]*.[0-9]* |
| 24 | + autoupdate-manifest = nghttp/idf_component.yml |
| 25 | + autoupdate-ver-regex = v([0-9]+).([0-9]+).([0-9]+) |
10 | 26 | [submodule "expat/expat"] |
11 | 27 | path = expat/expat |
12 | 28 | url = https://github.com/libexpat/libexpat.git |
| 29 | + autoupdate = true |
| 30 | + autoupdate-branch = master |
| 31 | + autoupdate-tag-glob = R_[0-9]*_[0-9]*_[0-9]* |
| 32 | + autoupdate-manifest = expat/idf_component.yml |
| 33 | + autoupdate-ver-regex = R_([0-9]+)_([0-9]+)_([0-9]+) |
13 | 34 | [submodule "coap/libcoap"] |
14 | 35 | path = coap/libcoap |
15 | 36 | url = https://github.com/obgm/libcoap.git |
| 37 | + autoupdate = true |
| 38 | + autoupdate-branch = develop |
| 39 | + autoupdate-tag-glob = v[0-9]*.[0-9]*.[0-9]* |
| 40 | + autoupdate-include-lightweight = true |
| 41 | + autoupdate-manifest = coap/idf_component.yml |
| 42 | + autoupdate-ver-regex = v([0-9]+).([0-9]+).([0-9]+) |
16 | 43 | [submodule "usb/usb_host_uvc/libuvc"] |
17 | 44 | path = usb/usb_host_uvc/libuvc |
18 | 45 | url = https://github.com/libuvc/libuvc.git |
| 46 | + autoupdate = true |
| 47 | + autoupdate-branch = master |
| 48 | + autoupdate-tag-glob = v[0-9]*.[0-9]*.[0-9]* |
| 49 | + autoupdate-include-lightweight = true |
| 50 | + # Not updating the manifest automatically, |
| 51 | + # since the component version is ahead of the upstream version |
19 | 52 | [submodule "eigen/eigen"] |
20 | 53 | path = eigen/eigen |
21 | 54 | url = https://gitlab.com/libeigen/eigen.git |
| 55 | + autoupdate = true |
| 56 | + autoupdate-branch = 3.4 |
| 57 | + autoupdate-tag-glob = [0-9]*.[0-9]*.[0-9]* |
| 58 | + autoupdate-include-lightweight = true |
| 59 | + autoupdate-manifest = eigen/idf_component.yml |
| 60 | + autoupdate-ver-regex = ([0-9]+).([0-9]+).([0-9]+) |
22 | 61 | [submodule "fmt/fmt"] |
23 | 62 | path = fmt/fmt |
24 | 63 | url = https://github.com/fmtlib/fmt.git |
| 64 | + autoupdate = true |
| 65 | + autoupdate-branch = master |
| 66 | + autoupdate-tag-glob = [0-9]*.[0-9]*.[0-9]* |
| 67 | + autoupdate-include-lightweight = true |
| 68 | + autoupdate-manifest = fmt/idf_component.yml |
| 69 | + autoupdate-ver-regex = ([0-9]+).([0-9]+).([0-9]+) |
25 | 70 | [submodule "esp_delta_ota/detools"] |
26 | 71 | path = esp_delta_ota/detools |
27 | 72 | url = https://github.com/eerimoq/detools.git |
| 73 | + # not updating automatically, as this is not an upstream repo |
| 74 | + # but a tool used by the component |
28 | 75 | [submodule "quirc/quirc"] |
29 | 76 | path = quirc/quirc |
30 | 77 | url = https://github.com/dlbeer/quirc.git |
| 78 | + autoupdate = true |
| 79 | + autoupdate-branch = master |
| 80 | + autoupdate-tag-glob = v[0-9]*.[0-9]* |
| 81 | + autoupdate-include-lightweight = true |
| 82 | + autoupdate-manifest = quirc/idf_component.yml |
| 83 | + autoupdate-ver-regex = v([0-9]+).([0-9]+) |
31 | 84 | [submodule "zlib/zlib"] |
32 | 85 | path = zlib/zlib |
33 | 86 | url = https://github.com/madler/zlib.git |
| 87 | + autoupdate = true |
| 88 | + autoupdate-branch = master |
| 89 | + autoupdate-tag-glob = v[0-9]*.[0-9]*.[0-9]* |
| 90 | + autoupdate-manifest = zlib/idf_component.yml |
| 91 | + autoupdate-ver-regex = v([0-9]+).([0-9]+).([0-9]+) |
34 | 92 | [submodule "libpng/libpng"] |
35 | 93 | path = libpng/libpng |
36 | 94 | url = https://github.com/glennrp/libpng.git |
| 95 | + autoupdate = true |
| 96 | + autoupdate-branch = libpng16 |
| 97 | + autoupdate-include-lightweight = true |
| 98 | + autoupdate-tag-glob = v[0-9]*.[0-9]*.[0-9]* |
| 99 | + autoupdate-manifest = libpng/idf_component.yml |
| 100 | + autoupdate-ver-regex = v([0-9]+).([0-9]+).([0-9]+) |
0 commit comments