poetry-plugin-ivcap 0.6.0__py3-none-any.whl → 0.6.1__py3-none-any.whl
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.
- poetry_plugin_ivcap/constants.py +1 -1
- poetry_plugin_ivcap/docker.py +1 -1
- poetry_plugin_ivcap/ivcap.py +3 -1
- poetry_plugin_ivcap/plugin.py +1 -1
- poetry_plugin_ivcap/types.py +1 -1
- poetry_plugin_ivcap/util.py +1 -1
- {poetry_plugin_ivcap-0.6.0.dist-info → poetry_plugin_ivcap-0.6.1.dist-info}/METADATA +1 -1
- poetry_plugin_ivcap-0.6.1.dist-info/RECORD +12 -0
- poetry_plugin_ivcap-0.6.0.dist-info/RECORD +0 -12
- {poetry_plugin_ivcap-0.6.0.dist-info → poetry_plugin_ivcap-0.6.1.dist-info}/AUTHORS.md +0 -0
- {poetry_plugin_ivcap-0.6.0.dist-info → poetry_plugin_ivcap-0.6.1.dist-info}/LICENSE +0 -0
- {poetry_plugin_ivcap-0.6.0.dist-info → poetry_plugin_ivcap-0.6.1.dist-info}/WHEEL +0 -0
- {poetry_plugin_ivcap-0.6.0.dist-info → poetry_plugin_ivcap-0.6.1.dist-info}/entry_points.txt +0 -0
poetry_plugin_ivcap/constants.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (c) 2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
2
|
+
# Copyright (c) 2025-2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
3
3
|
# Use of this source code is governed by a BSD-style license that can be
|
|
4
4
|
# found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
5
5
|
#
|
poetry_plugin_ivcap/docker.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (c) 2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
2
|
+
# Copyright (c) 2025-2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
3
3
|
# Use of this source code is governed by a BSD-style license that can be
|
|
4
4
|
# found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
5
5
|
#
|
poetry_plugin_ivcap/ivcap.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (c) 2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
2
|
+
# Copyright (c) 2025-2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
3
3
|
# Use of this source code is governed by a BSD-style license that can be
|
|
4
4
|
# found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
5
5
|
#
|
|
@@ -44,6 +44,7 @@ def service_register(data, line):
|
|
|
44
44
|
|
|
45
45
|
try:
|
|
46
46
|
policy = get_policy(data, line)
|
|
47
|
+
service_id = get_service_id(data, False, line)
|
|
47
48
|
up_cmd = ["ivcap", "aspect", "update", "--policy", policy, service_id, "-f", tmp_path]
|
|
48
49
|
try:
|
|
49
50
|
line(f"<debug>Running: {' '.join(up_cmd)} </debug>")
|
|
@@ -95,6 +96,7 @@ def tool_register(data, line):
|
|
|
95
96
|
|
|
96
97
|
try:
|
|
97
98
|
policy = get_policy(data, line)
|
|
99
|
+
service_id = get_service_id(data, False, line)
|
|
98
100
|
up_cmd = ["ivcap", "aspect", "update", "--policy", policy, service_id, "-f", tmp_path]
|
|
99
101
|
try:
|
|
100
102
|
line(f"<debug>Running: {' '.join(up_cmd)} </debug>")
|
poetry_plugin_ivcap/plugin.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (c) 2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
2
|
+
# Copyright (c) 2025-2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
3
3
|
# Use of this source code is governed by a BSD-style license that can be
|
|
4
4
|
# found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
5
5
|
#
|
poetry_plugin_ivcap/types.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (c) 2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
2
|
+
# Copyright (c) 2025-2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
3
3
|
# Use of this source code is governed by a BSD-style license that can be
|
|
4
4
|
# found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
5
5
|
#
|
poetry_plugin_ivcap/util.py
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#
|
|
2
|
-
# Copyright (c) 2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
2
|
+
# Copyright (c) 2025-2026 Commonwealth Scientific and Industrial Research Organisation (CSIRO). All rights reserved.
|
|
3
3
|
# Use of this source code is governed by a BSD-style license that can be
|
|
4
4
|
# found in the LICENSE file. See the AUTHORS file for names of contributors.
|
|
5
5
|
#
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
poetry_plugin_ivcap/constants.py,sha256=NllPHV4w3YDQmEPBz_rKveXiwOqGowih17XoEgkKJrM,1331
|
|
2
|
+
poetry_plugin_ivcap/docker.py,sha256=CIPKbHJ9yQDZMYqKPFZRGz3wpmrHvIoIZgPyluiryCU,7711
|
|
3
|
+
poetry_plugin_ivcap/ivcap.py,sha256=zAqrv5987rD2bcNH5R1wm-JWiGsZnT3qh7BlF9o4PSQ,16454
|
|
4
|
+
poetry_plugin_ivcap/plugin.py,sha256=gZ92h3ZRFpj9cM8ZqRxWF4gHmEir4B0nXBprLDMGYdw,6567
|
|
5
|
+
poetry_plugin_ivcap/types.py,sha256=m8UEziKacHBe2LLV-UlkNYwn3vZ4CnEDtxDwPkraR8c,1356
|
|
6
|
+
poetry_plugin_ivcap/util.py,sha256=5mKL5sCmtHe2e0pENda2HZNxpwe6VUMC-cOWEIrL2Bc,3434
|
|
7
|
+
poetry_plugin_ivcap-0.6.1.dist-info/AUTHORS.md,sha256=s9xR4_HAHQgbNlj505LViebt5AtACQmhPf92aJvNYgg,88
|
|
8
|
+
poetry_plugin_ivcap-0.6.1.dist-info/LICENSE,sha256=dsQrDPPwW7iJs9pxahgJKDW8RNPf5FyXG70MFUlxcuk,1587
|
|
9
|
+
poetry_plugin_ivcap-0.6.1.dist-info/METADATA,sha256=l53tGbI8BiLLXfdqiYkWwoQOhU60-3gEhkovx8dFhOE,3390
|
|
10
|
+
poetry_plugin_ivcap-0.6.1.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
11
|
+
poetry_plugin_ivcap-0.6.1.dist-info/entry_points.txt,sha256=3xagEFBkGgrVe8WyjmhlHLr4JDEWPN_W4DwxnIBWbNY,74
|
|
12
|
+
poetry_plugin_ivcap-0.6.1.dist-info/RECORD,,
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
poetry_plugin_ivcap/constants.py,sha256=1p7QAqdSyY5z0RqQUYtyyFEWqGEZy0NOppvJz093HLA,1326
|
|
2
|
-
poetry_plugin_ivcap/docker.py,sha256=WQwCvMYm804eLjZcinQ0ZpB2QFf4xDpME35NSuIDeo8,7706
|
|
3
|
-
poetry_plugin_ivcap/ivcap.py,sha256=5QHhMqVM1kZEL3S4LEwD9q7pI3l7huo2atqexmCDPVk,16339
|
|
4
|
-
poetry_plugin_ivcap/plugin.py,sha256=tMSEXEyP0YkUxkiKo2WRtcNarEBucLX07qy-itywQiw,6562
|
|
5
|
-
poetry_plugin_ivcap/types.py,sha256=LVB5D6LEyehls2BEWm-QVEQ2lQgGrJMKnfHbyTVPt2w,1351
|
|
6
|
-
poetry_plugin_ivcap/util.py,sha256=3DKFkTJkDClfz-j9nVnosWZKse62Les4w7kGKn0xcy4,3429
|
|
7
|
-
poetry_plugin_ivcap-0.6.0.dist-info/AUTHORS.md,sha256=s9xR4_HAHQgbNlj505LViebt5AtACQmhPf92aJvNYgg,88
|
|
8
|
-
poetry_plugin_ivcap-0.6.0.dist-info/LICENSE,sha256=dsQrDPPwW7iJs9pxahgJKDW8RNPf5FyXG70MFUlxcuk,1587
|
|
9
|
-
poetry_plugin_ivcap-0.6.0.dist-info/METADATA,sha256=YPje2ptaqu33nKcHcgsP-oV1bY_PbHpLuDGUeaJ0xl4,3390
|
|
10
|
-
poetry_plugin_ivcap-0.6.0.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
11
|
-
poetry_plugin_ivcap-0.6.0.dist-info/entry_points.txt,sha256=3xagEFBkGgrVe8WyjmhlHLr4JDEWPN_W4DwxnIBWbNY,74
|
|
12
|
-
poetry_plugin_ivcap-0.6.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{poetry_plugin_ivcap-0.6.0.dist-info → poetry_plugin_ivcap-0.6.1.dist-info}/entry_points.txt
RENAMED
|
File without changes
|