ScriptCollection 4.2.61__py3-none-any.whl → 4.2.63__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.
- ScriptCollection/ScriptCollectionCore.py +9 -18
- ScriptCollection/TFCPS/TFCPS_Tools_General.py +2 -1
- {scriptcollection-4.2.61.dist-info → scriptcollection-4.2.63.dist-info}/METADATA +1 -1
- {scriptcollection-4.2.61.dist-info → scriptcollection-4.2.63.dist-info}/RECORD +7 -7
- {scriptcollection-4.2.61.dist-info → scriptcollection-4.2.63.dist-info}/WHEEL +0 -0
- {scriptcollection-4.2.61.dist-info → scriptcollection-4.2.63.dist-info}/entry_points.txt +0 -0
- {scriptcollection-4.2.61.dist-info → scriptcollection-4.2.63.dist-info}/top_level.txt +0 -0
|
@@ -36,7 +36,7 @@ from .ProgramRunnerBase import ProgramRunnerBase
|
|
|
36
36
|
from .ProgramRunnerPopen import ProgramRunnerPopen
|
|
37
37
|
from .SCLog import SCLog, LogLevel
|
|
38
38
|
|
|
39
|
-
version = "4.2.
|
|
39
|
+
version = "4.2.63"
|
|
40
40
|
__version__ = version
|
|
41
41
|
|
|
42
42
|
class VSCodeWorkspaceShellTask:
|
|
@@ -1657,25 +1657,16 @@ class ScriptCollectionCore:
|
|
|
1657
1657
|
self.run_program("docker", f"container rm -f {container_name}")
|
|
1658
1658
|
|
|
1659
1659
|
@GeneralUtilities.check_arguments
|
|
1660
|
-
def
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1660
|
+
def get_latest_apt_package_version_in_debian(self, image: str,package) -> str:
|
|
1661
|
+
#docker run --rm -it debian:13.4-slim bash -c "apt update && apt list -a tor"
|
|
1662
|
+
output=self.run_with_epew("docker", f"run --rm -it {image} bash -c \"apt --color=false update && apt --color=false list -a tor\"",os.getcwd(),encode_argument_in_base64=True)
|
|
1663
|
+
stdout=output[1]
|
|
1664
|
+
version_line=[line.strip() for line in GeneralUtilities.string_to_lines(stdout) if GeneralUtilities.string_has_nonwhitespace_content(line) and line.startswith(package+"/")]
|
|
1665
|
+
GeneralUtilities.assert_condition(len(version_line) ==1, f"No version found for package '{package}' in image '{image}'.")
|
|
1666
|
+
result = version_line[0].split(" ")[1]
|
|
1667
|
+
return result
|
|
1664
1668
|
|
|
1665
1669
|
@GeneralUtilities.check_arguments
|
|
1666
|
-
def get_latest_tor_version_of_debian_repository(self, debian_version: str) -> str:
|
|
1667
|
-
package_url: str = f"https://deb.torproject.org/torproject.org/dists/{debian_version}/main/binary-amd64/Packages"
|
|
1668
|
-
headers = {'Cache-Control': 'no-cache'}
|
|
1669
|
-
r = requests.get(package_url, timeout=5, headers=headers)
|
|
1670
|
-
if r.status_code != 200:
|
|
1671
|
-
raise ValueError(f"Checking for latest tor package resulted in HTTP-response-code {r.status_code}.")
|
|
1672
|
-
lines = GeneralUtilities.string_to_lines(GeneralUtilities.bytes_to_string(r.content))
|
|
1673
|
-
version_line_prefix = "Version: "
|
|
1674
|
-
version_content_line = [line for line in lines if line.startswith(version_line_prefix)][1]
|
|
1675
|
-
version_with_overhead = version_content_line[len(version_line_prefix):]
|
|
1676
|
-
tor_version = version_with_overhead.split("~")[0]
|
|
1677
|
-
return tor_version
|
|
1678
|
-
|
|
1679
1670
|
def run_testcases_for_python_project(self, repository_folder: str):
|
|
1680
1671
|
self.assert_is_git_repository(repository_folder)
|
|
1681
1672
|
self.run_program("coverage", "run -m pytest", repository_folder)
|
|
@@ -1176,7 +1176,7 @@ class TFCPS_Tools_General:
|
|
|
1176
1176
|
applicationimage_folder = os.path.join(artifacts_folder, "BuildResult_OCIImage")
|
|
1177
1177
|
codeunit_version = self.get_version_of_codeunit(os.path.join(codeunit_folder, f"{codeunitname}.codeunit.xml"))
|
|
1178
1178
|
if remote_image_name is None:
|
|
1179
|
-
remote_image_name = codeunitname
|
|
1179
|
+
remote_image_name = codeunitname.lower()
|
|
1180
1180
|
tar_files=[f for f in GeneralUtilities.get_direct_files_of_folder(applicationimage_folder) if f.endswith(".tar")]
|
|
1181
1181
|
target_image_address=f"{registry}/{remote_image_name}"
|
|
1182
1182
|
tar_files_with_platforms: list[tuple[str, str, str]] = []
|
|
@@ -1201,6 +1201,7 @@ class TFCPS_Tools_General:
|
|
|
1201
1201
|
self.push_docker_build_artifact_as_multi_arch_artifact(tar_files_with_platforms,target_image_address, "v"+codeunit_version)
|
|
1202
1202
|
self.push_docker_build_artifact_as_multi_arch_artifact(tar_files_with_platforms,target_image_address, "latest")
|
|
1203
1203
|
if push_readme:
|
|
1204
|
+
GeneralUtilities.assert_file_exists(os.path.join(codeunit_folder, "ReadMe.md"))
|
|
1204
1205
|
self.__sc.run_program_with_retry("docker-pushrm", target_image_address, codeunit_folder)
|
|
1205
1206
|
|
|
1206
1207
|
def push_docker_build_artifact_as_multi_arch_artifact(self,tar_files: list[tuple[str, str, str]], image_address: str, tag: str):
|
|
@@ -9,7 +9,7 @@ ScriptCollection/ProgramRunnerMock.py,sha256=uTu-aFle1W_oKjeQEmuPsFPQpvo0kRf2FrR
|
|
|
9
9
|
ScriptCollection/ProgramRunnerPopen.py,sha256=BPY7-ZMIlqT7JOKz8qlB5c0laF2Js-ijzqk09GxZC48,3821
|
|
10
10
|
ScriptCollection/ProgramRunnerSudo.py,sha256=_khC3xuTdrPoLluBJZWfldltmmuKltABJPcbjZSFW-4,4835
|
|
11
11
|
ScriptCollection/SCLog.py,sha256=8TRy1LeYMsPOIuWUcnUNNbO5pd-cNBS-3cn-kdzP8FU,4768
|
|
12
|
-
ScriptCollection/ScriptCollectionCore.py,sha256=
|
|
12
|
+
ScriptCollection/ScriptCollectionCore.py,sha256=NLyAOUDNO50aPdyCLxiougxEvCW2pScNc_9twGu7MOQ,176461
|
|
13
13
|
ScriptCollection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
14
|
ScriptCollection/OCIImages/AbstractImageHandler.py,sha256=83qDMILwxhH9DbC0sb358Vu8PXEysmJJyap_6gECZqs,1627
|
|
15
15
|
ScriptCollection/OCIImages/OCIImageManager.py,sha256=aBogkSXNDyi8NO11N-s03nuFJEv7PyJ-wjHuYYeZfvs,6662
|
|
@@ -30,7 +30,7 @@ ScriptCollection/TFCPS/TFCPS_Generic.py,sha256=O-0guM_LJCcZmPZJhMgTvXD2RXUJEBWWv
|
|
|
30
30
|
ScriptCollection/TFCPS/TFCPS_MergeToMain.py,sha256=-Ev9D3bZDlUk2WFQhcmvzQ3FCS97OdsVUd0koAdmpZc,7474
|
|
31
31
|
ScriptCollection/TFCPS/TFCPS_MergeToStable.py,sha256=Ajfy2pLajTuU6UpwItHt4C2a-gLF3gPc4z6BktL3Cio,22163
|
|
32
32
|
ScriptCollection/TFCPS/TFCPS_PreBuildCodeunitsScript.py,sha256=f0Uq1cA_4LvmL72cal0crrbKF6PcxL13D9wBKuQ1YBw,2328
|
|
33
|
-
ScriptCollection/TFCPS/TFCPS_Tools_General.py,sha256=
|
|
33
|
+
ScriptCollection/TFCPS/TFCPS_Tools_General.py,sha256=9HhVAcCOHoqR8MG1aYdDWKW66qdsEclcdJkyvSJ9ikA,98448
|
|
34
34
|
ScriptCollection/TFCPS/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
35
35
|
ScriptCollection/TFCPS/Docker/TFCPS_CodeUnitSpecific_Docker.py,sha256=xMuj-GoEwDnmUWbmdF536dNQL7jnTaw9aQ-gcDqUkgQ,11743
|
|
36
36
|
ScriptCollection/TFCPS/Docker/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -47,8 +47,8 @@ ScriptCollection/TFCPS/NodeJS/TFCPS_CodeUnitSpecific_NodeJS.py,sha256=kL37qJNwH6
|
|
|
47
47
|
ScriptCollection/TFCPS/NodeJS/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
48
48
|
ScriptCollection/TFCPS/Python/TFCPS_CodeUnitSpecific_Python.py,sha256=KFKDdfV9DFHE5n7TI6m1Ra1Qw2JwL_JQjneBfqcRQ_w,13467
|
|
49
49
|
ScriptCollection/TFCPS/Python/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
-
scriptcollection-4.2.
|
|
51
|
-
scriptcollection-4.2.
|
|
52
|
-
scriptcollection-4.2.
|
|
53
|
-
scriptcollection-4.2.
|
|
54
|
-
scriptcollection-4.2.
|
|
50
|
+
scriptcollection-4.2.63.dist-info/METADATA,sha256=U0XcfHCOeHXgJllYyGgFI5AlSmRqEvUn3SlyQnwg8_o,7690
|
|
51
|
+
scriptcollection-4.2.63.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
52
|
+
scriptcollection-4.2.63.dist-info/entry_points.txt,sha256=27XwAJEcaMEc1be0Ec1vKHCbiU4Ziu8jKL-SqsrYOIQ,4680
|
|
53
|
+
scriptcollection-4.2.63.dist-info/top_level.txt,sha256=hY2hOVH0V0Ce51WB76zKkIWTUNwMUdHo4XDkR2vYVwg,17
|
|
54
|
+
scriptcollection-4.2.63.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|