14
0

Accepting request 993134 from home:bnavigator:branches:devel:languages:python

- Fix the requirements
- Enable tests
- Don't catchall files

OBS-URL: https://build.opensuse.org/request/show/993134
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-actdiag?expand=0&rev=17
This commit is contained in:
2022-08-04 20:53:31 +00:00
committed by Git OBS Bridge
parent 36fd62cc1f
commit b75a080b4e
2 changed files with 19 additions and 10 deletions

View File

@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Aug 4 20:14:27 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Fix the requirements
- Enable tests
- Don't catchall files
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Aug 4 08:24:17 UTC 2022 - Otto Hollmann <otto.hollmann@suse.com> Thu Aug 4 08:24:17 UTC 2022 - Otto Hollmann <otto.hollmann@suse.com>

View File

@@ -16,8 +16,6 @@
# #
%define skip_python2 1
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-actdiag Name: python-actdiag
Version: 3.0.0 Version: 3.0.0
Release: 0 Release: 0
@@ -26,20 +24,18 @@ License: Apache-2.0
Group: Development/Languages/Python Group: Development/Languages/Python
URL: http://blockdiag.com/ URL: http://blockdiag.com/
Source: https://files.pythonhosted.org/packages/source/a/actdiag/actdiag-%{version}.tar.gz Source: https://files.pythonhosted.org/packages/source/a/actdiag/actdiag-%{version}.tar.gz
BuildRequires: %{python_module base >= 3.7}
BuildRequires: %{python_module blockdiag >= 3}
BuildRequires: %{python_module docutils}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools} BuildRequires: %{python_module setuptools}
BuildRequires: fdupes BuildRequires: fdupes
BuildRequires: python-rpm-macros BuildRequires: python-rpm-macros
Requires: python-blockdiag >= 1.5.0 Requires: python-blockdiag >= 3
Requires: python-setuptools Requires: python-setuptools
Requires(post): update-alternatives Requires(post): update-alternatives
Requires(postun):update-alternatives Requires(postun):update-alternatives
BuildArch: noarch BuildArch: noarch
%if 0%{?suse_version} >= 1000 || 0%{?fedora_version} >= 24 || 0%{?rhel} >= 8
Suggests: python-docutils
Suggests: python-nose
Suggests: python-pep8 >= 1.3
Suggests: python-reportlab
%endif
%python_subpackages %python_subpackages
%description %description
@@ -47,6 +43,8 @@ actdiag generates activity-diagram image files from spec-text files.
%prep %prep
%setup -q -n actdiag-%{version} %setup -q -n actdiag-%{version}
# python-blockdiag-nose-to-pytest.patch of python-blockdiag changed the function name
sed -i 's/testcase_generator/_testcase_generator/' src/actdiag/tests/test_generate_diagram.py
%build %build
%python_build %python_build
@@ -56,6 +54,9 @@ actdiag generates activity-diagram image files from spec-text files.
%python_clone -a %{buildroot}%{_bindir}/actdiag %python_clone -a %{buildroot}%{_bindir}/actdiag
%python_expand %fdupes %{buildroot}%{$python_sitelib} %python_expand %fdupes %{buildroot}%{$python_sitelib}
%check
%pytest src/actdiag/tests
%post %post
%python_install_alternative actdiag %python_install_alternative actdiag
@@ -66,6 +67,7 @@ actdiag generates activity-diagram image files from spec-text files.
%license LICENSE %license LICENSE
%doc README.rst %doc README.rst
%python_alternative %{_bindir}/actdiag %python_alternative %{_bindir}/actdiag
%{python_sitelib}/* %{python_sitelib}/actdiag
%{python_sitelib}/actdiag-%{version}*-info
%changelog %changelog