forked from pool/python-gitdb
Compare commits
4 Commits
Author | SHA256 | Date | |
---|---|---|---|
ee019d1b99 | |||
e040bf51bb | |||
194dd4d5df | |||
27de8ff941 |
BIN
gitdb-4.0.11.tar.gz
(Stored with Git LFS)
BIN
gitdb-4.0.11.tar.gz
(Stored with Git LFS)
Binary file not shown.
BIN
gitdb-4.0.12.tar.gz
(Stored with Git LFS)
Normal file
BIN
gitdb-4.0.12.tar.gz
(Stored with Git LFS)
Normal file
Binary file not shown.
@@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Jun 30 04:23:20 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Switch to pyproject macros.
|
||||||
|
- List directories explicitly under %files.
|
||||||
|
- Run a portion of the testsuite.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jan 22 11:05:28 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
|
||||||
|
|
||||||
|
- Update to 4.0.12
|
||||||
|
* Never add a vendored smmap directory to sys.path
|
||||||
|
* Revise and update the readme
|
||||||
|
* Set Dependabot submodule update cadence to weekly
|
||||||
|
* Add missing asserts in test_base.py
|
||||||
|
* Use contextlib.suppress instead of except: pass
|
||||||
|
* Add support for Python 3.13
|
||||||
|
* Potential Race Condition Fix - OS Rename & Chmod - PermissionError
|
||||||
|
* Bump gitdb/ext/smmap from 256c5a2 to 04dd210
|
||||||
|
* Bump actions/setup-python from 4 to 5
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Nov 27 19:00:20 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
Mon Nov 27 19:00:20 UTC 2023 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-gitdb
|
# spec file for package python-gitdb
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2025 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,19 +18,23 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-gitdb
|
Name: python-gitdb
|
||||||
Version: 4.0.11
|
Version: 4.0.12
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Git Object Database
|
Summary: Git Object Database
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://github.com/gitpython-developers/gitdb
|
URL: https://github.com/gitpython-developers/gitdb
|
||||||
Source: https://files.pythonhosted.org/packages/source/g/gitdb/gitdb-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/g/gitdb/gitdb-%{version}.tar.gz
|
||||||
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module setuptools}
|
||||||
BuildRequires: %{python_module smmap >= 3.0.1}
|
BuildRequires: %{python_module smmap >= 3.0.1}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-smmap >= 3.0.1
|
Requires: python-smmap >= 3.0.1
|
||||||
Provides: python-gitdb2 = %{version}
|
Provides: python-gitdb2 = %{version}
|
||||||
Obsoletes: python-gitdb2 < %{version}
|
Obsoletes: python-gitdb2 < %{version}
|
||||||
|
BuildArch: noarch
|
||||||
%python_subpackages
|
%python_subpackages
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@@ -40,19 +44,22 @@ GitDB is a pure-Python git object database
|
|||||||
%setup -q -n gitdb-%{version}
|
%setup -q -n gitdb-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
# Package requires its own git tree in order to pass tests
|
donttest="test_reading or test_writing or test_correctness or test_base"
|
||||||
#%%python_exec setup.py test
|
donttest+=" or test_loose_correctness or test_pack_random_access"
|
||||||
|
donttest+=" or test_pack_writing or test_stream_reading"
|
||||||
|
%pytest -k "not ($donttest)"
|
||||||
|
|
||||||
%files %{python_files}
|
%files %{python_files}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%doc AUTHORS
|
%doc AUTHORS
|
||||||
%{python_sitelib}/gitdb*
|
%{python_sitelib}/gitdb
|
||||||
|
%{python_sitelib}/gitdb-%{version}.dist-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Reference in New Issue
Block a user