forked from pool/python-pygit2
Dirk Mueller
cce0cea461
* 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, OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pygit2?expand=0&rev=80
74 lines
2.2 KiB
RPMSpec
74 lines
2.2 KiB
RPMSpec
#
|
|
# spec file for package python-pygit2
|
|
#
|
|
# Copyright (c) 2024 SUSE LLC
|
|
# Copyright (c) 2019 Neal Gompa <ngompa13@gmail.com>.
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%{?sle15_python_module_pythons}
|
|
Name: python-pygit2
|
|
Version: 1.13.3
|
|
Release: 0
|
|
Summary: Python bindings for libgit2
|
|
License: GPL-2.0-only
|
|
URL: https://github.com/libgit2/pygit2
|
|
Source: https://files.pythonhosted.org/packages/source/p/pygit2/pygit2-%{version}.tar.gz
|
|
BuildRequires: %{python_module cached-property}
|
|
BuildRequires: %{python_module cffi >= 1.4.0}
|
|
BuildRequires: %{python_module devel}
|
|
BuildRequires: %{python_module pytest}
|
|
BuildRequires: %{python_module setuptools}
|
|
BuildRequires: ca-certificates
|
|
BuildRequires: ca-certificates-mozilla
|
|
BuildRequires: fdupes
|
|
BuildRequires: libgit2-devel >= 1.1
|
|
BuildRequires: libopenssl-devel
|
|
BuildRequires: python-rpm-macros
|
|
Requires: python-cached-property
|
|
%requires_eq python-cffi
|
|
%python_subpackages
|
|
|
|
%description
|
|
Bindings for libgit2, a linkable C library for the Git version-control system.
|
|
|
|
%prep
|
|
%autosetup -p1 -n pygit2-%{version}
|
|
|
|
# do not add options to pytest
|
|
rm pytest.ini
|
|
|
|
%build
|
|
export CFLAGS="%{optflags} -fno-strict-aliasing"
|
|
%python_build
|
|
|
|
%install
|
|
%python_install
|
|
%python_expand rm -rf %{buildroot}%{$python_sitearch}/pygit2/decl/
|
|
%python_expand %fdupes %{buildroot}%{$python_sitearch}
|
|
|
|
%check
|
|
rm -rf pygit2
|
|
# test_no_context_lines failing on big endian
|
|
# https://github.com/libgit2/pygit2/issues/812
|
|
%pytest_arch -k 'not test_no_context_lines'
|
|
|
|
%files %{python_files}
|
|
%license COPYING
|
|
%doc README.rst
|
|
%{python_sitearch}/pygit2
|
|
%{python_sitearch}/pygit2-%{version}*-info
|
|
|
|
%changelog
|