SHA256
1
0
forked from pool/tio
tio/tio.spec
Martin Hauke d112ae0d22 - Update to version 3.4
* Update configuration output.
  * Clean up script run interaction text.
  * Fix unbounded writes.
  * Add history and editing feature to line input mode.
  * Use up and down arrow keys to navigate history.
  * Use left and right arrow keys to move cursor back and forth.
  * We try mimic the behaviour of GNU readline which we can not
    use because.
  * Reuse socket address.
  * Fix line input mode.
  * Fix so that ABCD are no longer ignored.
  * Make sure ICRNL, IGNCR, INLCR take effect.
  * Include correct header for poll().
  * Add group write permission to xymodem received file.
  * Fix missing open() flags in xymodem_receive().
  * Show current mappings in the configuration printout.
  * Use "ctrl-t m" to change mappings interactively.
  * Prompt for Lua script or shell command in interactive session.
  * Added support to receive XMODEM-CRC files from the connected
    serial port.

OBS-URL: https://build.opensuse.org/package/show/hardware/tio?expand=0&rev=38
2024-06-22 09:39:48 +00:00

68 lines
1.9 KiB
RPMSpec

#
# spec file for package tio
#
# Copyright (c) 2024 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/
#
Name: tio
Version: 3.4
Release: 0
Summary: Simple TTY terminal I/O application
License: GPL-2.0-or-later
Group: Hardware/Modem
URL: https://tio.github.io/
Source: https://github.com/tio/tio/releases/download/v%{version}/%{name}-%{version}.tar.xz
BuildRequires: cmake
BuildRequires: lua53-devel
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: pkgconfig(glib-2.0)
%description
Tio is a simple TTY terminal application which features a straightforward
commandline interface to easily connect to TTY devices for basic input/output.
%package bash-completion
Summary: Bash Completion for %{name}
Group: Hardware/Modem
Requires: %{name} = %{version}
Requires: bash-completion
Supplements: (%{name} and bash-completion)
BuildArch: noarch
%description bash-completion
Bash completion script for %{name}.
%prep
%setup -q
%build
%meson -Dbashcompletiondir=%{_datadir}/bash-completion/completions/
%meson_build
%install
%meson_install
%files
%license LICENSE
%doc AUTHORS NEWS README.md
%{_bindir}/%{name}
%{_mandir}/man1/%{name}.1%{?ext_man}
%files bash-completion
%{_datadir}/bash-completion/completions/%{name}
%changelog