Revisions of python-pygit2

buildservice-autocommit accepted request 1164267 from Daniel Garcia's avatar Daniel Garcia (dgarcia) (revision 88)
baserev update by copy to link target
Daniel Garcia's avatar Daniel Garcia (dgarcia) committed (revision 87)
- Add upstream patch link to spec and changes files
Daniel Garcia's avatar Daniel Garcia (dgarcia) accepted request 1163862 from Fridrich Strba's avatar Fridrich Strba (fstrba) (revision 86)
Fix build in factory with libgit2 1.8.x
buildservice-autocommit accepted request 1153847 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 85)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 84)
- update to 1.14.1:
  * Now `Object.filemode` returns `enums.FileMode` and
    `Reference.type` returns `enums.ReferenceType`
  * Fix tests on Fedora 40
  * Deprecate `ReferenceType.OID`, use `ReferenceType.DIRECT`
  * Deprecate `ReferenceType.LISTALL`, use `ReferenceType.ALL`
buildservice-autocommit accepted request 1142846 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 83)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 82)
- 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`
buildservice-autocommit accepted request 1137305 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 81)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 80)
- 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)
  * Add missing newline at end of pygit2/decl/pack.h #1163
  * Remove redundant line #1139
  *  Added mwindow_mapped_limit, cached_memory, enable_caching,
buildservice-autocommit accepted request 1100661 from Markéta Machová's avatar Markéta Machová (mcalabkova) (revision 79)
baserev update by copy to link target
Markéta Machová's avatar Markéta Machová (mcalabkova) committed (revision 78)
add patch info
Markéta Machová's avatar Markéta Machová (mcalabkova) accepted request 1100659 from Dominique Leuenberger's avatar Dominique Leuenberger (dimstar) (revision 77)
Fix build in openSUSE:Factory; support libgit2 1.7
buildservice-autocommit accepted request 1073635 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 76)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1073520 from Daniel Garcia's avatar Daniel Garcia (dgarcia) (revision 75)
- Add support-libgit2-1.6.patch to make it work with the latest
  libgit2 release gh#libgit2/pygit2#1200
buildservice-autocommit accepted request 1040007 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 74)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) committed (revision 73)
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1039869 from Yogalakshmi Arunachalam's avatar Yogalakshmi Arunachalam (yarunachalam) (revision 72)
- 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
- Update to versino 1.11.0 (2022-11-06)
  * 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 

- Update to version
buildservice-autocommit accepted request 1004951 from Dirk Mueller's avatar Dirk Mueller (dirkmueller) (revision 71)
baserev update by copy to link target
Dirk Mueller's avatar Dirk Mueller (dirkmueller) accepted request 1004945 from Stephan Kulow's avatar Stephan Kulow (coolo) (revision 70)
- 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
buildservice-autocommit accepted request 990575 from Steve Kowalik's avatar Steve Kowalik (StevenK) (revision 69)
baserev update by copy to link target
Displaying revisions 1 - 20 of 88
openSUSE Build Service is sponsored by