Blame SPECS/virt-what.spec

ba34c6
Name:           virt-what
ba34c6
Version:        1.18
fcf72c
Release:        12%{?dist}
ba34c6
Summary:        Detect if we are running in a virtual machine
ba34c6
License:        GPLv2+
ba34c6
ba34c6
URL:            http://people.redhat.com/~rjones/virt-what/
ba34c6
Source0:        http://people.redhat.com/~rjones/virt-what/files/%{name}-%{version}.tar.gz
ba34c6
6f448a
# Some of the patches below apply to .gitignore, but that file was not
6f448a
# included in the tarball before v1.20.  This is the version from
6f448a
# v1.18 upstream allowing patching to go ahead.
6f448a
Source1:        gitignore
6f448a
ba34c6
# Patches from upstream since 1.18 was released.
fcf72c
# NB: These patches are also stored in this upstream branch:
fcf72c
# http://git.annexia.org/?p=virt-what.git;a=shortlog;h=refs/heads/rhel-8.2
ba34c6
Patch0001:      0001-Missing-have_cpuinfo-check.patch
ba34c6
Patch0002:      0002-Remove-bashisms.patch
ba34c6
Patch0003:      0003-As-xen-pv-guest-can-access-cpuid-from-Intel-CPUs-sta.patch
ba34c6
Patch0004:      0004-Recognize-ppc64le-little-endian-virtualization-RHBZ-.patch
ba34c6
Patch0005:      0005-Determine-architecture-via-uname-m.patch
ba34c6
Patch0006:      0006-Allow-using-sysctl-for-example-when-proc-isn-t-avail.patch
ba34c6
Patch0007:      0007-Replace-with-since-the-former-is-a-bash-ism.patch
ba34c6
# AWS support:
ba34c6
Patch0008:      0008-aws-Detect-AWS-from-dmidecode-information.patch
ba34c6
Patch0009:      0009-tests-Fix-tests-when-run-on-AWS.patch
ba34c6
Patch0010:      0010-aws-Add-regression-test-for-AWS-on-KVM-on-x86_64-arc.patch
ba34c6
Patch0011:      0011-aws-Add-regression-test-for-AWS-on-baremetal-on-x86_.patch
ba34c6
Patch0012:      0012-aws-Add-regression-test-for-AWS-on-Xen-on-x86_64-arc.patch
6f448a
Patch0013:      0013-aws-Add-regression-test-for-AWS-on-KVM-on-ARM-archit.patch
6f448a
# Refactor build and tests.
6f448a
Patch0014:      0014-build-Remove-files-on-make-clean.patch
6f448a
Patch0015:      0015-Arrange-tests-in-subdirectories.patch
6f448a
Patch0016:      0016-build-Add-.gitignore-to-tarball.patch
6f448a
Patch0017:      0017-maintainer-Add-rules-for-maintainers.patch
6f448a
# Support for Nutanix AHV (RHBZ#1756381).
6f448a
Patch0018:      0018-Fix-virt-what-cpuid-helper.patch
6f448a
Patch0019:      0019-Add-support-for-Nutanix-Acropolis-Hypervisor-AHV-RHB.patch
6f448a
Patch0020:      0020-helper-Fix-KVM-signature.patch
6f448a
# Support for virtualized MS Surfacebook 2.
6f448a
Patch0021:      0021-Fix-incorrect-detection-of-MS-Surfacebook-2-as-a-vir.patch
fcf72c
# Support for VMware on aarch64 (RHBZ#1959154).
fcf72c
Patch0022:      0022-Add-support-for-VMware-ESXi-on-ARM.patch
6f448a
6f448a
# Fix crash on non-KVM platforms through incorrect use of CPUID in
6f448a
# patch 0018 (https://bugzilla.redhat.com/show_bug.cgi?id=1756381#c15).
fcf72c
Patch0023:      0001-Simplify-and-fix-invocation-of-cpuid.patch
ba34c6
ba34c6
# Patches touch Makefile.am:
ba34c6
BuildRequires:  autoconf, automake
ba34c6
BuildRequires:  git
ba34c6
ba34c6
# This is provided by the build root, but we make it explicit
ba34c6
# anyway in case this was dropped from the build root in future.
ba34c6
BuildRequires:  /usr/bin/pod2man
ba34c6
ba34c6
# Required at build time in order to do 'make check' (for getopt).
ba34c6
BuildRequires:  util-linux
ba34c6
ba34c6
# virt-what script uses dmidecode and getopt (from util-linux).
ba34c6
# RPM cannot detect this so make the dependencies explicit here.
ba34c6
%ifarch aarch64 %{ix86} x86_64
ba34c6
Requires:       dmidecode
ba34c6
%endif
ba34c6
Requires:       util-linux
ba34c6
ba34c6
# Runs the 'which' program to find the helper.
ba34c6
Requires:       which
ba34c6
ba34c6
ba34c6
%description
ba34c6
virt-what is a shell script which can be used to detect if the program
ba34c6
is running in a virtual machine.
ba34c6
ba34c6
The program prints out a list of "facts" about the virtual machine,
ba34c6
derived from heuristics.  One fact is printed per line.
ba34c6
ba34c6
If nothing is printed and the script exits with code 0 (no error),
ba34c6
then it can mean either that the program is running on bare-metal or
ba34c6
the program is running inside a type of virtual machine which we don't
ba34c6
know about or can't detect.
ba34c6
ba34c6
Current types of virtualization detected:
ba34c6
ba34c6
 - aws          Amazon Web Services
ba34c6
 - bhyve        FreeBSD hypervisor
ba34c6
 - docker       Docker container
ba34c6
 - hyperv       Microsoft Hyper-V
ba34c6
 - ibm_power-kvm
ba34c6
                IBM POWER KVM
ba34c6
 - ibm_power-lpar_shared
ba34c6
 - ibm_power-lpar_dedicated
ba34c6
                IBM POWER LPAR (hardware partition)
ba34c6
 - ibm_systemz-*
ba34c6
                IBM SystemZ Direct / LPAR / z/VM / KVM
ba34c6
 - ldoms        Oracle VM Server for SPARC Logical Domains
ba34c6
 - linux_vserver
ba34c6
                Linux VServer container
ba34c6
 - lxc          Linux LXC container
ba34c6
 - kvm          Linux Kernel Virtual Machine (KVM)
ba34c6
 - lkvm         LKVM / kvmtool
ba34c6
 - openvz       OpenVZ or Virtuozzo
ba34c6
 - ovirt        oVirt node
ba34c6
 - parallels    Parallels Virtual Platform
ba34c6
 - powervm_lx86 IBM PowerVM Lx86 Linux/x86 emulator
ba34c6
 - qemu         QEMU (unaccelerated)
ba34c6
 - rhev         Red Hat Enterprise Virtualization
ba34c6
 - uml          User-Mode Linux (UML)
ba34c6
 - virtage      Hitachi Virtualization Manager (HVM) Virtage LPAR
ba34c6
 - virtualbox   VirtualBox
ba34c6
 - virtualpc    Microsoft VirtualPC
ba34c6
 - vmm          vmm OpenBSD hypervisor
ba34c6
 - vmware       VMware
ba34c6
 - xen          Xen
ba34c6
 - xen-dom0     Xen dom0 (privileged domain)
ba34c6
 - xen-domU     Xen domU (paravirtualized guest domain)
ba34c6
 - xen-hvm      Xen guest fully virtualized (HVM)
ba34c6
ba34c6
ba34c6
%prep
6f448a
# We can go back to autosetup once we rebase to >= v1.20 which
6f448a
# includes the .gitignore file in the tarball.
6f448a
#autosetup -S git
6f448a
# But until then ...
6f448a
%setup -q -n %{name}-%{version}
6f448a
cp %{SOURCE1} .gitignore
6f448a
git init
6f448a
git config user.email "noone@example.com"
6f448a
git config user.name "no one"
6f448a
git add .
6f448a
git commit -a -q -m "%{version} baseline"
6f448a
git am %{patches} 
ba34c6
ba34c6
ba34c6
%build
ba34c6
# Patches touch Makefile.am:
ba34c6
autoreconf -i
ba34c6
%configure
ba34c6
make
ba34c6
ba34c6
ba34c6
%install
ba34c6
make install DESTDIR=$RPM_BUILD_ROOT
ba34c6
ba34c6
ba34c6
%check
ba34c6
if ! make check ; then
ba34c6
    cat test-suite.log
ba34c6
    exit 1
ba34c6
fi
ba34c6
ba34c6
%files
ba34c6
%doc README COPYING
ba34c6
%{_sbindir}/virt-what
ba34c6
%{_libexecdir}/virt-what-cpuid-helper
ba34c6
%{_mandir}/man1/*.1*
ba34c6
ba34c6
ba34c6
%changelog
fcf72c
* Fri Jun 18 2021 Richard W.M. Jones <rjones@redhat.com> - 1.18-12
fcf72c
- Support for VMware on aarch64
fcf72c
  resolves: rhbz#1959154
fcf72c
fcf72c
* Wed Jun 02 2021 Richard W.M. Jones <rjones@redhat.com> - 1.18-11
fcf72c
- Add gating tests
fcf72c
  resolves: rhbz#1967094
fcf72c
fcf72c
* Wed Apr 28 2021 Richard W.M. Jones <rjones@redhat.com> - 1.18-10
fcf72c
- Rebuild for fixed binutils on aarch64
fcf72c
  resolves: rhbz#1954455
fcf72c
6f448a
* Tue Apr 13 2021 Richard W.M. Jones <rjones@redhat.com> - 1.18-9
6f448a
- Fix crash on non-KVM platforms through incorrect use of CPUID
6f448a
  related: rhbz#1756381
6f448a
6f448a
* Tue Dec 10 2019 Richard W.M. Jones <rjones@redhat.com> - 1.18-8
6f448a
- Add support for Nutanix AHV
6f448a
  resolves: rhbz#1756381
6f448a
- Add all patches since 1.18 was released, up to 1.20 and beyond.
6f448a
6f448a
* Thu Mar 21 2019 Richard W.M. Jones <rjones@redhat.com> - 1.18-7
6f448a
- Add gating tests resolves: rhbz#1682785
6f448a
ba34c6
* Wed Oct 31 2018 Richard W.M. Jones <rjones@redhat.com> - 1.18-6
ba34c6
- Add further patches to fix AWS support
ba34c6
  resolves: rhbz#1644497
ba34c6
ba34c6
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.18-5
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
ba34c6
ba34c6
* Tue Oct 17 2017 Richard W.M. Jones <rjones@redhat.com> - 1.18-4
ba34c6
- Include upstream patches since 1.18 was released.
ba34c6
- dmidecode is also available on aarch64.
ba34c6
ba34c6
* Mon Jul 31 2017 Richard W.M. Jones <rjones@redhat.com> - 1.18-1
ba34c6
- New upstream version 1.18.
ba34c6
- Update RPM description section with complete list of supported guests.
ba34c6
- If ‘make check’ fails, dump ‘test-suite.log’.
ba34c6
ba34c6
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-6
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
ba34c6
ba34c6
* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-5
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
ba34c6
ba34c6
* Tue Jun 14 2016 Richard W.M. Jones <rjones@redhat.com> - 1.15-4
ba34c6
- Require 'which' program.
ba34c6
ba34c6
* Fri Feb 05 2016 Fedora Release Engineering <releng@fedoraproject.org> - 1.15-3
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
ba34c6
ba34c6
* Fri Jun 19 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-2
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
ba34c6
ba34c6
* Tue Apr 21 2015 Richard W.M. Jones <rjones@redhat.com> - 1.15-1
ba34c6
- New upstream version 1.15.
ba34c6
- Remove patches, now upstream.
ba34c6
ba34c6
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13-5
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
ba34c6
ba34c6
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.13-4
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
ba34c6
ba34c6
* Mon Oct 28 2013 Richard W.M. Jones <rjones@redhat.com> - 1.13-3
ba34c6
- Suppress warning message on Amazon EC2:
ba34c6
  "grep: /proc/xen/capabilities: No such file or directory"
ba34c6
ba34c6
* Wed Sep 11 2013 Richard W.M. Jones <rjones@redhat.com> - 1.13-2
ba34c6
- Include two upstream patches for detecting Xen and Linux VServer better
ba34c6
  (RHBZ#973663).
ba34c6
- Modernize the spec file.
ba34c6
ba34c6
* Mon Jul 29 2013 Richard W.M. Jones <rjones@redhat.com> - 1.13-1
ba34c6
- New upstream version 1.13.
ba34c6
ba34c6
* Fri Feb 15 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12-3
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
ba34c6
ba34c6
* Sun Jul 22 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12-2
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
ba34c6
ba34c6
* Sat Mar 17 2012 Richard W.M. Jones <rjones@redhat.com> - 1.12-1
ba34c6
- New upstream version 1.12.
ba34c6
ba34c6
* Wed Feb 29 2012 Richard W.M. Jones <rjones@redhat.com> - 1.11-3
ba34c6
- Remove ExclusiveArch, but don't require dmidecode except on
ba34c6
  i?86 and x86-64 (RHBZ#791370).
ba34c6
ba34c6
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.11-2
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
ba34c6
ba34c6
* Fri May 27 2011 Richard W.M. Jones <rjones@redhat.com> - 1.11-1
ba34c6
- New upstream version 1.11.
ba34c6
ba34c6
* Wed May 25 2011 Richard W.M. Jones <rjones@redhat.com> - 1.10-1
ba34c6
- New upstream version 1.10.
ba34c6
ba34c6
* Tue Mar  8 2011 Richard W.M. Jones <rjones@redhat.com> - 1.9-1
ba34c6
- New upstream version 1.9.
ba34c6
ba34c6
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.8-2
ba34c6
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
ba34c6
ba34c6
* Mon Jan 31 2011 Richard W.M. Jones <rjones@redhat.com> - 1.8-1
ba34c6
- New upstream version 1.8.
ba34c6
ba34c6
* Thu Jan 20 2011 Richard W.M. Jones <rjones@redhat.com> - 1.7-1
ba34c6
- New upstream version 1.7.
ba34c6
ba34c6
* Wed Jan 19 2011 Richard W.M. Jones <rjones@redhat.com> - 1.6-2
ba34c6
- New upstream version 1.6.
ba34c6
- BuildRequires 'getopt' from util-linux-ng.
ba34c6
ba34c6
* Tue Jan 18 2011 Richard W.M. Jones <rjones@redhat.com> - 1.5-1
ba34c6
- New upstream version 1.5.
ba34c6
- Add 'make check' section.
ba34c6
ba34c6
* Tue Jan 18 2011 Richard W.M. Jones <rjones@redhat.com> - 1.4-1
ba34c6
- New upstream version 1.4.
ba34c6
- More hypervisor types detected.
ba34c6
ba34c6
* Thu Oct 28 2010 Richard W.M. Jones <rjones@redhat.com> - 1.3-4
ba34c6
- Move configure into build (not prep).
ba34c6
ba34c6
* Thu Oct 28 2010 Richard W.M. Jones <rjones@redhat.com> - 1.3-3
ba34c6
- Initial import into Fedora.
ba34c6
ba34c6
* Tue Oct 19 2010 Richard W.M. Jones <rjones@redhat.com> - 1.3-2
ba34c6
- Make changes suggested by reviewer (RHBZ#644259).
ba34c6
ba34c6
* Tue Oct 19 2010 Richard W.M. Jones <rjones@redhat.com> - 1.3-1
ba34c6
- Initial release.