Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: python3-pygit2 | Distribution: SUSE Linux Enterprise 15 SP6 |
Version: 1.14.0 | Vendor: openSUSE |
Release: bp156.2.10 | Build date: Tue May 21 17:58:25 2024 |
Group: Unspecified | Build host: i02-ch1c |
Size: 1096432 | Source RPM: python-pygit2-1.14.0-bp156.2.10.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://github.com/libgit2/pygit2 | |
Summary: Python bindings for libgit2 |
Bindings for libgit2, a linkable C library for the Git version-control system.
GPL-2.0-only
* Mon Mar 18 2024 Daniel Garcia <daniel.garcia@suse.com> - Build also for python 3.6, bsc#1221112 - Add patch python46.patch to make it compatible with python 3.6 * Tue Jan 30 2024 Dirk Müller <dmueller@suse.com> - update to 1.14.0: * Drop support for Python 3.8 * New `Repository.submodules` namespace * New `Repository.listall_mergeheads()`, `Repository.message`, `Repository.raw_message` and `Repository.remove_message()` * New `pygit2.enums` supersedes the `GIT_` constants * Now `Repository.status()`, `Repository.status_file()`, `Repository.merge_analysis()`, `DiffFile.flags`, `DiffFile.mode`, `DiffDelta.flags` and `DiffDelta.status` return enums * Now repository\'s `merge()`, `merge_commits()` and `merge_trees()` take enums/flags for their `favor`, `flags` and `file_flags` arguments. * Fix crash in filter cleanup * Documentation fixes * Remove deprecated `Repository.create_remote(...)` function, use instead `Repository.remotes.create(...)` * Deprecate `Repository.add_submodule(...)`, use `Repository.submodules.add(...)` * Deprecate `Repository.lookup_submodule(...)`, use `Repository.submodules[...]` * Deprecate `Repository.init_submodules(...)`, use `Repository.submodules.init(...)` * Deprecate `Repository.update_submodule(...)`, use `Repository.submodules.update(...)` * Deprecate `GIT_*` constants, use `pygit2.enums` * Passign dicts to repository\'s `merge(...)`, `merge_commits(...)` and `merge_trees(...)` is deprecated. Instead pass `MergeFavor` for the `favor` argument, `MergeFlag` for `flags`, and `MergeFileFlag` for `file_flags`. * Sat Jan 06 2024 Dirk Müller <dmueller@suse.com> - update to 1.13.3: * New API for filters in Python #1237 #1244 * Shallow repositories: New depth optional argument for clone_repository(...) and Remote.fetch(...) #1245 #1246 * New submodule init(...), update(...) and reload(...) functions #1248 * Release GIL in Walker.__next__ #1249 * Type hints for submodule functions in Repository #1247 * Support Python 3.12 * Documentation updates #1242 * Fix crash in reference rename #1233 * Upgrade to libgit2 v1.7.1 * Don't distribute wheels for pypy, only universal wheels for macOS * New Repository.remotes.create_anonymous(url) #1229 * docs: update links to pypi, pygit2.org #1228 * Prep work for Python 3.12 (not yet supported) #1223 - drop support-libgit2-1.7.patch (upstream) * Tue Jul 25 2023 Dominique Leuenberger <dimstar@opensuse.org> - Update to version 1.12.2: + Update wheels to bundle libssh2 1.11.0 and OpenSSL 3.0.9. Remove obsolete Remote.save(). - Changes from version 1.12.1: + Fix segfault in signature when encoding is incorrect. + Typing improvements. + Update wheels to libgit2 v1.6.4. - Changes from version 1.12.0: + Upgrade to libgit2 v1.6.3. + Update Linux wheels to bundle OpenSSL 3.0.8. + Downgrade Linux wheels to manylinux2014. + New ConflictCollection.__contains__.1 + New Repository.references.iterator(...). + New favor, flags and file_flags optional arguments for Repository.merge(...). + New keep_all and paths optional arguments for Repository.stash(...). + New Respository.state(). + Improve Repository.write_archive(...) performance. + Sync type annotations. - Drop support-libgit2-1.6.patch: fixed upstream. - Add support-libgit2-1.7.patch: support libgit2 1.7.0. * Tue Mar 21 2023 Daniel Garcia <daniel.garcia@suse.com> - Add support-libgit2-1.6.patch to make it work with the latest libgit2 release gh#libgit2/pygit2#1200 * Sat Dec 03 2022 Yogalakshmi Arunachalam <yarunachalam@suse.com> - Update to version 1.11.1 (2022-11-09) * Fix Linux wheels, downgrade to manylinux 2_24 #1176 * Windows wheels for Python 3.11 #1177 * CI: Use 3.11 final release for testing #1178 * Drop support for Python 3.7 * Update Linux wheels to manylinux 2_28 #1136 * Fix crash in signature representation #1162 * Fix memory leak in Signature #1173 * New optional argument raise_error in Repository.applies(...) #1166 * New notify/progress callbacks for checkout and stash #1167 #1169 * New Repository.remotes.names() #1159 * Now refname argument in RemoteCallbacks.push_update_reference(...) is a string, not bytes #1168 * Add missing newline at end of pygit2/decl/pack.h #1163 * Mon Sep 19 2022 Stephan Kulow <coolo@suse.com> - Update to 1.10.1 - Fix segfault in ``Signature`` repr `#1155 <https://github.com/libgit2/pygit2/pull/1155>`_ - Linux and macOS wheels for Python 3.11 `#1154 <https://github.com/libgit2/pygit2/pull/1154>`_ - Upgrade to libgit2 1.5 - Add support for ``GIT_OPT_GET_OWNER_VALIDATION`` and ``GIT_OPT_SET_OWNER_VALIDATION`` `#1150 <https://github.com/libgit2/pygit2/pull/1150>`_ - New ``untracked_files`` and ``ignored`` optional arguments for ``Repository.status(...)`` `#1151 <https://github.com/libgit2/pygit2/pull/1151>`_ - Remove support-libgit-1.5.patch no longer needed * Thu Jul 21 2022 Steve Kowalik <steven.kowalik@suse.com> - Update to 1.9.2: * New Repository.create_commit_string(...) and Repository.create_commit_with_signature(...) #1142 * Linux and macOS wheels updated to libgit2 v1.4.3 * Remove redundant line #1139 - Add patch support-libgit-1.5.patch: * Suppot libgit 1.5.0 * Sat Mar 26 2022 Dirk Müller <dmueller@suse.com> - update to 1.9.1: - Type hints: added to C code and Branches/References - New ``Signature`` supports ``str()`` and ``repr()`` - Fix ODB backend's read in big endian architectures - Fix install with poetry - Wheels: update to libgit2 v1.4.2 - Tests: fix testing ``parse_diff`` - CI: various fixes after migration to libgit2 v1.4 * Mon Feb 28 2022 pgajdos@suse.com - version update to 1.9.0 1.9.0 (2022-02-22) - ------------------------ - Upgrade to libgit2 v1.4 - Documentation, new recipes for committing and cloning `#1125 <https://github.com/libgit2/pygit2/pull/1125>`_ 1.8.0 (2022-02-04) - ------------------------ - Rename ``RemoteCallbacks.progress(...)`` callback to ``.sideband_progress(...)`` `#1120 <https://github.com/libgit2/pygit2/pull/1120>`_ - New ``Repository.merge_base_many(...)`` and ``Repository.merge_base_octopus(...)`` `#1112 <https://github.com/libgit2/pygit2/pull/1112>`_ - New ``Repository.listall_stashes()`` `#1117 <https://github.com/libgit2/pygit2/pull/1117>`_ - Code cleanup `#1118 <https://github.com/libgit2/pygit2/pull/1118>`_ Backward incompatible changes: - The ``RemoteCallbacks.progress(...)`` callback has been renamed to ``RemoteCallbacks.sideband_progress(...)``. This matches the documentation, but may break existing code that still uses the old name. 1.7.2 (2021-12-06) - ------------------------ - Universal wheels for macOS `#1109 <https://github.com/libgit2/pygit2/pull/1109>`_ 1.7.1 (2021-11-19) - ------------------------ - New ``Repository.amend_commit(...)`` `#1098 <https://github.com/libgit2/pygit2/pull/1098>`_ - New ``Commit.message_trailers`` `#1101 <https://github.com/libgit2/pygit2/pull/1101>`_ - Windows wheels for Python 3.10 `#1103 <https://github.com/libgit2/pygit2/pull/1103>`_ - Changed: now ``DiffDelta.is_binary`` returns ``None`` if the file data has not yet been loaded, cf. `#962 <https://github.com/libgit2/pygit2/issues/962>`_ - Document ``Repository.get_attr(...)`` and update theme `#1017 <https://github.com/libgit2/pygit2/issues/1017>`_ `#1105 <https://github.com/libgit2/pygit2/pull/1105>`_ * Wed Oct 20 2021 Matej Cepl <mcepl@suse.com> - Update to 1.7.0: - Upgrade to libgit2 1.3.0 - Add support for Python 3.10 - Drop support for Python 3.6 - New `pygit2.GIT_CHECKOUT_SKIP_LOCKED_DIRECTORIES` - New optional argument ``location`` in ``Repository.applies(..)`` and ``Repository.apply(..)`` - Fix: Now the `flags` argument in `Repository.blame()` is passed through - CI: Stop using Travis, move to GitHub actions - Fix a number of reference leaks - Review custom object backends - In custom backends the callbacks have been renamed from ``read`` to ``read_cb``, ``write`` to ``write_cb``, and so on. - New optional ``proxy`` argument in ``Remote`` methods - New GIT_MERGE_PREFERENCE constants - Don't require cached-property with Python 3.8 or later - Refactored build and CI, new ``build.sh`` script - Remove deprecated ``GIT_CREDTYPE_XXX`` contants, use ``GIT_CREDENTIAL_XXX`` instead. - Remove deprecated ``Patch.patch`` getter, use ``Patch.text`` instead. - New ``PackBuilder`` class and ``Repository.pack(...)`` - New ``Config.delete_multivar(...)`` - New ``Repository.is_shallow`` - New optional ``message`` argument in ``Repository.create_reference(...)`` - Fix truncated diff when there are nulls - Fix ``Index.add(...)`` raise ``TypeError`` instead of ``AttributeError`` when arguments are of unexpected type - Upgrade to libgit2 1.1, new ``GIT_BLAME_IGNORE_WHITESPACE`` constant - Drop support for PyPy3 7.2 - New optional ``flags`` argument in ``Repository.__init__(...)``, new ``GIT_REPOSITORY_OPEN_*`` constants - Remove upstreamed libgit2_1.patch. * Sun Nov 01 2020 John Vandenberg <jayvdb@gmail.com> - Add libgit2_1.patch for compatibility with libgit 1.1.0 - Update to v1.3.0 * New Repository.applies, Repository.revparse, Repository.revparse_ext, Repository.add_submodule, Repository.raw_listall_branches, and Repository.raw_listall_references * New optional flags and file_flags arguments in Repository.merge_commits and Repository.merge_trees * New Reference.raw_target * Allow bytes in Repository.lookup_branch and Repository.diff * New GIT_BLAME_FIRST_PARENT and GIT_BLAME_USE_MAILMAP constants * New IndexEntry supports repr(), str(), == and != * New Object supports repr() * New accept tuples of strings (not only lists) in a number of places * Fix compatibility with old macOS 10.9 * Fix check argument type in Repository.apply(...) * Fix raise exception if error in Repository.listall_submodules() * Fix a couple of refcount errors in OdbBackend.refresh() and Worktree_is_prunable * Wed May 06 2020 Tomáš Chvátal <tchvatal@suse.com> - Update to 1.2.1: * Drop python2 support * Various crash fixes * Mon Dec 02 2019 Julio González Gil <jgonzalez@suse.com> - Fix building for s390x (bsc#1158198) * Mon Jun 03 2019 Tomáš Chvátal <tchvatal@suse.com> - Update to 0.28.2: * Fix crash in reflog iteration #901 * Support symbolic references in branches.with_commit(..) #910 * Documentation updates #909 * Test updates #911 * Wed May 15 2019 Gary Smith <GSmith@suse.com> - Update to 0.28.1 * Removed patch pycparser.patch as it is no longer needed * Now works with pycparser 2.18 and above * Now ``Repository.write_archive(..)`` keeps the file mode * New ``Patch.data`` returns the raw contents of the patch as a byte string * New ``Patch.text`` returns the contents of the patch as a text string, * Mon Apr 08 2019 Tomáš Chvátal <tchvatal@suse.com> - Add patch to fix the pycparser issues as per bellow: * pycparser.patch * Sat Mar 23 2019 Tomáš Chvátal <tchvatal@suse.com> - Drop the pygit2-0.28-Remove-pycparser-constraint.patch and replace it with shorter sed - Switch to pytest testing: * Fails now but that is pycparser bug https://github.com/eliben/pycparser/issues/305 - Disable tests temporarily as per above * Wed Mar 20 2019 Neal Gompa <ngompa13@gmail.com> - Update to 0.28.0 * Update to libgit2 v0.28 * New ``pygit2.Mailmap`` * New ``Repository.apply(...)`` wraps ``git_apply(..)`` * Now ``Repository.merge_analysis(...)`` accepts an optional reference parameter * Now ``Repository.add_worktree(...)`` accepts an optional reference parameter * Now it's possible to set SSL certificate locations * Test and documentation improvements * Now ``worktree.path`` returns the path to the worktree directory * Remove undocumented ``worktree.git_path`` - Remove unneeded patch to fix issues on i586: * pygit2-i586.patch - Add patch to remove unneeded constraint on pycparser * pygit2-0.28-Remove-pycparser-constraint.patch * Mon May 21 2018 tchvatal@suse.com - Add patch to fix issues on i586 arch: * pygit2-i586.patch * Thu May 17 2018 tchvatal@suse.com - Update to 0.27.0: * Update to libgit2 v0.27 #783 * Fix for GCC 4 #786 * Thu Aug 24 2017 toddrme2178@gmail.com - Update to 0.26.0 * Update to libgit2 v0.26 * Drop support for Python 3.2, add support for cffi 1.10 * New ``Repository.revert_commit(...)`` * New ``Branch.is_checked_out()`` * Various fixes * Fri Apr 07 2017 toddrme2178@gmail.com - Update to 0.25.0. * Make pygit2 throw if tree of a commit is not found * fixed cached memory tests * Added mwindow_mapped_limit, cached_memory, enable_caching, cache_max_size, cache_object_limit options - Implement singlespec version. * Wed Jan 11 2017 astieger@suse.com - update to 0.24.2: * Fix when libgit2 error messages have non-ascii chars * Documentation improvements - includes changes from 0.24.1 * New Repository.listall_reference_objects() * Fix ``Repository.write_archive(...)` * Reproducible builds * Documentation fixes * Wed Nov 02 2016 kkaempf@suse.com - Fix Url link (old one was dead). * Fri Aug 12 2016 tbechtold@suse.com - require the cffi version it was built against - Use pypi.io as Source url * Thu Apr 07 2016 zaitor@opensuse.org - Update to version 0.24.0: + Support Python 3.5. + New dependency, python-six + New Repository.path_is_ignored(path). + Fix error in Repository(path) when path is a bytes string. + Fix memory issue in Repository.describe(...). + Allow testing with `tox. - Add python-six BuildRequires following upstream changes. * Tue Sep 29 2015 toddrme2178@gmail.com - Update to version 0.23.1 * Improve support for cffi 1.0+ (https://github.com/libgit2/pygit2/pull/529) (https://github.com/libgit2/pygit2/pull/561) * Fix Remote.push (https://github.com/libgit2/pygit2/pull/557) * New TreeEntry.type (https://github.com/libgit2/pygit2/pull/560) * New pygit2.GIT_DIFF_SHOW_BINARY (https://github.com/libgit2/pygit2/pull/566) * Thu Sep 17 2015 p.drouand@gmail.com - Update to version 0.23.0 * Update to libgit2 v0.23 (https://github.com/libgit2/pygit2/pull/540) * Now Repository.merge_base(...) returns None if no merge base is found (https://github.com/libgit2/pygit2/pull/550) * Documentation updates (https://github.com/libgit2/pygit2/pull/547) * Tue Feb 03 2015 dimstar@opensuse.org - Update to version 0.22.0: + Update to libgit2 v0.22 (https://github.com/libgit2/pygit2/pull/459) + Add support for libgit2 feature detection (new pygit2.features and pygit2.GIT_FEATURE_*) (https://github.com/libgit2/pygit2/pull/475) + New Repository.remotes (RemoteCollection) (https://github.com/libgit2/pygit2/pull/447) + API Changes: - Prototype of clone_repository changed, check documentation - Removed clone_into, use clone_repository with callbacks instead - Use Repository.remotes.rename(name, new_name) instead of Remote.rename(new_name) - Use Repository.remotes.delete(name) instead of Remote.delete() - Now Remote.push(...) takes a list of refspecs instead of just one - Change Patch.old_id, Patch.new_id, Note.annotated_id, RefLogEntry.oid_old and RefLogEntry.oid_new to be Oid objects instead of strings (https://github.com/libgit2/pygit2/pull/449) + Other: - Fix init_repository when passing optional parameters workdir_path, description, template_path, initial_head or origin_url. - Fix use-after-free when patch outlives diff. - Documentation improvements. - Make the GPL exception explicit in setup.py. - Add python-setuptools BuildRequires: new build dependency.
/usr/lib64/python3.6/site-packages/pygit2 /usr/lib64/python3.6/site-packages/pygit2-1.14.0.dist-info /usr/lib64/python3.6/site-packages/pygit2-1.14.0.dist-info/AUTHORS.md /usr/lib64/python3.6/site-packages/pygit2-1.14.0.dist-info/COPYING /usr/lib64/python3.6/site-packages/pygit2-1.14.0.dist-info/INSTALLER /usr/lib64/python3.6/site-packages/pygit2-1.14.0.dist-info/METADATA /usr/lib64/python3.6/site-packages/pygit2-1.14.0.dist-info/RECORD /usr/lib64/python3.6/site-packages/pygit2-1.14.0.dist-info/WHEEL /usr/lib64/python3.6/site-packages/pygit2-1.14.0.dist-info/top_level.txt /usr/lib64/python3.6/site-packages/pygit2/__init__.py /usr/lib64/python3.6/site-packages/pygit2/__pycache__ /usr/lib64/python3.6/site-packages/pygit2/__pycache__/__init__.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/__init__.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/_build.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/_build.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/_run.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/_run.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/blame.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/blame.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/blob.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/blob.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/branches.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/branches.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/callbacks.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/callbacks.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/config.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/config.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/credentials.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/credentials.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/enums.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/enums.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/errors.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/errors.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/ffi.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/ffi.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/filter.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/filter.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/index.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/index.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/legacyenums.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/legacyenums.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/packbuilder.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/packbuilder.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/references.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/references.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/refspec.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/refspec.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/remotes.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/remotes.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/repository.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/repository.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/settings.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/settings.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/submodules.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/submodules.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/utils.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/utils.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/_build.py /usr/lib64/python3.6/site-packages/pygit2/_libgit2.abi3.so /usr/lib64/python3.6/site-packages/pygit2/_pygit2.cpython-36m-x86_64-linux-gnu.so /usr/lib64/python3.6/site-packages/pygit2/_pygit2.pyi /usr/lib64/python3.6/site-packages/pygit2/_run.py /usr/lib64/python3.6/site-packages/pygit2/blame.py /usr/lib64/python3.6/site-packages/pygit2/blob.py /usr/lib64/python3.6/site-packages/pygit2/branches.py /usr/lib64/python3.6/site-packages/pygit2/callbacks.py /usr/lib64/python3.6/site-packages/pygit2/config.py /usr/lib64/python3.6/site-packages/pygit2/credentials.py /usr/lib64/python3.6/site-packages/pygit2/enums.py /usr/lib64/python3.6/site-packages/pygit2/errors.py /usr/lib64/python3.6/site-packages/pygit2/ffi.py /usr/lib64/python3.6/site-packages/pygit2/filter.py /usr/lib64/python3.6/site-packages/pygit2/index.py /usr/lib64/python3.6/site-packages/pygit2/legacyenums.py /usr/lib64/python3.6/site-packages/pygit2/packbuilder.py /usr/lib64/python3.6/site-packages/pygit2/references.py /usr/lib64/python3.6/site-packages/pygit2/refspec.py /usr/lib64/python3.6/site-packages/pygit2/remotes.py /usr/lib64/python3.6/site-packages/pygit2/repository.py /usr/lib64/python3.6/site-packages/pygit2/settings.py /usr/lib64/python3.6/site-packages/pygit2/submodules.py /usr/lib64/python3.6/site-packages/pygit2/utils.py /usr/share/doc/packages/python3-pygit2 /usr/share/doc/packages/python3-pygit2/README.md /usr/share/licenses/python3-pygit2 /usr/share/licenses/python3-pygit2/COPYING
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 20:06:21 2024