pull in mingw sub-packages
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
535bbcdd91
commit
83def04a25
292
libvirt.spec
292
libvirt.spec
@ -197,6 +197,10 @@
|
|||||||
%define qemu_moddir %{_libdir}/qemu
|
%define qemu_moddir %{_libdir}/qemu
|
||||||
%define qemu_datadir %{_datadir}/qemu
|
%define qemu_datadir %{_datadir}/qemu
|
||||||
|
|
||||||
|
%define with_mingw 0
|
||||||
|
%if 0%{?fedora}
|
||||||
|
%define with_mingw 0%{!?_without_mingw:1}
|
||||||
|
%endif
|
||||||
|
|
||||||
# RHEL releases provide stable tool chains and so it is safe to turn
|
# RHEL releases provide stable tool chains and so it is safe to turn
|
||||||
# compiler warning into errors without being worried about frequent
|
# compiler warning into errors without being worried about frequent
|
||||||
@ -231,7 +235,7 @@
|
|||||||
Summary: Library providing a simple virtualization API
|
Summary: Library providing a simple virtualization API
|
||||||
Name: libvirt
|
Name: libvirt
|
||||||
Version: 8.6.0
|
Version: 8.6.0
|
||||||
Release: 2%{?dist}
|
Release: 3%{?dist}
|
||||||
License: LGPLv2+
|
License: LGPLv2+
|
||||||
URL: https://libvirt.org/
|
URL: https://libvirt.org/
|
||||||
|
|
||||||
@ -397,6 +401,36 @@ BuildRequires: libtirpc-devel
|
|||||||
BuildRequires: firewalld-filesystem
|
BuildRequires: firewalld-filesystem
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%if %{with_mingw}
|
||||||
|
BuildRequires: mingw32-filesystem
|
||||||
|
BuildRequires: mingw32-gcc
|
||||||
|
BuildRequires: mingw32-binutils
|
||||||
|
BuildRequires: mingw32-glib2 >= 2.48
|
||||||
|
BuildRequires: mingw32-libgpg-error
|
||||||
|
BuildRequires: mingw32-libgcrypt
|
||||||
|
BuildRequires: mingw32-gnutls
|
||||||
|
BuildRequires: mingw32-gettext
|
||||||
|
BuildRequires: mingw32-libxml2
|
||||||
|
BuildRequires: mingw32-portablexdr
|
||||||
|
BuildRequires: mingw32-dlfcn
|
||||||
|
BuildRequires: mingw32-libssh2
|
||||||
|
BuildRequires: mingw32-curl
|
||||||
|
|
||||||
|
BuildRequires: mingw64-filesystem
|
||||||
|
BuildRequires: mingw64-gcc
|
||||||
|
BuildRequires: mingw64-binutils
|
||||||
|
BuildRequires: mingw64-glib2 >= 2.48
|
||||||
|
BuildRequires: mingw64-libgpg-error
|
||||||
|
BuildRequires: mingw64-libgcrypt
|
||||||
|
BuildRequires: mingw64-gnutls
|
||||||
|
BuildRequires: mingw64-gettext
|
||||||
|
BuildRequires: mingw64-libxml2
|
||||||
|
BuildRequires: mingw64-portablexdr
|
||||||
|
BuildRequires: mingw64-dlfcn
|
||||||
|
BuildRequires: mingw64-libssh2
|
||||||
|
BuildRequires: mingw64-curl
|
||||||
|
%endif
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Libvirt is a C toolkit to interact with the virtualization capabilities
|
Libvirt is a C toolkit to interact with the virtualization capabilities
|
||||||
of recent versions of Linux (and other OSes). The main package includes
|
of recent versions of Linux (and other OSes). The main package includes
|
||||||
@ -952,6 +986,25 @@ Requires: libvirt-daemon-driver-network = %{version}-%{release}
|
|||||||
%description nss
|
%description nss
|
||||||
Libvirt plugin for NSS for translating domain names into IP addresses.
|
Libvirt plugin for NSS for translating domain names into IP addresses.
|
||||||
|
|
||||||
|
%if %{with_mingw}
|
||||||
|
%package -n mingw32-libvirt
|
||||||
|
Summary: %{summary}
|
||||||
|
Obsoletes: mingw32-libvirt-static < 7.0.0
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n mingw32-libvirt
|
||||||
|
MinGW Windows libvirt virtualization library.
|
||||||
|
|
||||||
|
%package -n mingw64-libvirt
|
||||||
|
Summary: %{summary}
|
||||||
|
Obsoletes: mingw64-libvirt-static < 7.0.0
|
||||||
|
BuildArch: noarch
|
||||||
|
|
||||||
|
%description -n mingw64-libvirt
|
||||||
|
MinGW Windows libvirt virtualization library.
|
||||||
|
|
||||||
|
%{?mingw_debug_package}
|
||||||
|
%endif
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
|
||||||
@ -1195,6 +1248,84 @@ export SOURCE_DATE_EPOCH=$(stat --printf='%Y' %{_specdir}/%{name}.spec)
|
|||||||
|
|
||||||
%meson_build
|
%meson_build
|
||||||
|
|
||||||
|
%if %{with_mingw}
|
||||||
|
%mingw_meson \
|
||||||
|
--auto-features=enabled \
|
||||||
|
-Ddriver_remote=enabled \
|
||||||
|
-Ddriver_test=enabled \
|
||||||
|
-Ddriver_esx=enabled \
|
||||||
|
-Dcurl=enabled \
|
||||||
|
-Ddocs=enabled \
|
||||||
|
-Dapparmor=disabled \
|
||||||
|
-Dapparmor_profiles=disabled \
|
||||||
|
-Dattr=disabled \
|
||||||
|
-Daudit=disabled \
|
||||||
|
-Dbash_completion=disabled \
|
||||||
|
-Dblkid=disabled \
|
||||||
|
-Dcapng=disabled \
|
||||||
|
-Ddriver_bhyve=disabled \
|
||||||
|
-Ddriver_hyperv=disabled \
|
||||||
|
-Ddriver_interface=disabled \
|
||||||
|
-Ddriver_libvirtd=disabled \
|
||||||
|
-Ddriver_libxl=disabled \
|
||||||
|
-Ddriver_lxc=disabled \
|
||||||
|
-Ddriver_network=disabled \
|
||||||
|
-Ddriver_openvz=disabled \
|
||||||
|
-Ddriver_qemu=disabled \
|
||||||
|
-Ddriver_secrets=disabled \
|
||||||
|
-Ddriver_vbox=disabled \
|
||||||
|
-Ddriver_vmware=disabled \
|
||||||
|
-Ddriver_vz=disabled \
|
||||||
|
-Ddtrace=disabled \
|
||||||
|
-Dexpensive_tests=enabled \
|
||||||
|
-Dfirewalld=disabled \
|
||||||
|
-Dfirewalld_zone=disabled \
|
||||||
|
-Dfuse=disabled \
|
||||||
|
-Dglusterfs=disabled \
|
||||||
|
-Dhost_validate=disabled \
|
||||||
|
-Dlibiscsi=disabled \
|
||||||
|
-Dlibnl=disabled \
|
||||||
|
-Dlibpcap=disabled \
|
||||||
|
-Dlibssh2=disabled \
|
||||||
|
-Dlibssh=disabled \
|
||||||
|
-Dlogin_shell=disabled \
|
||||||
|
-Dnetcf=disabled \
|
||||||
|
-Dnls=disabled \
|
||||||
|
-Dnss=disabled \
|
||||||
|
-Dnumactl=disabled \
|
||||||
|
-Dnumad=disabled \
|
||||||
|
-Dopenwsman=disabled \
|
||||||
|
-Dpciaccess=disabled \
|
||||||
|
-Dpm_utils=disabled \
|
||||||
|
-Dpolkit=disabled \
|
||||||
|
-Dreadline=disabled \
|
||||||
|
-Drpath=disabled \
|
||||||
|
-Dsanlock=disabled \
|
||||||
|
-Dsasl=disabled \
|
||||||
|
-Dsecdriver_apparmor=disabled \
|
||||||
|
-Dsecdriver_selinux=disabled \
|
||||||
|
-Dselinux=disabled \
|
||||||
|
-Dstorage_dir=disabled \
|
||||||
|
-Dstorage_disk=disabled \
|
||||||
|
-Dstorage_fs=disabled \
|
||||||
|
-Dstorage_gluster=disabled \
|
||||||
|
-Dstorage_iscsi_direct=disabled \
|
||||||
|
-Dstorage_iscsi=disabled \
|
||||||
|
-Dstorage_lvm=disabled \
|
||||||
|
-Dstorage_mpath=disabled \
|
||||||
|
-Dstorage_rbd=disabled \
|
||||||
|
-Dstorage_scsi=disabled \
|
||||||
|
-Dstorage_sheepdog=disabled \
|
||||||
|
-Dstorage_vstorage=disabled \
|
||||||
|
-Dstorage_zfs=disabled \
|
||||||
|
-Dsysctl_config=disabled \
|
||||||
|
-Dtests=disabled \
|
||||||
|
-Dudev=disabled \
|
||||||
|
-Dwireshark_dissector=disabled \
|
||||||
|
-Dyajl=disabled
|
||||||
|
%mingw_ninja
|
||||||
|
%endif
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -fr %{buildroot}
|
rm -fr %{buildroot}
|
||||||
|
|
||||||
@ -1263,6 +1394,26 @@ mv $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_qemu_probes.stp \
|
|||||||
%endif
|
%endif
|
||||||
%endif
|
%endif
|
||||||
|
|
||||||
|
%if %{with_mingw}
|
||||||
|
%mingw_ninja_install
|
||||||
|
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw32_sysconfdir}/libvirt/nwfilter
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw64_sysconfdir}/libvirt/nwfilter
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw32_datadir}/doc/*
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw64_datadir}/doc/*
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw32_datadir}/gtk-doc/*
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw64_datadir}/gtk-doc/*
|
||||||
|
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw32_libexecdir}/libvirt_iohelper.exe
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw64_libexecdir}/libvirt_iohelper.exe
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw32_libexecdir}/libvirt-guests.sh
|
||||||
|
rm -rf $RPM_BUILD_ROOT%{mingw64_libexecdir}/libvirt-guests.sh
|
||||||
|
|
||||||
|
%mingw_debug_install_post
|
||||||
|
|
||||||
|
%endif
|
||||||
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
# Building on slow archs, like emulated s390x in Fedora copr, requires
|
# Building on slow archs, like emulated s390x in Fedora copr, requires
|
||||||
# raising the test timeout
|
# raising the test timeout
|
||||||
@ -2129,8 +2280,147 @@ exit 0
|
|||||||
%{_datadir}/libvirt/api/libvirt-qemu-api.xml
|
%{_datadir}/libvirt/api/libvirt-qemu-api.xml
|
||||||
%{_datadir}/libvirt/api/libvirt-lxc-api.xml
|
%{_datadir}/libvirt/api/libvirt-lxc-api.xml
|
||||||
|
|
||||||
|
%if %{with_mingw}
|
||||||
|
%files -n mingw32-libvirt
|
||||||
|
%dir %{mingw32_sysconfdir}/libvirt/
|
||||||
|
%config(noreplace) %{mingw32_sysconfdir}/libvirt/libvirt.conf
|
||||||
|
%config(noreplace) %{mingw32_sysconfdir}/libvirt/libvirt-admin.conf
|
||||||
|
|
||||||
|
%{mingw32_bindir}/libvirt-0.dll
|
||||||
|
%{mingw32_bindir}/virsh.exe
|
||||||
|
%{mingw32_bindir}/virt-admin.exe
|
||||||
|
%{mingw32_bindir}/virt-xml-validate
|
||||||
|
%{mingw32_bindir}/virt-pki-query-dn.exe
|
||||||
|
%{mingw32_bindir}/virt-pki-validate
|
||||||
|
%{mingw32_bindir}/libvirt-lxc-0.dll
|
||||||
|
%{mingw32_bindir}/libvirt-qemu-0.dll
|
||||||
|
%{mingw32_bindir}/libvirt-admin-0.dll
|
||||||
|
|
||||||
|
%{mingw32_libdir}/libvirt.dll.a
|
||||||
|
%{mingw32_libdir}/pkgconfig/libvirt.pc
|
||||||
|
%{mingw32_libdir}/pkgconfig/libvirt-qemu.pc
|
||||||
|
%{mingw32_libdir}/pkgconfig/libvirt-lxc.pc
|
||||||
|
%{mingw32_libdir}/pkgconfig/libvirt-admin.pc
|
||||||
|
%{mingw32_libdir}/libvirt-lxc.dll.a
|
||||||
|
%{mingw32_libdir}/libvirt-qemu.dll.a
|
||||||
|
%{mingw32_libdir}/libvirt-admin.dll.a
|
||||||
|
|
||||||
|
%dir %{mingw32_datadir}/libvirt/
|
||||||
|
%dir %{mingw32_datadir}/libvirt/schemas/
|
||||||
|
%{mingw32_datadir}/libvirt/schemas/*.rng
|
||||||
|
|
||||||
|
%dir %{mingw32_datadir}/libvirt/api/
|
||||||
|
%{mingw32_datadir}/libvirt/api/libvirt-api.xml
|
||||||
|
%{mingw32_datadir}/libvirt/api/libvirt-lxc-api.xml
|
||||||
|
%{mingw32_datadir}/libvirt/api/libvirt-qemu-api.xml
|
||||||
|
%{mingw32_datadir}/libvirt/api/libvirt-admin-api.xml
|
||||||
|
|
||||||
|
%{mingw32_datadir}/libvirt/cpu_map/*.xml
|
||||||
|
|
||||||
|
%{mingw32_datadir}/libvirt/test-screenshot.png
|
||||||
|
|
||||||
|
%{mingw32_datadir}/locale/*/LC_MESSAGES/libvirt.mo
|
||||||
|
|
||||||
|
%dir %{mingw32_includedir}/libvirt
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-common.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-domain.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-domain-checkpoint.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-domain-snapshot.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-event.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-host.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-interface.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-network.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-nodedev.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-nwfilter.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-secret.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-storage.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-stream.h
|
||||||
|
%{mingw32_includedir}/libvirt/virterror.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-lxc.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-qemu.h
|
||||||
|
%{mingw32_includedir}/libvirt/libvirt-admin.h
|
||||||
|
|
||||||
|
%{mingw32_mandir}/man1/virsh.1*
|
||||||
|
%{mingw32_mandir}/man1/virt-admin.1*
|
||||||
|
%{mingw32_mandir}/man1/virt-xml-validate.1*
|
||||||
|
%{mingw32_mandir}/man1/virt-pki-query-dn.1*
|
||||||
|
%{mingw32_mandir}/man1/virt-pki-validate.1*
|
||||||
|
%{mingw32_mandir}/man7/virkey*.7*
|
||||||
|
|
||||||
|
|
||||||
|
%files -n mingw64-libvirt
|
||||||
|
%dir %{mingw64_sysconfdir}/libvirt/
|
||||||
|
%config(noreplace) %{mingw64_sysconfdir}/libvirt/libvirt.conf
|
||||||
|
%config(noreplace) %{mingw64_sysconfdir}/libvirt/libvirt-admin.conf
|
||||||
|
|
||||||
|
%{mingw64_bindir}/libvirt-0.dll
|
||||||
|
%{mingw64_bindir}/virsh.exe
|
||||||
|
%{mingw64_bindir}/virt-admin.exe
|
||||||
|
%{mingw64_bindir}/virt-xml-validate
|
||||||
|
%{mingw64_bindir}/virt-pki-query-dn.exe
|
||||||
|
%{mingw64_bindir}/virt-pki-validate
|
||||||
|
%{mingw64_bindir}/libvirt-lxc-0.dll
|
||||||
|
%{mingw64_bindir}/libvirt-qemu-0.dll
|
||||||
|
%{mingw64_bindir}/libvirt-admin-0.dll
|
||||||
|
|
||||||
|
%{mingw64_libdir}/libvirt.dll.a
|
||||||
|
%{mingw64_libdir}/pkgconfig/libvirt.pc
|
||||||
|
%{mingw64_libdir}/pkgconfig/libvirt-qemu.pc
|
||||||
|
%{mingw64_libdir}/pkgconfig/libvirt-lxc.pc
|
||||||
|
%{mingw64_libdir}/pkgconfig/libvirt-admin.pc
|
||||||
|
%{mingw64_libdir}/libvirt-lxc.dll.a
|
||||||
|
%{mingw64_libdir}/libvirt-qemu.dll.a
|
||||||
|
%{mingw64_libdir}/libvirt-admin.dll.a
|
||||||
|
|
||||||
|
%dir %{mingw64_datadir}/libvirt/
|
||||||
|
%dir %{mingw64_datadir}/libvirt/schemas/
|
||||||
|
%{mingw64_datadir}/libvirt/schemas/*.rng
|
||||||
|
|
||||||
|
%dir %{mingw64_datadir}/libvirt/api/
|
||||||
|
%{mingw64_datadir}/libvirt/api/libvirt-api.xml
|
||||||
|
%{mingw64_datadir}/libvirt/api/libvirt-lxc-api.xml
|
||||||
|
%{mingw64_datadir}/libvirt/api/libvirt-qemu-api.xml
|
||||||
|
%{mingw64_datadir}/libvirt/api/libvirt-admin-api.xml
|
||||||
|
|
||||||
|
%{mingw64_datadir}/libvirt/cpu_map/*.xml
|
||||||
|
|
||||||
|
%{mingw64_datadir}/libvirt/test-screenshot.png
|
||||||
|
|
||||||
|
%{mingw64_datadir}/locale/*/LC_MESSAGES/libvirt.mo
|
||||||
|
|
||||||
|
%dir %{mingw64_includedir}/libvirt
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-common.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-domain.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-domain-checkpoint.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-domain-snapshot.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-event.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-host.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-interface.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-network.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-nodedev.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-nwfilter.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-secret.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-storage.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-stream.h
|
||||||
|
%{mingw64_includedir}/libvirt/virterror.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-lxc.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-qemu.h
|
||||||
|
%{mingw64_includedir}/libvirt/libvirt-admin.h
|
||||||
|
|
||||||
|
%{mingw64_mandir}/man1/virsh.1*
|
||||||
|
%{mingw64_mandir}/man1/virt-admin.1*
|
||||||
|
%{mingw64_mandir}/man1/virt-xml-validate.1*
|
||||||
|
%{mingw64_mandir}/man1/virt-pki-query-dn.1*
|
||||||
|
%{mingw64_mandir}/man1/virt-pki-validate.1*
|
||||||
|
%{mingw64_mandir}/man7/virkey*.7*
|
||||||
|
%endif
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Aug 9 2022 Daniel P. Berrangé <berrange@redhat.com> - 8.1.0-3
|
||||||
|
- Pull in mingw sub-packages
|
||||||
|
|
||||||
* Thu Aug 04 2022 Cole Robinson <crobinso@redhat.com> - 8.6.0-2
|
* Thu Aug 04 2022 Cole Robinson <crobinso@redhat.com> - 8.6.0-2
|
||||||
- Use upstream 'glibc fix' commits
|
- Use upstream 'glibc fix' commits
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user