# # spec file for package python-catkin-pkg # # Copyright (c) 2022 SUSE LLC # # 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/ # %{?!python_module:%define python_module() python-%{**} python3-%{**}} %define commands create_pkg find_pkg generate_changelog package_version prepare_release tag_changelog test_changelog %define skip_python2 1 Name: python-catkin-pkg Version: 0.4.24 Release: 0 Summary: Catkin package library License: BSD-3-Clause URL: https://wiki.ros.org/catkin_pkg Source: https://github.com/ros-infrastructure/catkin_pkg/archive/%{version}.tar.gz # https://github.com/ros-infrastructure/catkin_pkg/commit/b5c6812b40fa31da91ee560dda7c6e470dedcfb8.diff Patch0: python-catkin-pkg-no-mock.patch BuildRequires: %{python_module setuptools} BuildRequires: fdupes BuildRequires: python-rpm-macros Requires: python-docutils Requires: python-pyparsing Requires: python-python-dateutil Requires: python-setuptools Requires(post): update-alternatives Requires(postun):update-alternatives BuildArch: noarch # SECTION test requirements BuildRequires: %{python_module docutils} BuildRequires: %{python_module flake8} BuildRequires: %{python_module pyparsing} BuildRequires: %{python_module pytest} BuildRequires: %{python_module python-dateutil} # /SECTION %python_subpackages %description Library for retrieving information about catkin packages. %prep %setup -q -n catkin_pkg-%{version} %autopatch -p1 %build %python_build %install %python_install for c in %{commands}; do %python_clone -a %{buildroot}%{_bindir}/catkin_$c done %python_expand %fdupes %{buildroot}%{$python_sitelib} %check export PYTHONPATH=$PWD/src # flake8 line length checks failing (E501) %pytest -k 'not test_flake8' %post for c in %{commands}; do %python_install_alternative catkin_$c done %postun for c in %{commands}; do %python_uninstall_alternative catkin_$c done %files %{python_files} %license LICENSE %python_alternative %{_bindir}/catkin_create_pkg %python_alternative %{_bindir}/catkin_find_pkg %python_alternative %{_bindir}/catkin_generate_changelog %python_alternative %{_bindir}/catkin_package_version %python_alternative %{_bindir}/catkin_prepare_release %python_alternative %{_bindir}/catkin_tag_changelog %python_alternative %{_bindir}/catkin_test_changelog %{python_sitelib}/* %changelog