14
0
Files
python-pyserial/python-pyserial.spec
Dirk Mueller 83c3706df9 Accepting request 865162 from system:homeautomation:home-assistant
- update to version 3.5:
  New Features:
  [#411] Add a backend for Silicon Labs CP2110/4 HID-to-UART bridge. (depends on hid module)
  Improvements:
  [#315] Use absolute import everywhere
  [#354] Make ListPortInfo hashable
  [#372] threaded: "write" returns byte count
  [#400] Add bytesize and stopbits argument parser to tcp_serial_redirect
  [#408] loop: add out_waiting
  [#495] list_ports_linux: Correct "interface" property on Linux hosts
  [#500] Remove Python 3.2 and 3.3 from test
  [#261, #285, #296, #320, #333, #342, #356, #358, #389, #397, #510] doc updates
  miniterm: add CTRL+T Q as alternative to exit
  miniterm: suspend function key changed to CTRL-T Z
  add command line tool entries pyserial-miniterm (replaces miniterm.py) and pyserial-ports (runs serial.tools.list_ports).
  python -m serial opens miniterm (use w/o args and it will print port list too) [experimental]
  Bugfixes:
  [#371] Don't open port if self.port is not set while entering context manager
  [#437, #502] refactor: raise new instances for PortNotOpenError and SerialTimeoutException
  [#261, #263] list_ports: set default name attribute
  [#286] fix: compare only of the same type in list_ports_common.ListPortInfo
  rfc2217/close(): fix race-condition
  [#305] return b'' when connection closes on rfc2217 connection
  [#386] rfc2217/close(): fix race condition
  Fixed flush_input_buffer() for situations where the remote end has closed the socket.
  [#441] reset_input_buffer() can hang on sockets
  examples: port_publisher python 3 fixes
  [#324] miniterm: Fix miniterm constructor exit_character and menu_character
  [#326] miniterm: use exclusive access for native serial ports by default
  [#497] miniterm: fix double use of CTRL-T + s use z for suspend instead

OBS-URL: https://build.opensuse.org/request/show/865162
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pyserial?expand=0&rev=31
2021-01-21 08:33:45 +00:00

111 lines
3.3 KiB
RPMSpec

#
# spec file for package python-pyserial
#
# 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-pyserial
Version: 3.5
Release: 0
Summary: Python Serial Port Extension
License: Python-2.0
Group: Development/Languages/Python
URL: https://github.com/pyserial/pyserial
Source: https://files.pythonhosted.org/packages/source/p/pyserial/pyserial-%{version}.tar.gz
BuildRequires: %{python_module setuptools}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
BuildRequires: python3-Sphinx
Requires(post): update-alternatives
Requires(preun): update-alternatives
Provides: python-serial = %{version}
Obsoletes: python-serial < %{version}
BuildArch: noarch
%python_subpackages
%description
Python Serial Port Extension for Win32, Linux, BSD, Jython, IronPython
%package -n %{name}-doc
Summary: Documentation for %{name}
Group: Documentation/Other
Provides: python2-pyserial-doc = %{version}
Provides: python3-pyserial-doc = %{version}
%description -n %{name}-doc
Documentation, examples, and help files for %{name}.
%prep
%setup -q -n pyserial-%{version}
# Unnecessary
rm serial/tools/list_ports_windows.py \
serial/tools/list_ports_osx.py \
serial/win32.py \
serial/serialwin32.py
# Requires .Net/IronPython, and especially System.IO.Ports which is troublesome
rm serial/serialcli.py
# Requires Jython with JavaComm
rm serial/serialjava.py
find serial -type f -not -name 'miniterm.py' -exec sed -i '1{/#!/d}' {} +
find serial -type f -not -name 'miniterm.py' -exec chmod a-x {} +
touch test/__init__.py
%build
%python_build
make %{?_smp_mflags} -C documentation html && rm documentation/_build/html/.buildinfo # Build HTML documentation
sed -i -e "1{s|^#![[:space:]]*\/.*bin.*$|#!%{_bindir}/python3|}" examples/*.py
%install
%python_install
%python_clone -a %{buildroot}%{_bindir}/pyserial-miniterm
%python_clone -a %{buildroot}%{_bindir}/pyserial-ports
rm documentation/_build/doctrees/environment.pickle
%{python_expand sed -i '1{/#!/d}' %{buildroot}%{$python_sitelib}/serial/tools/miniterm.py
%fdupes %{buildroot}%{$python_sitelib}
}
%check
%python_exec test/run_all_tests.py
%post
%python_install_alternative pyserial-miniterm
%python_install_alternative pyserial-ports
%preun
%python_uninstall_alternative pyserial-miniterm
%python_uninstall_alternative pyserial-ports
%files %{python_files}
%license LICENSE.txt
%doc CHANGES.rst README.rst
%python_alternative pyserial-miniterm
%python_alternative pyserial-ports
%{python_sitelib}/serial/
%{python_sitelib}/pyserial-%{version}-py*.egg-info
%files -n %{name}-doc
%doc examples/
%doc documentation/_build/*
%changelog