PyCatFile 0.20.4__py3-none-any.whl → 0.20.6__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.
- {pycatfile-0.20.4.dist-info → pycatfile-0.20.6.dist-info}/METADATA +1 -1
- pycatfile-0.20.6.dist-info/RECORD +9 -0
- pycatfile.py +13 -13
- pycatfile-0.20.4.dist-info/RECORD +0 -9
- {pycatfile-0.20.4.data → pycatfile-0.20.6.data}/scripts/catfile.py +0 -0
- {pycatfile-0.20.4.data → pycatfile-0.20.6.data}/scripts/neocatfile.py +0 -0
- {pycatfile-0.20.4.dist-info → pycatfile-0.20.6.dist-info}/WHEEL +0 -0
- {pycatfile-0.20.4.dist-info → pycatfile-0.20.6.dist-info}/licenses/LICENSE +0 -0
- {pycatfile-0.20.4.dist-info → pycatfile-0.20.6.dist-info}/top_level.txt +0 -0
- {pycatfile-0.20.4.dist-info → pycatfile-0.20.6.dist-info}/zip-safe +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyCatFile
|
|
3
|
-
Version: 0.20.
|
|
3
|
+
Version: 0.20.6
|
|
4
4
|
Summary: A tar like file format name catfile after unix cat command (concatenate files) .
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyCatFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyCatFile/archive/master.tar.gz
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
pycatfile.py,sha256=BME9rCYJwAQ3wcJc524FyXzmyhI3vsZ5eOVCKFrRIAc,436155
|
|
2
|
+
pycatfile-0.20.6.data/scripts/catfile.py,sha256=eJYvkqx5F5V1CKnxQyLQUMvIBOUZYWF4MAlpvqsjBPc,14020
|
|
3
|
+
pycatfile-0.20.6.data/scripts/neocatfile.py,sha256=YIehBXLtZdFN6_3vrCM3qw1vfAiqJZJWdjOGFStg3D4,7148
|
|
4
|
+
pycatfile-0.20.6.dist-info/licenses/LICENSE,sha256=WM1VWxTUVrQbvEa-LC7cKTaBHXiqSTyYPoJvsZSbd7E,1513
|
|
5
|
+
pycatfile-0.20.6.dist-info/METADATA,sha256=ULS5ik2eIzbEGbkHXaT5Whjr9FuB7Mpx-kIVb1nBhxM,802
|
|
6
|
+
pycatfile-0.20.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
+
pycatfile-0.20.6.dist-info/top_level.txt,sha256=ZnSwEHU_60RLIvmFhsATaAaEYjErDQgUymWwoXZ724c,10
|
|
8
|
+
pycatfile-0.20.6.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
9
|
+
pycatfile-0.20.6.dist-info/RECORD,,
|
pycatfile.py
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
Copyright 2018-2024 Game Maker 2k - http://intdb.sourceforge.net/
|
|
15
15
|
Copyright 2018-2024 Kazuki Przyborowski - https://github.com/KazukiPrzyborowski
|
|
16
16
|
|
|
17
|
-
$FileInfo: pycatfile.py - Last Update: 9/
|
|
17
|
+
$FileInfo: pycatfile.py - Last Update: 9/15/2025 Ver. 0.20.6 RC 1 - Author: cooldude2k $
|
|
18
18
|
'''
|
|
19
19
|
|
|
20
20
|
from __future__ import absolute_import, division, print_function, unicode_literals, generators, with_statement, nested_scopes
|
|
@@ -391,12 +391,12 @@ __file_format_extension__ = __file_format_multi_dict__[__file_format_default__][
|
|
|
391
391
|
__file_format_dict__ = __file_format_multi_dict__[__file_format_default__]
|
|
392
392
|
__project__ = __program_name__
|
|
393
393
|
__project_url__ = "https://github.com/GameMaker2k/PyCatFile"
|
|
394
|
-
__version_info__ = (0, 20,
|
|
395
|
-
__version_date_info__ = (2025, 9,
|
|
394
|
+
__version_info__ = (0, 20, 6, "RC 1", 1)
|
|
395
|
+
__version_date_info__ = (2025, 9, 15, "RC 1", 1)
|
|
396
396
|
__version_date__ = str(__version_date_info__[0]) + "." + str(
|
|
397
397
|
__version_date_info__[1]).zfill(2) + "." + str(__version_date_info__[2]).zfill(2)
|
|
398
398
|
__revision__ = __version_info__[3]
|
|
399
|
-
__revision_id__ = "$Id:
|
|
399
|
+
__revision_id__ = "$Id: 1edd4c88c72412c509137eaccaddedf744e5f022 $"
|
|
400
400
|
if(__version_info__[4] is not None):
|
|
401
401
|
__version_date_plusrc__ = __version_date__ + \
|
|
402
402
|
"-" + str(__version_date_info__[4])
|
|
@@ -8610,15 +8610,15 @@ def UnPackCatFileString(instr, outdir=None, followlink=False, seekstart=0, seeke
|
|
|
8610
8610
|
|
|
8611
8611
|
def ftype_to_str(ftype):
|
|
8612
8612
|
mapping = {
|
|
8613
|
-
0: "file",
|
|
8614
|
-
1: "link",
|
|
8615
|
-
2: "
|
|
8616
|
-
3: "char device
|
|
8617
|
-
4: "block device
|
|
8618
|
-
5: "
|
|
8619
|
-
6: "fifo",
|
|
8620
|
-
12: "
|
|
8621
|
-
14: "
|
|
8613
|
+
0: "file", # file
|
|
8614
|
+
1: "link", # link
|
|
8615
|
+
2: "sym", # symlink
|
|
8616
|
+
3: "cdev", # char device
|
|
8617
|
+
4: "bdev", # block device
|
|
8618
|
+
5: "dir", # directory
|
|
8619
|
+
6: "fifo", # fifo
|
|
8620
|
+
12: "spar", # sparse
|
|
8621
|
+
14: "dev", # generic device
|
|
8622
8622
|
}
|
|
8623
8623
|
# Default to "file" if unknown
|
|
8624
8624
|
return mapping.get(ftype, "file")
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
pycatfile.py,sha256=oQ3CR7ukWd3wYdyK2An1slekYiG1zjBsXvdujVT25Ko,436068
|
|
2
|
-
pycatfile-0.20.4.data/scripts/catfile.py,sha256=eJYvkqx5F5V1CKnxQyLQUMvIBOUZYWF4MAlpvqsjBPc,14020
|
|
3
|
-
pycatfile-0.20.4.data/scripts/neocatfile.py,sha256=YIehBXLtZdFN6_3vrCM3qw1vfAiqJZJWdjOGFStg3D4,7148
|
|
4
|
-
pycatfile-0.20.4.dist-info/licenses/LICENSE,sha256=WM1VWxTUVrQbvEa-LC7cKTaBHXiqSTyYPoJvsZSbd7E,1513
|
|
5
|
-
pycatfile-0.20.4.dist-info/METADATA,sha256=N08tVr5x9eqnu2_AH-sqKiPUa8Ic0d4FVEwIavzK5As,802
|
|
6
|
-
pycatfile-0.20.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
7
|
-
pycatfile-0.20.4.dist-info/top_level.txt,sha256=ZnSwEHU_60RLIvmFhsATaAaEYjErDQgUymWwoXZ724c,10
|
|
8
|
-
pycatfile-0.20.4.dist-info/zip-safe,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
9
|
-
pycatfile-0.20.4.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|