python-virt-firmware/python-virt-firmware.spec

85 lines
2.6 KiB
RPMSpec
Raw Normal View History

2022-09-27 09:19:40 +00:00
%global pypi_version 1.3
2022-04-13 15:06:22 +00:00
Name: python-virt-firmware
Version: %{pypi_version}
2022-09-27 09:19:40 +00:00
Release: 1%{?dist}
2022-04-13 15:06:22 +00:00
Summary: Tools for virtual machine firmware volumes
License: GPLv2
URL: https://gitlab.com/kraxel/virt-firmware
Source0: https://gitlab.com/kraxel/virt-firmware/-/archive/v%{pypi_version}/virt-firmware-v%{pypi_version}.tar.gz
BuildArch: noarch
BuildRequires: python3-devel
BuildRequires: python3dist(setuptools)
%description
Tools for ovmf / armvirt firmware volumes This is a small collection of tools
for edk2 firmware images. They support decoding and printing the content of
firmware volumes. Variable stores (OVMF_VARS.fd) can be modified, for example
to enroll secure boot certificates.
%package -n python3-virt-firmware
Summary: %{summary}
%{?python_provide:%python_provide python3-virt-firmware}
Requires: python3dist(cryptography)
Requires: python3dist(setuptools)
%description -n python3-virt-firmware
Tools for ovmf / armvirt firmware volumes This is a small collection of tools
for edk2 firmware images. They support decoding and printing the content of
firmware volumes. Variable stores (OVMF_VARS.fd) can be modified, for example
to enroll secure boot certificates.
%prep
%autosetup -n virt-firmware-v%{pypi_version}
%build
%py3_build
2022-09-27 09:25:05 +00:00
make manpages
2022-04-13 15:06:22 +00:00
%install
%py3_install
2022-09-27 09:25:05 +00:00
install -m 755 -d %{buildroot}%{_mandir}/man1
install -m 644 *.1 %{buildroot}%{_mandir}/man1
2022-04-13 15:06:22 +00:00
%files -n python3-virt-firmware
%license LICENSE
%doc README.md
%{_bindir}/host-efi-vars
%{_bindir}/virt-fw-dump
%{_bindir}/virt-fw-vars
2022-06-22 10:19:43 +00:00
%{_bindir}/virt-fw-sigdb
2022-07-18 09:45:02 +00:00
%{_bindir}/pe-dumpinfo
%{_bindir}/pe-listsigs
%{_bindir}/pe-addsigs
2022-09-27 09:19:40 +00:00
%{_bindir}/migrate-vars
2022-09-27 09:25:05 +00:00
%{_mandir}/man1/*.1*
2022-04-13 15:06:22 +00:00
%{python3_sitelib}/virt/firmware
%{python3_sitelib}/virt_firmware-%{pypi_version}-py%{python3_version}.egg-info
%changelog
2022-09-27 09:19:40 +00:00
* Tue Sep 27 2022 Gerd Hoffmann <kraxel@redhat.com> - 1.3-1
- update to version 1.3
* Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
2022-07-18 09:35:46 +00:00
* Mon Jul 18 2022 Gerd Hoffmann <kraxel@redhat.com> - 1.2-1
- update to version 1.2
2022-07-01 09:10:48 +00:00
* Fri Jul 01 2022 Gerd Hoffmann <kraxel@redhat.com> - 1.1-1
- update to version 1.1
2022-06-22 10:19:43 +00:00
* Wed Jun 22 2022 Gerd Hoffmann <kraxel@redhat.com> - 1.0-1
- update to version 1.0
2022-06-13 13:32:57 +00:00
* Mon Jun 13 2022 Python Maint <python-maint@redhat.com> - 0.98-2
- Rebuilt for Python 3.11
2022-05-24 12:01:10 +00:00
* Tue May 24 2022 Gerd Hoffmann <kraxel@redhat.com> - 0.98-1
- update to version 0.98
2022-04-13 15:06:22 +00:00
* Mon Apr 11 2022 Gerd Hoffmann <kraxel@redhat.com> - 0.95-1
- Initial package.