d868467
# Since RHEL-5, QEMU is restricted to x86_64 only
d868467
# As Boxes don't really handle the !qemu case very well (untested, the 'box
d868467
# creation' UI would still be there but non-functional, ...), better to
d868467
# only build Boxes on platforms where qemu/qemu-kvm are available
d868467
%if 0%{?rhel}
89556b2
ExclusiveArch: x86_64
d868467
%endif
d868467
d868467
589778a
# The following qemu_kvm_arches/with_qemu_kvm defines come from
589778a
# libvirt.spec
8bdba8e
%if 0%{?fedora}
4fb7380
    %global qemu_kvm_arches %{ix86} x86_64 %{power64} s390x %{arm} aarch64
Debarshi Ray 60da265
    %global distributor_name fedora
Debarshi Ray 60da265
    %global distributor_version %{fedora}
589778a
%endif
589778a
589778a
%if 0%{?rhel} >= 7
4fb7380
    %global qemu_kvm_arches    x86_64 %{power64}
Debarshi Ray 60da265
    %global distributor_name rhel
Debarshi Ray 60da265
    %global distributor_version %{rhel}
589778a
%endif
589778a
589778a
%ifarch %{qemu_kvm_arches}
4fb7380
    %global with_qemu_kvm      1
589778a
%else
4fb7380
    %global with_qemu_kvm      0
589778a
%endif
589778a
d2d2b6b
%global url_ver	%%(echo %{version}|cut -d. -f1,2)
d2d2b6b
d2d2b6b
Name:		gnome-boxes
3b5e314
Version:	3.34.1
39928e0
Release:	1%{?dist}
d2d2b6b
Summary:	A simple GNOME 3 application to access remote or virtual systems
d2d2b6b
d2d2b6b
License:	LGPLv2+
f512143
URL:		https://wiki.gnome.org/Apps/Boxes
d2d2b6b
Source0:	http://download.gnome.org/sources/%{name}/%{url_ver}/%{name}-%{version}.tar.xz
d2d2b6b
Debarshi Ray 226e683
BuildRequires:	gettext >= 0.19.8
ae6e776
BuildRequires:	meson
Debarshi Ray 226e683
BuildRequires:	vala >= 0.36.0
bac602b
BuildRequires:	yelp-tools
ab670b7
BuildRequires:	pkgconfig(clutter-gtk-1.0)
Felipe Borges 36363ba
BuildRequires:	pkgconfig(freerdp2)
Debarshi Ray 226e683
BuildRequires:	pkgconfig(glib-2.0) >= 2.52
ab670b7
BuildRequires:	pkgconfig(gobject-introspection-1.0)
Debarshi Ray 226e683
BuildRequires:	pkgconfig(gtk+-3.0) >= 3.22.20
ab670b7
BuildRequires:	pkgconfig(gtk-vnc-2.0)
29b09c8
BuildRequires:	pkgconfig(libarchive)
Debarshi Ray 9b757c2
BuildRequires:	pkgconfig(json-glib-1.0)
Debarshi Ray 6bcba33
BuildRequires:	pkgconfig(libsecret-1)
ab670b7
BuildRequires:	pkgconfig(libvirt-gobject-1.0)
ab670b7
BuildRequires:	pkgconfig(libvirt-gconfig-1.0)
ab670b7
BuildRequires:	pkgconfig(libxml-2.0)
ab670b7
BuildRequires:	pkgconfig(gudev-1.0)
917154f
BuildRequires:	pkgconfig(libosinfo-1.0) >= 1.4.0
Debarshi Ray 226e683
BuildRequires:	pkgconfig(libsoup-2.4) >= 2.44
Richard Hughes 0a659cc
BuildRequires:	pkgconfig(libusb-1.0)
Debarshi Ray 9b757c2
BuildRequires:	pkgconfig(tracker-sparql-2.0)
1db8873
BuildRequires:	pkgconfig(vte-2.91)
Debarshi Ray 9b757c2
BuildRequires:	pkgconfig(webkit2gtk-4.0)
ab670b7
BuildRequires:	spice-gtk3-vala
ab670b7
BuildRequires:	libosinfo-vala
d2d2b6b
BuildRequires:	desktop-file-utils
d2d2b6b
1b63181
# Pulls in libvirtd + KVM, but no NAT / firewall configs
589778a
%if %{with_qemu_kvm}
1b63181
Requires:	libvirt-daemon-kvm
75ddccf
%else
589778a
Requires:	libvirt-daemon-qemu
75ddccf
%endif
d2d2b6b
258e584
# Pulls in the libvirtd NAT 'default' network
258e584
# Original request: https://bugzilla.redhat.com/show_bug.cgi?id=1081762
258e584
#
258e584
# However, the 'default' network does not mix well with the Fedora livecd
258e584
# when it is run inside a VM. The whole saga is documented here:
258e584
#
258e584
#   boxes: https://bugzilla.redhat.com/show_bug.cgi?id=1164492
258e584
#   libvirt: https://bugzilla.redhat.com/show_bug.cgi?id=1146232
258e584
#
258e584
# Until a workable solution has been determined and implemented, this
258e584
# dependency should stay disabled in rawhide and fedora development
258e584
# branches so it does not end up on the livecd. Once a Fedora GA is
258e584
# released, a gnome-boxes update can be pushed with this dependency
258e584
# re-enabled. crobinso will handle this process, see:
258e584
#
258e584
#    https://bugzilla.redhat.com/show_bug.cgi?id=1164492#c71
258e584
#Requires:	libvirt-daemon-config-network
9c1a482
d2d2b6b
# Needed for unattended installations
d2d2b6b
Requires:	mtools
dd2a0c2
Requires:	genisoimage
d2d2b6b
2ff32a3
Requires:	adwaita-icon-theme
d2d2b6b
d2d2b6b
%description
d2d2b6b
gnome-boxes lets you easily create, setup, access, and use:
d2d2b6b
  * remote machines
d2d2b6b
  * remote virtual machines
d2d2b6b
  * local virtual machines
d2d2b6b
  * When technology permits, set up access for applications on
d2d2b6b
    local virtual machines
d2d2b6b
d2d2b6b
%prep
d2d2b6b
%setup -q
d2d2b6b
d2d2b6b
%build
Debarshi Ray 60da265
%meson \
Debarshi Ray 60da265
%if %{?distributor_name:1}%{!?distributor_name:0}
Debarshi Ray 60da265
    -D distributor_name=%{distributor_name} \
Debarshi Ray 60da265
%endif
Debarshi Ray 60da265
%if 0%{?distributor_version}
Debarshi Ray 60da265
    -D distributor_version=%{distributor_version} \
Debarshi Ray 60da265
%endif
Debarshi Ray 60da265
ae6e776
%meson_build
d2d2b6b
d2d2b6b
%install
ae6e776
%meson_install
d2d2b6b
%find_lang %{name} --with-gnome
d2d2b6b
8c00bc7
# Remove unneeded development files
8c00bc7
rm -rf %{buildroot}%{_includedir}/gnome-boxes/
8c00bc7
rm -rf %{buildroot}%{_libdir}/gnome-boxes/girepository-1.0/
8c00bc7
rm -rf %{buildroot}%{_libdir}/gnome-boxes/pkgconfig/
8c00bc7
rm -rf %{buildroot}%{_datadir}/gnome-boxes/gir-1.0/
8c00bc7
rm -rf %{buildroot}%{_datadir}/gnome-boxes/vapi/
8c00bc7
766486e
%check
766486e
desktop-file-validate %{buildroot}%{_datadir}/applications/org.gnome.Boxes.desktop
766486e
d2d2b6b
%files -f %{name}.lang
b7fdee1
%license COPYING
Felipe Borges cce1bf0
%doc AUTHORS README.md NEWS TODO
b2de644
%{_bindir}/gnome-boxes
022e7a8
%{_libdir}/gnome-boxes
b2de644
%{_libexecdir}/gnome-boxes-search-provider
766486e
%{_datadir}/applications/org.gnome.Boxes.desktop
d2d2b6b
%{_datadir}/glib-2.0/schemas/org.gnome.boxes.gschema.xml
b2de644
%{_datadir}/gnome-boxes/
b2de644
%dir %{_datadir}/gnome-shell
b2de644
%dir %{_datadir}/gnome-shell/search-providers
b2de644
%{_datadir}/gnome-shell/search-providers/gnome-boxes-search-provider.ini
Felipe Borges a7b5d5f
%{_datadir}/icons/hicolor/*/apps/org.gnome.Boxes.svg
Felipe Borges 36363ba
%{_datadir}/icons/hicolor/symbolic/apps/org.gnome.Boxes-symbolic.svg
9dbf7fd
%{_datadir}/dbus-1/services/org.gnome.Boxes.SearchProvider.service
766486e
%{_datadir}/dbus-1/services/org.gnome.Boxes.service
ae6e776
%{_datadir}/metainfo/org.gnome.Boxes.appdata.xml
d2d2b6b
d2d2b6b
%changelog
3b5e314
* Mon Oct 07 2019 Kalev Lember <klember@redhat.com> - 3.34.1-1
3b5e314
- Update to 3.34.1
3b5e314
39928e0
* Mon Sep 09 2019 Kalev Lember <klember@redhat.com> - 3.34.0-1
39928e0
- Update to 3.34.0
39928e0
7ad3f3f
* Tue Aug 20 2019 Simone Caronni <negativo17@gmail.com> - 3.33.90-2
7ad3f3f
- Rebuild for update FreeRDP.
7ad3f3f
7ad3f3f
* Wed Aug 14 2019 Felipe Borges <feborges@redhat.com> - 3.33.90-1
Felipe Borges a1b63c9
- Update to 3.33.90
Felipe Borges a1b63c9
Felipe Borges f749e1b
* Tue Jul 30 2019 Felipe Borges <feborges@redhat.com> - 3.33.3-1
Felipe Borges f749e1b
- Update to 3.33.3
Felipe Borges f749e1b
e2b22ec
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.33.2-2
e2b22ec
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
e2b22ec
Felipe Borges 944e062
* Mon Jul 08 2019 Felipe Borges <feborges@redhat.com> - 3.33.2-1
Felipe Borges 944e062
- Update to 3.33.2
Felipe Borges 944e062
bbed12b
* Sun May 19 2019 Simone Caronni <negativo17@gmail.com> - 3.33.1-2
bbed12b
- Rebuild for updated FreeRDP.
bbed12b
Felipe Borges a5f25ba
* Fri May 17 2019 Felipe Borges <feborges@redhat.com> - 3.33.1-1
Felipe Borges a5f25ba
- Drop oVirt support (govirt)
Felipe Borges a5f25ba
- Update to 3.33.1
Felipe Borges a5f25ba
0259761
* Tue Apr 16 2019 Adam Williamson <awilliam@redhat.com> - 3.32.0.2-2
0259761
- Rebuild with Meson fix for #1699099
0259761
72c7223
* Fri Mar 29 2019 Kalev Lember <klember@redhat.com> - 3.32.0.2-1
72c7223
- Update to 3.32.0.2
72c7223
abff3ff
* Mon Mar 18 2019 Kalev Lember <klember@redhat.com> - 3.32.0.1-1
abff3ff
- Update to 3.32.0.1
abff3ff
b9b328b
* Mon Mar 11 2019 Kalev Lember <klember@redhat.com> - 3.32.0-1
b9b328b
- Update to 3.32.0
b9b328b
a99017a
* Sat Mar 09 2019 Phil Wyett <philwyett@kathenas.org> - 3.31.91-2
917154f
- 3.31.91 requires libosinfo 1.4.0 or above
917154f
75cb637
* Tue Mar 05 2019 Kalev Lember <klember@redhat.com> - 3.31.91-1
75cb637
- Update to 3.31.91
75cb637
96f1dbb
* Thu Feb 28 2019 Simone Caronni <negativo17@gmail.com> - 3.31.90-2
96f1dbb
- Rebuild for FreeRDP update.
96f1dbb
02b0634
* Tue Feb 05 2019 Kalev Lember <klember@redhat.com> - 3.31.90-1
02b0634
- Update to 3.31.90
02b0634
f6d323f
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.31.4-2
f6d323f
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
f6d323f
1db8873
* Tue Jan 08 2019 Kalev Lember <klember@redhat.com> - 3.31.4-1
1db8873
- Update to 3.31.4
1db8873
Felipe Borges cce1bf0
* Thu Nov 22 2018 Felipe Borges <feborges@redhat.com> - 3.31.3-1
Felipe Borges cce1bf0
- Update to 3.31.3
Felipe Borges cce1bf0
Felipe Borges a7b5d5f
* Mon Oct 15 2018 Felipe Borges <feborges@redhat.com> - 3.31.2-1
Felipe Borges a7b5d5f
- Update to 3.31.2
Felipe Borges a7b5d5f
8c00bc7
* Sat Sep 29 2018 Kalev Lember <klember@redhat.com> - 3.30.1-2
8c00bc7
- Remove unneeded development files
8c00bc7
022e7a8
* Tue Sep 25 2018 Felipe Borges <feborges@redhat.com> - 3.30.1-1
022e7a8
- Drop workarounds to private libraries (fixed upstream)
022e7a8
- Update to 3.30.1
022e7a8
1edb738
* Fri Sep 07 2018 Kalev Lember <klember@redhat.com> - 3.30.0-2
1edb738
- Work around gnome-boxes failing to find its private libraries
1edb738
b2de644
* Fri Sep 07 2018 Kalev Lember <klember@redhat.com> - 3.30.0-1
b2de644
- Update to 3.30.0
b2de644
Felipe Borges 36363ba
* Mon Jul 30 2018 Felipe Borges <feborges@redhat.com> - 3.29.4-1
Felipe Borges 36363ba
- Enable RDP support
Felipe Borges 36363ba
- Upate to 3.29.4
Felipe Borges 36363ba
a806295
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.29.2-3
a806295
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a806295
Felipe Borges 6b80dfa
* Thu Jun 14 2018 Felipe Borges <feborges@redhat.com> - 3.29.2-2
Felipe Borges 6b80dfa
- Disable RDP support
Felipe Borges 6b80dfa
Debarshi Ray fe6d7f8
* Fri Jun 08 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.29.2-1
Debarshi Ray fe6d7f8
- Update to 3.29.2
Debarshi Ray fe6d7f8
Debarshi Ray 7e410a6
* Fri Jun 08 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.28.5-1
Debarshi Ray 7e410a6
- Update to 3.28.5
Debarshi Ray 7e410a6
5b95633
* Wed May 09 2018 Kalev Lember <klember@redhat.com> - 3.28.4-1
5b95633
- Update to 3.28.4
5b95633
aa974d8
* Tue May 08 2018 Kalev Lember <klember@redhat.com> - 3.28.3-1
aa974d8
- Update to 3.28.3
aa974d8
dd85518
* Tue Apr 10 2018 Kalev Lember <klember@redhat.com> - 3.28.2-1
dd85518
- Update to 3.28.2
dd85518
989c141
* Mon Apr 09 2018 Kalev Lember <klember@redhat.com> - 3.28.1-1
989c141
- Update to 3.28.1
989c141
258e584
* Tue Mar 27 2018 Cole Robinson <crobinso@redhat.com> - 3.27.92-3
258e584
- Disable libvirt 'default' network dep (bz 1164492)
258e584
Debarshi Ray 60da265
* Mon Mar 12 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.27.92-2
Debarshi Ray 60da265
- Override the user agent for Fedora and RHEL
Debarshi Ray 60da265
ae6e776
* Mon Mar 05 2018 Kalev Lember <klember@redhat.com> - 3.27.92-1
ae6e776
- Update to 3.27.92
ae6e776
- Switch to the meson build system
ae6e776
Debarshi Ray c244013
* Mon Feb 19 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.27.2-1
Debarshi Ray c244013
- Update to 3.27.2
Debarshi Ray c244013
5860d86
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.27.1-5
5860d86
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
5860d86
4fb7380
* Mon Jan 08 2018 Björn Esser <besser82@fedoraproject.org> - 3.27.1-4
4fb7380
- Prefer %%global over %%define as indicated by guidelines
4fb7380
Felipe Borges a49df2c
* Mon Jan 08 2018 Björn Esser <besser82@fedoraproject.org> - 3.27.1-3
Felipe Borges a49df2c
- Add a patch making newly created VMs use VIRTIO
Felipe Borges a49df2c
- Resolves: rhbz#1491320
Felipe Borges a49df2c
8653733
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.27.1-2
8653733
- Remove obsolete scriptlets
8653733
Debarshi Ray 226e683
* Tue Nov 21 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.27.1-1
Debarshi Ray 226e683
- Update to 3.27.1
Debarshi Ray 226e683
034027c
* Wed Nov 01 2017 Kalev Lember <klember@redhat.com> - 3.26.2-1
034027c
- Update to 3.26.2
034027c
Debarshi Ray 9b757c2
* Thu Oct 12 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.26.1-2
Debarshi Ray 9b757c2
- Add the RHEL Developer Suite patches (GNOME #786679)
Debarshi Ray 9b757c2
e61511d
* Sun Oct 08 2017 Kalev Lember <klember@redhat.com> - 3.26.1-1
e61511d
- Update to 3.26.1
e61511d
6013a38
* Wed Sep 13 2017 Kalev Lember <klember@redhat.com> - 3.26.0-1
6013a38
- Update to 3.26.0
6013a38
Debarshi Ray f3862ab
* Wed Aug 23 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.25.91-1
Debarshi Ray f3862ab
- Update to 3.25.91
Debarshi Ray f3862ab
ef3a05e
* Tue Aug 01 2017 Kalev Lember <klember@redhat.com> - 3.25.4-1
ef3a05e
- Update to 3.25.4
ef3a05e
b5c8c52
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.25.3-2
b5c8c52
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
b5c8c52
5c1daff
* Sun Jun 25 2017 Kalev Lember <klember@redhat.com> - 3.25.3-1
5c1daff
- Update to 3.25.3
5c1daff
fc4e3a8
* Mon Jun 12 2017 Kalev Lember <klember@redhat.com> - 3.25.2-1
fc4e3a8
- Update to 3.25.2
fc4e3a8
1e68286
* Tue Mar 21 2017 Kalev Lember <klember@redhat.com> - 3.24.0-1
1e68286
- Update to 3.24.0
1e68286
Richard Hughes 0be23c0
* Tue Feb 28 2017 Richard Hughes <rhughes@redhat.com> - 3.23.91-1
Richard Hughes 0be23c0
- Update to 3.23.91
Richard Hughes 0be23c0
Debarshi Ray 6bcba33
* Mon Feb 06 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.23.4.1-1
Debarshi Ray 6bcba33
- Update to 3.23.4.1
Debarshi Ray 6bcba33
4a900d5
* Thu Nov 24 2016 Kalev Lember <klember@redhat.com> - 3.23.2-1
4a900d5
- Update to 3.23.2
4a900d5
Debarshi Ray f574ede
* Sat Nov 05 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.22.2-1
Debarshi Ray f574ede
- Update to 3.22.2
Debarshi Ray f574ede
5083997
* Fri Nov 04 2016 Kalev Lember <klember@redhat.com> - 3.22.1-2
5083997
- Re-add libvirt-daemon-config-network dep (#1164492)
5083997
c1b32ac
* Wed Oct 12 2016 Kalev Lember <klember@redhat.com> - 3.22.1-1
c1b32ac
- Update to 3.22.1
c1b32ac
b9c528b
* Thu Sep 22 2016 Kalev Lember <klember@redhat.com> - 3.22.0-2
b9c528b
- BR vala instead of obsolete vala-tools subpackage
b9c528b
021d0ff
* Wed Sep 21 2016 Kalev Lember <klember@redhat.com> - 3.22.0-1
021d0ff
- Update to 3.22.0
021d0ff
762cd47
* Fri Sep 16 2016 Kalev Lember <klember@redhat.com> - 3.21.92-1
762cd47
- Update to 3.21.92
bfda7cd
- Drop unrecognized configure options
db83ddf
- Don't set group tags
762cd47
Richard Hughes 66fcad7
* Wed Jun 22 2016 Richard Hughes <rhughes@redhat.com> - 3.21.3-1
Richard Hughes 66fcad7
- Update to 3.21.3
Richard Hughes 66fcad7
70cc66a
* Wed Jun 22 2016 Marc-André Lureau <mlureau@redhat.com> - 3.20.2-4
473c4c2
- Rebuild to pick spice-gtk 0.32 ABI break
473c4c2
ef9e2bd
* Mon Jun 13 2016 Christophe Fergeau <cfergeau@redhat.com> - 3.20.2-3
ef9e2bd
- Added upstream patch to avoid showing privilege elevation dialog at
ef9e2bd
  every Boxes startup (it's only needed if one wants to import system
ef9e2bd
  VMs)
ef9e2bd
dbf3061
* Wed May 25 2016 Kalev Lember <klember@redhat.com> - 3.20.2-2
dbf3061
- Temporarily remove libvirt-daemon-config-network dep (#1164492)
dbf3061
e062ae0
* Mon May 09 2016 Kalev Lember <klember@redhat.com> - 3.20.2-1
e062ae0
- Update to 3.20.2
e062ae0
a223e48
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 3.20.0-1
a223e48
- Update to 3.20.0
a223e48
d3d9fa9
* Wed Mar 16 2016 Kalev Lember <klember@redhat.com> - 3.19.92-1
d3d9fa9
- Update to 3.19.92
d3d9fa9
d488fc7
* Fri Mar 04 2016 Kalev Lember <klember@redhat.com> - 3.19.91-1
d488fc7
- Update to 3.19.91
d488fc7
c5551ad
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.19.4-2
c5551ad
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
c5551ad
9aaf34c
* Wed Jan 20 2016 Kalev Lember <klember@redhat.com> - 3.19.4-1
9aaf34c
- Update to 3.19.4
9aaf34c
160d7c4
* Thu Dec 17 2015 Kalev Lember <klember@redhat.com> - 3.19.3-1
160d7c4
- Update to 3.19.3
160d7c4
f123268
* Wed Oct 28 2015 Kalev Lember <klember@redhat.com> - 3.19.1-1
f123268
- Update to 3.19.1
f123268
7c14500
* Mon Oct 12 2015 Kalev Lember <klember@redhat.com> - 3.18.1-1
7c14500
- Update to 3.18.1
7c14500
60b1347
* Tue Sep 22 2015 Kalev Lember <klember@redhat.com> - 3.18.0-1
60b1347
- Update to 3.18.0
f512143
- Update URL
60b1347
5ff5740
* Tue Sep 01 2015 Kalev Lember <klember@redhat.com> - 3.17.91-1
5ff5740
- Update to 3.17.91
5ff5740
859aa7c
* Tue Aug 18 2015 Kalev Lember <klember@redhat.com> - 3.17.90-1
859aa7c
- Update to 3.17.90
3473e55
- Use make_install macro
859aa7c
4e08edc
* Tue Jun 30 2015 Kalev Lember <klember@redhat.com> - 3.17.3-1
4e08edc
- Update to 3.17.3
4e08edc
2d41cd8
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.17.2-2
2d41cd8
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
2d41cd8
bd14bf6
* Thu May 28 2015 Zeeshan Ali <zeenix@redhat.com> - 3.17.2-1
bd14bf6
- Update to 3.17.2
bd14bf6
- Update dependencies.
bd14bf6
73e43c3
* Fri May 01 2015 Kalev Lember <kalevlember@gmail.com> - 3.17.1-1
73e43c3
- Update to 3.17.1
73e43c3
- Include the symbolic icon
73e43c3
188fdd1
* Thu Apr 16 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.1-1
188fdd1
- Update to 3.16.1
188fdd1
1db7732
* Tue Mar 24 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.0-1
1db7732
- Update to 3.16.0
1db7732
1d786d4
* Tue Mar 17 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.92-1
1d786d4
- Update to 3.15.92
1d786d4
54790b2
* Tue Mar 03 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.91-1
54790b2
- Update to 3.15.91
b7fdee1
- Use the %%license macro for the COPYING file
54790b2
Richard Hughes 7a470d0
* Thu Feb 19 2015 Richard Hughes <rhughes@redhat.com> - 3.15.90-1
Richard Hughes 7a470d0
- Update to 3.15.90
Richard Hughes 7a470d0
Richard Hughes c17e043
* Thu Jan 22 2015 Richard Hughes <rhughes@redhat.com> - 3.15.4-1
Richard Hughes c17e043
- Update to 3.15.4
Richard Hughes c17e043
Richard Hughes 48b222d
* Fri Dec 19 2014 Richard Hughes <rhughes@redhat.com> - 3.15.3-1
Richard Hughes 48b222d
- Update to 3.15.3
Richard Hughes 48b222d
ba5b122
* Tue Nov 25 2014 Kalev Lember <kalevlember@gmail.com> - 3.15.2-1
ba5b122
- Update to 3.15.2
ba5b122
e4176c2
* Wed Nov 12 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.2-1
e4176c2
- Update to 3.14.2
e4176c2
c5ffb09
* Tue Nov 04 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.1.2-1
c5ffb09
- Update to 3.14.1.2
c5ffb09
d93a710
* Wed Oct 15 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.1.1-1
d93a710
- Update to 3.14.1.1
d93a710
70f14fb
* Mon Oct 13 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.1-1
70f14fb
- Update to 3.14.1
70f14fb
53dd24e
* Thu Oct  2 2014 Zeeshan Ali <zeenix@redhat.com> 3.14.0-3
53dd24e
- Remove now unneeded deps on fuseiso and genisoimage.
53dd24e
8bdba8e
* Wed Sep 24 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.14.0-2
8bdba8e
- Update KVM arches
8bdba8e
cddcb24
* Tue Sep 23 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.0-1
cddcb24
- Update to 3.14.0
cddcb24
766486e
* Tue Sep 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.92-1
766486e
- Update to 3.13.92
766486e
- Adapt packaging for the desktop file rename
766486e
53dbe9e
* Wed Sep 03 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.91-1
53dbe9e
- Update to 3.13.91
53dbe9e
7dc0c25
* Tue Aug 26 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.90-1
7dc0c25
- Update to 3.13.90
7dc0c25
a6892e1
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.4-2
a6892e1
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
a6892e1
97e1a17
* Mon Jul 21 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.4-1
97e1a17
- Update to 3.13.4
97e1a17
Bastien Nocera a6df7d5
* Fri Jun 27 2014 Bastien Nocera <bnocera@redhat.com> 3.13.3-2
Bastien Nocera a6df7d5
- Don't run update-mime-database in post, we don't ship mime XML
Bastien Nocera a6df7d5
  files anymore
Bastien Nocera a6df7d5
Richard Hughes 7176517
* Wed Jun 25 2014 Richard Hughes <rhughes@redhat.com> - 3.13.3-1
Richard Hughes 7176517
- Update to 3.13.3
Richard Hughes 7176517
cc55608
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12.2-3
cc55608
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
cc55608
2ff32a3
* Mon May 26 2014 Matthias Clasen <mclasen@redhat.com> - 3.12.2-2
2ff32a3
- Require adwaita-icon-theme. Its the default
2ff32a3
6003430
* Thu May 15 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.2-1
6003430
- Update to 3.12.2
6003430
fb7c411
* Wed Apr 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.1-1
fb7c411
- Update to 3.12.1
fb7c411
0db6484
* Mon Mar 31 2014 Zeeshan Ali <zeenix@redhat.com> - 3.12.0-2
0db6484
- Add dep on libvirt-daemon-config-network to fix rhbz#1081762.
0db6484
Richard Hughes 1b2ca8d
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 3.12.0-1
Richard Hughes 1b2ca8d
- Update to 3.12.0
Richard Hughes 1b2ca8d
Richard Hughes 623cff5
* Wed Mar 19 2014 Richard Hughes <rhughes@redhat.com> - 3.11.92-1
Richard Hughes 623cff5
- Update to 3.11.92
Richard Hughes 623cff5
Richard Hughes 3cd6295
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 3.11.91-1
Richard Hughes 3cd6295
- Update to 3.11.91
Richard Hughes 3cd6295
49ae177
* Thu Feb 20 2014 Kalev Lember <kalevlember@gmail.com> - 3.11.90.1-2
49ae177
- Rebuilt for cogl soname bump
49ae177
Richard Hughes 23b5640
* Wed Feb 19 2014 Richard Hughes <rhughes@redhat.com> - 3.11.90.1-1
Richard Hughes 23b5640
- Update to 3.11.90.1
Richard Hughes 23b5640
Richard Hughes 6b7bbfb
* Tue Feb 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.90-1
Richard Hughes 6b7bbfb
- Update to 3.11.90
Richard Hughes 6b7bbfb
Peter Hutterer 7c77b5e
* Mon Feb 10 2014 Peter Hutterer <peter.hutterer@redhat.com> - 3.11.5.1-2
Peter Hutterer 7c77b5e
- Rebuild for libevdev soname bump
Peter Hutterer 7c77b5e
0e81d05
* Thu Feb 06 2014 Kalev Lember <kalevlember@gmail.com> - 3.11.5.1-1
0e81d05
- Update to 3.11.5.1
0e81d05
57e975d
* Wed Feb 05 2014 Kalev Lember <kalevlember@gmail.com> - 3.11.5-2
57e975d
- Rebuilt for cogl soname bump
57e975d
Richard Hughes 066d1dd
* Wed Feb 05 2014 Richard Hughes <rhughes@redhat.com> - 3.11.5-1
Richard Hughes 066d1dd
- Update to 3.11.5
Richard Hughes 066d1dd
Richard Hughes b5553fa
* Wed Jan 15 2014 Richard Hughes <rhughes@redhat.com> - 3.11.4-1
Richard Hughes b5553fa
- Update to 3.11.4
Richard Hughes b5553fa
Richard Hughes 694ae9b
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 3.11.3-1
Richard Hughes 694ae9b
- Update to 3.11.3
Richard Hughes 694ae9b
3e260d1
* Wed Dec 04 2013 Christophe Fergeau <cfergeau@redhat.com> 3.11.2-2
3e260d1
- Rebuild against new libgovirt release
3e260d1
Richard Hughes 1a566de
* Mon Nov 25 2013 Richard Hughes <rhughes@redhat.com> - 3.11.2-1
Richard Hughes 1a566de
- Update to 3.11.2
Richard Hughes 1a566de
Richard Hughes 4af3cf8
* Thu Nov 14 2013 Richard Hughes <rhughes@redhat.com> - 3.10.2-1
Richard Hughes 4af3cf8
- Update to 3.10.2
Richard Hughes 4af3cf8
17a5336
* Wed Sep 25 2013 Kalev Lember <kalevlember@gmail.com> - 3.10.0-1
17a5336
- Update to 3.10.0
17a5336
14b89ed
* Wed Sep 18 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.92-1
14b89ed
- Update to 3.9.92
14b89ed
69b9fdd
* Mon Sep 09 2013 Zeeshan Ali <zeenix@redhat.com> - 3.9.91.1-1
69b9fdd
- Update to 3.9.91.1
69b9fdd
- Fix vala and gtk+ dependency
69b9fdd
a940dbd
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.91-1
a940dbd
- Update to 3.9.91
a940dbd
3f3eb71
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.3-4
3f3eb71
- Rebuilt for cogl 1.15.4 soname bump
3f3eb71
a03146f
* Wed Aug 07 2013 Christophe Fergeau <cfergeau@redhat.com> 3.9.3-3
a03146f
- Add Requires on dconf and gnome-themes-standard, fixes rhbz#978727
a03146f
61bae0a
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9.3-2
61bae0a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
61bae0a
Richard Hughes 855311b
* Tue Jul 16 2013 Richard Hughes <rhughes@redhat.com> - 3.9.3-1
Richard Hughes 855311b
- Update to 3.9.3
Richard Hughes 855311b
ca6cf83
* Tue May 28 2013 Zeeshan Ali <zeenix@redhat.com> - 3.9.2-1
ca6cf83
- Update to 3.9.2.
ca6cf83
75ddccf
* Mon May 27 2013 Kalev Lember <kalevlember@gmail.com> 3.8.2-5
75ddccf
- Only pull in qemu on non-kvm arches
75ddccf
39cca70
* Fri May 24 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.2-4
39cca70
- ... and remove again the ExclusiveArch on fedora. If libvirt-daemon-qemu
39cca70
  is available, this means we can create (very slow) x86 boxes regardless
39cca70
  of the arch
39cca70
4536587
* Thu May 23 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.2-3
4536587
- Readd ExclusiveArch as Boxes is not really functional on non-x86
4536587
  arch even if it can be built. Also, libvirt-daemon-kvm is not
4536587
  available on every arch, causing rhbz#962325
4536587
1406c21
* Thu May 16 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.2-2
1406c21
- Add upstream patch for rhbz#963464
1406c21
b0487f6
* Tue May 14 2013 Zeeshan Ali <zeenix@redhat.com> - 3.8.2-1
b0487f6
- Update to 3.8.2.
b0487f6
6bbcc36
* Thu Apr 18 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.1.2-1
6bbcc36
- Update to 3.8.1.2
6bbcc36
Richard Hughes 0beb53b
* Tue Apr 16 2013 Richard Hughes <rhughes@redhat.com> - 3.8.1-1
Richard Hughes 0beb53b
- Update to 3.8.1
Richard Hughes 0beb53b
80ecfad
* Tue Apr 02 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.0-2
80ecfad
- Enable smartcard support and oVirt support
80ecfad
Richard Hughes deb2b39
* Tue Mar 26 2013 Richard Hughes <rhughes@redhat.com> - 3.8.0-1
Richard Hughes deb2b39
- Update to 3.8.0
Richard Hughes deb2b39
Richard Hughes 6c95785
* Wed Mar 20 2013 Richard Hughes <rhughes@redhat.com> - 3.7.92-1
Richard Hughes 6c95785
- Update to 3.7.92
Richard Hughes 6c95785
30cdb8b
* Fri Mar  8 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.91-1
30cdb8b
- Update to 3.7.91
30cdb8b
bc7571e
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.90-2
bc7571e
- Rebuilt for cogl soname bump
bc7571e
e386e84
* Thu Feb 21 2013 Christophe Fergeau <cfergeau@redhat.com> 3.7.90-1
e386e84
- Update do 3.7.90
e386e84
Richard Hughes 5331494
* Wed Feb 06 2013 Richard Hughes <rhughes@redhat.com> - 3.7.5-1
Richard Hughes 5331494
- Update to 3.7.5
Richard Hughes 5331494
1633612
* Sun Jan 27 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.4-3
1633612
- Rebuilt for tracker 0.16 ABI
1633612
e2297b1
* Fri Jan 25 2013 Peter Robinson <pbrobinson@fedoraproject.org> 3.7.4-2
e2297b1
- Rebuild for new cogl
e2297b1
c7527b5
* Tue Jan 15 2013 Zeeshan Ali <zeenix@redhat.com> - 3.7.4-1
c7527b5
- Update to 3.7.4.
c7527b5
441874c
* Thu Dec 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.7.3-1
441874c
- Update to 3.7.3
441874c
aa68bf5
* Tue Nov 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.7.2-2
aa68bf5
- Reenable USB redirection (it's disabled by default, packagers must
aa68bf5
  enable it if appropriate)
aa68bf5
edb6227
* Tue Nov 20 2012 Zeeshan Ali <zeenix@redhat.com> - 3.7.2-1
43f072d
- Update to 3.7.2.
43f072d
bfeb8bb
* Tue Nov 13 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.6.2-2
bfeb8bb
- Update to 3.6.2
bfeb8bb
edb6227
* Tue Oct 16 2012 Zeeshan Ali <zeenix@redhat.com> - 3.6.1.1-2
3655a3b
- Enable USB redirection in new domains.
3655a3b
edb6227
* Tue Oct 16 2012 Zeeshan Ali <zeenix@redhat.com> - 3.6.1.1-1
818b670
- Update to 3.6.1.1
818b670
0eb82e4
* Mon Oct 15 2012 Zeeshan Ali <zeenix@redhat.com> - 3.6.1-1
0eb82e4
- Update to 3.6.1
0eb82e4
61d20b1
* Tue Sep 25 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.6.0-1
61d20b1
- Update to 3.6.0
61d20b1
Richard Hughes ed6b885
* Wed Sep 19 2012 Richard Hughes <hughsient@gmail.com> - 3.5.92-1
Richard Hughes ed6b885
- Update to 3.5.92
Richard Hughes ed6b885
469514f
* Thu Sep  6 2012 Matthias Clasen <mclasen@redhat.com> - 3.5.91-2
469514f
- Rebuild against new spice
469514f
ea18769
* Tue Sep 04 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.5.91-1
ea18769
- Update do 3.5.91
ea18769
Richard Hughes 343b549
* Wed Aug 22 2012 Richard Hughes <hughsient@gmail.com> - 3.5.90-1
Richard Hughes 343b549
- Update to 3.5.90
Richard Hughes 343b549
Richard Hughes 2221d7a
* Tue Aug 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.5-1
Richard Hughes 2221d7a
- Update to 3.5.5
Richard Hughes 2221d7a
a33d938
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.4.1-2
a33d938
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
a33d938
b88abe5
* Mon Jul 16 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.5.4.1-1
b88abe5
- Update to 3.5.4.1
b88abe5
7db64bb
* Mon Jul 16 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.5.4-1
7db64bb
- Update to 3.5.4
7db64bb
- Update some BuildRequires min version
7db64bb
Richard Hughes 1383a9e
* Tue Jun 26 2012 Richard Hughes <hughsient@gmail.com> - 3.5.3-1
Richard Hughes 1383a9e
- Update to 3.5.3
Richard Hughes 1383a9e
653a0ba
* Thu Jun 07 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.5.2-2
653a0ba
- enable logos after getting confirmation this has been approved by
653a0ba
  fedora-legal and the Fedora board
653a0ba
Richard Hughes 507cd6c
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.2-1
Richard Hughes 507cd6c
- Update to 3.5.2
Richard Hughes 507cd6c
68b536a
* Wed May 16 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.4.2-2
68b536a
- Remove ExclusiveArch now that spice-gtk is built on all arch
68b536a
edb6227
* Tue May 15 2012 Zeeshan Ali <zeenix@redhat.com> - 3.4.2-1
d88752d
- Update to 3.4.2
d88752d
0c0ae9b
* Thu Apr 26 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.4.1-2
0c0ae9b
- Backport a few upstream patches:
0c0ae9b
  - asynchronously fetch domain information from libvirt, this makes Boxes
0c0ae9b
    much more responsive
0c0ae9b
  - make the file chooser dialog modal
0c0ae9b
  - fix f17 unattended installation
0c0ae9b
Richard Hughes 12113a6
* Tue Apr 17 2012 Richard Hughes <hughsient@gmail.com> - 3.4.1-1
Richard Hughes 12113a6
- Update to 3.4.1
Richard Hughes 12113a6
1b63181
* Sat Mar 31 2012 Daniel P. Berrange <berrange@redhat.com> - 3.4.0.1-2
1b63181
- Only pull in libvirtd + KVM drivers, without default configs (bug 802475)
1b63181
b3e1545
* Sat Mar 31 2012 Zeeshan Ali <zeenix@redhat.com> - 3.4.0.1-1
b3e1545
- Update to 3.4.0.1
b3e1545
227e7bf
* Mon Mar 26 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.4.0-1
227e7bf
- Update to 3.4.0
227e7bf
b57f6a3
* Mon Mar 26 2012 Dan Horák <dan[at]danny.cz> - 3.3.92-2
b57f6a3
- set ExclusiveArch equal to spice-gtk
b57f6a3
8938c57
* Tue Mar 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.92-1
8938c57
- Update to 3.3.92
8938c57
b26529f
* Tue Mar  6 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.91-1
b26529f
- Update to 3.3.91
b26529f
b26529f
* Sun Feb 26 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.90-1
b26529f
- Update to 3.3.90
b26529f
5b364e1
* Wed Feb 08 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.5.1-1
5b364e1
- Update to 3.3.5.1
5b364e1
ce5d7ec
* Wed Jan 25 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4.1-1
ce5d7ec
- Update to minor 3.3.4.1 release
ce5d7ec
d2d2b6b
* Fri Jan 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4-4
d2d2b6b
- call desktop-file-validate in %%install. gnome-boxes upstream installs
d2d2b6b
  a .desktop file on its own so desktop-file-validate is enough, no need
d2d2b6b
  to call desktop-file-install.
d2d2b6b
d2d2b6b
* Fri Jan 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4-3
d2d2b6b
- Fix %%global use (%%url_ver got expanded to 3.3.4 instead of 3.3 in
d2d2b6b
  -2)
d2d2b6b
edb6227
* Tue Jan 17 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4-2
d2d2b6b
- Remove use of BuildRoot
d2d2b6b
- Remove use of defattr
d2d2b6b
- Use %%global instead of %%define
d2d2b6b
edb6227
* Tue Jan 17 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4-1
d2d2b6b
- Update to 3.3.4 release
d2d2b6b
d2d2b6b
* Thu Jan 05 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.3-3
d2d2b6b
- Escape %%{buildroot} in changelog
d2d2b6b
- Remove empty %%pre section
d2d2b6b
d2d2b6b
* Wed Jan 04 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.3-2
d2d2b6b
- Use %%{buildroot} instead of $RPM_BUILD_ROOT
d2d2b6b
- Remove unneeded patch
d2d2b6b
- Add missing dependency on fuseiso
d2d2b6b
d2d2b6b
* Fri Dec 23 2011 Christophe Fergeau <cfergeau@redhat.com> - 3.3.3-1
d2d2b6b
- Initial import
d2d2b6b