14
0

[info=339dcbf79333df7675a09de7c1d0564416130b03]

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-orangebox?expand=0&rev=6
This commit is contained in:
2022-06-07 06:57:32 +00:00
committed by Git OBS Bridge
parent b6f64689ad
commit 6880eb00c7
3 changed files with 25 additions and 14 deletions

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6f7ce2f4a40ad14cd75edc9e812027c0b3ec14f859da8ec2be1b6d4829cbec53
size 203740
oid sha256:e1da4a4293bbab40d88c9cb12c5c14d0b6b7191a904a6864aace1df09d9d0496
size 203724

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