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

python3-dulwich-0.20.24-1.1 RPM for armv7hl

From OpenSuSE Ports Leap 15.4 for armv7hl

Name: python3-dulwich Distribution: openSUSE Step 15
Version: 0.20.24 Vendor: openSUSE
Release: 1.1 Build date: Sun Dec 5 04:12:56 2021
Group: Development/Languages/Python Build host: obs-arm-5
Size: 4420570 Source RPM: python-dulwich-0.20.24-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

* Thu Aug 19 2021 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 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 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 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 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 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 code@bnavigator.de
  - Fix condition around BuildRequirement
* Sun Dec 13 2020 mcepl@suse.com
  - We don't need to break Python 2.7
* Fri Dec 11 2020 mcepl@suse.com
  - Add remove_mock.patch to remove dependency on the external mock
    package (gh#dulwich/dulwich#820).
* Tue Nov 10 2020 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 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 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 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 tchvatal@suse.com
  - Do not remove the tests from distdir as other pkgs can import
    them
* Fri Feb 28 2020 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)
* Fri Sep 13 2019 tchvatal@suse.com
  - Update to 0.19.13:
    * Don't trust modes if they can't be modified after a file has been created.
    * Implement ``RefsContainer.__iter__``
    * Mark ``.git`` directories as hidden on Windows.
    * Return a 404 not found error when repository is not found.
    * Add a basic ``porcelain.clean``.
    * Update directory detection for `get_unstaged_changes` for Python 3.
    * Avoid ``PermissionError``, since it is Python3-specific.
* Fri Apr 26 2019 tbechtold@suse.com
  - Use Recommends for python-gpg and python-fastimport. Both are
    optional requirements
* Thu Mar 14 2019 tchvatal@suse.com
  - Update to 0.19.11:
    * too many changes to enumerate, see NEWS
  - Drop docu subpackage as it needs many more sphinx modules
* Mon Nov 06 2017 rjschwei@suse.com
  - Update to version 0.18.5 (bsc#1066430)
    + CVE-2017-16228
    + No detailed upstream release notes
    + Commit history https://www.dulwich.io/code/dulwich/
* Sun Sep 17 2017 bwiedemann@suse.com
  - Drop environment.pickle from doc to make build reproducible
* Wed Aug 09 2017 tbechtold@suse.com
  - switch to singlespec
  - split documentation into extra package
* Wed Aug 09 2017 tbechtold@suse.com
  - update to 0.17.3:
    * List Python 3.3 as supported. (Jelmer Vernooij, #513)
  - Remove source validation (not working)
* Mon May 01 2017 develop7@develop7.info
  - update to 0.17.2
    * BUG FIXES
      + Add workaround for
      https://bitbucket.org/pypy/pypy/issues/2499/cpyext-pystring_asstring-doesnt-work,
      fixing Dulwich when used with C extensions on pypy < 5.6. (Victor Stinner)
      + Properly quote config values with a ‘#’ character in them.
      (Jelmer Vernooij, #511)
  - update to 0.17.1
    * IMPROVEMENTS
      + Add basic ‘dulwich pull’ command. (Jelmer Vernooij)
    * BUG FIXES
      + Cope with existing submodules during pull. (Jelmer Vernooij, #505)
  - update to 0.17.0
    * TEST FIXES
      + Skip test that requires sync to synchronize filesystems if os.sync is not
      available. (Koen Martens)
    * IMPROVEMENTS
      + Implement MemoryRepo.{set_description,get_description}. (Jelmer Vernooij)
      + Raise exception in Repo.stage() when absolute paths are passed in. Allow
      passing in relative paths to porcelain.add().(Jelmer Vernooij)
    * BUG FIXES
      + Handle multi-line quoted values in config files. (Jelmer Vernooij, #495)
      + Allow porcelain.clone of repository without HEAD. (Jelmer Vernooij, #501)
      + Support passing tag ids to Walker()’s include argument. (Jelmer Vernooij)
      + Don’t strip trailing newlines from extra headers. (Nicolas Dandrimont)
      + Set bufsize=0 for subprocess interaction with SSH client. Fixes hangs on
      Python 3. (René Stern, #434)
      + Don’t drop first slash for SSH paths, except for those starting with “~”.
      (Jelmer Vernooij, René Stern, #463)
      + Properly log off after retrieving just refs. (Jelmer Vernooij)
  - source verfication added
* Mon Jan 30 2017 rjschwei@suse.com
  - Include in SLE 12 (bsc#1002895, FATE#321630)
* Wed Jan 18 2017 dmueller@suse.com
  - update to 0.16.3:
    IMPROVEMENTS
    * Fixed failing test-cases on windows.
      (Koen Martens)
    * Add support for worktrees. See `git-worktree(1)` and
      `gitrepository-layout(5)`. (Laurent Rineau)
    * Add support for `commondir` file in Git control
      directories. (Laurent Rineau)
    * Add support for passwords in HTTP URLs.
      (Jon Bain, Mika Mäenpää)
    * Add `release_robot` script to contrib,
      allowing easy finding of current version based on Git tags.
      (Mark Mikofski)
    * Add ``Blob.splitlines`` method.
      (Jelmer Vernooij)
    * Add `dulwich.config.parse_submodules` function.
    * Add `RefsContainer.follow` method. (#438)
    * Support `ssh://` URLs in get_transport_and_path_from_url().
      (Jelmer Vernooij, #402)
    * Support missing empty line after headers in Git commits and tags.
      (Nicolas Dandrimont, #413)
    * Fix `dulwich.porcelain.status` when used in empty trees.
      (Jelmer Vernooij, #415)
    * Return copies of objects in MemoryObjectStore rather than
      references, making the behaviour more consistent with that of
      DiskObjectStore. (Félix Mattrat, Jelmer Vernooij)
    * Fix ``dulwich.web`` on Python3. (#295, Jonas Haag)
    * Many bugfixes, see NEWS file for details
    CHANGES
    * Changed license from "GNU General Public License, version 2.0 or later"
      to "Apache License, version 2.0 or later or GNU General Public License,
      version 2.0 or later". (#153)
* Mon Aug 15 2016 toddrme2178@gmail.com
  - Fix update-alternatives implementation.
* Thu Jan 14 2016 toddrme2178@gmail.com
  - Update to 0.12.0
    + IMPROVEMENTS
    * Add a `dulwich.archive` module that can create tarballs.
      Based on code from Jonas Haag in klaus.
    * Add a `dulwich.reflog` module for reading and writing reflogs.
      (Jelmer Vernooij)
    * Fix handling of ambiguous refs in `parse_ref` to make
      it match the behaviour described in https://git-scm.com/docs/gitrevisions.
      (Chris Bunney)
    * Support Python3 in C modules. (Lele Gaifax)
    + BUG FIXES
    * Simplify handling of SSH command invocation.
      Fixes quoting of paths. Thanks, Thomas Liebetraut. (#384)
    * Fix inconsistent handling of trailing slashes for DictRefsContainer. (#383)
    * Add hack to support thin packs duing fetch(), albeit while requiring the
      entire pack file to be loaded into memory. (jsbain)
    + CHANGES
    * This will be the last release to support Python 2.6.
  - Implement update-alternatives
* Sat Dec 05 2015 termim@gmail.com
  - update to 0.11.2
    + IMPROVEMENTS
    * Add support for agent= capability. (Jelmer Vernooij, #298)
    * Add support for quiet capability. (Jelmer Vernooij)
    + BUG FIXES
    * The ParamikoSSHVendor class has been moved to
      dulwich.contrib.paramiko_vendor, as it’s currently untested.
      (Jelmer Vernooij, #364)
  - update to 0.11.1 2015-09-13
    * Fix-up release to exclude broken blame.py file.
  - update to 0.11.0 2015-09-13
    + IMPROVEMENTS
    * Extended Python3 support to most of the codebase. (Gary van der
      Merwe, Jelmer Vernooij)
    * The Repo object has a new close method that can be called to close
      any open resources. (Gary van der Merwe)
    * Support ‘git.bat’ in SubprocessGitClient on Windows. (Stefan
      Zimmermann)
    * Advertise ‘ofs-delta’ capability in receive-pack server side
      capabilities. (Jelmer Vernooij)
    * Switched default_local_git_client_cls to LocalGitClient. (Gary van
      der Merwe)
    * Add porcelain.ls_remote and GitClient.get_refs. (Michael Edgar)
    * Add Repo.discover method. (B. M. Corser)
    * Add dulwich.objectspec.parse_refspec. (Jelmer Vernooij)
    * Add porcelain.pack_objects and porcelain.repack. (Jelmer Vernooij)
    + BUG FIXES
    * Fix handling of ‘done’ in graph walker and implement the ‘no-done’
      capability. (Tommy Yu, #88)
    * Avoid recursion limit issues resolving deltas. (William Grant, #81)
    * Allow arguments in local client binary path overrides. (Jelmer
      Vernooij)
    * Fix handling of commands with arguments in paramiko SSH
      client. (Andreas Klöckner, Jelmer Vernooij, #363)
    * Fix parsing of quoted strings in configs. (Jelmer Vernooij, #305)
* Tue May 12 2015 termim@gmail.com
  - update to version 0.10.1
    + BUG FIXES
    * Return `ApplyDeltaError` when encountering delta errors
      in both C extensions and native delta application code.
      (Jelmer Vernooij, #259)
  - update to version 0.10.0
    + BUG FIXES
    * In dulwich.index.build_index_from_tree, by default
      refuse to create entries that start with .git/.
    * Fix running of testsuite when installed.
      (Jelmer Vernooij, #223)
    * Use a block cache in _find_content_rename_candidates(),
      improving performance. (Mike Williams)
    * Add support for ``core.protectNTFS`` setting.
      (Jelmer Vernooij)
    * Fix TypeError when fetching empty updates.
      (Hwee Miin Koh)
    * Resolve delta refs when pulling into a MemoryRepo.
      (Max Shawabkeh, #256)
    * Fix handling of tags of non-commits in missing object finder.
      (Augie Fackler, #211)
    * Explicitly disable mmap on plan9 where it doesn't work.
      (Jeff Sickel)
    + IMPROVEMENTS
    * New public method `Repo.reset_index`. (Jelmer Vernooij)
    * Prevent duplicate parsing of loose files in objects
      directory when reading. Thanks to David Keijser for the
      report. (Jelmer Vernooij, #231)
  - update to version 0.9.9
    + SECURITY BUG FIXES
    * Fix buffer overflow in C implementation of pack apply_delta().
      (CVE-2015-0838)
      Thanks to Ivan Fratric of the Google Security Team for
      reporting this issue.
      (Jelmer Vernooij)
* Sun Feb 22 2015 develop7@develop7.info
  - update to version 0.9.8
    + disabled tests
  - Changes from 0.9.7
    + BUG FIXES
    * Various fixes to improve test suite running on Windows.
      (Gary van der Merwe)
    * Limit delta copy length to 64K in v2 pack files. (Robert Brown)
    * Strip newline from final ACKed SHA while fetching packs.
      (Michael Edgar)
    * Remove assignment to PyList_SIZE() that was causing segfaults on
      pypy. (Jelmer Vernooij, #196)
    + IMPROVEMENTS
    * Add porcelain 'receive-pack' and 'upload-pack'. (Jelmer Vernooij)
    * Handle SIGINT signals in bin/dulwich. (Jelmer Vernooij)
    * Add 'status' support to bin/dulwich. (Jelmer Vernooij)
    * Add 'branch_create', 'branch_list', 'branch_delete' porcelain.
      (Jelmer Vernooij)
    * Add 'fetch' porcelain. (Jelmer Vernooij)
    * Add 'tag_delete' porcelain. (Jelmer Vernooij)
    * Add support for serializing/deserializing 'gpgsig' attributes in Commit.
      (Jelmer Vernooij)
    + CHANGES
    * dul-web is now available as 'dulwich web-daemon'.
      (Jelmer Vernooij)
    * dulwich.porcelain.tag has been renamed to tag_create.
      dulwich.porcelain.list_tags has been renamed to tag_list.
      (Jelmer Vernooij)
    + API CHANGES
    * Restore support for Python 2.6. (Jelmer Vernooij, Gary van der Merwe)
  - Changes from 0.9.6
    + BUG FIXES
    * Fix tests dependent on hash ordering. (Michael Edgar)
    * Support staging symbolic links in Repo.stage.
      (Robert Brown)
    * Ensure that all files object are closed when running the test suite.
      (Gary van der Merwe)
    * When writing OFS_DELTA pack entries, write correct offset.
      (Augie Fackler)
    * Fix handler of larger copy operations in packs. (Augie Fackler)
    * Various fixes to improve test suite running on Windows.
      (Gary van der Merwe)
    * Fix logic for extra adds of identical files in rename detector.
      (Robert Brown)
    + IMPROVEMENTS
    * Add porcelain 'status'. (Ryan Faulkner)
    * Add porcelain 'daemon'. (Jelmer Vernooij)
    * Add `dulwich.greenthreads` module which provides support
      for concurrency of some object store operations.
      (Fabien Boucher)
    * Various changes to improve compatibility with Python 3.
      (Gary van der Merwe, Hannu Valtonen, michael-k)
    * Add OpenStack Swift backed repository implementation
      in dulwich.contrib. See README.swift for details. (Fabien Boucher)
    + API CHANGES
    * An optional close function can be passed to the Protocol class. This will
      be called by its close method. (Gary van der Merwe)
    * All classes with close methods are now context managers, so that they can
      be easily closed using a `with` statement. (Gary van der Merwe)
    * Remove deprecated `num_objects` argument to `write_pack` methods.
      (Jelmer Vernooij)
    + OTHER CHANGES
    * The 'dul-daemon' script has been removed. The same functionality
      is now available as 'dulwich daemon'. (Jelmer Vernooij)
  - Changes from 0.9.5
    + IMPROVEMENTS
    * Add support for recursive add in 'git add'.
      (Ryan Faulkner, Jelmer Vernooij)
    * Add porcelain 'list_tags'. (Ryan Faulkner)
    * Add porcelain 'push'. (Ryan Faulkner)
    * Add porcelain 'pull'. (Ryan Faulkner)
    * Support 'http.proxy' in HttpGitClient.
      (Jelmer Vernooij, #1096030)
    * Support 'http.useragent' in HttpGitClient.
      (Jelmer Vernooij)
    * In server, wait for clients to send empty list of
      wants when talking to empty repository.
      (Damien Tournoud)
    * Various changes to improve compatibility with
      Python 3. (Gary van der Merwe)
    + BUG FIXES
    * Support unseekable 'wsgi.input' streams.
      (Jonas Haag)
    * Raise TypeError when passing unicode() object
      to Repo.__getitem__.
      (Jonas Haag)
    * Fix handling of `reset` command in dulwich.fastexport.
      (Jelmer Vernooij, #1249029)
    * In client, don't wait for server to close connection
      first. Fixes hang when used against GitHub
      server implementation. (Siddharth Agarwal)
    * DeltaChainIterator: fix a corner case where an object is inflated as an
      object already in the repository.
      (Damien Tournoud, #135)
    * Stop leaking file handles during pack reload. (Damien Tournoud)
    * Avoid reopening packs during pack cache reload. (Jelmer Vernooij)
    + API CHANGES
    * Drop support for Python 2.6. (Jelmer Vernooij)
  - Changes from 0.9.4
    + IMPROVEMENTS
    * Add porcelain 'tag'. (Ryan Faulkner)
    * New module `dulwich.objectspec` for parsing strings referencing
      objects and commit ranges. (Jelmer Vernooij)
    * Add shallow branch support. (milki)
    * Allow passing urllib2 `opener` into HttpGitClient.
      (Dov Feldstern, #909037)
    + CHANGES
    * Drop support for Python 2.4 and 2.5. (Jelmer Vernooij)
    + API CHANGES
    * Remove long deprecated ``Repo.commit``, ``Repo.get_blob``,
      ``Repo.tree`` and ``Repo.tag``. (Jelmer Vernooij)
    * Remove long deprecated ``Repo.revision_history`` and ``Repo.ref``.
      (Jelmer Vernooij)
    * Remove long deprecated ``Tree.entries``. (Jelmer Vernooij)
    + BUG FIXES
    * Raise KeyError rather than TypeError when passing in
      unicode object of length 20 or 40 to Repo.__getitem__.
      (Jelmer Vernooij)
    * Use 'rm' rather than 'unlink' in tests, since the latter
      does not exist on OpenBSD and other platforms.
      (Dmitrij D. Czarkoff)
  - Changes from 0.9.3
    + IMPROVEMENTS
    * Add ssh_kwargs attribute to ParamikoSSHVendor. (milki)
    * Add Repo.set_description(). (Víðir Valberg Guðmundsson)
    * Add a basic `dulwich.porcelain` module. (Jelmer Vernooij, Marcin Kuzminski)
    * Various performance improvements for object access.
      (Jelmer Vernooij)
    * New function `get_transport_and_path_from_url`,
      similar to `get_transport_and_path` but only
      supports URLs.
      (Jelmer Vernooij)
    * Add support for file:// URLs in `get_transport_and_path_from_url`.
      (Jelmer Vernooij)
    * Add LocalGitClient implementation.
      (Jelmer Vernooij)
    + BUG FIXES
    * Support filesystems with 64bit inode and device numbers.
      (André Roth)
    + CHANGES
    * Ref handling has been moved to dulwich.refs.
      (Jelmer Vernooij)
    + API CHANGES
    * Remove long deprecated RefsContainer.set_ref().
      (Jelmer Vernooij)
    * Repo.ref() is now deprecated in favour of Repo.refs[].
      (Jelmer Vernooij)
    + FEATURES
    * Add support for graftpoints. (milki)

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.6
/usr/bin/dul-upload-pack
/usr/bin/dul-upload-pack-3.6
/usr/bin/dulwich
/usr/bin/dulwich-3.6
/usr/lib/python3.6/site-packages/docs
/usr/lib/python3.6/site-packages/docs/tutorial
/usr/lib/python3.6/site-packages/docs/tutorial/conclusion.txt
/usr/lib/python3.6/site-packages/docs/tutorial/encoding.txt
/usr/lib/python3.6/site-packages/docs/tutorial/file-format.txt
/usr/lib/python3.6/site-packages/docs/tutorial/index.txt
/usr/lib/python3.6/site-packages/docs/tutorial/introduction.txt
/usr/lib/python3.6/site-packages/docs/tutorial/object-store.txt
/usr/lib/python3.6/site-packages/docs/tutorial/porcelain.txt
/usr/lib/python3.6/site-packages/docs/tutorial/remote.txt
/usr/lib/python3.6/site-packages/docs/tutorial/repo.txt
/usr/lib/python3.6/site-packages/docs/tutorial/tag.txt
/usr/lib/python3.6/site-packages/dulwich
/usr/lib/python3.6/site-packages/dulwich-0.20.24-py3.6.egg-info
/usr/lib/python3.6/site-packages/dulwich-0.20.24-py3.6.egg-info/PKG-INFO
/usr/lib/python3.6/site-packages/dulwich-0.20.24-py3.6.egg-info/SOURCES.txt
/usr/lib/python3.6/site-packages/dulwich-0.20.24-py3.6.egg-info/dependency_links.txt
/usr/lib/python3.6/site-packages/dulwich-0.20.24-py3.6.egg-info/entry_points.txt
/usr/lib/python3.6/site-packages/dulwich-0.20.24-py3.6.egg-info/not-zip-safe
/usr/lib/python3.6/site-packages/dulwich-0.20.24-py3.6.egg-info/requires.txt
/usr/lib/python3.6/site-packages/dulwich-0.20.24-py3.6.egg-info/top_level.txt
/usr/lib/python3.6/site-packages/dulwich/__init__.py
/usr/lib/python3.6/site-packages/dulwich/__pycache__
/usr/lib/python3.6/site-packages/dulwich/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/archive.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/archive.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/bundle.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/bundle.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/cli.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/cli.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/client.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/client.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/config.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/config.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/diff_tree.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/diff_tree.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/errors.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/errors.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/fastexport.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/fastexport.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/file.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/file.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/graph.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/graph.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/greenthreads.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/greenthreads.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/hooks.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/hooks.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/ignore.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/ignore.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/index.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/index.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/lfs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/lfs.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/line_ending.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/line_ending.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/log_utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/log_utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/lru_cache.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/lru_cache.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/mailmap.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/mailmap.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/object_store.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/object_store.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/objects.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/objects.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/objectspec.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/objectspec.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/pack.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/pack.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/patch.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/patch.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/porcelain.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/porcelain.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/protocol.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/protocol.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/reflog.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/reflog.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/refs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/refs.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/repo.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/repo.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/server.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/server.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/stash.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/stash.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/walk.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/walk.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/web.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/__pycache__/web.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/_diff_tree.c
/usr/lib/python3.6/site-packages/dulwich/_diff_tree.cpython-36m-arm-linux-gnueabihf.so
/usr/lib/python3.6/site-packages/dulwich/_objects.c
/usr/lib/python3.6/site-packages/dulwich/_objects.cpython-36m-arm-linux-gnueabihf.so
/usr/lib/python3.6/site-packages/dulwich/_pack.c
/usr/lib/python3.6/site-packages/dulwich/_pack.cpython-36m-arm-linux-gnueabihf.so
/usr/lib/python3.6/site-packages/dulwich/archive.py
/usr/lib/python3.6/site-packages/dulwich/bundle.py
/usr/lib/python3.6/site-packages/dulwich/cli.py
/usr/lib/python3.6/site-packages/dulwich/client.py
/usr/lib/python3.6/site-packages/dulwich/cloud
/usr/lib/python3.6/site-packages/dulwich/cloud/__init__.py
/usr/lib/python3.6/site-packages/dulwich/cloud/__pycache__
/usr/lib/python3.6/site-packages/dulwich/cloud/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/cloud/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/cloud/__pycache__/gcs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/cloud/__pycache__/gcs.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/cloud/gcs.py
/usr/lib/python3.6/site-packages/dulwich/config.py
/usr/lib/python3.6/site-packages/dulwich/contrib
/usr/lib/python3.6/site-packages/dulwich/contrib/README.md
/usr/lib/python3.6/site-packages/dulwich/contrib/__init__.py
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/diffstat.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/diffstat.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/paramiko_vendor.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/paramiko_vendor.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/release_robot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/release_robot.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/swift.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/swift.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/test_paramiko_vendor.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/test_paramiko_vendor.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/test_release_robot.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/test_release_robot.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/test_swift.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/test_swift.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/test_swift_smoke.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/__pycache__/test_swift_smoke.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/contrib/diffstat.py
/usr/lib/python3.6/site-packages/dulwich/contrib/paramiko_vendor.py
/usr/lib/python3.6/site-packages/dulwich/contrib/release_robot.py
/usr/lib/python3.6/site-packages/dulwich/contrib/swift.py
/usr/lib/python3.6/site-packages/dulwich/contrib/test_paramiko_vendor.py
/usr/lib/python3.6/site-packages/dulwich/contrib/test_release_robot.py
/usr/lib/python3.6/site-packages/dulwich/contrib/test_swift.py
/usr/lib/python3.6/site-packages/dulwich/contrib/test_swift_smoke.py
/usr/lib/python3.6/site-packages/dulwich/diff_tree.py
/usr/lib/python3.6/site-packages/dulwich/errors.py
/usr/lib/python3.6/site-packages/dulwich/fastexport.py
/usr/lib/python3.6/site-packages/dulwich/file.py
/usr/lib/python3.6/site-packages/dulwich/graph.py
/usr/lib/python3.6/site-packages/dulwich/greenthreads.py
/usr/lib/python3.6/site-packages/dulwich/hooks.py
/usr/lib/python3.6/site-packages/dulwich/ignore.py
/usr/lib/python3.6/site-packages/dulwich/index.py
/usr/lib/python3.6/site-packages/dulwich/lfs.py
/usr/lib/python3.6/site-packages/dulwich/line_ending.py
/usr/lib/python3.6/site-packages/dulwich/log_utils.py
/usr/lib/python3.6/site-packages/dulwich/lru_cache.py
/usr/lib/python3.6/site-packages/dulwich/mailmap.py
/usr/lib/python3.6/site-packages/dulwich/object_store.py
/usr/lib/python3.6/site-packages/dulwich/objects.py
/usr/lib/python3.6/site-packages/dulwich/objectspec.py
/usr/lib/python3.6/site-packages/dulwich/pack.py
/usr/lib/python3.6/site-packages/dulwich/patch.py
/usr/lib/python3.6/site-packages/dulwich/porcelain.py
/usr/lib/python3.6/site-packages/dulwich/protocol.py
/usr/lib/python3.6/site-packages/dulwich/py.typed
/usr/lib/python3.6/site-packages/dulwich/reflog.py
/usr/lib/python3.6/site-packages/dulwich/refs.py
/usr/lib/python3.6/site-packages/dulwich/repo.py
/usr/lib/python3.6/site-packages/dulwich/server.py
/usr/lib/python3.6/site-packages/dulwich/stash.py
/usr/lib/python3.6/site-packages/dulwich/stdint.h
/usr/lib/python3.6/site-packages/dulwich/tests
/usr/lib/python3.6/site-packages/dulwich/tests/__init__.py
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_archive.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_archive.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_blackbox.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_blackbox.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_bundle.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_bundle.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_client.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_client.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_config.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_config.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_diff_tree.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_diff_tree.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_fastexport.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_fastexport.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_file.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_file.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_grafts.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_grafts.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_graph.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_graph.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_greenthreads.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_greenthreads.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_hooks.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_hooks.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_ignore.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_ignore.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_index.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_index.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_lfs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_lfs.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_line_ending.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_line_ending.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_lru_cache.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_lru_cache.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_mailmap.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_mailmap.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_missing_obj_finder.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_missing_obj_finder.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_object_store.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_object_store.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_objects.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_objects.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_objectspec.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_objectspec.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_pack.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_pack.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_patch.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_patch.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_porcelain.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_porcelain.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_protocol.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_protocol.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_reflog.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_reflog.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_refs.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_refs.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_repository.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_repository.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_server.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_server.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_stash.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_stash.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_walk.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_walk.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_web.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/test_web.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/__pycache__/utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__init__.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/__init__.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/__init__.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/server_utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/server_utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_client.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_client.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_pack.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_pack.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_patch.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_patch.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_porcelain.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_porcelain.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_repository.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_repository.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_server.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_server.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_web.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/test_web.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/utils.cpython-36.opt-1.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/__pycache__/utils.cpython-36.pyc
/usr/lib/python3.6/site-packages/dulwich/tests/compat/server_utils.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/test_client.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/test_pack.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/test_patch.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/test_porcelain.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/test_repository.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/test_server.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/test_utils.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/test_web.py
/usr/lib/python3.6/site-packages/dulwich/tests/compat/utils.py
/usr/lib/python3.6/site-packages/dulwich/tests/data
/usr/lib/python3.6/site-packages/dulwich/tests/data/blobs
/usr/lib/python3.6/site-packages/dulwich/tests/data/blobs/11
/usr/lib/python3.6/site-packages/dulwich/tests/data/blobs/11/11111111111111111111111111111111111111
/usr/lib/python3.6/site-packages/dulwich/tests/data/blobs/6f
/usr/lib/python3.6/site-packages/dulwich/tests/data/blobs/6f/670c0fb53f9463760b7295fbb814e965fb20c8
/usr/lib/python3.6/site-packages/dulwich/tests/data/blobs/95
/usr/lib/python3.6/site-packages/dulwich/tests/data/blobs/95/4a536f7819d40e6f637f849ee187dd10066349
/usr/lib/python3.6/site-packages/dulwich/tests/data/blobs/e6
/usr/lib/python3.6/site-packages/dulwich/tests/data/blobs/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
/usr/lib/python3.6/site-packages/dulwich/tests/data/commits
/usr/lib/python3.6/site-packages/dulwich/tests/data/commits/0d
/usr/lib/python3.6/site-packages/dulwich/tests/data/commits/0d/89f20333fbb1d2f3a94da77f4981373d8f4310
/usr/lib/python3.6/site-packages/dulwich/tests/data/commits/5d
/usr/lib/python3.6/site-packages/dulwich/tests/data/commits/5d/ac377bdded4c9aeb8dff595f0faeebcc8498cc
/usr/lib/python3.6/site-packages/dulwich/tests/data/commits/60
/usr/lib/python3.6/site-packages/dulwich/tests/data/commits/60/dacdc733de308bb77bb76ce0fb0f9b44c9769e
/usr/lib/python3.6/site-packages/dulwich/tests/data/indexes
/usr/lib/python3.6/site-packages/dulwich/tests/data/indexes/index
/usr/lib/python3.6/site-packages/dulwich/tests/data/packs
/usr/lib/python3.6/site-packages/dulwich/tests/data/packs/pack-bc63ddad95e7321ee734ea11a7a62d314e0d7481.idx
/usr/lib/python3.6/site-packages/dulwich/tests/data/packs/pack-bc63ddad95e7321ee734ea11a7a62d314e0d7481.pack
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/.gitattributes
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/HEAD
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/28
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/28/237f4dc30d0d462658d6b937b08a0f0b6ef55a
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/2a
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/2a/72d929692c41d8554c07f6301757ba18a65d91
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/4e
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/4e/f30bbfe26431a69c3820d3a683df54d688f2ec
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/4f
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/4f/2e6529203aa6d44b5af6e3292c837ceda003f9
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/7d
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/7d/9a07d797595ef11344549b8d08198e48c15364
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/a2
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/a2/96d0bb611188cabb256919f36bc30117cca005
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/a9
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/a9/0fa2d900a17e99b433217e988c4eb4a2e9a097
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/b0
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/b0/931cadc54336e78a1d980420e3268903b57a50
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/ff
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/objects/ff/d47d45845a8f6576491e1edb97e3fe6a850e7f
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/packed-refs
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/refs
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/refs/heads
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/refs/heads/master
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/refs/tags
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/a.git/refs/tags/mytag
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/HEAD
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/config
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/objects
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/objects/info
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/objects/info/.gitignore
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/objects/pack
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/objects/pack/.gitignore
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/refs
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/refs/heads
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/refs/heads/.gitignore
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/refs/tags
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/empty.git/refs/tags/.gitignore
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/issue88_expect_ack_nak_client.export
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/issue88_expect_ack_nak_other.export
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/issue88_expect_ack_nak_server.export
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/HEAD
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/29
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/29/69be3e8ee1c0222396a5611407e4769f14e54b
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/38
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/38/74e9c60a6d149c44c928140f250d81e6381520
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/6f
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/6f/670c0fb53f9463760b7295fbb814e965fb20c8
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/70
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/70/c190eb48fa8bbb50ddc692a17b44cb781af7f6
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/76
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/76/01d7f6231db6a57f7bbb79ee52e4d462fd44d1
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/90
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/90/182552c4a85a45ec2a835cadc3451bebdfe870
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/95
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/95/4a536f7819d40e6f637f849ee187dd10066349
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/b2
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/b2/a2766a2879c209ab1176e7e778b81ae422eeaa
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/f5
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/f5/07291b64138b875c28e03469025b1ea20bc614
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/f9
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/f9/e39b120c68182a4ba35349f832d0e4e61f485c
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/fb
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/objects/fb/5b0425c7ce46959bec94d54b9a157645e114f5
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/refs
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/refs/heads
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/ooo_merge.git/refs/heads/master
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/HEAD
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/3b
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/3b/9e5457140e738c2dcd39bf6d7acf88379b90d1
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/3e
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/3e/c9c43c84ff242e3ef4a9fc5bc111fd780a76a8
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/42
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/42/d06bd4b77fed026b154d16493e5deab78f02ec
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/a1
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/a1/8114c31713746a33a2e70d9914d1ef3e781425
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/cd
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/cd/a609072918d7b70057b6bef9f4c2537843fcfe
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/df
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/objects/df/6800012397fb85c56e7418dd4eb9405dee075c
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/packed-refs
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/refs
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/refs/heads
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/refs/heads/40-char-ref-aaaaaaaaaaaaaaaaaa
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/refs/heads/loop
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/refs/heads/master
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/refs/tags
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/refs.git/refs/tags/refs-0.2
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/server_new.export
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/server_old.export
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/HEAD
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/0d
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/0d/89f20333fbb1d2f3a94da77f4981373d8f4310
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/1b
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/1b/6318f651a534b38f9c7aedeebbd56c1e896853
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/29
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/29/69be3e8ee1c0222396a5611407e4769f14e54b
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/4c
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/4c/ffe90e0a41ad3f5190079d7c8f036bde29cbe6
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/5d
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/5d/ac377bdded4c9aeb8dff595f0faeebcc8498cc
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/60
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/60/dacdc733de308bb77bb76ce0fb0f9b44c9769e
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/6f
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/6f/670c0fb53f9463760b7295fbb814e965fb20c8
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/70
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/70/c190eb48fa8bbb50ddc692a17b44cb781af7f6
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/90
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/90/182552c4a85a45ec2a835cadc3451bebdfe870
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/95
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/95/4a536f7819d40e6f637f849ee187dd10066349
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/ab
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/ab/64bbdcc51b170d21588e5c5d391ee5c0c96dfd
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/d4
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/d4/bdad6549dfedf25d3b89d21f506aff575b28a7
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/d8
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/d8/0c186a03f423a81b39df39dc87fd269736ca86
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/e6
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/refs
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/refs/heads
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/simple_merge.git/refs/heads/master
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/submodule
/usr/lib/python3.6/site-packages/dulwich/tests/data/repos/submodule/dotgit
/usr/lib/python3.6/site-packages/dulwich/tests/data/tags
/usr/lib/python3.6/site-packages/dulwich/tests/data/tags/71
/usr/lib/python3.6/site-packages/dulwich/tests/data/tags/71/033db03a03c6a36721efcf1968dd8f8e0cf023
/usr/lib/python3.6/site-packages/dulwich/tests/data/trees
/usr/lib/python3.6/site-packages/dulwich/tests/data/trees/70
/usr/lib/python3.6/site-packages/dulwich/tests/data/trees/70/c190eb48fa8bbb50ddc692a17b44cb781af7f6
/usr/lib/python3.6/site-packages/dulwich/tests/test_archive.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_blackbox.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_bundle.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_client.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_config.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_diff_tree.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_fastexport.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_file.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_grafts.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_graph.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_greenthreads.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_hooks.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_ignore.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_index.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_lfs.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_line_ending.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_lru_cache.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_mailmap.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_missing_obj_finder.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_object_store.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_objects.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_objectspec.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_pack.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_patch.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_porcelain.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_protocol.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_reflog.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_refs.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_repository.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_server.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_stash.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_utils.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_walk.py
/usr/lib/python3.6/site-packages/dulwich/tests/test_web.py
/usr/lib/python3.6/site-packages/dulwich/tests/utils.py
/usr/lib/python3.6/site-packages/dulwich/walk.py
/usr/lib/python3.6/site-packages/dulwich/web.py
/usr/share/doc/packages/python3-dulwich
/usr/share/doc/packages/python3-dulwich/NEWS
/usr/share/doc/packages/python3-dulwich/README.rst
/usr/share/licenses/python3-dulwich
/usr/share/licenses/python3-dulwich/COPYING


Generated by rpm2html 1.8.1

Fabrice Bellet, Tue Apr 9 18:39:40 2024