Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

patool-4.0.5-1.2 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: patool Distribution: openSUSE Tumbleweed
Version: 4.0.5 Vendor: openSUSE
Release: 1.2 Build date: Wed Jun 10 09:48:29 2026
Group: Productivity/Archiving/Compression Build host: reproducible
Size: 490646 Source RPM: patool-4.0.5-1.2.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/wummel/patool
Summary: Portable Command Line Archive File Manager
patool is a portable command line archive file manager. Various archive types
can be created, extracted, tested and listed by patool.
The advantage of patool is its simplicity in handling archive files without
having to remember a myriad of programs and options.
The archive format is determined by the file(1) program and as a fallback by
the archive file extension.

patool supports 7z (.7z), ACE (.ace), ALZIP (.alz), AR (.a), ARC (.arc), ARJ
(.arj), BZIP2 (.bz2), CAB (.cab), compress (.Z), CPIO (.cpio), DEB (.deb), GZIP
(.gz), LRZIP (.lrz), LZH (.lha, .lzh), LZIP (.lz), LZMA (.lzma), LZOP (.lzo),
RPM (.rpm), RAR (.rar), TAR (.tar), XZ (.xz), and ZIP (.zip, .jar) formats.

It relies on helper applications to handle those archive formats.

Provides

Requires

License

GPL-3.0-or-later

Changelog

* Wed Jun 10 2026 Johannes Kastl <opensuse_buildservice@ojkastl.de>
  - update to 4.0.5:
    4.0.5 (released 18.05.2026)
    * [Security] Fix generation of files and directories outside
      the given extraction directory when extracting TAR (.tar) archives
      with the Python tarfile module for Python < 3.12.
    * [Feature] Expose the format option in CLI and API to bypass automatic
      format detection, ie. "patool list archive --format 7z".
      Thanks jpsnyder for the patch and pull request.
    4.0.4 (released 19.01.2026)
    * Do not propagate log messages.
      Thanks MatteoH2O1999 for the bug report and suggested fix.
      Closes: GH bug #187
    * Updated dev dependencies, now requires Python >= 3.12
    4.0.3 (released 11.12.2025)
    * Added support for FREEARC (.arc) archives. Peazip can create and extract these.
    * Set SOURCE_DATE_EPOCH to latest git commit date instead of zero.
      Fixes test failures on some platforms.
      Closes: GH bug #186
    * Updated dev dependencies
    4.0.2 (released 14.10.2025)
    * Allow stdin when interactive mode is requested.
      Closes: GH bug #184
    * Use the Python module "compression.zstd" for Python version >= 3.14 to
      extract and create ZSTD (.zst) files.
    * Updated dev dependencies
    * Replace pytype type checks with ty
    * Added Python 3.14 to the test matrix
    4.0.1 (released 02.05.2025)
    * Updated dev dependencies; support reproducible builds with setuptools_reproducible.
    * Fix command options for star.
      Thanks Robert-André Mauchin for the patch!
    4.0.0 (released 28.02.2025)
    * Detect and use archive programs from Peazip installations.
      Closes: GH bug #51
    * Require Python >= 3.11
    3.1.3 (released 15.02.2025)
    * Expand rar detection logic to all 7zip programs
      Thanks Alfred Wingate for the patch!
    * Detect if 7zip programs support COMPRESS (.Z) archives, since 7za 24.09 does not support it anymore.
      This fixes test errors on newer Ubuntu systems.
    3.1.2 (released 14.02.2025)
    * Add workaround for an error using uv publish.
    3.1.1 (released 14.02.2025)
    * Improved RAR support detection for the 7-Zip archiver.
      Closes: GH bug #175, #176
    * Enable file(1) detection of ALZ archives, and improved handling of RAR detection for file 5.46.
      Thanks Alfred Wingate for the patches!
    3.1.0 (released 19.11.2024)
    * Added support for UDF (.udf) archives with 7z.
      Closes: GH bug #80
    * The options --quiet and --verbose are now mutually exclusive options.
    * When --quiet is given twice, output on stderr from archive commands is
      suppressed. When using the API functions, set verbosity to -2.
    3.0.3 (released 04.11.2024)
    * Fix UnicodeDecode errors when logging, especially on windows systems.
      Closes: GH bug #170
    * Added support for WIM (windows image) archives with 7z.
    * If the MIME database cannot detect the file type, check again with a lowercase filenanme extension.
    * Use 7z option -aou to rename files when extracting instead of overwriting them.
    * Use rar option -or to rename files when extracting instead of overwriting them.
    * Use rar option -kb to keep files when extracting broken RAR archives.
    3.0.2 (released 21.10.2024)
    * When running in verbose mode (-vv), print mime and compression info.
    * Use official github command line client "gh" for releases.
    * Added type annotations.
    3.0.1 (released 06.10.2024)
    * Use more uv command to replace other build tools, ie. twine.
    * Add new --quiet option to suppress command output.
    * Document that Windows needs a file program to be able to determine file types without extensions.
      Closes: GH bug #152
    3.0.0 (released 25.09.2024)
    * When a program does not support a compression type, try to find other programs instead of failing.
      This changes some library functions which are not part of the official API, but might be used by
      other programs, hence the major version upgrade.
      Thanks to github user benjaminwinger for the idea and initial patch!
      Closes: GH bug #87
    * Better detection for tar programs which compression is supported.
      Closes: GH bug #86
    * The Python module "tarfile" supports LZMA and XZ compressed archives.
      Added tests for these archive formats (.tar.lzma and .tar.xz).
    * Do not print program output when running with verbosity=-1.
      Closes: GH bug #157
    2.4.0 (released 21.08.2024)
    * Document that patool extracts the archive for the search and repack commands.
      Closes: GH bug #154
    * Add supported_formats() API function listing supported formats and operations
      for each format.
      Idea and patch by github user nohr-ai, thanks!
    2.3.0 (released 26.06.2024)
    * Add linting check to github workflow CI.
      Idea and patch by sorairolake, thanks!
    * Format the python code with ruff, and
      add a check to github workflow CI.
      Idea and initial patch by sorairolake, thanks!
      Closes: GH bug #151
    * Support tar --zstd for extracting TAR archives compressed with ZSTANDARD.
      Closes: GH bug #162
    * Use locale.getpreferredencoding() instead of sys.stderr.encoding for
      logging output encoding.
      Closes: GH bug #158
    2.2.0 (released 14.02.2024)
    * Improved detection when running under pythonw.exe.
      Also fixes the output problems on Windows systems.
      Closes: GH bug #147, #142
    * Document API functions.
    2.1.1 (released 26.01.2024)
    * Added support for 7zz and 7zzs programs from the Linux-specific release
      of 7-Zip.
      Closes: GH bug #145
    2.1.0 (released 17.01.2024)
    * Document all functions and modules, and add linting rule for it.
    * Remove spaces between function and argument list
      Closes: GH bug #100
    * Log warnings when subprocesses in utility functions return errors
      that are ignored.
    * Fix a TypeError when using unar with passwords.
      Thanks to Kevin Matt for the patch.
      Closes: GH bug #144
    * Catch errors when using file --uncompress on system which do not support this.
      Closes: GH bug #141
    2.0.0 (released 14.11.2023)
    * Require Python >= 3.10
    * Use Python logging module instead of print() for diagnostic output.
      Diagnostic output of patool will now be printed on stderr instead of
      stdout.
      This change is the reason for the major version number increase.
      Closes: GH bug #37
    * Support the jar program to list and extract ZIP archives.
    * Do not use the -v option when extracting or testing ZIP archives
      with unzip, since -v lists files instead of printing verbose output.
      Closes: GH bug #49
    * Use the -sae option for 7z to use the provided archive name.
      Closes: GH bug #72
    * Add error message about temporary directory when extraction fails.
      Closes: GH bug #57
    * Removed the recompress command.
    * Use the new filter option when extracting TAR archives with the tarfile
      module in Python >= 3.12 to detect unsafe archive entries.
    * Added new command "patool version" to print version information.
    * Do not use maximum compression anymore, the default settings should
      be good enough for our standard use case.
    * Restore original file name for GZIP (.gz) archives.
      Closes: GH bug #67
    1.15.0 (released 28.10.2023)
    * Added support for LZ4 archives with the lz4 tool.
      Closes: GH bug #46
    * Use correct registry key flag for 32-bit Python on 64-bit Windows
      when detecting 7z.
      Closes: GH bug #35
    * Fix configuration for listing .bz2 and .bz3 archives.
    * Added support for the unar program which can extract a lot of
      archive formats, for example ZIP, RAR, 7Z, TAR, GZIP, BZIP2 etc.
      Closes: GH bug #39
    * Document how to enable bash completion.
      Closes: GH bug #127
    1.14.1 (released 26.10.2023)
    * Fix wrong option in bzip3, and add tests.
      Closes: GH bug #134
    * Create non-existing directories when using the --outdir option
      with patool extract.
      Closes: GH bug #117, #132
    * Ensure log output does not have a UnicodeEncodeError
      Closes: GH bug #122, #121, #52, #29
    * Don't open new console windows for subprocesses on Windows.
      Closes: GH bug #85
    * Use 7z to extract, list and test CHM (.chm) archives.
      Closes: GH bug #78
    1.14.0 (released 25.10.2023)
    * Test if tar supports --force-local on macOS systems.
      Closes: GH bug #125
    * Enable archive header encryption for 7z
      Thanks to Michael Serajnik for the initial patch.
      Closes: GH bug #102
    * Added support for BZIP3 archives with the bzip3 tool.
      Closes: GH bug #129
    * Fix Windows tar doesn't use --force-local
      Thanks to Jack Cherng for the patch.
    * Include tests data in the source distribution.
      Thanks to Alfred Wingate for the patch.
    1.13 (released 24.10.2023)
    * Added support for ZSTANDARD archives with the zstd tool.
    * Improved patool diff output: when two archives each have
      only one entry, compare those entries directly instead of
      the parent directory.
    * Replace deprecated distutils with setuptools to fix build errors
      with modern Python environments.
      Closes: GH bug #114, #103
    * Disable password prompting with 7z in non-interactive mode with
      the option "-p-".
      Thanks to Pascua Theus for the patch.
    * Disable sandbox mode for file(1) to fix detection of compressed tar
      archives on systems with libseccomp.
      Thanks to Alfred Wingate for the patch.
    * Remove read-only directories after a diff comparison of two archives.
      Thanks to c01o for the patch.
  - remove the bash-completion subpackage, as upstream no longer contains
    the files
* Fri May 14 2021 Dominique Leuenberger <dimstar@opensuse.org>
  - Fix up dependency of -bash-completion subpackage:
    + Require the main package. The bash completion is useless
      without the application.
    + Supplement it against bash-completion, not against bash.
* Thu Nov 16 2017 mpluskal@suse.com
  - Update to version 1.12:
    * Lots of changes - see provided changelog.txt
  - Cleanup spec file with spec-cleaner
  - Switch to python3
* Mon Apr 08 2013 pascal.bleser@opensuse.org
  - update to 1.1:
    * Add support for zopfli, Googles new zlib compressor
    * Fix an error repacking compressed tar archives with 7z
  - changes from 1.0:
    * Add support for searching in archive contents
    * Add support for ISO image handling
    * Allow multiple --verbose options to increase program output
    * Fixed Python lzma archive handling
    * Fixed lzop, lrzip and rzip archive handling
    * Fixed Python 3.x support
  - changes from 0.19:
    * Support the lzma module in Python >= 3.3
    * Optimize repacking of archives with the same format
* Tue Dec 18 2012 pascal.bleser@opensuse.org
  - update to 0.18:
    * Fixed unadf archive listing
    * Added support for Python 3.x
    * Use importlib to find program modules and depend on Python >= 2.7
    * Added support for archmage and chmlib handling CHM (.chm) archives
* Mon Aug 20 2012 pascal.bleser@opensuse.org
  - update to 0.17:
    * Added support for Monkey's Audio Compressor handling APE (.ape) archives.
    * Added support for shorten handling SHN (.shn) archives.
    * Added support for flac handling FLAC (.flac) archives.
    * Added support for the BSD cpio and tar programs.
    * Added support for lhasa handling LZH (.lzh, .lha) archives.
    * Added support for lcap handling CAB (.cab) archives.
    * Added support for shar handling SHAR (.shar) shell archives.
    * Added support for unadf handling ADF (.adf) amiga disk archives.
    * Removed support for orange handling self-extracting installers.
    * Generate standalone Windows .exe and Linux .rpm installer.
    * Initialize the internal MIME database correct on all platforms.
    * Improved option compatibility for the ar, cpio and tar programs.
    * Rename the temporary output directory if it contains multiple files. The
      name is the archive name without extension, which is more readable than a
      random filename "UnpackXyz".
    * Require and use Python >=2.5
  - changes from 0.16:
    * Document the --outdir option for the extract command.
    * Added convenience library function to handle archives.
    * Added support for the lbzip2 program handling BZIP2 archives.
    * Added support for the plzip program handling LZIP archives.
    * Prevent overwriting files with repack.
    * Support extraction of BZIP2 (.bz2) files with the Python bz2 module.
    * Support extraction of GZIP (.gz) files with the Python gzip module.
    * Support extraction of ZIP (.zip) files with the Python zipfile module.
    * Support extraction of TAR (.tar) files with the Python tarfile module.
* Sat Apr 14 2012 pascal.bleser@opensuse.org
  - update to 0.15:
    * print help when unknown options are given
    * print error when archive files do not exist
    * added support for the pigz program handling GZIP archives
  - changes from 0.14:
    * handle CRX (.crx) files as ZIP archives: they have garbage at
      the beginning of the file, but some unzip programs can cope with
      that
    * the xz program supports listing of XZ archives: adjust the
      configuration accordingly
* Wed Jan 26 2011 pascal.bleser@opensuse.org
  - update to 0.13:
    * adds support for DMS (.dms) files
    * fixes a bug in extracting cpio archives
    * improved MIME type detection
* Thu Jan 20 2011 pascal.bleser@opensuse.org
  - split out bash completion into patool-bash-completion, as it requires the
    package "bach-completion"
  - fixes bnc#661851 (bash-completion issues error for missing patool pkg which
    is present)
* Sun Nov 21 2010 pascal.bleser@opensuse.org
  - reformatted spec file
  - update to 0.12:
    * archive commands are now printed on the console before running them
    * a RAR extraction bug has been fixed

Files

/usr/bin/patool
/usr/lib/python3.13/site-packages/patool-4.0.5-py3.13.egg-info
/usr/lib/python3.13/site-packages/patool-4.0.5-py3.13.egg-info/PKG-INFO
/usr/lib/python3.13/site-packages/patool-4.0.5-py3.13.egg-info/SOURCES.txt
/usr/lib/python3.13/site-packages/patool-4.0.5-py3.13.egg-info/dependency_links.txt
/usr/lib/python3.13/site-packages/patool-4.0.5-py3.13.egg-info/entry_points.txt
/usr/lib/python3.13/site-packages/patool-4.0.5-py3.13.egg-info/requires.txt
/usr/lib/python3.13/site-packages/patool-4.0.5-py3.13.egg-info/top_level.txt
/usr/lib/python3.13/site-packages/patoolib
/usr/lib/python3.13/site-packages/patoolib/__init__.py
/usr/lib/python3.13/site-packages/patoolib/__pycache__
/usr/lib/python3.13/site-packages/patoolib/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/cli.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/cli.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/configuration.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/configuration.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/fileutil.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/fileutil.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/log.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/log.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/mime.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/mime.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/util.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/__pycache__/util.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/cli.py
/usr/lib/python3.13/site-packages/patoolib/configuration.py
/usr/lib/python3.13/site-packages/patoolib/fileutil.py
/usr/lib/python3.13/site-packages/patoolib/log.py
/usr/lib/python3.13/site-packages/patoolib/mime.py
/usr/lib/python3.13/site-packages/patoolib/programs
/usr/lib/python3.13/site-packages/patoolib/programs/__init__.py
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/ar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/ar.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/arc.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/arc.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/archmage.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/archmage.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/arj.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/arj.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/bsdcpio.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/bsdcpio.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/bsdtar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/bsdtar.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/bzip2.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/bzip2.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/bzip3.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/bzip3.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/cabextract.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/cabextract.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/chmlib.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/chmlib.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/clzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/clzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/compress.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/compress.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/cpio.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/cpio.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/dpkg.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/dpkg.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/flac.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/flac.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/genisoimage.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/genisoimage.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/gzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/gzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/isoinfo.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/isoinfo.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/jar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/jar.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lbzip2.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lbzip2.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lcab.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lcab.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lha.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lha.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lhasa.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lhasa.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lrzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lrzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lz4.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lz4.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lzma.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lzma.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lzop.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/lzop.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/mac.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/mac.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/nomarch.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/nomarch.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7azip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7azip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7rzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7rzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7zip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7zip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7zz.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7zz.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7zzs.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/p7zzs.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/pbzip2.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/pbzip2.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/pdlzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/pdlzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/pigz.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/pigz.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/plzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/plzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_bz2.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_bz2.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_echo.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_echo.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_gzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_gzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_lzma.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_lzma.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_tarfile.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_tarfile.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_zipfile.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_zipfile.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_zstd.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/py_zstd.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/rar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/rar.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/rpm.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/rpm.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/rpm2cpio.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/rpm2cpio.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/rzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/rzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/shar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/shar.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/shorten.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/shorten.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/star.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/star.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/tar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/tar.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unace.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unace.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unadf.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unadf.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unalz.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unalz.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unar.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/uncompress.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/uncompress.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unrar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unrar.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unshar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unshar.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unzip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/unzip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/xdms.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/xdms.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/xz.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/xz.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zip.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zip.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zoo.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zoo.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zopfli.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zopfli.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zpaq.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zpaq.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zstd.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/__pycache__/zstd.cpython-313.pyc
/usr/lib/python3.13/site-packages/patoolib/programs/ar.py
/usr/lib/python3.13/site-packages/patoolib/programs/arc.py
/usr/lib/python3.13/site-packages/patoolib/programs/archmage.py
/usr/lib/python3.13/site-packages/patoolib/programs/arj.py
/usr/lib/python3.13/site-packages/patoolib/programs/bsdcpio.py
/usr/lib/python3.13/site-packages/patoolib/programs/bsdtar.py
/usr/lib/python3.13/site-packages/patoolib/programs/bzip2.py
/usr/lib/python3.13/site-packages/patoolib/programs/bzip3.py
/usr/lib/python3.13/site-packages/patoolib/programs/cabextract.py
/usr/lib/python3.13/site-packages/patoolib/programs/chmlib.py
/usr/lib/python3.13/site-packages/patoolib/programs/clzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/compress.py
/usr/lib/python3.13/site-packages/patoolib/programs/cpio.py
/usr/lib/python3.13/site-packages/patoolib/programs/dpkg.py
/usr/lib/python3.13/site-packages/patoolib/programs/flac.py
/usr/lib/python3.13/site-packages/patoolib/programs/genisoimage.py
/usr/lib/python3.13/site-packages/patoolib/programs/gzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/isoinfo.py
/usr/lib/python3.13/site-packages/patoolib/programs/jar.py
/usr/lib/python3.13/site-packages/patoolib/programs/lbzip2.py
/usr/lib/python3.13/site-packages/patoolib/programs/lcab.py
/usr/lib/python3.13/site-packages/patoolib/programs/lha.py
/usr/lib/python3.13/site-packages/patoolib/programs/lhasa.py
/usr/lib/python3.13/site-packages/patoolib/programs/lrzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/lz4.py
/usr/lib/python3.13/site-packages/patoolib/programs/lzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/lzma.py
/usr/lib/python3.13/site-packages/patoolib/programs/lzop.py
/usr/lib/python3.13/site-packages/patoolib/programs/mac.py
/usr/lib/python3.13/site-packages/patoolib/programs/nomarch.py
/usr/lib/python3.13/site-packages/patoolib/programs/p7azip.py
/usr/lib/python3.13/site-packages/patoolib/programs/p7rzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/p7zip.py
/usr/lib/python3.13/site-packages/patoolib/programs/p7zz.py
/usr/lib/python3.13/site-packages/patoolib/programs/p7zzs.py
/usr/lib/python3.13/site-packages/patoolib/programs/pbzip2.py
/usr/lib/python3.13/site-packages/patoolib/programs/pdlzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/pigz.py
/usr/lib/python3.13/site-packages/patoolib/programs/plzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/py_bz2.py
/usr/lib/python3.13/site-packages/patoolib/programs/py_echo.py
/usr/lib/python3.13/site-packages/patoolib/programs/py_gzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/py_lzma.py
/usr/lib/python3.13/site-packages/patoolib/programs/py_tarfile.py
/usr/lib/python3.13/site-packages/patoolib/programs/py_zipfile.py
/usr/lib/python3.13/site-packages/patoolib/programs/py_zstd.py
/usr/lib/python3.13/site-packages/patoolib/programs/rar.py
/usr/lib/python3.13/site-packages/patoolib/programs/rpm.py
/usr/lib/python3.13/site-packages/patoolib/programs/rpm2cpio.py
/usr/lib/python3.13/site-packages/patoolib/programs/rzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/shar.py
/usr/lib/python3.13/site-packages/patoolib/programs/shorten.py
/usr/lib/python3.13/site-packages/patoolib/programs/star.py
/usr/lib/python3.13/site-packages/patoolib/programs/tar.py
/usr/lib/python3.13/site-packages/patoolib/programs/unace.py
/usr/lib/python3.13/site-packages/patoolib/programs/unadf.py
/usr/lib/python3.13/site-packages/patoolib/programs/unalz.py
/usr/lib/python3.13/site-packages/patoolib/programs/unar.py
/usr/lib/python3.13/site-packages/patoolib/programs/uncompress.py
/usr/lib/python3.13/site-packages/patoolib/programs/unrar.py
/usr/lib/python3.13/site-packages/patoolib/programs/unshar.py
/usr/lib/python3.13/site-packages/patoolib/programs/unzip.py
/usr/lib/python3.13/site-packages/patoolib/programs/xdms.py
/usr/lib/python3.13/site-packages/patoolib/programs/xz.py
/usr/lib/python3.13/site-packages/patoolib/programs/zip.py
/usr/lib/python3.13/site-packages/patoolib/programs/zoo.py
/usr/lib/python3.13/site-packages/patoolib/programs/zopfli.py
/usr/lib/python3.13/site-packages/patoolib/programs/zpaq.py
/usr/lib/python3.13/site-packages/patoolib/programs/zstd.py
/usr/lib/python3.13/site-packages/patoolib/util.py
/usr/share/doc/packages/patool
/usr/share/doc/packages/patool/COPYING
/usr/share/doc/packages/patool/changelog.txt
/usr/share/doc/packages/patool/patool.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri Aug 7 23:55:33 2026