- Remove /sbin/isserial Requires, unused since init scripts got removed. OBS-URL: https://build.opensuse.org/request/show/1252374 OBS-URL: https://build.opensuse.org/package/show/Base:System/setserial?expand=0&rev=34
72 lines
2.1 KiB
RPMSpec
72 lines
2.1 KiB
RPMSpec
#
|
|
# spec file for package setserial
|
|
#
|
|
# Copyright (c) 2025 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: setserial
|
|
Version: 2.17
|
|
Release: 0
|
|
Summary: A utility for configuring serial ports
|
|
License: GPL-2.0-or-later
|
|
Group: Hardware/Other
|
|
URL: http://setserial.sourceforge.net
|
|
Source0: ftp://tsx-11.mit.edu/pub/linux/sources/sbin/setserial-%{version}.tar.bz2
|
|
Patch0: %{name}-%{version}-autoconf.diff
|
|
Patch1: %{name}-%{version}-error.diff
|
|
Patch2: %{name}-%{version}-prototypes.diff
|
|
Patch3: %{name}-%{version}-nohayes.diff
|
|
Patch4: %{name}-%{version}-binaryInUsr.patch
|
|
Patch5: %{name}-%{version}-C99.diff
|
|
BuildRequires: groff
|
|
Provides: util:/sbin/setserial
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Setserial is a basic system utility for displaying or setting serial
|
|
port information. Setserial can reveal and allow you to alter the I/O
|
|
port and IRQ that a particular serial device is using.
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch -P 0
|
|
%patch -P 1
|
|
%patch -P 2
|
|
%patch -P 3 -p1
|
|
%patch -P 4
|
|
%patch -P 5
|
|
|
|
chmod -x rc.serial
|
|
|
|
%build
|
|
CFLAGS="%{optflags} -Wall" \
|
|
%configure
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
mkdir -p %{buildroot}/%{_bindir}
|
|
mkdir -p %{buildroot}%{_sysconfdir}/init.d
|
|
mkdir -p %{buildroot}%{_mandir}/man8
|
|
mkdir -p %{buildroot}%{_sbindir}
|
|
%make_install STRIP=:
|
|
|
|
%files
|
|
%defattr(-,root,root)
|
|
%doc README setserial.lsm rc.serial
|
|
%doc %{_mandir}/man?/*
|
|
%{_bindir}/*
|
|
|
|
%changelog
|