ScriptCollection 4.2.63__py3-none-any.whl → 4.2.64__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.
@@ -1,4 +1,5 @@
1
1
  from datetime import timedelta, datetime
2
+ from functools import cmp_to_key
2
3
  import json
3
4
  import binascii
4
5
  import filecmp
@@ -36,7 +37,7 @@ from .ProgramRunnerBase import ProgramRunnerBase
36
37
  from .ProgramRunnerPopen import ProgramRunnerPopen
37
38
  from .SCLog import SCLog, LogLevel
38
39
 
39
- version = "4.2.63"
40
+ version = "4.2.64"
40
41
  __version__ = version
41
42
 
42
43
  class VSCodeWorkspaceShellTask:
@@ -1657,14 +1658,33 @@ class ScriptCollectionCore:
1657
1658
  self.run_program("docker", f"container rm -f {container_name}")
1658
1659
 
1659
1660
  @GeneralUtilities.check_arguments
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"
1661
+ def get_latest_apt_package_version_in_debian(self, image: str,package:str) -> str:
1662
+ #docker run --rm -it debian bash -c "apt update && apt list -a tor"
1662
1663
  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
1664
  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
1665
+ version_lines=[line.strip() for line in GeneralUtilities.string_to_lines(stdout) if GeneralUtilities.string_has_nonwhitespace_content(line) and line.startswith(package+"/")]
1666
+ GeneralUtilities.assert_condition(0<len(version_lines), f"No version found for package '{package}' in image '{image}'.")
1667
+ versions = [version_line.split(" ")[1] for version_line in version_lines]
1668
+ def my_comparer(a, b) -> int:
1669
+ # return:
1670
+ # -1 → a < b
1671
+ # 0 → a = b
1672
+ # 1 → a > b
1673
+ # dpkg --compare-versions <a> lt <b> → exit 0 wenn a < b
1674
+ def dpkg_compare(op: str) -> bool:
1675
+ result = self.run_program_argsasarray("docker", [ "run", "--rm",image, "dpkg", "--compare-versions", a, op, b],throw_exception_if_exitcode_is_not_zero=False)
1676
+ GeneralUtilities.assert_condition(result[1]==GeneralUtilities.empty_string)
1677
+ GeneralUtilities.assert_condition(result[2]==GeneralUtilities.empty_string)
1678
+ return result[0] == 0
1679
+
1680
+ if dpkg_compare("lt"): # a < b
1681
+ return -1
1682
+ elif dpkg_compare("gt"): # a > b
1683
+ return 1
1684
+ else:
1685
+ return 0
1686
+ sorted_versions = sorted(versions, key=cmp_to_key(my_comparer))
1687
+ return sorted_versions[-1]
1668
1688
 
1669
1689
  @GeneralUtilities.check_arguments
1670
1690
  def run_testcases_for_python_project(self, repository_folder: str):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: ScriptCollection
3
- Version: 4.2.63
3
+ Version: 4.2.64
4
4
  Summary: The ScriptCollection is the place for reusable scripts.
5
5
  Home-page: https://github.com/anionDev/ScriptCollection
6
6
  Author: Marius Göcke
@@ -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=NLyAOUDNO50aPdyCLxiougxEvCW2pScNc_9twGu7MOQ,176461
12
+ ScriptCollection/ScriptCollectionCore.py,sha256=x3BSwJfArWxqVQyeZu3ZXIw5ZjnRWhVdQN_Ct-WpsLU,177450
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
@@ -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.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,,
50
+ scriptcollection-4.2.64.dist-info/METADATA,sha256=UgOzaIjwaC2sYtjl9CVPDh9WvPjVX12aGE0xwk2xlD4,7690
51
+ scriptcollection-4.2.64.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
52
+ scriptcollection-4.2.64.dist-info/entry_points.txt,sha256=27XwAJEcaMEc1be0Ec1vKHCbiU4Ziu8jKL-SqsrYOIQ,4680
53
+ scriptcollection-4.2.64.dist-info/top_level.txt,sha256=hY2hOVH0V0Ce51WB76zKkIWTUNwMUdHo4XDkR2vYVwg,17
54
+ scriptcollection-4.2.64.dist-info/RECORD,,