forked from pool/python-sortinghat
Accepting request 1032563 from devel:languages:python
- Update to version 0.7.21 * Update package dependencies * Update jinja2 package and dev-dependencies. * Update Poetry's package dependencies - Clean up SPEC file to remove rpmlint warnings. OBS-URL: https://build.opensuse.org/request/show/1032563 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-sortinghat?expand=0&rev=5
This commit is contained in:
@@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Oct 29 01:20:39 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||||
|
|
||||||
|
- Update to version 0.7.21
|
||||||
|
* Update package dependencies
|
||||||
|
* Update jinja2 package and dev-dependencies.
|
||||||
|
* Update Poetry's package dependencies
|
||||||
|
- Clean up SPEC file to remove rpmlint warnings.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Oct 7 16:13:30 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
Fri Oct 7 16:13:30 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
|
||||||
|
|
||||||
|
@@ -17,11 +17,10 @@
|
|||||||
|
|
||||||
|
|
||||||
%define binaries stackalytics2sh mozilla2sh mailmap2sh grimoirelab2sh gitdm2sh eclipse2sh sortinghat sh2mg mg2sh
|
%define binaries stackalytics2sh mozilla2sh mailmap2sh grimoirelab2sh gitdm2sh eclipse2sh sortinghat sh2mg mg2sh
|
||||||
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
%define skip_python36 1
|
%define skip_python36 1
|
||||||
Name: python-sortinghat
|
Name: python-sortinghat
|
||||||
Version: 0.7.20
|
Version: 0.7.21
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: A tool to manage identities
|
Summary: A tool to manage identities
|
||||||
License: GPL-3.0-only
|
License: GPL-3.0-only
|
||||||
@@ -31,10 +30,12 @@ Source0: https://files.pythonhosted.org/packages/source/s/sortinghat/sort
|
|||||||
# PATCH-FIX-UPSTREAM no_decl_class_registry.patch gh#chaoss/grimoirelab-sortinghat#579 mcepl@suse.com
|
# PATCH-FIX-UPSTREAM no_decl_class_registry.patch gh#chaoss/grimoirelab-sortinghat#579 mcepl@suse.com
|
||||||
# make the package compatible with SQLAlchemy 1.4.*
|
# make the package compatible with SQLAlchemy 1.4.*
|
||||||
Patch0: no_decl_class_registry.patch
|
Patch0: no_decl_class_registry.patch
|
||||||
BuildRequires: %{python_module setuptools}
|
BuildRequires: %{python_module pip}
|
||||||
|
BuildRequires: %{python_module poetry-core}
|
||||||
|
BuildRequires: %{python_module wheel}
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
Requires: python-Jinja2
|
Requires: python-Jinja2 >= 3.0.1
|
||||||
Requires: python-PyMySQL >= 0.7.0
|
Requires: python-PyMySQL >= 0.7.0
|
||||||
Requires: python-PyYAML >= 3.12
|
Requires: python-PyYAML >= 3.12
|
||||||
Requires: python-SQLAlchemy >= 1.2
|
Requires: python-SQLAlchemy >= 1.2
|
||||||
@@ -51,7 +52,8 @@ BuildRequires: %{python_module PyMySQL >= 0.7.0}
|
|||||||
BuildRequires: %{python_module PyYAML >= 3.12}
|
BuildRequires: %{python_module PyYAML >= 3.12}
|
||||||
BuildRequires: %{python_module SQLAlchemy >= 1.2}
|
BuildRequires: %{python_module SQLAlchemy >= 1.2}
|
||||||
BuildRequires: %{python_module httpretty >= 0.9.5}
|
BuildRequires: %{python_module httpretty >= 0.9.5}
|
||||||
BuildRequires: %{python_module pandas >= 0.17}
|
BuildRequires: %{python_module numpy}
|
||||||
|
BuildRequires: %{python_module pandas >= 0.25.3}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module python-dateutil >= 2.6.0}
|
BuildRequires: %{python_module python-dateutil >= 2.6.0}
|
||||||
BuildRequires: %{python_module requests >= 2.9}
|
BuildRequires: %{python_module requests >= 2.9}
|
||||||
@@ -90,14 +92,19 @@ into unique identities (and maybe affiliate them).
|
|||||||
sed -i -e "s/\('pandoc'\|'wheel',\)//" -e 's/==/>=/' setup.py
|
sed -i -e "s/\('pandoc'\|'wheel',\)//" -e 's/==/>=/' setup.py
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%python_build
|
%pyproject_wheel
|
||||||
|
%{python_expand sed -i -e '1s@/usr/bin/.*python.*$@%{$__python}@' \
|
||||||
|
sortinghat/misc/*.py sortinghat/bin/*.py
|
||||||
|
}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%python_install
|
%pyproject_install
|
||||||
for b in %{binaries}; do
|
for b in %{binaries}; do
|
||||||
%python_clone -a %{buildroot}%{_bindir}/$b
|
%python_clone -a %{buildroot}%{_bindir}/$b
|
||||||
done
|
done
|
||||||
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
%{python_expand rm -r %{buildroot}%{$python_sitelib}/sortinghat/{bin,misc}
|
||||||
|
%fdupes %{buildroot}%{$python_sitelib}
|
||||||
|
}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
exit_code=0
|
exit_code=0
|
||||||
@@ -132,12 +139,12 @@ sed -i -e "s/'3306'/self.kwargs['port']/" tests/test_cmd_init.py
|
|||||||
exit $exit_code
|
exit $exit_code
|
||||||
|
|
||||||
%post
|
%post
|
||||||
for b in %{binaries}; do
|
for b in mg2sh sh2mg sortinghat eclipse2sh gitdm2sh grimoirelab2sh mailmap2sh mozilla2sh stackalytics2sh; do
|
||||||
%python_install_alternative $b
|
%python_install_alternative $b
|
||||||
done
|
done
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
for b in %{binaries}; do
|
for b in mg2sh sh2mg sortinghat eclipse2sh gitdm2sh grimoirelab2sh mailmap2sh mozilla2sh stackalytics2sh; do
|
||||||
%python_uninstall_alternative $b
|
%python_uninstall_alternative $b
|
||||||
done
|
done
|
||||||
|
|
||||||
@@ -152,6 +159,7 @@ done
|
|||||||
%python_alternative %{_bindir}/mailmap2sh
|
%python_alternative %{_bindir}/mailmap2sh
|
||||||
%python_alternative %{_bindir}/mozilla2sh
|
%python_alternative %{_bindir}/mozilla2sh
|
||||||
%python_alternative %{_bindir}/stackalytics2sh
|
%python_alternative %{_bindir}/stackalytics2sh
|
||||||
%{python_sitelib}/*
|
%{python_sitelib}/sortinghat
|
||||||
|
%{python_sitelib}/sortinghat-%{version}*-info
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:abe4404b1467323fd9cb4ec3c296ae490dde87fd78b221411f507799fb5fc252
|
|
||||||
size 182305
|
|
3
sortinghat-0.7.21.tar.gz
Normal file
3
sortinghat-0.7.21.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:88083c612bd6bb3fd3e0e36d603d6555e46364fb702ac71e412081cb667202bb
|
||||||
|
size 182371
|
Reference in New Issue
Block a user