Hello community, here is the log from the commit of package python-pygit2 for openSUSE:Leap:15.2 checked in at 2020-02-09 11:25:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/python-pygit2 (Old) and /work/SRC/openSUSE:Leap:15.2/.python-pygit2.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-pygit2" Sun Feb 9 11:25:14 2020 rev:11 rq:770706 version:0.28.2 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/python-pygit2/python-pygit2.changes 2020-01-15 15:51:57.791547000 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.python-pygit2.new.26092/python-pygit2.changes 2020-02-09 11:25:18.519295188 +0100 @@ -1,0 +2,70 @@ +Mon Dec 2 14:50:25 UTC 2019 - Julio González Gil <[email protected]> + +- Fix building for s390x (bsc#1158198) + +------------------------------------------------------------------- +Mon Jun 3 10:20:16 UTC 2019 - Tomáš Chvátal <[email protected]> + +- 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 18:22:32 UTC 2019 - Gary Smith <[email protected]> + +- 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 8 08:15:54 UTC 2019 - Tomáš Chvátal <[email protected]> + +- Add patch to fix the pycparser issues as per bellow: + * pycparser.patch + +------------------------------------------------------------------- +Sat Mar 23 11:32:34 UTC 2019 - Tomáš Chvátal <[email protected]> + +- 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 20:40:34 UTC 2019 - Neal Gompa <[email protected]> + +- 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 08:33:07 UTC 2018 - [email protected] + +- Add patch to fix issues on i586 arch: + * pygit2-i586.patch + +------------------------------------------------------------------- +Thu May 17 12:10:25 UTC 2018 - [email protected] + +- Update to 0.27.0: + * Update to libgit2 v0.27 #783 + * Fix for GCC 4 #786 + +------------------------------------------------------------------- Old: ---- pygit2-0.26.0.tar.gz New: ---- pygit2-0.28.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-pygit2.spec ++++++ --- /var/tmp/diff_new_pack.MLGY8d/_old 2020-02-09 11:25:18.899295403 +0100 +++ /var/tmp/diff_new_pack.MLGY8d/_new 2020-02-09 11:25:18.899295403 +0100 @@ -1,7 +1,8 @@ # # spec file for package python-pygit2 # -# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2019 SUSE LLC +# Copyright (c) 2019 Neal Gompa <[email protected]>. # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,32 +13,34 @@ # license that conforms to the Open Source Definition (Version 1.9) # published by the Open Source Initiative. -# Please submit bugfixes or comments via http://bugs.opensuse.org/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} -%bcond_with test Name: python-pygit2 -Version: 0.26.0 +Version: 0.28.2 Release: 0 Summary: Python bindings for libgit2 -License: GPL-2.0 +License: GPL-2.0-only Group: Development/Languages/Python -Url: https://github.com/libgit2/pygit2 -Source: https://pypi.io/packages/source/p/pygit2/pygit2-%{version}.tar.gz -BuildRequires: libgit2-devel >= %{version} -BuildRequires: libopenssl-devel -BuildRequires: fdupes -BuildRequires: python-rpm-macros +URL: https://github.com/libgit2/pygit2 +Source: https://files.pythonhosted.org/packages/source/p/pygit2/pygit2-%{version}.tar.gz BuildRequires: %{python_module cffi} BuildRequires: %{python_module devel} -BuildRequires: %{python_module six} +BuildRequires: %{python_module pycparser} +BuildRequires: %{python_module pytest} BuildRequires: %{python_module setuptools} -%requires_eq python-cffi +BuildRequires: %{python_module six} +BuildRequires: ca-certificates +BuildRequires: ca-certificates-mozilla +BuildRequires: fdupes +BuildRequires: libgit2-devel >= %{version} +BuildRequires: libopenssl-devel +BuildRequires: python-rpm-macros +Requires: python-pycparser Requires: python-six -BuildRoot: %{_tmppath}/%{name}-%{version}-build - +%requires_eq python-cffi %python_subpackages %description @@ -45,6 +48,8 @@ %prep %setup -q -n pygit2-%{version} +# do not add options to pytest +rm pytest.ini %build export CFLAGS="%{optflags} -fno-strict-aliasing" @@ -52,16 +57,18 @@ %install %python_install -%python_expand %fdupes %{buildroot}%{$python_sitelib} +%python_expand rm -rf %{buildroot}%{$python_sitearch}/pygit2/decl/ +%python_expand %fdupes %{buildroot}%{$python_sitearch} -%if %{with test} %check -%python_exec setup.py test -%endif +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} -%defattr(-,root,root,-) -%doc COPYING README.rst +%license COPYING +%doc README.rst %{python_sitearch}/* %changelog ++++++ pygit2-0.26.0.tar.gz -> pygit2-0.28.2.tar.gz ++++++ ++++ 15597 lines of diff (skipped)
