2011-12-12 05:38:31 +01:00
|
|
|
#
|
2015-04-06 12:15:52 +02:00
|
|
|
# spec file for package fwts
|
2011-12-12 05:38:31 +01:00
|
|
|
#
|
2015-04-06 12:15:52 +02:00
|
|
|
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany.
|
2011-12-12 05:38:31 +01:00
|
|
|
#
|
2015-04-06 12:15:52 +02:00
|
|
|
# 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.
|
|
|
|
|
2011-12-12 05:38:31 +01:00
|
|
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
Name: fwts
|
2015-06-16 11:08:53 +02:00
|
|
|
Version: 15.06.00
|
2015-04-06 12:15:52 +02:00
|
|
|
Release: 0
|
2011-12-12 06:16:35 +01:00
|
|
|
Summary: Firmware Test Suite
|
2015-04-06 12:15:52 +02:00
|
|
|
License: GPL-2.0+
|
2011-12-12 05:38:31 +01:00
|
|
|
Group: Development/Tools/Other
|
2015-04-06 12:15:52 +02:00
|
|
|
Url: https://wiki.ubuntu.com/Kernel/Reference/fwts
|
2015-06-16 11:08:53 +02:00
|
|
|
# upstream seems to randomly change upper and lover case "v" in tarball name
|
|
|
|
Source0: http://fwts.ubuntu.com/release/%{name}-V%{version}.tar.gz
|
2015-05-09 19:24:31 +02:00
|
|
|
Patch0: json-c-includes.patch
|
2015-04-06 12:15:52 +02:00
|
|
|
BuildRequires: autoconf
|
2015-05-09 19:24:31 +02:00
|
|
|
BuildRequires: automake
|
2011-12-12 06:16:35 +01:00
|
|
|
BuildRequires: bison
|
|
|
|
BuildRequires: flex
|
|
|
|
BuildRequires: libtool
|
2015-05-09 19:24:31 +02:00
|
|
|
BuildRequires: pkg-config
|
2015-04-06 12:15:52 +02:00
|
|
|
BuildRequires: pkgconfig(gio-2.0)
|
|
|
|
BuildRequires: pkgconfig(glib-2.0)
|
2015-05-09 19:24:31 +02:00
|
|
|
BuildRequires: pkgconfig(json)
|
|
|
|
BuildRequires: pkgconfig(libpci)
|
|
|
|
BuildRequires: pkgconfig(libpcre)
|
2011-12-12 06:16:35 +01:00
|
|
|
Requires: acpica
|
|
|
|
Requires: dmidecode
|
|
|
|
Requires: pciutils
|
2011-12-12 05:38:31 +01:00
|
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
|
|
|
|
%description
|
|
|
|
The FirmWare Test Suite (fwts) is a tool to do automatic testing of a PC's
|
|
|
|
firmware. There can be a lot of subtle or vexing Linux Kernel/firmware issues
|
|
|
|
caused when firmware is buggy, so it's useful to have a tool that can
|
|
|
|
automatically check for common BIOS and ACPI errors. Where possible the tool
|
|
|
|
will give some form of advice on how to fix issues or workaround firmware
|
|
|
|
issues.
|
|
|
|
|
|
|
|
%prep
|
2015-04-06 12:15:52 +02:00
|
|
|
%setup -q -c %{name}-%{version}
|
|
|
|
%patch0 -p1
|
|
|
|
|
2011-12-12 05:38:31 +01:00
|
|
|
%build
|
2015-04-06 12:15:52 +02:00
|
|
|
autoreconf -fi
|
|
|
|
%configure \
|
|
|
|
--disable-static
|
2011-12-12 06:16:35 +01:00
|
|
|
make %{?_smp_mflags}
|
2011-12-12 05:38:31 +01:00
|
|
|
|
|
|
|
%install
|
2011-12-12 06:16:35 +01:00
|
|
|
%make_install
|
2015-04-06 12:15:52 +02:00
|
|
|
find %{buildroot} -type f -name "*.la" -delete -print
|
2011-12-12 06:16:35 +01:00
|
|
|
install -D -m 0644 data/klog.json %{buildroot}%{_datadir}/%{name}/klog.json
|
|
|
|
install -D -m 0644 data/syntaxcheck.json %{buildroot}%{_datadir}/%{name}/syntaxcheck.json
|
2015-05-09 19:24:31 +02:00
|
|
|
# There are no headers, so drop remaining development files
|
|
|
|
rm -f "%buildroot/%_libdir/%name"/*.so
|
2011-12-12 05:38:31 +01:00
|
|
|
|
|
|
|
%files
|
|
|
|
%defattr(-,root,root)
|
2011-12-12 06:16:35 +01:00
|
|
|
%dir %{_datadir}/%{name}
|
|
|
|
%{_datadir}/%{name}/klog.json
|
|
|
|
%{_datadir}/%{name}/syntaxcheck.json
|
2015-04-06 12:15:52 +02:00
|
|
|
%{_mandir}/man1/*.1.gz
|
2011-12-12 06:16:35 +01:00
|
|
|
%{_bindir}/fwts
|
2015-04-06 12:15:52 +02:00
|
|
|
%{_bindir}/kernelscan
|
|
|
|
%{_libdir}/%{name}
|
2011-12-12 05:38:31 +01:00
|
|
|
|
|
|
|
%changelog
|