Skip to content

Commit 18c729d

Browse files
committed
meson: update spec file to use meson
Signed-off-by: Pavel Hrdina <[email protected]> Reviewed-by: Peter Krempa <[email protected]> Reviewed-by: Neal Gompa <[email protected]>
1 parent 0c2aa5b commit 18c729d

File tree

2 files changed

+91
-115
lines changed

2 files changed

+91
-115
lines changed

libvirt.spec.in

+91-114
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212
%define supported_platform 0
1313
%endif
1414

15-
# Default to skipping autoreconf. Distros can change just this one line
16-
# (or provide a command-line override) if they backport any patches that
17-
# touch configure.ac or Makefile.am.
18-
%{!?enable_autotools:%global enable_autotools 0}
19-
2015
# The hypervisor drivers that run in libvirtd
2116
%define with_qemu 0%{!?_without_qemu:1}
2217
%define with_lxc 0%{!?_without_lxc:1}
@@ -203,9 +198,9 @@
203198
# compiler warning into errors without being worried about frequent
204199
# changes in reported warnings
205200
%if 0%{?rhel}
206-
%define enable_werror --enable-werror
201+
%define enable_werror -Dwerror=true
207202
%else
208-
%define enable_werror --disable-werror
203+
%define enable_werror -Dwerror=false
209204
%endif
210205

211206
%if 0%{?rhel} == 7
@@ -257,18 +252,15 @@ Requires: libvirt-libs = %{version}-%{release}
257252

258253
# All build-time requirements. Run-time requirements are
259254
# listed against each sub-RPM
260-
%if 0%{?enable_autotools}
261-
BuildRequires: autoconf
262-
BuildRequires: automake
263255
BuildRequires: gettext-devel
264-
BuildRequires: libtool
265-
%endif
266256
%if 0%{?rhel} == 7
267257
BuildRequires: python36-docutils
268258
%else
269259
BuildRequires: python3-docutils
270260
%endif
271261
BuildRequires: gcc
262+
BuildRequires: meson >= 0.54.0
263+
BuildRequires: ninja-build
272264
BuildRequires: make
273265
BuildRequires: git
274266
%if 0%{?fedora} || 0%{?rhel} > 7
@@ -1006,219 +998,209 @@ exit 1
1006998
%endif
1007999

10081000
%if %{with_qemu}
1009-
%define arg_qemu --with-qemu
1001+
%define arg_qemu -Ddriver_qemu=enabled
10101002
%else
1011-
%define arg_qemu --without-qemu
1003+
%define arg_qemu -Ddriver_qemu=disabled
10121004
%endif
10131005

10141006
%if %{with_openvz}
1015-
%define arg_openvz --with-openvz
1007+
%define arg_openvz -Ddriver_openvz=enabled
10161008
%else
1017-
%define arg_openvz --without-openvz
1009+
%define arg_openvz -Ddriver_openvz=disabled
10181010
%endif
10191011

10201012
%if %{with_lxc}
1021-
%define arg_lxc --with-lxc
1022-
%define arg_login_shell --with-login-shell
1013+
%define arg_lxc -Ddriver_lxc=enabled
1014+
%define arg_login_shell -Dlogin_shell=enabled
10231015
%else
1024-
%define arg_lxc --without-lxc
1025-
%define arg_login_shell --without-login-shell
1016+
%define arg_lxc -Ddriver_lxc=disabled
1017+
%define arg_login_shell -Dlogin_shell=disabled
10261018
%endif
10271019

10281020
%if %{with_vbox}
1029-
%define arg_vbox --with-vbox
1021+
%define arg_vbox -Ddriver_vbox=enabled
10301022
%else
1031-
%define arg_vbox --without-vbox
1023+
%define arg_vbox -Ddriver_vbox=disabled
10321024
%endif
10331025

10341026
%if %{with_libxl}
1035-
%define arg_libxl --with-libxl
1027+
%define arg_libxl -Ddriver_libxl=enabled
10361028
%else
1037-
%define arg_libxl --without-libxl
1029+
%define arg_libxl -Ddriver_libxl=disabled
10381030
%endif
10391031

10401032
%if %{with_esx}
1041-
%define arg_esx --with-esx
1033+
%define arg_esx -Ddriver_esx=enabled
10421034
%else
1043-
%define arg_esx --without-esx
1035+
%define arg_esx -Ddriver_esx=disabled
10441036
%endif
10451037

10461038
%if %{with_hyperv}
1047-
%define arg_hyperv --with-hyperv
1039+
%define arg_hyperv -Ddriver_hyperv=enabled
10481040
%else
1049-
%define arg_hyperv --without-hyperv
1041+
%define arg_hyperv -Ddriver_hyperv=disabled
10501042
%endif
10511043

10521044
%if %{with_vmware}
1053-
%define arg_vmware --with-vmware
1045+
%define arg_vmware -Ddriver_vmware=enabled
10541046
%else
1055-
%define arg_vmware --without-vmware
1047+
%define arg_vmware -Ddriver_vmware=disabled
10561048
%endif
10571049

10581050
%if %{with_storage_rbd}
1059-
%define arg_storage_rbd --with-storage-rbd
1051+
%define arg_storage_rbd -Dstorage_rbd=enabled
10601052
%else
1061-
%define arg_storage_rbd --without-storage-rbd
1053+
%define arg_storage_rbd -Dstorage_rbd=disabled
10621054
%endif
10631055

10641056
%if %{with_storage_sheepdog}
1065-
%define arg_storage_sheepdog --with-storage-sheepdog
1057+
%define arg_storage_sheepdog -Dstorage_sheepdog=enabled
10661058
%else
1067-
%define arg_storage_sheepdog --without-storage-sheepdog
1059+
%define arg_storage_sheepdog -Dstorage_sheepdog=disabled
10681060
%endif
10691061

10701062
%if %{with_storage_gluster}
1071-
%define arg_storage_gluster --with-storage-gluster
1063+
%define arg_storage_gluster -Dstorage_gluster=enabled
10721064
%else
1073-
%define arg_storage_gluster --without-storage-gluster
1065+
%define arg_storage_gluster -Dstorage_gluster=disabled
10741066
%endif
10751067

10761068
%if %{with_storage_zfs}
1077-
%define arg_storage_zfs --with-storage-zfs
1069+
%define arg_storage_zfs -Dstorage_zfs=enabled
10781070
%else
1079-
%define arg_storage_zfs --without-storage-zfs
1071+
%define arg_storage_zfs -Dstorage_zfs=disabled
10801072
%endif
10811073

10821074
%if %{with_numactl}
1083-
%define arg_numactl --with-numactl
1075+
%define arg_numactl -Dnumactl=enabled
10841076
%else
1085-
%define arg_numactl --without-numactl
1077+
%define arg_numactl -Dnumactl=disabled
10861078
%endif
10871079

10881080
%if %{with_numad}
1089-
%define arg_numad --with-numad
1081+
%define arg_numad -Dnumad=enabled
10901082
%else
1091-
%define arg_numad --without-numad
1083+
%define arg_numad -Dnumad=disabled
10921084
%endif
10931085

10941086
%if %{with_fuse}
1095-
%define arg_fuse --with-fuse
1087+
%define arg_fuse -Dfuse=enabled
10961088
%else
1097-
%define arg_fuse --without-fuse
1089+
%define arg_fuse -Dfuse=disabled
10981090
%endif
10991091

11001092
%if %{with_sanlock}
1101-
%define arg_sanlock --with-sanlock
1093+
%define arg_sanlock -Dsanlock=enabled
11021094
%else
1103-
%define arg_sanlock --without-sanlock
1095+
%define arg_sanlock -Dsanlock=disabled
11041096
%endif
11051097

11061098
%if %{with_firewalld}
1107-
%define arg_firewalld --with-firewalld
1099+
%define arg_firewalld -Dfirewalld=enabled
11081100
%else
1109-
%define arg_firewalld --without-firewalld
1101+
%define arg_firewalld -Dfirewalld=disabled
11101102
%endif
11111103

11121104
%if %{with_firewalld_zone}
1113-
%define arg_firewalld_zone --with-firewalld-zone
1105+
%define arg_firewalld_zone -Dfirewalld_zone=enabled
11141106
%else
1115-
%define arg_firewalld_zone --without-firewalld-zone
1107+
%define arg_firewalld_zone -Dfirewalld_zone=disabled
11161108
%endif
11171109

11181110
%if %{with_wireshark}
1119-
%define arg_wireshark --with-wireshark-dissector
1111+
%define arg_wireshark -Dwireshark_dissector=enabled
11201112
%else
1121-
%define arg_wireshark --without-wireshark-dissector
1113+
%define arg_wireshark -Dwireshark_dissector=disabled
11221114
%endif
11231115

11241116
%if %{with_storage_iscsi_direct}
1125-
%define arg_storage_iscsi_direct --with-storage-iscsi-direct
1117+
%define arg_storage_iscsi_direct -Dstorage_iscsi_direct=enabled
11261118
%else
1127-
%define arg_storage_iscsi_direct --without-storage-iscsi-direct
1119+
%define arg_storage_iscsi_direct -Dstorage_iscsi_direct=disabled
11281120
%endif
11291121

11301122
%define when %(date +"%%F-%%T")
11311123
%define where %(hostname)
11321124
%define who %{?packager}%{!?packager:Unknown}
1133-
%define arg_packager --with-packager="%{who}, %{when}, %{where}"
1134-
%define arg_packager_version --with-packager-version="%{release}"
1125+
%define arg_packager -Dpackager="%{who}, %{when}, %{where}"
1126+
%define arg_packager_version -Dpackager_version="%{release}"
11351127

1136-
%define arg_selinux_mount --with-selinux-mount="/sys/fs/selinux"
1128+
%define arg_selinux_mount -Dselinux_mount="/sys/fs/selinux"
11371129

11381130
# place macros above and build commands below this comment
11391131

11401132
export SOURCE_DATE_EPOCH=$(stat --printf='%Y' %{_specdir}/%{name}.spec)
11411133

1142-
%if 0%{?enable_autotools}
1143-
autoreconf -if
1144-
%endif
1145-
1146-
rm -f po/stamp-po
1147-
1148-
%define _configure ../configure
1149-
mkdir %{_vpath_builddir}
1150-
cd %{_vpath_builddir}
1151-
1152-
%configure --enable-dependency-tracking \
1153-
--with-runstatedir=%{_rundir} \
1134+
%meson \
1135+
-Drunstatedir=%{_rundir} \
11541136
%{?arg_qemu} \
11551137
%{?arg_openvz} \
11561138
%{?arg_lxc} \
11571139
%{?arg_vbox} \
11581140
%{?arg_libxl} \
1159-
--with-sasl \
1160-
--with-polkit \
1161-
--with-libvirtd \
1141+
-Dsasl=enabled \
1142+
-Dpolkit=enabled \
1143+
-Ddriver_libvirtd=enabled \
11621144
%{?arg_esx} \
11631145
%{?arg_hyperv} \
11641146
%{?arg_vmware} \
1165-
--without-vz \
1166-
--without-bhyve \
1167-
--with-remote-default-mode=legacy \
1168-
--with-interface \
1169-
--with-network \
1170-
--with-storage-fs \
1171-
--with-storage-lvm \
1172-
--with-storage-iscsi \
1147+
-Ddriver_vz=disabled \
1148+
-Ddriver_bhyve=disabled \
1149+
-Dremote_default_mode=legacy \
1150+
-Ddriver_interface=enabled \
1151+
-Ddriver_network=enabled \
1152+
-Dstorage_fs=enabled \
1153+
-Dstorage_lvm=enabled \
1154+
-Dstorage_iscsi=enabled \
11731155
%{?arg_storage_iscsi_direct} \
1174-
--with-storage-scsi \
1175-
--with-storage-disk \
1176-
--with-storage-mpath \
1156+
-Dstorage_scsi=enabled \
1157+
-Dstorage_disk=enabled \
1158+
-Dstorage_mpath=enabled \
11771159
%{?arg_storage_rbd} \
11781160
%{?arg_storage_sheepdog} \
11791161
%{?arg_storage_gluster} \
11801162
%{?arg_storage_zfs} \
1181-
--without-storage-vstorage \
1163+
-Dstorage_vstorage=disabled \
11821164
%{?arg_numactl} \
11831165
%{?arg_numad} \
1184-
--with-capng \
1166+
-Dcapng=enabled \
11851167
%{?arg_fuse} \
1186-
--with-netcf \
1187-
--with-selinux \
1168+
-Dnetcf=enabled \
1169+
-Dselinux=enabled \
11881170
%{?arg_selinux_mount} \
1189-
--without-apparmor \
1190-
--without-hal \
1191-
--with-udev \
1192-
--with-yajl \
1171+
-Dapparmor=disabled \
1172+
-Dsecdriver_apparmor=disabled \
1173+
-Dhal=disabled \
1174+
-Dudev=enabled \
1175+
-Dyajl=enabled \
11931176
%{?arg_sanlock} \
1194-
--with-libpcap \
1195-
--with-macvtap \
1196-
--with-audit \
1197-
--with-dtrace \
1198-
--with-driver-modules \
1177+
-Dlibpcap=enabled \
1178+
-Dmacvtap=enabled \
1179+
-Daudit=enabled \
1180+
-Ddtrace=enabled \
11991181
%{?arg_firewalld} \
12001182
%{?arg_firewalld_zone} \
12011183
%{?arg_wireshark} \
1202-
--without-pm-utils \
1203-
--with-nss-plugin \
1184+
-Dpm_utils=disabled \
1185+
-Dnss=enabled \
12041186
%{arg_packager} \
12051187
%{arg_packager_version} \
1206-
--with-qemu-user=%{qemu_user} \
1207-
--with-qemu-group=%{qemu_group} \
1208-
--with-tls-priority=%{tls_priority} \
1188+
-Dqemu_user=%{qemu_user} \
1189+
-Dqemu_group=%{qemu_group} \
1190+
-Dtls_priority=%{tls_priority} \
12091191
%{?enable_werror} \
1210-
--enable-expensive-tests \
1211-
--with-init-script=systemd \
1192+
-Dexpensive_tests=enabled \
1193+
-Dinit_script=systemd \
12121194
%{?arg_login_shell}
1213-
make %{?_smp_mflags} V=1
1195+
1196+
%meson_build
12141197

12151198
%install
12161199
rm -fr %{buildroot}
12171200

12181201
export SOURCE_DATE_EPOCH=$(stat --printf='%Y' %{_specdir}/%{name}.spec)
12191202

1220-
cd %{_vpath_builddir}
1221-
%make_install %{?_smp_mflags} SYSTEMD_UNIT_DIR=%{_unitdir} V=1
1203+
%meson_install
12221204

12231205
rm -f $RPM_BUILD_ROOT%{_libdir}/*.la
12241206
rm -f $RPM_BUILD_ROOT%{_libdir}/*.a
@@ -1299,12 +1281,7 @@ mv $RPM_BUILD_ROOT%{_datadir}/systemtap/tapset/libvirt_qemu_probes.stp \
12991281
%endif
13001282

13011283
%check
1302-
cd %{_vpath_builddir}
1303-
if ! make %{?_smp_mflags} check VIR_TEST_DEBUG=1
1304-
then
1305-
cat tests/test-suite.log || true
1306-
exit 1
1307-
fi
1284+
VIR_TEST_DEBUG=1 %meson_test --no-suite syntax-check
13081285

13091286
%post libs
13101287
%if 0%{?rhel} == 7
@@ -1511,7 +1488,7 @@ exit 0
15111488

15121489
%files docs
15131490
%doc AUTHORS ChangeLog NEWS.rst README README.rst
1514-
%doc %{_vpath_builddir}/libvirt-docs/*
1491+
%doc libvirt-docs/*
15151492

15161493
%files daemon
15171494

@@ -1884,7 +1861,7 @@ exit 0
18841861
%config(noreplace) %{_sysconfdir}/sysconfig/libvirt-guests
18851862
%attr(0755, root, root) %{_libexecdir}/libvirt-guests.sh
18861863

1887-
%files libs -f %{_vpath_builddir}/%{name}.lang
1864+
%files libs -f %{name}.lang
18881865
%license COPYING COPYING.LESSER
18891866
%config(noreplace) %{_sysconfdir}/libvirt/libvirt.conf
18901867
%config(noreplace) %{_sysconfdir}/libvirt/libvirt-admin.conf

meson.build

-1
Original file line numberDiff line numberDiff line change
@@ -2300,7 +2300,6 @@ if git
23002300
# Using return values from configure_file in add_dist_script is possible since 0.55.0
23012301
dist_files = [
23022302
'libvirt.spec',
2303-
'mingw-libvirt.spec',
23042303
'AUTHORS',
23052304
]
23062305

0 commit comments

Comments
 (0)