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

A
Andrea Bolognani 已提交
3 4 5 6 7 8 9 10 11 12 13
# 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.
%define min_fedora 26

%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 38 39 40 41 42
%endif

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

License:        LGPLv2+
Group:          Development/Libraries
43
URL:            https://libvirt.org/
44 45 46 47

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

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
68 69
BuildRequires:  mingw32-dlfcn
BuildRequires:  mingw64-dlfcn
70 71 72 73

BuildRequires:  pkgconfig
# Need native version for msgfmt
BuildRequires:  gettext
74
BuildRequires:  libxslt
75
BuildRequires:  python2
76 77 78
%if 0%{?fedora} >= 27
BuildRequires:  perl-interpreter
%else
79
BuildRequires:  perl
80
%endif
81
BuildRequires:  perl(Getopt::Long)
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 131 132 133 134 135 136 137
%if 0%{?enable_autotools}
BuildRequires: autoconf
BuildRequires: automake
BuildRequires: gettext-devel
BuildRequires: libtool
%endif

%if %{with_phyp}
BuildRequires: mingw32-libssh2
BuildRequires: mingw64-libssh2
%endif
%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 已提交
138 139 140 141 142
%if ! %{supported_platform}
echo "This RPM requires Fedora >= %{min_fedora}"
exit 1
%endif

143
%if ! %{with_phyp}
144
    %define _without_phyp --without-phyp
145 146 147
%endif

%if ! %{with_esx}
148
    %define _without_esx --without-esx
149 150 151
%endif

%if ! %{with_hyperv}
152
    %define _without_hyperv --without-hyperv
153 154 155
%endif

%if ! %{with_xenapi}
156
    %define _without_xenapi --without-xenapi
157 158
%endif

159 160
%if ! %{with_vz}
    %define _without_vz --without-vz
D
Dmitry Guryanov 已提交
161 162
%endif

163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
%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-uml \
  %{?_without_phyp} \
  %{?_without_esx} \
  %{?_without_hyperv} \
  --without-vmware \
D
Dmitry Guryanov 已提交
185
  --without-parallels \
186 187
  --without-netcf \
  --without-audit \
188 189
  --without-dtrace \
  --enable-expensive-tests
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208

%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 已提交
209 210
rm -rf $RPM_BUILD_ROOT%{mingw32_libexecdir}/libvirt-guests.sh
rm -rf $RPM_BUILD_ROOT%{mingw64_libexecdir}/libvirt-guests.sh
211 212 213 214 215 216


# Mingw32
%files -n mingw32-libvirt
%dir %{mingw32_sysconfdir}/libvirt/
%config(noreplace) %{mingw32_sysconfdir}/libvirt/libvirt.conf
217
%config(noreplace) %{mingw32_sysconfdir}/libvirt/libvirt-admin.conf
218 219 220

%{mingw32_bindir}/libvirt-0.dll
%{mingw32_bindir}/virsh.exe
221
%{mingw32_bindir}/virt-admin.exe
222 223
%{mingw32_bindir}/virt-xml-validate
%{mingw32_bindir}/virt-pki-validate
224
%{mingw32_bindir}/libvirt-lxc-0.dll
225
%{mingw32_bindir}/libvirt-qemu-0.dll
226
%{mingw32_bindir}/libvirt-admin-0.dll
227 228 229

%{mingw32_libdir}/libvirt.dll.a
%{mingw32_libdir}/pkgconfig/libvirt.pc
230 231
%{mingw32_libdir}/pkgconfig/libvirt-qemu.pc
%{mingw32_libdir}/pkgconfig/libvirt-lxc.pc
232
%{mingw32_libdir}/pkgconfig/libvirt-admin.pc
233
%{mingw32_libdir}/libvirt-lxc.dll.a
234
%{mingw32_libdir}/libvirt-qemu.dll.a
235
%{mingw32_libdir}/libvirt-admin.dll.a
236 237 238 239 240

%dir %{mingw32_datadir}/libvirt/
%dir %{mingw32_datadir}/libvirt/schemas/
%{mingw32_datadir}/libvirt/schemas/basictypes.rng
%{mingw32_datadir}/libvirt/schemas/capability.rng
241
%{mingw32_datadir}/libvirt/schemas/cputypes.rng
242
%{mingw32_datadir}/libvirt/schemas/domain.rng
M
Michal Privoznik 已提交
243
%{mingw32_datadir}/libvirt/schemas/domaincaps.rng
244 245 246 247 248 249 250 251
%{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
%{mingw32_datadir}/libvirt/schemas/secret.rng
252
%{mingw32_datadir}/libvirt/schemas/storagecommon.rng
253 254 255 256
%{mingw32_datadir}/libvirt/schemas/storagepool.rng
%{mingw32_datadir}/libvirt/schemas/storagevol.rng
%dir %{mingw32_datadir}/libvirt/api/
%{mingw32_datadir}/libvirt/api/libvirt-api.xml
257
%{mingw32_datadir}/libvirt/api/libvirt-lxc-api.xml
258
%{mingw32_datadir}/libvirt/api/libvirt-qemu-api.xml
259
%{mingw32_datadir}/libvirt/api/libvirt-admin-api.xml
260 261 262

%{mingw32_datadir}/libvirt/cpu_map.xml

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

265 266 267 268
%{mingw32_datadir}/locale/*/LC_MESSAGES/libvirt.mo

%dir %{mingw32_includedir}/libvirt
%{mingw32_includedir}/libvirt/libvirt.h
269
%{mingw32_includedir}/libvirt/libvirt-common.h
270
%{mingw32_includedir}/libvirt/libvirt-domain.h
271
%{mingw32_includedir}/libvirt/libvirt-domain-snapshot.h
272
%{mingw32_includedir}/libvirt/libvirt-event.h
273
%{mingw32_includedir}/libvirt/libvirt-host.h
274
%{mingw32_includedir}/libvirt/libvirt-interface.h
275
%{mingw32_includedir}/libvirt/libvirt-network.h
276
%{mingw32_includedir}/libvirt/libvirt-nodedev.h
277
%{mingw32_includedir}/libvirt/libvirt-nwfilter.h
278
%{mingw32_includedir}/libvirt/libvirt-secret.h
279
%{mingw32_includedir}/libvirt/libvirt-storage.h
280
%{mingw32_includedir}/libvirt/libvirt-stream.h
281
%{mingw32_includedir}/libvirt/virterror.h
282
%{mingw32_includedir}/libvirt/libvirt-lxc.h
283
%{mingw32_includedir}/libvirt/libvirt-qemu.h
284
%{mingw32_includedir}/libvirt/libvirt-admin.h
285 286

%{mingw32_mandir}/man1/virsh.1*
287
%{mingw32_mandir}/man1/virt-admin.1*
288 289
%{mingw32_mandir}/man1/virt-xml-validate.1*
%{mingw32_mandir}/man1/virt-pki-validate.1*
290
%{mingw32_mandir}/man7/virkey*.7*
291 292 293

%files -n mingw32-libvirt-static
%{mingw32_libdir}/libvirt.a
294
%{mingw32_libdir}/libvirt-lxc.a
295
%{mingw32_libdir}/libvirt-qemu.a
296
%{mingw32_libdir}/libvirt-admin.a
297 298 299 300 301

# Mingw64
%files -n mingw64-libvirt
%dir %{mingw64_sysconfdir}/libvirt/
%config(noreplace) %{mingw64_sysconfdir}/libvirt/libvirt.conf
302
%config(noreplace) %{mingw64_sysconfdir}/libvirt/libvirt-admin.conf
303 304 305

%{mingw64_bindir}/libvirt-0.dll
%{mingw64_bindir}/virsh.exe
306
%{mingw64_bindir}/virt-admin.exe
307 308
%{mingw64_bindir}/virt-xml-validate
%{mingw64_bindir}/virt-pki-validate
309
%{mingw64_bindir}/libvirt-lxc-0.dll
310
%{mingw64_bindir}/libvirt-qemu-0.dll
311
%{mingw64_bindir}/libvirt-admin-0.dll
312 313 314

%{mingw64_libdir}/libvirt.dll.a
%{mingw64_libdir}/pkgconfig/libvirt.pc
315 316
%{mingw64_libdir}/pkgconfig/libvirt-qemu.pc
%{mingw64_libdir}/pkgconfig/libvirt-lxc.pc
317
%{mingw64_libdir}/pkgconfig/libvirt-admin.pc
318
%{mingw64_libdir}/libvirt-lxc.dll.a
319
%{mingw64_libdir}/libvirt-qemu.dll.a
320
%{mingw64_libdir}/libvirt-admin.dll.a
321 322 323 324 325

%dir %{mingw64_datadir}/libvirt/
%dir %{mingw64_datadir}/libvirt/schemas/
%{mingw64_datadir}/libvirt/schemas/basictypes.rng
%{mingw64_datadir}/libvirt/schemas/capability.rng
J
Jiri Denemark 已提交
326
%{mingw64_datadir}/libvirt/schemas/cputypes.rng
327
%{mingw64_datadir}/libvirt/schemas/domain.rng
M
Michal Privoznik 已提交
328
%{mingw64_datadir}/libvirt/schemas/domaincaps.rng
329 330 331 332 333 334 335 336
%{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
%{mingw64_datadir}/libvirt/schemas/secret.rng
337
%{mingw64_datadir}/libvirt/schemas/storagecommon.rng
338 339 340 341
%{mingw64_datadir}/libvirt/schemas/storagepool.rng
%{mingw64_datadir}/libvirt/schemas/storagevol.rng
%dir %{mingw64_datadir}/libvirt/api/
%{mingw64_datadir}/libvirt/api/libvirt-api.xml
342
%{mingw64_datadir}/libvirt/api/libvirt-lxc-api.xml
343
%{mingw64_datadir}/libvirt/api/libvirt-qemu-api.xml
344
%{mingw64_datadir}/libvirt/api/libvirt-admin-api.xml
345 346 347

%{mingw64_datadir}/libvirt/cpu_map.xml

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

350 351 352 353
%{mingw64_datadir}/locale/*/LC_MESSAGES/libvirt.mo

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

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

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


%changelog