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

python313-ocrmypdf-17.4.2-1.3 RPM for noarch

From OpenSuSE Tumbleweed for noarch

Name: python313-ocrmypdf Distribution: openSUSE Tumbleweed
Version: 17.4.2 Vendor: openSUSE
Release: 1.3 Build date: Thu May 21 11:11:41 2026
Group: Development/Languages/Python Build host: reproducible
Size: 2300461 Source RPM: python-ocrmypdf-17.4.2-1.3.src.rpm
Packager: https://bugs.opensuse.org
Url: https://github.com/ocrmypdf/OCRmyPDF
Summary: OCRmyPDF adds an OCR text layer to scanned PDF files
OCRmyPDF adds an OCR text layer to scanned PDF files, allowing them to be searched

Provides

Requires

License

MPL-2.0

Changelog

* Thu May 21 2026 Matej Cepl <mcepl@cepl.eu>
  - Clean up SPEC file.
* Tue Apr 21 2026 ecsos <ecsos@opensuse.org>
  - Update to version 17.4.2:
    * Fix CJK test broken by fpdf2 2.8.7 CFF font encoding change
    * Update uv.lock again - pygithub
    * Bump version: v17.4.2
    * Respect host-set PIL.Image.MAX_IMAGE_PIXELS in Python API
    * Update uv.lock
    * Bump sigstore/gh-action-sigstore-python from 3.2.0 to 3.3.0
    * Bump codecov/codecov-action from 5 to 6
* Tue Apr 21 2026 ecsos <ecsos@opensuse.org>
  - Update to version 17.4.1:
    * Bump version: v17.4.1
    * v17.4.1 release notes
    * Update GS JPEG corruption warning for 10.7.0+
    * Refactor word_render_data tuple into WordRenderData dataclass
    * Fix RTL text extraction order in fpdf2 renderer (#1655)
    * Bump docker/login-action from 3 to 4
    * Bump docker/setup-qemu-action from 3 to 4
    * Bump actions/download-artifact from 7 to 8
    * Bump actions/upload-artifact from 6 to 7
    * Set work_folder in JobContext initialization
* Sun Mar 22 2026 ecsos <ecsos@opensuse.org> - 17.4.0
  - Update to 17.4.0
    - Added --no-overwrite / -n option to prevent overwriting output files.
      If the destination file already exists, OCRmyPDF exits with code 5
      (OutputFileAccessError). {issue}1642
    - Fixed text layer stretching in the fpdf2 renderer for widely-spaced words.
      The horizontal scaling (Tz) was incorrectly stretched to fill inter-word gaps
      instead of relying on Td positioning, causing text selection to highlight far
      beyond the actual word boundaries. {issue}1635
    - Fixed optimize=2 or optimize=3 crash when using the Python API without
      explicitly setting jpg_quality or png_quality. {issue}1641
    - Fixed verapdf availability check crashing with NotADirectoryError on
      some platforms. {issue}1638
* Sat Jan 31 2026 ecsos <ecsos@opensuse.org> - 17.1.0
  - Update to 17.1.0
    - Added --tagged-pdf-mode to allow skipping the TaggedPDF error message, if desired.
    - Fixed an issue where deflated JPEGs (FlateDecode + DCTDecode) were counted as
      lossless images for the purpose of determining whether to compress to JPEG,
      causing file size inflation with some workflows (--mode force in particular).
  - Changes from 17.0.1
    - Fixed output file size inflation when using pypdfium as rasterizer and force-ocr mode.
  - Changes from 17.0.0
    * Breaking changes
    - Plugin interface migration: Plugin hooks now receive OcrOptions objects
      instead of argparse.Namespace objects. Most plugins will continue working
      due to duck-typing compatibility, but plugin developers should update
      their type hints from Namespace to OcrOptions.
    - Built-in plugins no longer modify options in-place, improving immutability and code clarity.
    - Lossy JBIG2 removed: The --jbig2-lossy and --jbig2-page-group-size options have been removed
      due to well-documented risks of character substitution errors.
      These options are now deprecated and will emit warnings if used.
      Only lossless JBIG2 compression is supported.
    - PDF/A output behavior change: If neither Ghostscript nor verapdf is installed,
    - -output-type auto (the new default) will produce a standard PDF instead of PDF/A.
      This is a change from previous versions where Ghostscript was required and PDF/A was always produced.
      This configuration is rare but users should be aware of the change.
    * New features
    - pypdfium2 rasterizer: Added optional pypdfium2-based PDF rasterization plugin
      as an alternative to Ghostscript for page rendering. Use --rasterizer pypdfium
      to enable (requires pip install pypdfium2). The default --rasterizer auto prefers
      pypdfium when available and falls back to Ghostscript.
    - Pluggable OCR engines: New --ocr-engine option allows selecting OCR engines:
    - auto (default): Uses Tesseract
    - tesseract: Explicit Tesseract selection
    - none: Skip OCR entirely for PDF processing-only workflows
      This prepares the foundation for future third-party OCR engine plugins.
    - Smart PDF/A conversion: New --output-type auto (now the default) produces best-effort PDF/A output
      without requiring Ghostscript when the verapdf validator is available.
      Falls back to traditional Ghostscript conversion when needed.
    - verapdf integration: Added optional verapdf validation for fast PDF/A conversion.
      When available, OCRmyPDF attempts speculative PDF/A conversion using pikepdf, validates with verapdf,
      and skips Ghostscript if validation passes.
    - Optional Ghostscript: As a consequence of the changes above,
      Ghostscript is no longer a required dependency. It is optional.
    - fpdf2 text renderer: Replaced legacy hOCR text renderer with new fpdf2-based implementation,
      providing better multilingual support and more accurate text positioning.
    - Improved Occulta glyphless font: The new Occulta font provides better handling of
      zero-width markers and double-width CJK characters for accurate text layer positioning.
    - Expanded multilingual font support: Added FontProvider infrastructure with language-aware
      font selection for Devanagari (Hindi, Sanskrit, Marathi, Nepali), CJK (Chinese, Japanese, Korean),
      Arabic script, and many other scripts. System font discovery reduces package size.
    - Simplified mode selection: New --mode (-m) argument consolidates processing options:
    - default: Error if text is found (standard behavior)
    - force: Rasterize all content and run OCR (replaces --force-ocr)
    - skip: Skip pages with existing text (replaces --skip-text)
    - redo: Re-OCR pages, stripping old text layer (replaces --redo-ocr)
      Legacy flags remain as silent aliases for backward compatibility.
    * API improvements
    - Centralized validation logic in the OcrOptions Pydantic model
    - Removed scattered option mutation throughout the codebase
    - Better type safety for plugin development
    - Simplified plugin option handling
    - New OcrElement, OcrClass, and BoundingBox exports for OCR engine plugin developers
    - Extended OcrEngine ABC with generate_ocr() method for direct OCR tree output,
      eliding the need to translate a modern engine's output to hOCR or directly write to PDF.
    * Bug fixes
    - Fixed double-compression of already-deflated JPEGs.
    - Fixed tesseract_cache plugin to properly handle cache misses.
    - Fixed handling of PDF page boxes (ArtBox, BleedBox) which were not being processed correctly.
    - Added thread safety lock to pypdfium plugin for concurrent operations.
    - Improved pdfminer.six compatibility with explicit word spacing.
    * Documentation
    - Updated cookbook to replace deprecated --tesseract-timeout 0 with --ocr-engine none.
    - Added comprehensive plugin documentation for new OCR engine framework.
    * Dependency changes
    - Requires: one of pypdfium2 or ghostscript for PDF rasterization (PDF to image)
    - Preferred: both
    - Requires: one of verapdf or ghostscript for PDF/A generation
    - Preferred: both
    - Recommended: pypdfium2 for PDF rasterization (new dependency)
    - Recommended: ghostscript (used to be Required)
    - Recommended: Noto fonts for improved OCR text positioning
    - Optional: verapdf for fast PDF/A validation (new dependency)
    - Requires: fpdf2 for text layer rendering (new dependency)
    - Recommended: replace typer with cyclopts in misc scripts (new dependency)
    - See docs/maintainers.md for details.
    * Migration guide for plugin developers
    - Update imports: from ocrmypdf._options import OcrOptions
    - Update type hints: def check_options(options: OcrOptions) instead of options: Namespace
    - Attribute access remains unchanged: options.languages, options.output_type, etc.
    - Remove any in-place option modifications - compute values at point of use instead
    - Most existing plugins will continue working without changes due to duck-typing
  - Changes from 16.13.0
    - Added detection and repair for Ghostscript 10.6 JPEG corruption.
      When GS 10.6 truncates JPEG data by 1-15 bytes, OCRmyPDF now restores the original image bytes
      from the input PDF. A warning is issued when GS 10.6+ is detected. {issue}1603
    - We continue to force re-optimization of JPEGs, since this catches some issues
      with corruption for situations where Ghostscript modifies an image.
      It is likely there are still cases where we cannot mitigate all corruption issues. {issue}1585
    - Fixed handling of PDF page boxes (ArtBox, BleedBox) which were not being processed
      correctly in some cases. {issue}1181,1360
    - Documentation: clarified podman usage instructions.
* Sat Nov 15 2025 ecsos <ecsos@opensuse.org> - 16.12.0
  - Update to 16.12.0
    - Disable Ghostscript's subset fonts feature, which was found to corrupt text in certain PDFs.
      Thanks @mnaegler for identifying this issue. {issue}1592
    - Users of Ghostscript 10.6.0+ reported that Ghostscript seems to generate corrupted JPEGs.
      We force re-optimization of these JPEGs to mitigate the corruption until Ghostscript fixes the issue. {issue}1585
    - OCRmyPDF now avoids applying flate compression to large JPEG images, unless maximum optimization is requested,
      since flate+DCT compression reduces performances in PDF viewers with large images.
    - Updated Dockerfiles to use more recent base operating systems.
    - Updated build and test matrix to include Python 3.14.
    - Minor documentation improvements.
    - pikepdf >= 10.0.0 is now required.
* Sat Oct 18 2025 ecsos <ecsos@opensuse.org> - 16.11.1
  - Update to 16.11.1
    - Fixed issue with Tesseract changing an error message related to skew. {issue}1576
    - Dropped macOS 13 from build-test matrix since it is no longer supported by Apple.
* Sat Sep 13 2025 ecsos <ecsos@opensuse.org> - 16.11.0
  - Update to 16.11.0
    - Deprecated "semfree" plugin in favor of falling back to threads if
      the platform does not support semaphores. Fixes an issue with Python 3.14.
    - Fixed references to PDF/A compliances levels to be consistent with ISO nomenclature. {issue}1557
    - Fixed an issue around using plugin_manager as an argument. {issue}1555
    - Added OpenBSD install steps to README. {issue}1554
    - Removed PyPy from test matrix due to declining support in third party libraries.
    - Documentation improvements.
* Fri Sep 05 2025 ecsos <ecsos@opensuse.org> - 16.10.4
  - Update to 16.10.4
    - Corrected build errors in Python 3.13.3 and 3.13.4.
    - Version 16.10.3 (not released)
    - Blocked optimization of images with pre-blended soft masks. {issue}1536
    - Fixed warning from hypothesis on running tests.
    - Release incomplete due to new test failures in Python 3.13.3 and 3.13.4.
* Wed May 28 2025 ecsos <ecsos@opensuse.org>
  - Update to 16.10.2
    - Blacklist pikepdf 9.8.0 due to an incompatible change.
  - Changes from 16.10.1
    - No changes affecting OCRmyPDF functionality for command line end users.
    - webservice: made page specification easier to find in UI.
    - webservice: fix download button downloads wrong file.
    - Converted project documentation from rST to Markdown.
    - Added README translation to Simplified Chinese.
    - Modernized license specification in pyproject.toml.
    - Modernized SPDX license to REUSE.toml.
  - Changes from 16.10.0
    - Added hocr textangle processing, improving handling of text at angles. {issue}1467
    - Docker documentation updates related to podman.  {issue}1489,1488
    - Dropped webservice.py's fragile use of ttyd. Instead, messages from ocrmypdf are printed to the console.
    - Fixed broken test test_hocrtransform_matches_sandwich, which had become an invalid test.
    - Improved install instructions for Windows.
  - Changes from 16.9.0
    - Added hocr caption processing. {issue}1466
    - ocrmypdf-alpine Docker image is now built with Alpine 3.21.
    - Fixed error handling of PDFs that contain invalid images with both ImageMask and ColorSpace defined. {issue}1453
    - Fixed test suite regression when only older Ghostscripts are installed.
    - Improved documetnation of _progressbar.py. {issue}1456
    - Disabling building of documentation as PDF on ReadTheDocs, as this caused complex build issues deemed not worth solving.
  - Changes from 16.8.0
    - Upgraded webservice.py demonstration using streamlit.
      It's now possible to exercise most of OCRmyPDF's functionality in a simple web UI.
    - Added cache to Dockerfiles to improve build speed.
    - Fixed numerous formatting errors in the documentation that prevented some parts of documentation from generating correctly.
    - Improved OCR text rendering by suppressing negative-width spaces. {issue}1446
    - Improved detecting of invisible text when using --redo-ocr. {issue}`1448``
* Wed Jan 08 2025 ecsos <ecsos@opensuse.org>
  - Update to 16.7.0
    - Fixed further issues with Docker build and updated some versions.
    - Main Docker image returned to Ubuntu 24.04 since the fix in v16.6.2 resolved that concern.
    - Code that previously sent Ghostscript output to stdout has been changed to output to temporary files,
      since Ghostscript was doing that anyway internally. This is a modest efficiency improvement.
    - Fixed an issue with debug log output being parsed as rich markup. :issue:`1444`
* Sun Nov 17 2024 ecsos <ecsos@opensuse.org>
  - Update to 16.6.2
    - Remove invalid hyperlink annotations to satisfy Ghostscript 10.x during PDF/A conversion. :issue:`1425`
  - Changes from 16.6.1
    - Fixed some issues with Docker build, such as removing unnecessary content and using a stable Tesseract version.
    - Reverted Docker image to Ubuntu 22.04 to access older/more stable Ghostscript for now.
    - Clarified batch commands in documentation.
    - Fixed an issue with JSON serialization and pickling of HOCRResult. :issue:`1427`
* Tue Oct 29 2024 ecsos <ecsos@opensuse.org>
  - Update to 16.6.0
    - Fixed an issue where damaged PDFs would fail with --redo-ocr. :issue:`1403`
    - Fixed an error that prevented JBIG2 optimization on Windows if the image was optimized in an earlier step. :issue:`1396`
    - Fixed an error detecting the version of unpaper 7.0.0. :issue:`1409`
    - Fixed a performance regression when scanning pages. :issue:`1378`. Thanks @aliemjay.
    - Fixed Alpine Docker image by enforcing Alpine 3.19.
      Alpine 3.20 includes a defective version of Tesseract OCR and so is not usable.
    - Upgraded Ubuntu Docker image to use Ubuntu 24.04.
    - Build and test scripts/actions switched to uv.
    - When running in a container, we now remind the user that temporary folders are inside the container and may not be accessible.
    - Fixed Linux test coverage matrix, which was missing some key versions.
  - Changes from 16.5.0
    - Fixed issue with interpreting PDFs that have images with array masks. :issue:`1377`
    - Enabled testing on Python 3.13.
    - Fixed a test that did not work correctly but still passed. :issue:`1382`
    - Improved "PDF/A conversion failed" warning message to better describe implications.
    - Updated documentation to better explain OCR_JSON_SETTINGS in batch processing.
    - Build backend changed from setuptools to hatchling.
* Sun Aug 11 2024 ecsos <ecsos@opensuse.org>
  - Update to 16.4.3
    - Work around pdfminer.six issue where a token on the buffer boundary is incorrectly parsed as two tokens. :issue:`1361`
    - New rules are applied to stencil masks and explicit masks when calculating the optimal page DPI for rendering. :issue:`1362`
    - Fixed attempts to use an incompatible jbig2.EXE provided by TeX Live. :issue:`1363`
  - Changes from 16.4.2
    - Fixed order of filenames passed to Ghostscript for PDF/A generation. :issue:`1359`
    - Suppressed missing jbig2dec warning message. :issue:`1358`
    - Fixed calculation of image size when soft mask dimensions don't match image dimension. :issue:`1351`
    - Several fixes to documentation. Thanks to users Iris and JoKalliauer who contributed these changes.
    - Fixed error on processing PDFs that are missing certain image metadata. :issue:`1315`
* Tue Jul 02 2024 ecsos <ecsos@opensuse.org>
  - Update to 16.4.1
    - Fixed calculation of image printed area (used in finding weighted DPI for OCR). :issue:`1334`
    - Fixed "NotImplementedError: not sure how to get colorspace" error messages
      in logs which simply records a failure to optimize images with print production colorspaces. :issue:`1315`
  - Changes from 16.4.0
    - Selecting the osd and equ pseudo-languages with -l/--language now exits with an error
      when using Tesseract OCR, because these are not regular Tesseract languages
      but implementation details implemented. Using them can cause Tesseract to crash.
    - The hOCR renderer is more tolerant of extra whitespace in input files.
    - watcher.py now changes the output file extension to .pdf when the input is not .pdf.
    - Improved handling of PDFs that contain circularly referenced Form XObjects. :issue:`1321`
    - Fixed Alpine Docker image for ARM64, which was not building correctly.
    - Docker images now use pikepdf 9.0.0.
    - Prevent use of Tesseract OCR 5.4.0, a version with known regressions.
    - Disabled progressbar for "Linearizing" when --no-progress-bar set.
    - Fixed some tests that warn about missing JBIG2 decoding via pikepdf,
      by installing the necessary libraries during tests.
* Sat May 25 2024 ecsos <ecsos@opensuse.org>
  - Update to 16.3.1
    - Fixed a test suite failure with Ghostscript 10.03.0+. 1316
    - Fixed an issue with the presentation of the "OCR" progress bar. 1313
  - Changes from 16.3.0
    - Fixed progress bar not displaying for Ghostscript PDF/A conversion. 1313
    - Added progress bar for linearization. 1313
    - If --rotate-pages-threshold issued without --rotate-pages we now
      exit with an error since the user likely intended to use --rotate-pages. 1309
    - If Tesseract hOCR gives an invalid line box, print an error message instead of exiting with an error. 1312
* Fri Apr 19 2024 ecsos <ecsos@opensuse.org>
  - Update to 16.2.0
    - Fixed issue ‘NoneType’ object has no attribute ‘get’ when optimizing certain PDFs. #1293, #1271
    - Switched formatting from black to ruff.
    - Added support for sending sidecar output to io.BytesIO.
    - Added support for converting HEIF/HEIC images (the native image of iPhones and some other devices) to PDFs,
      when the appropriate pi-hief library is installed. This library is marked as a dependency,
      but maintainers may opt out if needed.
    - We now default to downsampling large images that would exceed Tesseract’s internal limits,
      but only if it cause processing to fail. Previously, this behavior only occurred if specifically
      requested on command line. It can still be configured and disabled. See the –tesseract command line options.
    - Added Macports install instructions. Thanks @akierig.
    - Improved logging output when an unexpected error occurs while trying to obtain the version of a third party program.
  - Changes from 16.1.2
    - Fixed test suite failure when using Ghostscript 10.3.
    - Other minor corrections.
* Sat Feb 17 2024 ecsos <ecsos@opensuse.org>
  - Update to 16.1.1
    - Fixed PyPy 3.10 support.
  - Changes from 16.1.0
    - Improved hOCR renderer is now default for left to right languages.
    - Improved handling of rotated pages. Previously, OCR text might be missing for
      pages that were rotated with a /Rotate tag on the page entry.
    - Improved handling of cropped pages. Previously, in some cases a page with a
      crop box would not have its OCR applied correctly and misalignment between
      OCR text and visible text coudl occur.
    - Documentation improvements, especially installation instructions for less
      common platforms.
* Mon Jan 08 2024 ecsos <ecsos@opensuse.org>
  - Update to 16.0.4
    - Fixed some issues for left-to-right text with the new hOCR renderer.
      It is still not default yet but will be made so soon.
      Right-to-left text is still in progress.
    - Added an error to prevent use of several versions of Ghostscript
      that seem corrupt existing text in input PDFs.
      Newly generated OCR is not affected.
      For best results, use Ghostscript 10.02.1 or newer,
      which contains the fix for the issue.
* Thu Jan 04 2024 ecsos <ecsos@opensuse.org>
  - Update to 16.0.3
    - Changed minimum required Ghostscript to 9.54, to support users of RHEL 9 and its derivatives,
      since that is the latest version available there.
    - Removed warning message about CVE-2023-43115, on the assumption that most distributions have backported the patch by now.
  - Changes from 16.0.2
    - Temporarily changed PDF text renderer back to sandwich by default to address regressions in macOS Preview.
  - Changes from 16.0.1
    - Fixed text rendering issue with new hOCR text renderer - extraneous byte order marks.
    - Tightened dependencies.
  - Changes from 16.0.0
    - Added OCR text renderer, combined the best ideas of Tesseract's PDF generator and the older hOCR transformer renderer.
      The result is a hopefully permanent fix for wordssmushedtogetherwithoutspaces issues in extracted text, better
      registration/position of text on skewed baselines :issue:`1009`, fixes to character output when the German Fraktur script
      is used :issue:`1191`, proper rendering of right to left languages (Arabic, Hebrew, Persian) :issue:`1157`.
      Asian languages may still have excessive word breaks compared to expectations. The new renderer is the default;
      the old sandwich renderer is still available using --pdf-renderer sandwich; the old hOCR renderer is no more.
    - The ocrmypdf.hocrtransform API has changed substantially.
    - Support for Python 3.9 has been dropped. Python 3.10+ is now required.
    - pikepdf >= 8.8.0 is now required.
* Fri Dec 15 2023 ecsos <ecsos@opensuse.org>
  - Initial version 15.4.4

Files

/etc/alternatives/ocrmypdf
/usr/bin/ocrmypdf
/usr/bin/ocrmypdf-3.13
/usr/lib/python3.13/site-packages/ocrmypdf
/usr/lib/python3.13/site-packages/ocrmypdf-17.4.2.dist-info
/usr/lib/python3.13/site-packages/ocrmypdf-17.4.2.dist-info/INSTALLER
/usr/lib/python3.13/site-packages/ocrmypdf-17.4.2.dist-info/METADATA
/usr/lib/python3.13/site-packages/ocrmypdf-17.4.2.dist-info/RECORD
/usr/lib/python3.13/site-packages/ocrmypdf-17.4.2.dist-info/REQUESTED
/usr/lib/python3.13/site-packages/ocrmypdf-17.4.2.dist-info/WHEEL
/usr/lib/python3.13/site-packages/ocrmypdf-17.4.2.dist-info/entry_points.txt
/usr/lib/python3.13/site-packages/ocrmypdf-17.4.2.dist-info/licenses
/usr/lib/python3.13/site-packages/ocrmypdf-17.4.2.dist-info/licenses/LICENSE
/usr/lib/python3.13/site-packages/ocrmypdf/RELEASE.md
/usr/lib/python3.13/site-packages/ocrmypdf/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/__main__.py
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/__main__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/__main__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_annots.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_annots.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_concurrent.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_concurrent.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_defaults.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_defaults.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_graft.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_graft.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_jobcontext.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_jobcontext.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_logging.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_logging.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_metadata.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_metadata.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_options.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_options.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_pipeline.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_pipeline.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_plugin_manager.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_plugin_manager.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_plugin_registry.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_plugin_registry.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_progressbar.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_progressbar.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_validation.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_validation.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_validation_coordinator.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_validation_coordinator.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_version.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/_version.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/api.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/api.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/cli.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/cli.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/exceptions.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/exceptions.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/helpers.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/helpers.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/imageops.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/imageops.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/languages.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/languages.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/optimize.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/optimize.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/pdfa.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/pdfa.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/pluginspec.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/pluginspec.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/quality.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/__pycache__/quality.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_annots.py
/usr/lib/python3.13/site-packages/ocrmypdf/_concurrent.py
/usr/lib/python3.13/site-packages/ocrmypdf/_defaults.py
/usr/lib/python3.13/site-packages/ocrmypdf/_exec
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/ghostscript.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/ghostscript.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/jbig2enc.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/jbig2enc.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/pngquant.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/pngquant.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/tesseract.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/tesseract.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/unpaper.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/unpaper.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/verapdf.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/__pycache__/verapdf.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/ghostscript.py
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/jbig2enc.py
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/pngquant.py
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/tesseract.py
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/unpaper.py
/usr/lib/python3.13/site-packages/ocrmypdf/_exec/verapdf.py
/usr/lib/python3.13/site-packages/ocrmypdf/_graft.py
/usr/lib/python3.13/site-packages/ocrmypdf/_jobcontext.py
/usr/lib/python3.13/site-packages/ocrmypdf/_logging.py
/usr/lib/python3.13/site-packages/ocrmypdf/_metadata.py
/usr/lib/python3.13/site-packages/ocrmypdf/_options.py
/usr/lib/python3.13/site-packages/ocrmypdf/_pipeline.py
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/_common.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/_common.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/hocr_to_ocr_pdf.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/hocr_to_ocr_pdf.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/ocr.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/ocr.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/pdf_to_hocr.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/__pycache__/pdf_to_hocr.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/_common.py
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/hocr_to_ocr_pdf.py
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/ocr.py
/usr/lib/python3.13/site-packages/ocrmypdf/_pipelines/pdf_to_hocr.py
/usr/lib/python3.13/site-packages/ocrmypdf/_plugin_manager.py
/usr/lib/python3.13/site-packages/ocrmypdf/_plugin_registry.py
/usr/lib/python3.13/site-packages/ocrmypdf/_progressbar.py
/usr/lib/python3.13/site-packages/ocrmypdf/_validation.py
/usr/lib/python3.13/site-packages/ocrmypdf/_validation_coordinator.py
/usr/lib/python3.13/site-packages/ocrmypdf/_version.py
/usr/lib/python3.13/site-packages/ocrmypdf/api.py
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/concurrency.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/concurrency.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/default_filters.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/default_filters.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/ghostscript.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/ghostscript.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/null_ocr.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/null_ocr.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/optimize.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/optimize.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/pypdfium.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/pypdfium.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/tesseract_ocr.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/__pycache__/tesseract_ocr.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/concurrency.py
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/default_filters.py
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/ghostscript.py
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/null_ocr.py
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/optimize.py
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/pypdfium.py
/usr/lib/python3.13/site-packages/ocrmypdf/builtin_plugins/tesseract_ocr.py
/usr/lib/python3.13/site-packages/ocrmypdf/cli.py
/usr/lib/python3.13/site-packages/ocrmypdf/data
/usr/lib/python3.13/site-packages/ocrmypdf/data/NotoSans-Regular.ttf
/usr/lib/python3.13/site-packages/ocrmypdf/data/Occulta.ttf
/usr/lib/python3.13/site-packages/ocrmypdf/data/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/data/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/data/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/data/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/data/sRGB.icc
/usr/lib/python3.13/site-packages/ocrmypdf/exceptions.py
/usr/lib/python3.13/site-packages/ocrmypdf/extra_plugins
/usr/lib/python3.13/site-packages/ocrmypdf/extra_plugins/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/extra_plugins/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/extra_plugins/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/extra_plugins/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/extra_plugins/__pycache__/semfree.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/extra_plugins/__pycache__/semfree.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/extra_plugins/semfree.py
/usr/lib/python3.13/site-packages/ocrmypdf/font
/usr/lib/python3.13/site-packages/ocrmypdf/font/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/font_manager.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/font_manager.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/font_provider.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/font_provider.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/multi_font_manager.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/multi_font_manager.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/system_font_provider.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/__pycache__/system_font_provider.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/font/font_manager.py
/usr/lib/python3.13/site-packages/ocrmypdf/font/font_provider.py
/usr/lib/python3.13/site-packages/ocrmypdf/font/multi_font_manager.py
/usr/lib/python3.13/site-packages/ocrmypdf/font/system_font_provider.py
/usr/lib/python3.13/site-packages/ocrmypdf/fpdf_renderer
/usr/lib/python3.13/site-packages/ocrmypdf/fpdf_renderer/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/fpdf_renderer/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/fpdf_renderer/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/fpdf_renderer/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/fpdf_renderer/__pycache__/renderer.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/fpdf_renderer/__pycache__/renderer.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/fpdf_renderer/renderer.py
/usr/lib/python3.13/site-packages/ocrmypdf/helpers.py
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/__main__.py
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/__pycache__/__main__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/__pycache__/__main__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/__pycache__/hocr_parser.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/__pycache__/hocr_parser.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/hocrtransform/hocr_parser.py
/usr/lib/python3.13/site-packages/ocrmypdf/imageops.py
/usr/lib/python3.13/site-packages/ocrmypdf/languages.py
/usr/lib/python3.13/site-packages/ocrmypdf/models
/usr/lib/python3.13/site-packages/ocrmypdf/models/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/models/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/models/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/models/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/models/__pycache__/ocr_element.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/models/__pycache__/ocr_element.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/models/ocr_element.py
/usr/lib/python3.13/site-packages/ocrmypdf/optimize.py
/usr/lib/python3.13/site-packages/ocrmypdf/pdfa.py
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/_contentstream.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/_contentstream.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/_image.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/_image.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/_types.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/_types.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/_worker.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/_worker.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/info.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/info.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/layout.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/__pycache__/layout.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/_contentstream.py
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/_image.py
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/_types.py
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/_worker.py
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/info.py
/usr/lib/python3.13/site-packages/ocrmypdf/pdfinfo/layout.py
/usr/lib/python3.13/site-packages/ocrmypdf/pluginspec.py
/usr/lib/python3.13/site-packages/ocrmypdf/py.typed
/usr/lib/python3.13/site-packages/ocrmypdf/quality.py
/usr/lib/python3.13/site-packages/ocrmypdf/subprocess
/usr/lib/python3.13/site-packages/ocrmypdf/subprocess/__init__.py
/usr/lib/python3.13/site-packages/ocrmypdf/subprocess/__pycache__
/usr/lib/python3.13/site-packages/ocrmypdf/subprocess/__pycache__/__init__.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/subprocess/__pycache__/__init__.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/subprocess/__pycache__/_windows.cpython-313.opt-1.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/subprocess/__pycache__/_windows.cpython-313.pyc
/usr/lib/python3.13/site-packages/ocrmypdf/subprocess/_windows.py
/usr/share/doc/packages/python313-ocrmypdf
/usr/share/doc/packages/python313-ocrmypdf/README.md
/usr/share/licenses/python313-ocrmypdf
/usr/share/licenses/python313-ocrmypdf/LICENSE
/usr/share/licenses/python313-ocrmypdf/LICENSES
/usr/share/licenses/python313-ocrmypdf/LICENSES/AGPL-3.0-or-later.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/Apache-2.0.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/CC-BY-SA-1.0.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/CC-BY-SA-2.0.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/CC-BY-SA-2.5.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/CC-BY-SA-3.0.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/CC-BY-SA-4.0.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/GFDL-1.2-or-later.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/MIT.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/MPL-2.0.txt
/usr/share/licenses/python313-ocrmypdf/LICENSES/Zlib.txt


Generated by rpm2html 1.8.1

Fabrice Bellet, Mon Aug 3 00:04:55 2026