pystand 1.7__py3-none-any.whl → 1.8__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.
- {pystand-1.7.dist-info → pystand-1.8.dist-info}/METADATA +1 -1
- pystand-1.8.dist-info/RECORD +6 -0
- pystand.py +7 -4
- pystand-1.7.dist-info/RECORD +0 -6
- {pystand-1.7.dist-info → pystand-1.8.dist-info}/WHEEL +0 -0
- {pystand-1.7.dist-info → pystand-1.8.dist-info}/entry_points.txt +0 -0
- {pystand-1.7.dist-info → pystand-1.8.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,6 @@
|
|
1
|
+
pystand.py,sha256=0yqrw_cnYnidYkCOCP5rDy-UgDZv9klpFURHxFANC5I,30695
|
2
|
+
pystand-1.8.dist-info/METADATA,sha256=KqUUnga3dbLKMyqmttZk-YLLt-10nVIoNvpDfTR7mcc,15105
|
3
|
+
pystand-1.8.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
4
|
+
pystand-1.8.dist-info/entry_points.txt,sha256=DG4ps3I3nni1bubV1tXs6u8FARgkdbAYaEAzZD4RAo8,41
|
5
|
+
pystand-1.8.dist-info/top_level.txt,sha256=NoWUh19UQymAJLHTCdxMnVwV6Teftef5fzyF3OWLyNY,8
|
6
|
+
pystand-1.8.dist-info/RECORD,,
|
pystand.py
CHANGED
@@ -411,11 +411,14 @@ def install(args: Namespace, vdir: Path, release: str, distribution: str,
|
|
411
411
|
return f'Arch "{distribution}" not found for release '\
|
412
412
|
f'{release} version {version}.'
|
413
413
|
|
414
|
-
if isinstance(fileurl,
|
415
|
-
stripped = not args.no_strip
|
416
|
-
fileurl = fileurl[stripped]
|
417
|
-
else:
|
414
|
+
if isinstance(fileurl, str):
|
418
415
|
stripped = False
|
416
|
+
else:
|
417
|
+
stripped = not args.no_strip
|
418
|
+
if not (fileurl := fileurl[stripped]):
|
419
|
+
desc = 'stripped' if stripped else 'unstripped'
|
420
|
+
return f'Arch {desc} "{distribution}" not found for release '\
|
421
|
+
f'{release} version {version}.'
|
419
422
|
|
420
423
|
tmpdir = args._versions / f'.{version}-tmp'
|
421
424
|
rm_path(tmpdir)
|
pystand-1.7.dist-info/RECORD
DELETED
@@ -1,6 +0,0 @@
|
|
1
|
-
pystand.py,sha256=UoQBHL_ORiI56c3Z3j2Sw6FubW4h8kAxx5dZ6ZIfty0,30499
|
2
|
-
pystand-1.7.dist-info/METADATA,sha256=NhfQfiLnwzegtPlSnORtFAG1L3usbwFAWTBO3-hbZsA,15105
|
3
|
-
pystand-1.7.dist-info/WHEEL,sha256=Wyh-_nZ0DJYolHNn1_hMa4lM7uDedD_RGVwbmTjyItk,91
|
4
|
-
pystand-1.7.dist-info/entry_points.txt,sha256=DG4ps3I3nni1bubV1tXs6u8FARgkdbAYaEAzZD4RAo8,41
|
5
|
-
pystand-1.7.dist-info/top_level.txt,sha256=NoWUh19UQymAJLHTCdxMnVwV6Teftef5fzyF3OWLyNY,8
|
6
|
-
pystand-1.7.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|