ScriptCollection 3.5.86__py3-none-any.whl → 3.5.87__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/Executables.py +4 -4
- ScriptCollection/ScriptCollectionCore.py +11 -5
- {scriptcollection-3.5.86.dist-info → scriptcollection-3.5.87.dist-info}/METADATA +1 -1
- {scriptcollection-3.5.86.dist-info → scriptcollection-3.5.87.dist-info}/RECORD +7 -7
- {scriptcollection-3.5.86.dist-info → scriptcollection-3.5.87.dist-info}/WHEEL +0 -0
- {scriptcollection-3.5.86.dist-info → scriptcollection-3.5.87.dist-info}/entry_points.txt +0 -0
- {scriptcollection-3.5.86.dist-info → scriptcollection-3.5.87.dist-info}/top_level.txt +0 -0
ScriptCollection/Executables.py
CHANGED
@@ -376,17 +376,17 @@ def GenerateARC42ReferenceTemplate() -> int:
|
|
376
376
|
|
377
377
|
def CreateChangelogEntry() -> int:
|
378
378
|
parser = argparse.ArgumentParser()
|
379
|
-
parser.add_argument('-
|
379
|
+
parser.add_argument('-p', '--repositorypath', required=False, default=".")
|
380
380
|
parser.add_argument('-m', '--message', required=False, default="Updates.")
|
381
381
|
parser.add_argument('-c', '--commit', action='store_true', required=False, default=False)
|
382
382
|
parser.add_argument('-f', '--force', action='store_true', required=False, default=False)
|
383
383
|
args = parser.parse_args()
|
384
384
|
|
385
385
|
folder: str = None
|
386
|
-
if os.path.isabs(args.
|
387
|
-
folder = args.
|
386
|
+
if os.path.isabs(args.repositorypath):
|
387
|
+
folder = args.repositorypath
|
388
388
|
else:
|
389
|
-
folder = GeneralUtilities.resolve_relative_path(args.
|
389
|
+
folder = GeneralUtilities.resolve_relative_path(args.repositorypath, os.getcwd())
|
390
390
|
TasksForCommonProjectStructure().create_changelog_entry(folder, args.message, args.commit, args.force)
|
391
391
|
return 0
|
392
392
|
|
@@ -32,7 +32,7 @@ from .ProgramRunnerBase import ProgramRunnerBase
|
|
32
32
|
from .ProgramRunnerPopen import ProgramRunnerPopen
|
33
33
|
from .ProgramRunnerEpew import ProgramRunnerEpew, CustomEpewArgument
|
34
34
|
|
35
|
-
version = "3.5.
|
35
|
+
version = "3.5.87"
|
36
36
|
__version__ = version
|
37
37
|
|
38
38
|
|
@@ -1871,8 +1871,11 @@ DNS = {domain}
|
|
1871
1871
|
|
1872
1872
|
@GeneralUtilities.check_arguments
|
1873
1873
|
def wait_until_dotnet_package_is_available(self, package_name: str, package_version: str, source: str):
|
1874
|
-
|
1875
|
-
|
1874
|
+
try:
|
1875
|
+
while not self.dotnet_package_is_available(package_name, package_version, source):
|
1876
|
+
time.sleep(30)
|
1877
|
+
except:
|
1878
|
+
pass
|
1876
1879
|
|
1877
1880
|
@GeneralUtilities.check_arguments
|
1878
1881
|
def python_package_is_available(self, package_name: str, package_version: str, source: str):
|
@@ -1887,8 +1890,11 @@ DNS = {domain}
|
|
1887
1890
|
|
1888
1891
|
@GeneralUtilities.check_arguments
|
1889
1892
|
def wait_until_python_package_is_available(self, package_name: str, package_version: str, source: str):
|
1890
|
-
|
1891
|
-
|
1893
|
+
try:
|
1894
|
+
while not self.python_package_is_available(package_name, package_version, source):
|
1895
|
+
time.sleep(30)
|
1896
|
+
except:
|
1897
|
+
pass
|
1892
1898
|
|
1893
1899
|
@GeneralUtilities.check_arguments
|
1894
1900
|
def create_deb_package(self, toolname: str, binary_folder: str, control_file_content: str, deb_output_folder: str, verbosity: int, permission_of_executable_file_as_octet_triple: int) -> None:
|
@@ -1,16 +1,16 @@
|
|
1
|
-
ScriptCollection/Executables.py,sha256=
|
1
|
+
ScriptCollection/Executables.py,sha256=ApfwgRftLeG1NBpv7Jad98Yb-wI8sKjhtoIsxMmfGVY,30167
|
2
2
|
ScriptCollection/GeneralUtilities.py,sha256=VVbbGFD4qLwWV211-E-n3faP2fZGc8mOBlKLd0oKHl4,40765
|
3
3
|
ScriptCollection/ProcessesRunner.py,sha256=3mu4ZxzZleQo0Op6o9EYTCFiJfb6kx5ov2YfZfT89mU,1395
|
4
4
|
ScriptCollection/ProgramRunnerBase.py,sha256=2kMIAqdc65UjBAddOZkzy_aFx9h5roZ5a4bQNM6RV6Y,2480
|
5
5
|
ScriptCollection/ProgramRunnerEpew.py,sha256=4pjEd0r9Fcz3TTDv0MdTSd5KkigYXcWUVI1X43regfU,6477
|
6
6
|
ScriptCollection/ProgramRunnerPopen.py,sha256=BPY7-ZMIlqT7JOKz8qlB5c0laF2Js-ijzqk09GxZC48,3821
|
7
7
|
ScriptCollection/RPStream.py,sha256=NRRHL3YSP3D9MuAV2jB_--0KUKCsvJGxeKnxgrRZ9kY,1545
|
8
|
-
ScriptCollection/ScriptCollectionCore.py,sha256=
|
8
|
+
ScriptCollection/ScriptCollectionCore.py,sha256=rwKMKxjVpXhXfHNjJbBj52ESdwJMeAAAJlsB7_-gCFI,123396
|
9
9
|
ScriptCollection/TasksForCommonProjectStructure.py,sha256=0G2onG2crhkn3ivRqfVtHcg9WgwRXT488X0zEy8CSe4,216807
|
10
10
|
ScriptCollection/UpdateCertificates.py,sha256=Eynbgu7k9jLxApP2D_8Il77B6BFjJap6K7oTeEAZYbk,7790
|
11
11
|
ScriptCollection/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
12
|
-
scriptcollection-3.5.
|
13
|
-
scriptcollection-3.5.
|
14
|
-
scriptcollection-3.5.
|
15
|
-
scriptcollection-3.5.
|
16
|
-
scriptcollection-3.5.
|
12
|
+
scriptcollection-3.5.87.dist-info/METADATA,sha256=Elf3KgpOjyl7mfxRcz6k4X25IClN0LIG3xzjNpOuXqs,7664
|
13
|
+
scriptcollection-3.5.87.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
|
14
|
+
scriptcollection-3.5.87.dist-info/entry_points.txt,sha256=1jAL5AuB8mvdw2v-6E7wCZFThurQxchiQynL8DCi-Yg,3545
|
15
|
+
scriptcollection-3.5.87.dist-info/top_level.txt,sha256=hY2hOVH0V0Ce51WB76zKkIWTUNwMUdHo4XDkR2vYVwg,17
|
16
|
+
scriptcollection-3.5.87.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|