2018-07-30 07:56:26 +00:00
|
|
|
#
|
|
|
|
# spec file for package python-msm
|
|
|
|
#
|
2024-05-17 06:22:37 +00:00
|
|
|
# Copyright (c) 2024 SUSE LLC
|
2018-07-30 07:56:26 +00:00
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2018-11-02 08:20:23 +00:00
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
2018-07-30 08:02:44 +00:00
|
|
|
#
|
2018-07-30 07:56:26 +00:00
|
|
|
|
|
|
|
|
2018-08-26 19:19:03 +00:00
|
|
|
%define skip_python2 1
|
2018-07-30 07:56:26 +00:00
|
|
|
%{?!python_module:%define python_module() python-%{**} python3-%{**}}
|
|
|
|
Name: python-msm
|
2020-01-22 14:51:55 +00:00
|
|
|
Version: 0.8.5
|
2018-07-30 07:56:26 +00:00
|
|
|
Release: 0
|
|
|
|
Summary: Mycroft Skills Manager
|
2018-07-30 08:02:44 +00:00
|
|
|
License: Apache-2.0
|
2018-07-30 07:56:26 +00:00
|
|
|
Group: Development/Languages/Python
|
2018-07-30 08:02:44 +00:00
|
|
|
URL: https://github.com/MycroftAI/mycroft-skills-manager
|
2019-05-29 15:19:25 +00:00
|
|
|
Source: https://github.com/MycroftAI/mycroft-skills-manager/archive/v%{version}.tar.gz
|
2018-08-26 19:19:03 +00:00
|
|
|
Patch1: do-not-run-pip-or-requirements-script.patch
|
|
|
|
Patch2: add-local-patch-support.patch
|
2019-05-29 15:19:25 +00:00
|
|
|
BuildRequires: %{python_module GitPython}
|
|
|
|
BuildRequires: %{python_module PyYAML}
|
|
|
|
BuildRequires: %{python_module fasteners}
|
|
|
|
BuildRequires: %{python_module lazy}
|
|
|
|
BuildRequires: %{python_module pako}
|
|
|
|
BuildRequires: %{python_module pytest}
|
|
|
|
BuildRequires: %{python_module requests}
|
2018-07-30 07:56:26 +00:00
|
|
|
BuildRequires: %{python_module setuptools}
|
2019-05-29 15:19:25 +00:00
|
|
|
BuildRequires: %{python_module typing}
|
2018-07-30 07:56:26 +00:00
|
|
|
BuildRequires: fdupes
|
2018-07-30 08:02:44 +00:00
|
|
|
BuildRequires: python-rpm-macros
|
2018-08-11 16:00:51 +00:00
|
|
|
Requires: patch
|
2018-08-27 15:03:08 +00:00
|
|
|
Requires: python-GitPython
|
2019-05-29 15:19:25 +00:00
|
|
|
Requires: python-PyYAML
|
2019-02-10 19:17:15 +00:00
|
|
|
Requires: python-fasteners
|
2019-05-29 15:19:25 +00:00
|
|
|
Requires: python-lazy
|
|
|
|
Requires: python-pako
|
|
|
|
Requires: python-requests
|
2019-07-24 12:15:02 +00:00
|
|
|
Requires: python-setuptools
|
2019-05-29 15:19:25 +00:00
|
|
|
Requires: python-typing
|
2020-05-25 09:21:20 +00:00
|
|
|
Requires(post): update-alternatives
|
|
|
|
Requires(postun): update-alternatives
|
2018-07-30 07:56:26 +00:00
|
|
|
BuildArch: noarch
|
|
|
|
%python_subpackages
|
|
|
|
|
|
|
|
%description
|
|
|
|
msm is Mycroft Skills Manager, a command line tool to install/list/remove
|
|
|
|
Mycroft skills.
|
|
|
|
|
|
|
|
%prep
|
2024-05-17 06:22:37 +00:00
|
|
|
%autosetup -p1 -n mycroft-skills-manager-%{version}
|
|
|
|
|
2019-02-10 19:17:15 +00:00
|
|
|
sed -i -e "s/install_requires=\['GitPython', 'typing'/install_requires=['GitPython'/" setup.py
|
2018-11-02 08:20:23 +00:00
|
|
|
sed -i -e "s/data_files=\[('msm', \['LICENSE'\])\]//" setup.py
|
|
|
|
chmod -x LICENSE
|
2018-07-30 08:02:44 +00:00
|
|
|
|
2018-07-30 07:56:26 +00:00
|
|
|
%build
|
|
|
|
%python_build
|
|
|
|
|
|
|
|
%install
|
|
|
|
%python_install
|
2020-05-25 09:21:20 +00:00
|
|
|
%python_clone -a %{buildroot}%{_bindir}/msm
|
2018-07-30 07:56:26 +00:00
|
|
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
|
|
|
|
2019-05-29 15:19:25 +00:00
|
|
|
%check
|
|
|
|
# test_mycroft_skills_manager.py and test_skill_repo.py clone a git repo from GitHub already in their __init__
|
|
|
|
# test_main.py also clones a repo in init via self.base_params
|
|
|
|
# run_pip calls pip to install some dependencies
|
|
|
|
%pytest --ignore tests/test_mycroft_skills_manager.py --ignore tests/test_skill_repo.py --ignore tests/test_main.py -k "not run_pip" tests
|
|
|
|
|
2020-05-25 09:21:20 +00:00
|
|
|
%post
|
|
|
|
%python_install_alternative msm
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%python_uninstall_alternative msm
|
|
|
|
|
2018-07-30 07:56:26 +00:00
|
|
|
%files %{python_files}
|
2018-07-30 08:02:44 +00:00
|
|
|
%license LICENSE
|
2020-05-25 09:21:20 +00:00
|
|
|
%python_alternative %{_bindir}/msm
|
2019-02-03 17:58:08 +00:00
|
|
|
%{python_sitelib}/msm
|
|
|
|
%{python_sitelib}/msm-%{version}-py%{python_version}.egg-info
|
2018-07-30 07:56:26 +00:00
|
|
|
|
|
|
|
%changelog
|