forked from pool/python-radexreader
80 lines
2.6 KiB
RPMSpec
80 lines
2.6 KiB
RPMSpec
|
#
|
||
|
# spec file for package python-radexreader
|
||
|
#
|
||
|
# Copyright (c) 2021 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-%{**}}
|
||
|
Name: python-radexreader
|
||
|
Version: 1.1.0
|
||
|
Release: 0
|
||
|
Summary: Reader for the RADEX RD1212 Geiger counter
|
||
|
License: GPL-2.0-or-later
|
||
|
URL: https://github.com/luigifab/python-radexreader
|
||
|
Source0: %{url}/archive/v%{version}/%{name}-%{version}.tar.gz
|
||
|
BuildRequires: %{python_module pyserial}
|
||
|
BuildRequires: %{python_module pyusb}
|
||
|
BuildRequires: %{python_module setuptools}
|
||
|
BuildRequires: python-rpm-macros
|
||
|
BuildRequires: fdupes
|
||
|
Requires: python-pyserial
|
||
|
Requires: python-pyusb
|
||
|
Requires(post): update-alternatives
|
||
|
Requires(postun): update-alternatives
|
||
|
BuildArch: noarch
|
||
|
%python_subpackages
|
||
|
|
||
|
%description
|
||
|
The RadexReader is an user-space driver for the RADEX RD1212 Geiger counter.
|
||
|
It allow to read and clear stored data via USB.
|
||
|
|
||
|
To avoid Access denied (insufficient permissions), don't forget
|
||
|
to unplug the device after installation.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -n python-radexreader-%{version}
|
||
|
sed -i 's/python3-radexreader /python3-radexreader-rpm /g' src/cmd.py
|
||
|
sed -i 's/\#\!\/usr\/bin\/python3/\#/g' src/radexreader/__init__.py
|
||
|
|
||
|
%build
|
||
|
cd src
|
||
|
%python_build
|
||
|
|
||
|
%install
|
||
|
cd src
|
||
|
%python_install
|
||
|
%python_expand %fdupes %{buildroot}%{$python_sitelib}
|
||
|
mkdir -p %{buildroot}%{_bindir}/
|
||
|
mkdir -p %{buildroot}%{_udevrulesdir}/
|
||
|
%python_expand install -p -m 644 ../debian/udev %{buildroot}%{_udevrulesdir}/60-python%{$python_bin_suffix}-radexreader.rules
|
||
|
install -p -m 755 ../src/cmd.py %{buildroot}%{_bindir}/radexreader
|
||
|
%python_clone -a %{buildroot}%{_bindir}/radexreader
|
||
|
|
||
|
%files %{python_files}
|
||
|
%license LICENSE
|
||
|
%doc README.md
|
||
|
%python_alternative %{_bindir}/radexreader
|
||
|
%{python_sitelib}/radexreader/
|
||
|
%{python_sitelib}/radexreader*egg-info/
|
||
|
%{_udevrulesdir}/60-python%{python_bin_suffix}-radexreader.rules
|
||
|
|
||
|
%post
|
||
|
%python_install_alternative radexreader
|
||
|
|
||
|
%postun
|
||
|
%python_uninstall_alternative radexreader
|
||
|
|
||
|
%changelog
|