- Update to version 3.1.32.1689011721.5d45ce2:

* Block insecure non-multi options in clone/clone_from Follow-up to #1521
    (bsc#1214174, CVE-2023-40267)
  * Name top-level exceptions as private variables
  * Revert the removal of Commit.trailers property.
  * Specify encoding in Commit.trailer_list.
  * Update Commit.trailer_list to return tuples.
  * Deprecate Commit.trailers.
  * Add trailers_list and trailers_list methods to fix the commit trailers
    functionality.
- Switch to pyproject macros.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-GitPython?expand=0&rev=53
This commit is contained in:
Steve Kowalik 2023-08-21 04:38:28 +00:00 committed by Git OBS Bridge
parent 6eee14faa9
commit 24863d562b
6 changed files with 29 additions and 12 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:27a46fb1f67363379cb2a3a550b1f39c123cde7b2e0d0bc722ecf5c0ddb6d6e0
size 4005220

BIN
GitPython-3.1.32.1689011721.5d45ce2.tar.xz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@ -1,12 +1,12 @@
<services>
<service name="tar_scm" mode="disabled">
<param name="versionprefix">3.1.31</param>
<param name="versionprefix">3.1.32</param>
<param name="url">https://github.com/gitpython-developers/GitPython</param>
<param name="scm">git</param>
<param name="package-meta">yes</param>
<param name="changesgenerate">enable</param>
<param name="submodules">enable</param>
<param name="revision">3.1.31</param>
<param name="revision">3.1.32</param>
</service>
<service name="recompress" mode="disabled">
<param name="compression">xz</param>

View File

@ -3,4 +3,4 @@
<param name="url">git://github.com/gitpython-developers/GitPython</param>
<param name="changesrevision">f653af66e4c9461579ec44db50e113facf61e2d3</param></service><service name="tar_scm">
<param name="url">https://github.com/gitpython-developers/GitPython</param>
<param name="changesrevision">f25333525425ee1497366fd300a60127aa652d79</param></service></servicedata>
<param name="changesrevision">5d45ce243a12669724e969442e6725a894e30fd4</param></service></servicedata>

View File

@ -1,3 +1,18 @@
-------------------------------------------------------------------
Mon Aug 21 04:36:14 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>
- Update to version 3.1.32.1689011721.5d45ce2:
* Block insecure non-multi options in clone/clone_from Follow-up to #1521
(bsc#1214174, CVE-2023-40267)
* Name top-level exceptions as private variables
* Revert the removal of Commit.trailers property.
* Specify encoding in Commit.trailer_list.
* Update Commit.trailer_list to return tuples.
* Deprecate Commit.trailers.
* Add trailers_list and trailers_list methods to fix the commit trailers
functionality.
- Switch to pyproject macros.
-------------------------------------------------------------------
Thu May 11 13:59:44 UTC 2023 - mcepl@suse.com

View File

@ -17,9 +17,10 @@
%define skip_python2 1
%define simple_ver 3.1.32
%{?sle15_python_module_pythons}
Name: python-GitPython
Version: 3.1.31.1676565040.f253335
Version: 3.1.32.1689011721.5d45ce2
Release: 0
Summary: Python Git Library
License: BSD-3-Clause
@ -29,9 +30,11 @@ Patch0: test-skips.patch
Patch1: test_blocking_lock_file-extra-time.patch
BuildRequires: %{python_module ddt >= 1.1.1}
BuildRequires: %{python_module gitdb >= 4.0.1}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module smmap >= 3.0.1}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: git-core
BuildRequires: python-rpm-macros
@ -58,10 +61,10 @@ sed -i -e '/tox/d' -e '/flake8/d' -e '/coverage/d' test-requirements.txt
sed -i -e '/addopts/d' pyproject.toml
%build
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
@ -84,8 +87,7 @@ git config --global user.name "Your Name"
%files %{python_files}
%license LICENSE
%doc AUTHORS CHANGES README.md doc/source/*.rst
%dir %{python_sitelib}/git
%{python_sitelib}/git/*
%{python_sitelib}/GitPython*
%{python_sitelib}/git
%{python_sitelib}/GitPython-%{simple_ver}.dist-info
%changelog