PyArchiveFile 0.26.0__tar.gz → 0.27.2__tar.gz
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.
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/PKG-INFO +1 -1
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/PyArchiveFile.egg-info/PKG-INFO +1 -1
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/PyArchiveFile.egg-info/SOURCES.txt +0 -2
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/archivefile.py +6 -6
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/pyarchivefile.py +907 -244
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/pyproject.toml +1 -1
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/setup.py +1 -1
- pyarchivefile-0.26.0/archiveneofile.py +0 -130
- pyarchivefile-0.26.0/neoarchivefile.py +0 -136
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/LICENSE +0 -0
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/PyArchiveFile.egg-info/dependency_links.txt +0 -0
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/PyArchiveFile.egg-info/top_level.txt +0 -0
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/PyArchiveFile.egg-info/zip-safe +0 -0
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/README.md +0 -0
- {pyarchivefile-0.26.0 → pyarchivefile-0.27.2}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyArchiveFile
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.27.2
|
|
4
4
|
Summary: A tar like file format name archivefile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyArchiveFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyArchiveFile/archive/master.tar.gz
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: PyArchiveFile
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.27.2
|
|
4
4
|
Summary: A tar like file format name archivefile.
|
|
5
5
|
Home-page: https://github.com/GameMaker2k/PyArchiveFile
|
|
6
6
|
Download-URL: https://github.com/GameMaker2k/PyArchiveFile/archive/master.tar.gz
|
|
@@ -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: archivefile.py - Last Update: 11/
|
|
17
|
+
$FileInfo: archivefile.py - Last Update: 11/15/2025 Ver. 0.27.2 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
|
|
@@ -170,11 +170,11 @@ if active_action:
|
|
|
170
170
|
tmpout = pyarchivefile.RePackArchiveFile(input_file, getargs.output, "auto", getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, False, 0, 0, 0, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], getargs.skipchecksum, [], {}, fnamedict, getargs.insecretkey, getargs.outsecretkey, False, getargs.verbose, False)
|
|
171
171
|
else:
|
|
172
172
|
tmpout = pyarchivefile.PackArchiveFileFromInFile(
|
|
173
|
-
input_file, getargs.output, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.
|
|
173
|
+
input_file, getargs.output, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.outsecretkey, getargs.verbose, False)
|
|
174
174
|
if(not tmpout):
|
|
175
175
|
sys.exit(1)
|
|
176
176
|
else:
|
|
177
|
-
pyarchivefile.PackArchiveFile(getargs.input, getargs.output, getargs.text, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, False, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.
|
|
177
|
+
pyarchivefile.PackArchiveFile(getargs.input, getargs.output, getargs.text, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, False, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.outsecretkey, getargs.verbose, False)
|
|
178
178
|
elif active_action == 'repack':
|
|
179
179
|
if getargs.convert:
|
|
180
180
|
checkcompressfile = pyarchivefile.CheckCompressionSubType(
|
|
@@ -183,7 +183,7 @@ if active_action:
|
|
|
183
183
|
pyarchivefile.RePackArchiveFile(input_file, getargs.output, "auto", getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt,
|
|
184
184
|
False, 0, 0, 0, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], getargs.skipchecksum, [], {}, fnamedict, getargs.insecretkey, getargs.outsecretkey, False, getargs.verbose, False)
|
|
185
185
|
else:
|
|
186
|
-
pyarchivefile.PackArchiveFileFromInFile(input_file, getargs.output, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.
|
|
186
|
+
pyarchivefile.PackArchiveFileFromInFile(input_file, getargs.output, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.outsecretkey, getargs.verbose, False)
|
|
187
187
|
if(not tmpout):
|
|
188
188
|
sys.exit(1)
|
|
189
189
|
else:
|
|
@@ -198,7 +198,7 @@ if active_action:
|
|
|
198
198
|
tmpout = pyarchivefile.RePackArchiveFile(input_file, tempout, "auto", getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, False, 0, 0, 0, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], getargs.skipchecksum, [], {}, fnamedict, getargs.insecretkey, getargs.outsecretkey, False, False)
|
|
199
199
|
else:
|
|
200
200
|
tmpout = pyarchivefile.PackArchiveFileFromInFile(
|
|
201
|
-
input_file, tempout, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.
|
|
201
|
+
input_file, tempout, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.outsecretkey, False, False)
|
|
202
202
|
if(not tmpout):
|
|
203
203
|
sys.exit(1)
|
|
204
204
|
input_file = tempout
|
|
@@ -225,7 +225,7 @@ if active_action:
|
|
|
225
225
|
tmpout = pyarchivefile.RePackArchiveFile(input_file, tempout, "auto", getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, False, 0, 0, 0, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], getargs.skipchecksum, [], {}, fnamedict, getargs.insecretkey, getargs.outsecretkey, False, False, False)
|
|
226
226
|
else:
|
|
227
227
|
tmpout = pyarchivefile.PackArchiveFileFromInFile(
|
|
228
|
-
input_file, tempout, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.
|
|
228
|
+
input_file, tempout, __file_format_default__, getargs.compression, getargs.wholefile, getargs.level, pyarchivefile.compressionlistalt, [getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum, getargs.checksum], [], {}, fnamedict, getargs.outsecretkey, False, False)
|
|
229
229
|
input_file = tempout
|
|
230
230
|
if(not tmpout):
|
|
231
231
|
sys.exit(1)
|