| 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 |
| Version: 0.28.2 | Vendor: SUSE LLC <https://www.suse.com/> |
| Release: 1.35 | Build date: Sat Jun 6 04:26:50 2020 |
| Group: Development/Languages/Python | Build host: s390zp35 |
| Size: 797162 | Source RPM: python-pygit2-0.28.2-1.35.src.rpm |
| Packager: https://www.suse.com/ | |
| 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 Dec 02 2019 jgonzalez@suse.com
- Fix building for s390x (bsc#1158198)
* Mon Jun 03 2019 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 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 tchvatal@suse.com
- Add patch to fix the pycparser issues as per bellow:
* pycparser.patch
* Sat Mar 23 2019 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 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.cpython-36m-s390x-linux-gnu.so /usr/lib64/python3.6/site-packages/pygit2 /usr/lib64/python3.6/site-packages/pygit2-0.28.2-py3.6.egg-info /usr/lib64/python3.6/site-packages/pygit2-0.28.2-py3.6.egg-info/PKG-INFO /usr/lib64/python3.6/site-packages/pygit2-0.28.2-py3.6.egg-info/SOURCES.txt /usr/lib64/python3.6/site-packages/pygit2-0.28.2-py3.6.egg-info/dependency_links.txt /usr/lib64/python3.6/site-packages/pygit2-0.28.2-py3.6.egg-info/not-zip-safe /usr/lib64/python3.6/site-packages/pygit2-0.28.2-py3.6.egg-info/requires.txt /usr/lib64/python3.6/site-packages/pygit2-0.28.2-py3.6.egg-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__/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__/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__/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__/py2.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/py2.cpython-36.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/py3.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/py3.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__/remote.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/remote.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__/submodule.cpython-36.opt-1.pyc /usr/lib64/python3.6/site-packages/pygit2/__pycache__/submodule.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/_run.py /usr/lib64/python3.6/site-packages/pygit2/blame.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/errors.py /usr/lib64/python3.6/site-packages/pygit2/ffi.py /usr/lib64/python3.6/site-packages/pygit2/index.py /usr/lib64/python3.6/site-packages/pygit2/py2.py /usr/lib64/python3.6/site-packages/pygit2/py3.py /usr/lib64/python3.6/site-packages/pygit2/refspec.py /usr/lib64/python3.6/site-packages/pygit2/remote.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/submodule.py /usr/lib64/python3.6/site-packages/pygit2/utils.py /usr/share/doc/packages/python3-pygit2 /usr/share/doc/packages/python3-pygit2/README.rst /usr/share/licenses/python3-pygit2 /usr/share/licenses/python3-pygit2/COPYING
Generated by rpm2html 1.8.1
Fabrice Bellet, Mon Feb 9 16:50:55 2026