%global debug_package %{nil} Name: qemu-sanity-check Version: 1.1.5 Release: 1%{?dist} Summary: Simple qemu and Linux kernel sanity checker License: GPLv2+ URL: http://people.redhat.com/~rjones/qemu-sanity-check Source0: http://people.redhat.com/~rjones/qemu-sanity-check/files/%{name}-%{version}.tar.gz # Non-upstream patch to disable test which fails on broken kernels # which don't respond to panic=1 option properly. Patch4: 0004-Disable-bad-userspace-test-Fedora-only.patch # Because the above patch touches configure.ac/Makefile.am: BuildRequires: autoconf, automake # For building manual pages. BuildRequires: /usr/bin/perldoc # For building the initramfs. BuildRequires: cpio BuildRequires: glibc-static # BuildRequire these in order to let 'make check' run. These are # not required unless you want to run the tests. Note don't run the # tests on ARM since qemu isn't likely to work. %ifarch %{ix86} x86_64 BuildRequires: qemu-system-x86 %endif BuildRequires: kernel %ifarch %{ix86} x86_64 Requires: qemu-system-x86 %endif %ifarch armv7hl Requires: qemu-system-arm %endif Requires: kernel # Require the -nodeps subpackage. Requires: %{name}-nodeps = %{version}-%{release} %description Qemu-sanity-check is a short shell script that test-boots a Linux kernel under qemu, making sure it boots up to userspace. The idea is to test the Linux kernel and/or qemu to make sure they are working. Most users should install the %{name} package. If you are testing qemu or the kernel in those packages and you want to avoid a circular dependency on qemu or kernel, you should use 'BuildRequires: %{name}-nodeps' instead. %package nodeps Summary: Simple qemu and Linux kernel sanity checker (no dependencies) License: GPLv2+ %description nodeps This is the no-depedencies version of %{name}. It is exactly the same as %{name} except that this package does not depend on qemu or kernel. %prep %setup -q %patch4 -p1 # Rerun autotools because the patches touch configure.ac and Makefile.am. autoreconf -i %build # NB: canonical_arch is a variable in the final script, so it # has to be escaped here. %configure --with-qemu-list="qemu-system-\$canonical_arch" make %{?_smp_mflags} %check %ifarch %{ix86} x86_64 make check || { cat test-suite.log exit 1 } %endif %install make DESTDIR=$RPM_BUILD_ROOT install %files %doc COPYING %files nodeps %doc COPYING README %{_bindir}/qemu-sanity-check %{_libdir}/qemu-sanity-check %{_mandir}/man1/qemu-sanity-check.1* %changelog * Wed Jul 02 2014 Richard W.M. Jones - 1.1.5-1 - New upstream version 1.1.5. - Adds --accel option to select qemu acceleration mode. - Remove upstream patch. * Sun Jun 08 2014 Fedora Release Engineering - 1.1.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild * Wed Aug 28 2013 Richard W.M. Jones - 1.1.4-2 - New upstream version 1.1.4. - Remove 3 x patches which are now upstream. - This version can handle debug kernels (RHBZ#1002189). * Thu Aug 22 2013 Richard W.M. Jones - 1.1.3-4 - +BR autoconf, automake. - Run autoreconf after patching. * Thu Aug 22 2013 Richard W.M. Jones - 1.1.3-2 - Fedora kernels don't respond properly to panic=1 parameter (appears to be related to having debug enabled). Add some upstream and one non-upstream patches to work around this. * Thu Aug 22 2013 Richard W.M. Jones - 1.1.3-1 - Initial release (RHBZ#999108).