Merge pull request #1 from mcepl/main

Switch from setup.py to pip-drive workflow.
This commit is contained in:
Adrian Schröter 2022-06-07 08:57:17 +02:00 committed by GitHub
commit 339dcbf793
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 23 additions and 12 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Jun 3 14:39:47 UTC 2022 - Matej Cepl <mcepl@suse.com>
- Switch from setup.py to pip-driven workflow.
- Clean up the SPEC file to follow more style of other Python packages.
-------------------------------------------------------------------
Wed Feb 16 10:20:44 UTC 2022 - Adrian Schröter <adrian@suse.de>

View File

@ -1,7 +1,7 @@
#
# spec file for package python-orangebox
#
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
# 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
@ -12,7 +12,8 @@
# 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-%{**}}
@ -21,18 +22,18 @@
Name: python-orangebox
Version: 0.2.0
Release: 0
License: GPL-3.0-or-later
Summary: Betaflight blackbox flight recorder parser
License: GPL-3.0-or-later
Group: Development/Languages/Python
Url: https://github.com/atomgomba/orangebox
URL: https://github.com/atomgomba/orangebox
#!RemoteAssetUrl: git+https://github.com/atomgomba/orangebox#v0.2.0
BuildRequires: %{python_module pip}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
Requires(post): update-alternatives
Requires(postun): update-alternatives
BuildArch: noarch
%python_subpackages
@ -41,17 +42,19 @@ Betaflight blackbox recording tooling. It provides a CLI tool and
also python modules.
%prep
%setup -q -n orangebox -c -T
cp -a %_sourcedir/orangebox/* .
%autosetup -p1 -n orangebox -c -T
cp -a %{_sourcedir}/orangebox/* .
%build
export CFLAGS="%{optflags}"
%python_build
%pyproject_wheel
%install
%python_install
%pyproject_install
%python_clone -a %{buildroot}%{_bindir}/bb2csv
%python_clone -a %{buildroot}%{_bindir}/bbsplit
%python_expand %fdupes %{buildroot}%{$python_sitelib}
%post
%python_install_alternative bb2csv
@ -62,7 +65,9 @@ export CFLAGS="%{optflags}"
%python_uninstall_alternative bbsplit
%files %{python_files}
%python_alternative %_bindir/bb2csv
%python_alternative %_bindir/bbsplit
%{python_sitelib}/orangebox*
%python_alternative %{_bindir}/bb2csv
%python_alternative %{_bindir}/bbsplit
%{python_sitelib}/orangebox
%{python_sitelib}/orangebox-%{version}*-info
%changelog