@zlink-systems/zlink 0.17.3 → 0.17.5
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.
package/package.json
CHANGED
|
Binary file
|
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema": 1,
|
|
3
3
|
"package": "zlink-core",
|
|
4
|
-
"version": "0.17.
|
|
4
|
+
"version": "0.17.5",
|
|
5
5
|
"abiMajor": 0,
|
|
6
6
|
"runtime": {
|
|
7
|
-
"path": "lib/libzlink.so.0.17.
|
|
8
|
-
"sha256": "
|
|
7
|
+
"path": "lib/libzlink.so.0.17.5",
|
|
8
|
+
"sha256": "52facd448e380ab8a73e2a5fd2d65b089ebeeef9f8f5e017b9ad1046702f4586",
|
|
9
9
|
"soname": "libzlink.so.0"
|
|
10
10
|
},
|
|
11
11
|
"source": {
|
|
12
|
-
"revision": "
|
|
12
|
+
"revision": "766dd1bb6e860a45ac2268363b45e26533b1626b",
|
|
13
13
|
"dirty": false
|
|
14
14
|
},
|
|
15
15
|
"release": {
|
|
16
|
-
"tag": "core/v0.17.
|
|
17
|
-
"checksumsSha256": "
|
|
16
|
+
"tag": "core/v0.17.5",
|
|
17
|
+
"checksumsSha256": "172420beaa6c624c0df1a39f031479b4a1de94076e93cc97bb0951acee712501"
|
|
18
18
|
},
|
|
19
19
|
"files": [
|
|
20
20
|
{
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
},
|
|
28
28
|
{
|
|
29
29
|
"path": "include/zlink.h",
|
|
30
|
-
"sha256": "
|
|
30
|
+
"sha256": "c40101e8147a019bc789dba11ed31dbc4335005126923e2a14215519faac55cb"
|
|
31
31
|
},
|
|
32
32
|
{
|
|
33
33
|
"path": "include/zlink/common.h",
|
|
34
|
-
"sha256": "
|
|
34
|
+
"sha256": "9a5375199dc6a2757ad2c511823ecfa40fc1ede066e069f86876d8aa6cd23b32"
|
|
35
35
|
},
|
|
36
36
|
{
|
|
37
37
|
"path": "include/zlink/core/api.h",
|
|
@@ -51,23 +51,23 @@
|
|
|
51
51
|
},
|
|
52
52
|
{
|
|
53
53
|
"path": "lib/cmake/zlink/zlinkConfig.cmake",
|
|
54
|
-
"sha256": "
|
|
54
|
+
"sha256": "98d61a8a976ae0f6c19e4561c08fc411956ecc6b0f16cc79c2708650e20da72d"
|
|
55
55
|
},
|
|
56
56
|
{
|
|
57
57
|
"path": "lib/cmake/zlink/zlinkConfigVersion.cmake",
|
|
58
|
-
"sha256": "
|
|
58
|
+
"sha256": "caaa33fd119eb1ce0916288bb18589a4cae13d446ffa55d08f1cb391af506f90"
|
|
59
59
|
},
|
|
60
60
|
{
|
|
61
|
-
"path": "lib/libzlink.so.0.17.
|
|
62
|
-
"sha256": "
|
|
61
|
+
"path": "lib/libzlink.so.0.17.5",
|
|
62
|
+
"sha256": "52facd448e380ab8a73e2a5fd2d65b089ebeeef9f8f5e017b9ad1046702f4586"
|
|
63
63
|
},
|
|
64
64
|
{
|
|
65
65
|
"path": "share/zlink/release-checksums.txt",
|
|
66
|
-
"sha256": "
|
|
66
|
+
"sha256": "172420beaa6c624c0df1a39f031479b4a1de94076e93cc97bb0951acee712501"
|
|
67
67
|
},
|
|
68
68
|
{
|
|
69
69
|
"path": "share/zlink/release-provenance.txt",
|
|
70
|
-
"sha256": "
|
|
70
|
+
"sha256": "f9f4364c763f94bbbfb8a8ed969069d5c7b021ab15686ddc98452d39dca3c6a8"
|
|
71
71
|
}
|
|
72
72
|
]
|
|
73
73
|
}
|
package/scripts/resolve_core.js
CHANGED
|
@@ -36,7 +36,7 @@ if (coreSource === 'local') {
|
|
|
36
36
|
const configured = process.env.ZLINK_CORE_INSTALL_PREFIX
|
|
37
37
|
|| process.env.ZLINK_CORE_PACKAGE_PREFIX;
|
|
38
38
|
if (!configured || !path.isAbsolute(configured)) {
|
|
39
|
-
fail('ZLINK_CORE_INSTALL_PREFIX must name an absolute installed Core 0.17.
|
|
39
|
+
fail('ZLINK_CORE_INSTALL_PREFIX must name an absolute installed Core 0.17.5 package prefix');
|
|
40
40
|
}
|
|
41
41
|
|
|
42
42
|
prefix = fs.realpathSync(configured);
|
|
@@ -48,7 +48,7 @@ if (coreSource === 'local') {
|
|
|
48
48
|
const manifest = JSON.parse(fs.readFileSync(manifestPath, 'utf8'));
|
|
49
49
|
if (manifest.package !== 'zlink-core' || !/^\d+\.\d+\.\d+$/.test(manifest.version || '')
|
|
50
50
|
|| Number(manifest.abiMajor) !== 0) {
|
|
51
|
-
fail(`Installed Core package must have 0.17.
|
|
51
|
+
fail(`Installed Core package must have 0.17.5 provenance: ${manifestPath}`);
|
|
52
52
|
}
|
|
53
53
|
includeDir = path.join(prefix, 'include');
|
|
54
54
|
libraryDirs = [path.join(prefix, 'lib'), path.join(prefix, 'lib64')];
|
|
Binary file
|