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

python311-dulwich-0.21.7-1.1 RPM for s390x

From OpenSuSE Ports Tumbleweed for s390x

Name: python311-dulwich Distribution: openSUSE:Factory:zSystems
Version: 0.21.7 Vendor: openSUSE
Release: 1.1 Build date: Thu Dec 7 01:28:46 2023
Group: Development/Languages/Python Build host: s390zl21
Size: 4633230 Source RPM: python-dulwich-0.21.7-1.1.src.rpm
Packager: https://bugs.opensuse.org
Url: https://www.dulwich.io
Summary: Pure-Python Git Library
Simple Pure-Python implementation of the Git file formats and protocols. Dulwich
is the place where Mr. and Mrs. Git live in one of the Monty Python sketches.

Provides

Requires

License

Apache-2.0 OR GPL-2.0-or-later

Changelog

* Wed Dec 06 2023 Dirk Müller <dmueller@suse.com>
  - update to 0.21.7:
    * Fix NameError when encountering errors during HTTP operation.
    * Raise exception when default identity can't be found.
    * Add a dedicated exception class for unresolved
      deltas.
    * Support credentials in proxy URL. (Jelmer Vernooij, #1227)
    * Add ``dulwich.porcelain.for_each_ref``. (Daniele Trifirò)
* Mon Sep 18 2023 Dirk Müller <dmueller@suse.com>
  - update to 0.21.6:
    * index: Handle different stages of conflicted paths.
    * Improve LCA finding performance. (Kevin Hendricks)
    * client: Handle Content-Type with encoding set.
    * Only import _hashlib for type checking.
    * Update docs regarding building dulwich without c bindings
    * objects: Define a stricter return type for _parse_message
    * Raise GitProtocolError when encountering HTTP Errors in
    * HTTPGitClient.
* Mon May 08 2023 Johannes Kastl <kastl@b1-systems.de>
  - add sle15_python_module_pythons
* Sun May 07 2023 Dirk Müller <dmueller@suse.com>
  - update to 0.21.5:
    * Be more tolerant to non-3-length tuple versions.
    * Support ``core.symlinks=false``.
    * Deprecate ``dulwich.objects.parse_commit``.
    * Fix fetching into MemoryRepo.
    * Support ``init.defaultBranch`` config.
    * Fix ``ObjectStore.iterobjects_subset()`` when
      hex shas are passed for objects that live in packs.
    * client: Handle absolute path as redirect location in HTTP
      client.
* Thu Feb 23 2023 Dirk Müller <dmueller@suse.com>
  - update to 0.21.3:
    * Add support for ``worktreeconfig`` extension.
    * Deprecate ``Commit.extra``; the Git project specifically
      discourages adding custom lines, and the contents of
      ``Commit.extra`` are unpredictable as contents
      may be different between different versions of Dulwich
      with support for different headers.
      ``Commit._extra`` still exists.
* Wed Feb 01 2023 Lukas Müller <expeehaa@outlook.com>
  - Add dependency typing_extension for Python versions <3.8.
* Thu Jan 19 2023 Lukas Müller <expeehaa@outlook.com>
  - Update to version 0.21.2.
    * Fix early file close bug in dulwich.pack.extend_pack. (@jelmer)
  - Update to version 0.21.1.
    * Factor out dulwich.pack.extend_pack. (@jelmer)
  - Update to version 0.21.0.
    * Pack internals have been significantly refactored, including significant low-level API changes.
      As a consequence of this, Dulwich now reuses pack deltas when
      communicating with remote servers, which brings a big boost to network performance. (@jelmer)
    * Add 'pack-refs' command. (@danchr)
    * Handle more errors when trying to read a ref (@danchr)
    * Allow for reuse of existing deltas while creating pack files (@stspdotname)
    * cli: fix argument parsing for pack-objects --stdout (@stspdotname)
    * cli: open pack-objects output files in binary mode to avoid write() error (@stspdotname)
    * Bump minimum python version to 3.7. (@jelmer)
    * honor no_proxy environment variable (#1098, @afaul)
    * In HTTP Git Client, allow missing Content-Type. (@jelmer)
    * Fix --pure builds (@jelmer, #1093)
    * Allow passing abbrev to describe (#1084, @nanonyme)
* Mon Nov 21 2022 Lukas Müller <expeehaa@outlook.com>
  - Update to version 0.20.50.
    * Fix Repo.reset_index. Previously, it instead took the union with the given tree. (Christian Sattler, #1072)
    * Add -b argument to dulwich clone. (Jelmer Vernooij)
    * On Windows, provide a hint about developer mode when creating symlinks fails due to a permission error. (Jelmer Vernooij, #1005)
    * Add new ObjectID type in dulwich.objects, currently just an alias for bytes. (Jelmer Vernooij)
    * Support repository format version 1. (Jelmer Vernooij, #1056)
    * Support \r\n line endings with continuations when parsing configuration files. (Jelmer Vernooij)
    * Fix handling of SymrefLoop in RefsContainer.setitem. (Dominic Davis-Foster, Jelmer Vernooij)
* Mon Sep 12 2022 Dirk Müller <dmueller@suse.com>
  - update to 0.20.46:
    * Apply insteadOf to rsync-style location strings
    * Drop use of certifi, instead relying on urllib3's default
    code to find system CAs.
    * Implement timezone parsing in porcelain.
    * Drop support for running without setuptools.
    * Ensure configuration is loaded when
    running "dulwich clone".
    * Build 32 bit wheels for Windows.
    * tests: Ignore errors when deleting GNUPG
    home directory. Fixes spurious errors racing
    gnupg-agent. Thanks, Matěj Cepl. Fixes #1000
    * config: Support closing brackets in quotes in section
    names. (Jelmer Vernooij, #10124)
    * Various and formatting fixes. (Kian-Meng Ang)
    * Document basic authentication in dulwich.porcelain.clone.
    * Flush before calling fsync, ensuring buffers
    are filled. (wernha)
    * Support GPG commit signing. (springheeledjack0)
    * Add python 3.11 support. (Saugat Pachhai)
    * Allow missing GPG during tests. (Jakub Kulík)
    * status: return posix-style untracked paths instead of nt-style paths on
    win32 (Daniele Trifirò)
    * Honour PATH environment when running C Git for testing.
    * Split out exception for symbolic reference loops.
    * Move various long-deprecated methods.
  - drop rmtree-ignore-errors.patch (upstream)
* Tue Sep 06 2022 Lukas Müller <expeehaa@outlook.com>
  - Disable tests on Leap.
  - Remove gevent and geventhttpclient from Recommends since they are only required for tests.
* Wed Aug 31 2022 Matej Cepl <mcepl@suse.com>
  - Adjust rmtree-ignore-errors patch according to upstream review.
* Fri Aug 19 2022 Matej Cepl <mcepl@suse.com>
  - Add rmtree-ignore-errors.patch to make shutil.rmtree to be more
    callous (gh#jelmer/dulwich#1000) and prevent thus the race
    condition in cleaning up after the tests.
* Mon Jul 25 2022 Dirk Müller <dmueller@suse.com>
  - update to 0.20.45:
    * Add basic ``dulwich.porcelain.submodule_list`` and ``dulwich.porcelain.submodule_add``
    * Fix reading of chunks in server. (Jelmer Vernooij, #977)
    * Support applying of URL rewriting using ``insteadOf`` / ``pushInsteadOf``.
* Sun Jun 19 2022 Dirk Müller <dmueller@suse.com>
  - update to 2.0.43:
    * Lazily import url2pathname.
    * Drop caching of full HTTP response. Attempt #2.
* Sun May 29 2022 Dirk Müller <dmueller@suse.com>
  - update to 0.20.42:
    * Drop ``RefsContainer.watch`` that was always flaky.
    * Fix wheel uploading, properly. (Ruslan Kuprieiev)
* Sun May 22 2022 Lukas Müller <expeehaa@outlook.com>
  - Update to version 0.20.40.
    Changelog: https://github.com/jelmer/dulwich/releases/tag/dulwich-0.20.40
    * Fix wheel uploading.
* Sat Mar 26 2022 Dirk Müller <dmueller@suse.com>
  - update to 0.20.35:
    * Document the ``path`` attribute for ``Repo``.
    * Add support for multivars in configuration.
    * Fix handling of escaped characters in ignore patterns.
    * Add ``dulwich.contrib.requests_vendor``. (epopcon)
    * Ensure git config is available in a linked working tree.
* Fri Feb 04 2022 Dirk Müller <dmueller@suse.com>
  - update to 0.20.32:
    * Properly close result repository during test.
* Sun Jan 23 2022 Dirk Müller <dmueller@suse.com>
  - update to 0.20.31:
    * Add GitClient.clone()
* Mon Jan 10 2022 Dirk Müller <dmueller@suse.com>
  - update to 0.20.30:
    * Support staging submodules.
    * Drop deprecated Index.iterblobs and iter_fresh_blobs.
    * Unify clone behaviour of ``Repo.clone`` and
    ``porcelain.clone``, and add branch parameter for
    clone.
    * Fix hook test on Mac OSX / Linux when dulwich is
    not installed system-wide.
    * Cope with gecos being unset.
    * Allow adding files to repository in pre-commit hook.
    * Raise SubmoduleEncountered in ``tree_lookup_path``.
* Sat Nov 13 2021 Dirk Müller <dmueller@suse.com>
  - update to 0.20.26:
    * Support os.PathLike arguments to Repo.stage()
    * Drop support for Python 3.5
    * Add ``dulwich.porcelain._reset_file``
    * Add ``Repo.unstage``
* Sat Oct 16 2021 Dirk Müller <dmueller@suse.com>
  - update to 0.20.25:
    * Fix ``dulwich`` script when installed via setup.py.
    * Make default file mask consistent
* Thu Aug 19 2021 Bernhard Wiedemann <bwiedemann@suse.com>
  - update to 0.20.24
    * https://github.com/dulwich/dulwich/commits/0.20.24
    * fix build after 2023 (boo#1102840)
    * config: disregard UTF-8 BOM when reading file
    * Split out a AbstractHTTPGitClient class
    * Set zip_safe=false
    * Add separate HTTPProxyUnauthorized exception
* Sun Jun 06 2021 Dirk Müller <dmueller@suse.com>
  - update to 0.20.23:
    * Fix installation of GPG during package publishing.
    * Prevent removal of refs directory when the last ref is
      deleted.
    * Fix filename: MERGE_HEADS => MERGE_HEAD.
    * For ignored directories, porcelain.add and porcelain.status now only return
      the path to directory itself in the list of ignored paths. Previously, paths
      for all files within the directory would also be included in the list.
    * Provide depth argument to ``determine_wants``.
    * Various tag signature handling improvements.
    * Add separate Tag.verify().  (Peter Rowlands)
    * Add support for version 3 index files. (Jelmer Vernooij)
    * Fix autocrlf=input handling. (Peter Rowlands, Boris Feld)
    * Attempt to find C Git global config on Windows.
    * The APIs for writing and reading individual index entries have changed
      to handle lists of (name, entry) tuples rather than tuples.
* Tue May 18 2021 Dirk Müller <dmueller@suse.com>
  - update to 0.20.21:
    * Add basic support for a GcsObjectStore that stores
      pack files in gcs.
    * In porcelain.push, default to local active branch.
    * Support fetching symrefs.
* Thu Apr 22 2021 Dirk Müller <dmueller@suse.com>
  - update to 0.20.20:
    * Support untracked symlinks to paths outside the
      repository.
    * Fix handling of negative matches in nested gitignores.
    * Fix formatting in setup.py. (Jelmer Vernooij)
    * Add release configuration. (Jelmer Vernooij)
    * credentials: ignore end-of-line character. (Georges Racinet)
    * Fix failure in get_untracked_paths when the repository contains symlinks.
    * docs: Clarify that Git objects are created on `git add`.
    * Add flag to only attempt to fetch ignored untracked files when specifically requested.
* Tue Dec 29 2020 Dirk Müller <dmueller@suse.com>
  - update to 0.20.15:
    * Add some functions for parsing and writing bundles.
    * Add ``no_verify`` flag to ``porcelain.commit`` and ``Repo.do_commit``.
    * Remove dependency on external mock module.
  - drop remove_mock.patch (upstream)
* Sun Dec 20 2020 Dirk Müller <dmueller@suse.com>
  - update to 0.20.14:
    * Fix some stash functions on Python 3.
    * Fix handling of relative paths in alternates files on Python 3.
    * Add py.typed to allow type checking.
    * Add tests demonstrating a bug in the walker code.
* Mon Dec 14 2020 Benjamin Greiner <code@bnavigator.de>
  - Fix condition around BuildRequirement
* Sun Dec 13 2020 Matej Cepl <mcepl@suse.com>
  - We don't need to break Python 2.7
* Fri Dec 11 2020 Matej Cepl <mcepl@suse.com>
  - Add remove_mock.patch to remove dependency on the external mock
    package (gh#dulwich/dulwich#820).
* Tue Nov 10 2020 Dirk Mueller <dmueller@suse.com>
  - update to 0.20.11:
    * Fix wheels build on Linux. (Ruslan Kuprieiev)
    * Enable wheels build for Python 3.9 on Linux. (Jelmer Vernooij)
    * Check core.repositoryformatversion. (Jelmer Vernooij, #803)
    * Fix ACK/NACK handling in archive command handling in dulwich.client.
* Wed Sep 16 2020 Dirk Mueller <dmueller@suse.com>
  - update to 0.20.6:
    * Add a ``RefsContainer.watch`` interface.
    * Fix pushing of new branches from porcelain.push.
    * Honor shallows when pushing from a shallow clone.
    * Fix porcelain.path_to_tree_path for Python 3.5.
* Fri Jul 10 2020 Dirk Mueller <dmueller@suse.com>
  - update to 0.20.5:
    * Print a clearer exception when setup.py is executed on Python < 3.5.
    * Send an empty pack to clients if they requested objects, even if they
      already have those objects. Thanks to Martijn Pieters for
      the detailed bug report.
    * porcelain.pull: Don't ask for objects that we already have.
    * Add LCA implementation. (Kevin Hendricks)
    * Add functionality for finding the merge base. (Kevin Hendricks)
    * Check for diverged branches during push.
    * Check for fast-forward during pull. (Jelmer Vernooij, #666)
    * Return a SendPackResult object from
      GitClient.send_pack(). (Jelmer Vernooij)
    * ``GitClient.send_pack`` now sets the ``ref_status`` attribute
      on its return value to a dictionary mapping ref names
      to error messages. Previously, it raised UpdateRefsError
      if any of the refs failed to update.
      (Jelmer Vernooij, #780)
    * Add a ``porcelain.Error`` object that most errors in porcelain
      derive from. (Jelmer Vernooij)
    * Fix argument parsing in dulwich command-line app.
      (Jelmer Vernooij, #784)
    * Add support for remembering remote refs after push/pull.
      (Jelmer Vernooij, #752)
    * Support passing tree and output encoding to
      dulwich.patch.unified_diff. (Jelmer Vernooij, #763)
    * Fix pushing of new refs over HTTP(S) when there are
      no new objects to be sent.
      (Jelmer Vernooij, #739)
    * Raise new error HTTPUnauthorized when the server sends
      back a 401. The client can then retry with credentials.
      (Jelmer Vernooij, #691)
    * Move the guts of bin/dulwich to dulwich.cli, so it is easier to
      test or import. (Jelmer Vernooij)
    * Install dulwich script from entry_points when setuptools is available,
      making it slightly easier to use on Windows. (Jelmer Vernooij, #540)
    * Set python_requires>=3.5 in setup.py. (Manuel Jacob)
* Mon Jun 08 2020 Dirk Mueller <dmueller@suse.com>
  - update to 0.20.2:
    * Brown bag release to fix uploads of Windows wheels.
    * Publish binary wheels for: Windows, Linux, Mac OS X.
      (Jelmer Vernooij, #711, #710, #629)
    * Drop support for Python 2. (Jelmer Vernooij)
    * Only return files from the loose store that look like git objects.
    * Ignore agent= capability if sent by client.
    * Don't break when encountering block devices.
    * Decode URL paths in HttpGitClient using utf-8 rather than file system
    * Fix pushing from a shallow clone.
    * Don't send "deepen None" to server if graph walker
      supports shallow. (Jelmer Vernooij, #747)
    * Support tweaking the compression level for
      loose objects through the "core.looseCompression" and
      "core.compression" settings. (Jelmer Vernooij)
    * Support tweaking the compression level for
      pack objects through the "core.packCompression" and
      "core.compression" settings. (Jelmer Vernooij)
    * Add a "dulwich.contrib.diffstat" module.
      (Kevin Hendricks)
* Tue Mar 31 2020 Tomáš Chvátal <tchvatal@suse.com>
  - Do not remove the tests from distdir as other pkgs can import
    them
* Fri Feb 28 2020 Dirk Mueller <dmueller@suse.com>
  - update to 0.19.15:
    * Properly handle files that are just executable for the
      current user. (Jelmer Vernooij, #734)
    * Fix handling of stored encoding in
      ``dulwich.porcelain.get_object_by_path`` on Python 3.
      (Jelmer Vernooij)
    * Support the include_trees and rename_detector arguments
      at the same time when diffing trees.
      (Jelmer Vernooij)
    * Strip superfluous <> around email. (monnerat)
    * Stop checking for ref validity client-side. Users can
      still call check_wants manually. (Jelmer Vernooij)
    * Switch over to Google-style docstrings.
    * Add a ``dulwich.porcelain.active_branch`` function.
    * Cleanup new directory if clone fails. (Jelmer Vernooij, #733)
    * Expand "~" in global exclude path. (Jelmer Vernooij)

Files

/etc/alternatives/dul-receive-pack
/etc/alternatives/dul-upload-pack
/etc/alternatives/dulwich
/usr/bin/dul-receive-pack
/usr/bin/dul-receive-pack-3.11
/usr/bin/dul-upload-pack
/usr/bin/dul-upload-pack-3.11
/usr/bin/dulwich
/usr/bin/dulwich-3.11
/usr/lib64/python3.11/site-packages/docs
/usr/lib64/python3.11/site-packages/docs/tutorial
/usr/lib64/python3.11/site-packages/docs/tutorial/conclusion.txt
/usr/lib64/python3.11/site-packages/docs/tutorial/encoding.txt
/usr/lib64/python3.11/site-packages/docs/tutorial/file-format.txt
/usr/lib64/python3.11/site-packages/docs/tutorial/index.txt
/usr/lib64/python3.11/site-packages/docs/tutorial/introduction.txt
/usr/lib64/python3.11/site-packages/docs/tutorial/object-store.txt
/usr/lib64/python3.11/site-packages/docs/tutorial/porcelain.txt
/usr/lib64/python3.11/site-packages/docs/tutorial/remote.txt
/usr/lib64/python3.11/site-packages/docs/tutorial/repo.txt
/usr/lib64/python3.11/site-packages/docs/tutorial/tag.txt
/usr/lib64/python3.11/site-packages/dulwich
/usr/lib64/python3.11/site-packages/dulwich-0.21.7-py3.11.egg-info
/usr/lib64/python3.11/site-packages/dulwich-0.21.7-py3.11.egg-info/PKG-INFO
/usr/lib64/python3.11/site-packages/dulwich-0.21.7-py3.11.egg-info/SOURCES.txt
/usr/lib64/python3.11/site-packages/dulwich-0.21.7-py3.11.egg-info/dependency_links.txt
/usr/lib64/python3.11/site-packages/dulwich-0.21.7-py3.11.egg-info/entry_points.txt
/usr/lib64/python3.11/site-packages/dulwich-0.21.7-py3.11.egg-info/not-zip-safe
/usr/lib64/python3.11/site-packages/dulwich-0.21.7-py3.11.egg-info/requires.txt
/usr/lib64/python3.11/site-packages/dulwich-0.21.7-py3.11.egg-info/top_level.txt
/usr/lib64/python3.11/site-packages/dulwich/__init__.py
/usr/lib64/python3.11/site-packages/dulwich/__main__.py
/usr/lib64/python3.11/site-packages/dulwich/__pycache__
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/__init__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/__main__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/__main__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/archive.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/archive.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/bundle.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/bundle.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/cli.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/cli.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/client.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/client.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/config.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/config.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/credentials.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/credentials.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/diff_tree.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/diff_tree.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/errors.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/errors.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/fastexport.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/fastexport.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/file.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/file.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/graph.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/graph.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/greenthreads.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/greenthreads.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/hooks.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/hooks.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/ignore.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/ignore.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/index.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/index.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/lfs.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/lfs.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/line_ending.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/line_ending.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/log_utils.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/log_utils.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/lru_cache.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/lru_cache.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/mailmap.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/mailmap.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/object_store.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/object_store.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/objects.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/objects.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/objectspec.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/objectspec.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/pack.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/pack.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/patch.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/patch.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/porcelain.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/porcelain.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/protocol.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/protocol.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/reflog.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/reflog.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/refs.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/refs.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/repo.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/repo.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/server.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/server.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/stash.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/stash.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/submodule.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/submodule.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/walk.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/walk.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/web.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/__pycache__/web.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/_diff_tree.c
/usr/lib64/python3.11/site-packages/dulwich/_diff_tree.cpython-311-s390x-linux-gnu.so
/usr/lib64/python3.11/site-packages/dulwich/_objects.c
/usr/lib64/python3.11/site-packages/dulwich/_objects.cpython-311-s390x-linux-gnu.so
/usr/lib64/python3.11/site-packages/dulwich/_pack.c
/usr/lib64/python3.11/site-packages/dulwich/_pack.cpython-311-s390x-linux-gnu.so
/usr/lib64/python3.11/site-packages/dulwich/archive.py
/usr/lib64/python3.11/site-packages/dulwich/bundle.py
/usr/lib64/python3.11/site-packages/dulwich/cli.py
/usr/lib64/python3.11/site-packages/dulwich/client.py
/usr/lib64/python3.11/site-packages/dulwich/cloud
/usr/lib64/python3.11/site-packages/dulwich/cloud/__init__.py
/usr/lib64/python3.11/site-packages/dulwich/cloud/__pycache__
/usr/lib64/python3.11/site-packages/dulwich/cloud/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/cloud/__pycache__/__init__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/cloud/__pycache__/gcs.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/cloud/__pycache__/gcs.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/cloud/gcs.py
/usr/lib64/python3.11/site-packages/dulwich/config.py
/usr/lib64/python3.11/site-packages/dulwich/contrib
/usr/lib64/python3.11/site-packages/dulwich/contrib/README.md
/usr/lib64/python3.11/site-packages/dulwich/contrib/README.swift.rst
/usr/lib64/python3.11/site-packages/dulwich/contrib/__init__.py
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/__init__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/diffstat.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/diffstat.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/paramiko_vendor.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/paramiko_vendor.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/release_robot.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/release_robot.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/requests_vendor.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/requests_vendor.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/swift.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/swift.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/test_paramiko_vendor.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/test_paramiko_vendor.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/test_release_robot.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/test_release_robot.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/test_swift.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/test_swift.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/test_swift_smoke.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/__pycache__/test_swift_smoke.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/contrib/diffstat.py
/usr/lib64/python3.11/site-packages/dulwich/contrib/paramiko_vendor.py
/usr/lib64/python3.11/site-packages/dulwich/contrib/release_robot.py
/usr/lib64/python3.11/site-packages/dulwich/contrib/requests_vendor.py
/usr/lib64/python3.11/site-packages/dulwich/contrib/swift.py
/usr/lib64/python3.11/site-packages/dulwich/contrib/test_paramiko_vendor.py
/usr/lib64/python3.11/site-packages/dulwich/contrib/test_release_robot.py
/usr/lib64/python3.11/site-packages/dulwich/contrib/test_swift.py
/usr/lib64/python3.11/site-packages/dulwich/contrib/test_swift_smoke.py
/usr/lib64/python3.11/site-packages/dulwich/credentials.py
/usr/lib64/python3.11/site-packages/dulwich/diff_tree.py
/usr/lib64/python3.11/site-packages/dulwich/errors.py
/usr/lib64/python3.11/site-packages/dulwich/fastexport.py
/usr/lib64/python3.11/site-packages/dulwich/file.py
/usr/lib64/python3.11/site-packages/dulwich/graph.py
/usr/lib64/python3.11/site-packages/dulwich/greenthreads.py
/usr/lib64/python3.11/site-packages/dulwich/hooks.py
/usr/lib64/python3.11/site-packages/dulwich/ignore.py
/usr/lib64/python3.11/site-packages/dulwich/index.py
/usr/lib64/python3.11/site-packages/dulwich/lfs.py
/usr/lib64/python3.11/site-packages/dulwich/line_ending.py
/usr/lib64/python3.11/site-packages/dulwich/log_utils.py
/usr/lib64/python3.11/site-packages/dulwich/lru_cache.py
/usr/lib64/python3.11/site-packages/dulwich/mailmap.py
/usr/lib64/python3.11/site-packages/dulwich/object_store.py
/usr/lib64/python3.11/site-packages/dulwich/objects.py
/usr/lib64/python3.11/site-packages/dulwich/objectspec.py
/usr/lib64/python3.11/site-packages/dulwich/pack.py
/usr/lib64/python3.11/site-packages/dulwich/patch.py
/usr/lib64/python3.11/site-packages/dulwich/porcelain.py
/usr/lib64/python3.11/site-packages/dulwich/protocol.py
/usr/lib64/python3.11/site-packages/dulwich/py.typed
/usr/lib64/python3.11/site-packages/dulwich/reflog.py
/usr/lib64/python3.11/site-packages/dulwich/refs.py
/usr/lib64/python3.11/site-packages/dulwich/repo.py
/usr/lib64/python3.11/site-packages/dulwich/server.py
/usr/lib64/python3.11/site-packages/dulwich/stash.py
/usr/lib64/python3.11/site-packages/dulwich/stdint.h
/usr/lib64/python3.11/site-packages/dulwich/submodule.py
/usr/lib64/python3.11/site-packages/dulwich/tests
/usr/lib64/python3.11/site-packages/dulwich/tests/__init__.py
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/__init__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_archive.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_archive.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_blackbox.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_blackbox.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_bundle.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_bundle.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_client.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_client.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_config.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_config.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_credentials.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_credentials.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_diff_tree.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_diff_tree.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_fastexport.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_fastexport.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_file.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_file.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_grafts.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_grafts.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_graph.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_graph.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_greenthreads.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_greenthreads.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_hooks.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_hooks.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_ignore.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_ignore.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_index.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_index.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_lfs.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_lfs.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_line_ending.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_line_ending.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_lru_cache.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_lru_cache.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_mailmap.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_mailmap.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_missing_obj_finder.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_missing_obj_finder.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_object_store.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_object_store.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_objects.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_objects.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_objectspec.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_objectspec.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_pack.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_pack.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_patch.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_patch.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_porcelain.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_porcelain.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_protocol.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_protocol.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_reflog.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_reflog.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_refs.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_refs.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_repository.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_repository.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_server.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_server.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_stash.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_stash.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_utils.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_utils.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_walk.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_walk.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_web.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/test_web.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/utils.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/__pycache__/utils.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__init__.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/__init__.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/server_utils.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/server_utils.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_client.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_client.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_pack.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_pack.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_patch.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_patch.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_porcelain.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_porcelain.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_repository.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_repository.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_server.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_server.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_utils.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_utils.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_web.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/test_web.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/utils.cpython-311.opt-1.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/__pycache__/utils.cpython-311.pyc
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/server_utils.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/test_client.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/test_pack.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/test_patch.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/test_porcelain.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/test_repository.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/test_server.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/test_utils.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/test_web.py
/usr/lib64/python3.11/site-packages/dulwich/tests/compat/utils.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_archive.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_blackbox.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_bundle.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_client.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_config.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_credentials.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_diff_tree.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_fastexport.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_file.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_grafts.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_graph.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_greenthreads.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_hooks.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_ignore.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_index.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_lfs.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_line_ending.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_lru_cache.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_mailmap.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_missing_obj_finder.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_object_store.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_objects.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_objectspec.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_pack.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_patch.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_porcelain.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_protocol.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_reflog.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_refs.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_repository.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_server.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_stash.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_utils.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_walk.py
/usr/lib64/python3.11/site-packages/dulwich/tests/test_web.py
/usr/lib64/python3.11/site-packages/dulwich/tests/utils.py
/usr/lib64/python3.11/site-packages/dulwich/walk.py
/usr/lib64/python3.11/site-packages/dulwich/web.py
/usr/share/doc/packages/python311-dulwich
/usr/share/doc/packages/python311-dulwich/NEWS
/usr/share/doc/packages/python311-dulwich/README.rst
/usr/share/licenses/python311-dulwich
/usr/share/licenses/python311-dulwich/COPYING


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Mar 9 12:50:11 2024