mingw-libvirt.spec.in 11.8 KB
Newer Older
1 2
%{?mingw_package_header}

A
Andrea Bolognani 已提交
3 4 5
# This spec file assumes you are building on a Fedora version
# that's still supported by the vendor. It may work on other distros
# or versions, but no effort will be made to ensure that going forward.
6
%define min_fedora 28
A
Andrea Bolognani 已提交
7 8 9 10 11 12 13

%if 0%{?fedora} && 0%{?fedora} >= %{min_fedora}
    %define supported_platform 1
%else
    %define supported_platform 0
%endif

14 15 16 17 18 19 20 21 22 23 24 25 26
# Default to skipping autoreconf.  Distros can change just this one line
# (or provide a command-line override) if they backport any patches that
# touch configure.ac or Makefile.am.
%{!?enable_autotools:%define enable_autotools 0}

# The mingw build is client only.  Set up defaults for hypervisor drivers
# that talk via a native remote protocol, and for which prereq mingw
# libraries exist.
%define with_phyp          0%{!?_without_phyp:1}
%define with_esx           0%{!?_without_esx:1}
# missing libwsman, so can't build hyper-v
%define with_hyperv        0%{!?_without_hyperv:0}
%define with_xenapi        0%{!?_without_xenapi:1}
27
%define with_vz            0%{!?_without_vz:0}
28 29 30

# RHEL ships ESX but not PowerHypervisor, HyperV, or libxenserver (xenapi)
%if 0%{?rhel}
31 32 33
    %define with_phyp 0
    %define with_xenapi 0
    %define with_hyperv 0
34 35 36 37
%endif

Name:           mingw-libvirt
Version:        @VERSION@
38
Release:        1%{?dist}
39 40 41
Summary:        MinGW Windows libvirt virtualization library

License:        LGPLv2+
42
URL:            https://libvirt.org/
43 44 45 46

%if %(echo %{version} | grep -q "\.0$"; echo $?) == 1
    %define mainturl stable_updates/
%endif
47
Source: https://libvirt.org/sources/%{?mainturl}libvirt-%{version}.tar.xz
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

BuildRequires:  mingw32-filesystem >= 95
BuildRequires:  mingw64-filesystem >= 95
BuildRequires:  mingw32-gcc
BuildRequires:  mingw64-gcc
BuildRequires:  mingw32-binutils
BuildRequires:  mingw64-binutils
BuildRequires:  mingw32-libgpg-error
BuildRequires:  mingw64-libgpg-error
BuildRequires:  mingw32-libgcrypt
BuildRequires:  mingw64-libgcrypt
BuildRequires:  mingw32-gnutls
BuildRequires:  mingw64-gnutls
BuildRequires:  mingw32-gettext
BuildRequires:  mingw64-gettext
BuildRequires:  mingw32-libxml2
BuildRequires:  mingw64-libxml2
BuildRequires:  mingw32-portablexdr
BuildRequires:  mingw64-portablexdr
67 68
BuildRequires:  mingw32-dlfcn
BuildRequires:  mingw64-dlfcn
69 70 71 72

BuildRequires:  pkgconfig
# Need native version for msgfmt
BuildRequires:  gettext
73
BuildRequires:  libxslt
74
BuildRequires:  python3
75
BuildRequires:  perl-interpreter
76
BuildRequires:  perl(Getopt::Long)
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
%if 0%{?enable_autotools}
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gettext-devel
BuildRequires: libtool
%endif

BuildRequires: mingw32-libssh2
BuildRequires: mingw64-libssh2
%if %{with_esx}
BuildRequires: mingw32-curl
BuildRequires: mingw64-curl
%endif

BuildArch:      noarch

%description
MinGW Windows libvirt virtualization library.

# Mingw32
%package -n mingw32-libvirt
Summary: %{summary}

%description -n mingw32-libvirt
MinGW Windows libvirt virtualization library.

%package -n mingw32-libvirt-static
Summary: %{summary}
Requires: mingw32-libvirt = %{version}-%{release}

%description -n mingw32-libvirt-static
MinGW Windows libvirt virtualization library, static version.

# Mingw64
%package -n mingw64-libvirt
Summary: %{summary}

%description -n mingw64-libvirt
MinGW Windows libvirt virtualization library.

%package -n mingw64-libvirt-static
Summary: %{summary}
Requires: mingw64-libvirt = %{version}-%{release}

%description -n mingw64-libvirt-static
MinGW Windows libvirt virtualization library, static version.

%{?mingw_debug_package}


%prep
%setup -q -n libvirt-%{version}

%build
A
Andrea Bolognani 已提交
131 132 133 134 135
%if ! %{supported_platform}
echo "This RPM requires Fedora >= %{min_fedora}"
exit 1
%endif

136
%if ! %{with_phyp}
137
    %define _without_phyp --without-phyp
138 139 140
%endif

%if ! %{with_esx}
141
    %define _without_esx --without-esx
142 143 144
%endif

%if ! %{with_hyperv}
145
    %define _without_hyperv --without-hyperv
146 147 148
%endif

%if ! %{with_xenapi}
149
    %define _without_xenapi --without-xenapi
150 151
%endif

152 153
%if ! %{with_vz}
    %define _without_vz --without-vz
D
Dmitry Guryanov 已提交
154 155
%endif

156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
%if 0%{?enable_autotools}
autoreconf -if
%endif

# XXX enable SASL in future
%mingw_configure \
  --enable-static \
  --without-xen \
  --without-qemu \
  --without-openvz \
  --without-lxc \
  --without-vbox \
  %{?_without_xenapi} \
  --without-sasl \
  --without-avahi \
  --without-polkit \
  --without-libvirtd \
  %{?_without_phyp} \
  %{?_without_esx} \
  %{?_without_hyperv} \
  --without-vmware \
D
Dmitry Guryanov 已提交
177
  --without-parallels \
178 179
  --without-netcf \
  --without-audit \
180 181
  --without-dtrace \
  --enable-expensive-tests
182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200

%mingw_make %{?_smp_mflags}


%install
%mingw_make_install "DESTDIR=$RPM_BUILD_ROOT"

# Libtool files don't need to be bundled
find $RPM_BUILD_ROOT -name "*.la" -delete

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
E
Eric Blake 已提交
201 202
rm -rf $RPM_BUILD_ROOT%{mingw32_libexecdir}/libvirt-guests.sh
rm -rf $RPM_BUILD_ROOT%{mingw64_libexecdir}/libvirt-guests.sh
203 204 205 206 207 208


# Mingw32
%files -n mingw32-libvirt
%dir %{mingw32_sysconfdir}/libvirt/
%config(noreplace) %{mingw32_sysconfdir}/libvirt/libvirt.conf
209
%config(noreplace) %{mingw32_sysconfdir}/libvirt/libvirt-admin.conf
210 211 212

%{mingw32_bindir}/libvirt-0.dll
%{mingw32_bindir}/virsh.exe
213
%{mingw32_bindir}/virt-admin.exe
214 215
%{mingw32_bindir}/virt-xml-validate
%{mingw32_bindir}/virt-pki-validate
216
%{mingw32_bindir}/libvirt-lxc-0.dll
217
%{mingw32_bindir}/libvirt-qemu-0.dll
218
%{mingw32_bindir}/libvirt-admin-0.dll
219 220 221

%{mingw32_libdir}/libvirt.dll.a
%{mingw32_libdir}/pkgconfig/libvirt.pc
222 223
%{mingw32_libdir}/pkgconfig/libvirt-qemu.pc
%{mingw32_libdir}/pkgconfig/libvirt-lxc.pc
224
%{mingw32_libdir}/pkgconfig/libvirt-admin.pc
225
%{mingw32_libdir}/libvirt-lxc.dll.a
226
%{mingw32_libdir}/libvirt-qemu.dll.a
227
%{mingw32_libdir}/libvirt-admin.dll.a
228 229 230 231 232

%dir %{mingw32_datadir}/libvirt/
%dir %{mingw32_datadir}/libvirt/schemas/
%{mingw32_datadir}/libvirt/schemas/basictypes.rng
%{mingw32_datadir}/libvirt/schemas/capability.rng
233
%{mingw32_datadir}/libvirt/schemas/cputypes.rng
234
%{mingw32_datadir}/libvirt/schemas/domain.rng
M
Michal Privoznik 已提交
235
%{mingw32_datadir}/libvirt/schemas/domaincaps.rng
236 237 238 239 240 241 242
%{mingw32_datadir}/libvirt/schemas/domaincommon.rng
%{mingw32_datadir}/libvirt/schemas/domainsnapshot.rng
%{mingw32_datadir}/libvirt/schemas/interface.rng
%{mingw32_datadir}/libvirt/schemas/network.rng
%{mingw32_datadir}/libvirt/schemas/networkcommon.rng
%{mingw32_datadir}/libvirt/schemas/nodedev.rng
%{mingw32_datadir}/libvirt/schemas/nwfilter.rng
243 244
%{mingw32_datadir}/libvirt/schemas/nwfilter_params.rng
%{mingw32_datadir}/libvirt/schemas/nwfilterbinding.rng
245
%{mingw32_datadir}/libvirt/schemas/secret.rng
246
%{mingw32_datadir}/libvirt/schemas/storagecommon.rng
247
%{mingw32_datadir}/libvirt/schemas/storagepool.rng
248
%{mingw32_datadir}/libvirt/schemas/storagepoolcaps.rng
249 250 251
%{mingw32_datadir}/libvirt/schemas/storagevol.rng
%dir %{mingw32_datadir}/libvirt/api/
%{mingw32_datadir}/libvirt/api/libvirt-api.xml
252
%{mingw32_datadir}/libvirt/api/libvirt-lxc-api.xml
253
%{mingw32_datadir}/libvirt/api/libvirt-qemu-api.xml
254
%{mingw32_datadir}/libvirt/api/libvirt-admin-api.xml
255

256
%{mingw32_datadir}/libvirt/cpu_map/*.xml
257

D
Daniel P. Berrange 已提交
258 259
%{mingw32_datadir}/libvirt/test-screenshot.png

260 261 262 263
%{mingw32_datadir}/locale/*/LC_MESSAGES/libvirt.mo

%dir %{mingw32_includedir}/libvirt
%{mingw32_includedir}/libvirt/libvirt.h
264
%{mingw32_includedir}/libvirt/libvirt-common.h
265
%{mingw32_includedir}/libvirt/libvirt-domain.h
266
%{mingw32_includedir}/libvirt/libvirt-domain-snapshot.h
267
%{mingw32_includedir}/libvirt/libvirt-event.h
268
%{mingw32_includedir}/libvirt/libvirt-host.h
269
%{mingw32_includedir}/libvirt/libvirt-interface.h
270
%{mingw32_includedir}/libvirt/libvirt-network.h
271
%{mingw32_includedir}/libvirt/libvirt-nodedev.h
272
%{mingw32_includedir}/libvirt/libvirt-nwfilter.h
273
%{mingw32_includedir}/libvirt/libvirt-secret.h
274
%{mingw32_includedir}/libvirt/libvirt-storage.h
275
%{mingw32_includedir}/libvirt/libvirt-stream.h
276
%{mingw32_includedir}/libvirt/virterror.h
277
%{mingw32_includedir}/libvirt/libvirt-lxc.h
278
%{mingw32_includedir}/libvirt/libvirt-qemu.h
279
%{mingw32_includedir}/libvirt/libvirt-admin.h
280 281

%{mingw32_mandir}/man1/virsh.1*
282
%{mingw32_mandir}/man1/virt-admin.1*
283 284
%{mingw32_mandir}/man1/virt-xml-validate.1*
%{mingw32_mandir}/man1/virt-pki-validate.1*
285
%{mingw32_mandir}/man7/virkey*.7*
286 287 288

%files -n mingw32-libvirt-static
%{mingw32_libdir}/libvirt.a
289
%{mingw32_libdir}/libvirt-lxc.a
290
%{mingw32_libdir}/libvirt-qemu.a
291
%{mingw32_libdir}/libvirt-admin.a
292 293 294 295 296

# Mingw64
%files -n mingw64-libvirt
%dir %{mingw64_sysconfdir}/libvirt/
%config(noreplace) %{mingw64_sysconfdir}/libvirt/libvirt.conf
297
%config(noreplace) %{mingw64_sysconfdir}/libvirt/libvirt-admin.conf
298 299 300

%{mingw64_bindir}/libvirt-0.dll
%{mingw64_bindir}/virsh.exe
301
%{mingw64_bindir}/virt-admin.exe
302 303
%{mingw64_bindir}/virt-xml-validate
%{mingw64_bindir}/virt-pki-validate
304
%{mingw64_bindir}/libvirt-lxc-0.dll
305
%{mingw64_bindir}/libvirt-qemu-0.dll
306
%{mingw64_bindir}/libvirt-admin-0.dll
307 308 309

%{mingw64_libdir}/libvirt.dll.a
%{mingw64_libdir}/pkgconfig/libvirt.pc
310 311
%{mingw64_libdir}/pkgconfig/libvirt-qemu.pc
%{mingw64_libdir}/pkgconfig/libvirt-lxc.pc
312
%{mingw64_libdir}/pkgconfig/libvirt-admin.pc
313
%{mingw64_libdir}/libvirt-lxc.dll.a
314
%{mingw64_libdir}/libvirt-qemu.dll.a
315
%{mingw64_libdir}/libvirt-admin.dll.a
316 317 318 319 320

%dir %{mingw64_datadir}/libvirt/
%dir %{mingw64_datadir}/libvirt/schemas/
%{mingw64_datadir}/libvirt/schemas/basictypes.rng
%{mingw64_datadir}/libvirt/schemas/capability.rng
J
Jiri Denemark 已提交
321
%{mingw64_datadir}/libvirt/schemas/cputypes.rng
322
%{mingw64_datadir}/libvirt/schemas/domain.rng
M
Michal Privoznik 已提交
323
%{mingw64_datadir}/libvirt/schemas/domaincaps.rng
324 325 326 327 328 329 330
%{mingw64_datadir}/libvirt/schemas/domaincommon.rng
%{mingw64_datadir}/libvirt/schemas/domainsnapshot.rng
%{mingw64_datadir}/libvirt/schemas/interface.rng
%{mingw64_datadir}/libvirt/schemas/network.rng
%{mingw64_datadir}/libvirt/schemas/networkcommon.rng
%{mingw64_datadir}/libvirt/schemas/nodedev.rng
%{mingw64_datadir}/libvirt/schemas/nwfilter.rng
331 332
%{mingw64_datadir}/libvirt/schemas/nwfilter_params.rng
%{mingw64_datadir}/libvirt/schemas/nwfilterbinding.rng
333
%{mingw64_datadir}/libvirt/schemas/secret.rng
334
%{mingw64_datadir}/libvirt/schemas/storagecommon.rng
335
%{mingw64_datadir}/libvirt/schemas/storagepool.rng
336
%{mingw64_datadir}/libvirt/schemas/storagepoolcaps.rng
337 338 339
%{mingw64_datadir}/libvirt/schemas/storagevol.rng
%dir %{mingw64_datadir}/libvirt/api/
%{mingw64_datadir}/libvirt/api/libvirt-api.xml
340
%{mingw64_datadir}/libvirt/api/libvirt-lxc-api.xml
341
%{mingw64_datadir}/libvirt/api/libvirt-qemu-api.xml
342
%{mingw64_datadir}/libvirt/api/libvirt-admin-api.xml
343

344
%{mingw64_datadir}/libvirt/cpu_map/*.xml
345

D
Daniel P. Berrange 已提交
346 347
%{mingw64_datadir}/libvirt/test-screenshot.png

348 349 350 351
%{mingw64_datadir}/locale/*/LC_MESSAGES/libvirt.mo

%dir %{mingw64_includedir}/libvirt
%{mingw64_includedir}/libvirt/libvirt.h
352
%{mingw64_includedir}/libvirt/libvirt-common.h
353
%{mingw64_includedir}/libvirt/libvirt-domain.h
354
%{mingw64_includedir}/libvirt/libvirt-domain-snapshot.h
355
%{mingw64_includedir}/libvirt/libvirt-event.h
356
%{mingw64_includedir}/libvirt/libvirt-host.h
357
%{mingw64_includedir}/libvirt/libvirt-interface.h
358
%{mingw64_includedir}/libvirt/libvirt-network.h
359
%{mingw64_includedir}/libvirt/libvirt-nodedev.h
360
%{mingw64_includedir}/libvirt/libvirt-nwfilter.h
361
%{mingw64_includedir}/libvirt/libvirt-secret.h
362
%{mingw64_includedir}/libvirt/libvirt-storage.h
363
%{mingw64_includedir}/libvirt/libvirt-stream.h
364
%{mingw64_includedir}/libvirt/virterror.h
365
%{mingw64_includedir}/libvirt/libvirt-lxc.h
366
%{mingw64_includedir}/libvirt/libvirt-qemu.h
367
%{mingw64_includedir}/libvirt/libvirt-admin.h
368 369

%{mingw64_mandir}/man1/virsh.1*
370
%{mingw64_mandir}/man1/virt-admin.1*
371 372
%{mingw64_mandir}/man1/virt-xml-validate.1*
%{mingw64_mandir}/man1/virt-pki-validate.1*
373
%{mingw64_mandir}/man7/virkey*.7*
374 375 376

%files -n mingw64-libvirt-static
%{mingw64_libdir}/libvirt.a
377
%{mingw64_libdir}/libvirt-lxc.a
378
%{mingw64_libdir}/libvirt-qemu.a
379
%{mingw64_libdir}/libvirt-admin.a
380 381 382


%changelog