Blame SPECS/gnome-boxes.spec

d46530
# Since RHEL-5, QEMU is restricted to x86_64 only
d46530
# As Boxes don't really handle the !qemu case very well (untested, the 'box
d46530
# creation' UI would still be there but non-functional, ...), better to
d46530
# only build Boxes on platforms where qemu/qemu-kvm are available
d46530
%if 0%{?rhel}
d46530
ExclusiveArch: x86_64
d46530
%endif
d46530
d46530
d46530
# The following qemu_kvm_arches/with_qemu_kvm defines come from
d46530
# libvirt.spec
d46530
%if 0%{?fedora}
d46530
    %global qemu_kvm_arches %{ix86} x86_64 %{power64} s390x %{arm} aarch64
d46530
    %global distributor_name fedora
d46530
    %global distributor_version %{fedora}
d46530
%endif
d46530
d46530
%if 0%{?rhel} >= 7
d46530
    %global qemu_kvm_arches    x86_64 %{power64}
d46530
    %global distributor_name rhel
d46530
    %global distributor_version %{rhel}
d46530
%endif
d46530
d46530
%ifarch %{qemu_kvm_arches}
d46530
    %global with_qemu_kvm      1
d46530
%else
d46530
    %global with_qemu_kvm      0
d46530
%endif
d46530
d46530
%global url_ver	%%(echo %{version}|cut -d. -f1,2)
d46530
d46530
Name:		gnome-boxes
d46530
Version:	3.28.5
2199b0
Release:	7%{?dist}
d46530
Summary:	A simple GNOME 3 application to access remote or virtual systems
d46530
d46530
License:	LGPLv2+
d46530
URL:		https://wiki.gnome.org/Apps/Boxes
d46530
Source0:	http://download.gnome.org/sources/%{name}/%{url_ver}/%{name}-%{version}.tar.xz
d46530
d46530
# https://gitlab.gnome.org/GNOME/gnome-boxes/issues/217
d46530
Patch0:		gnome-boxes-unbreak-the-icon-installation.patch
d46530
d46530
# https://bugzilla.redhat.com/1581422
d46530
Patch1:     gnome-boxes-use-q35-machine-type.patch
d46530
d46530
# https://bugzilla.redhat.com/1656446
d46530
Patch2:     gnome-boxes-hardcode-recommended-oses.patch
d46530
2199b0
# https://bugzilla.redhat.com/show_bug.cgi?id=1713130
2199b0
Patch3:     gnome-boxes-update-rhel-logo.patch
2199b0
2199b0
# https://bugzilla.redhat.com/1739897
2199b0
Patch4:     gnome-boxes-offer-only-supported-arches.patch
2199b0
d46530
BuildRequires:	gettext >= 0.19.8
d46530
BuildRequires:	meson
d46530
BuildRequires:	vala >= 0.36.0
d46530
BuildRequires:	yelp-tools
d46530
BuildRequires:	pkgconfig(clutter-gtk-1.0)
d46530
BuildRequires:	pkgconfig(glib-2.0) >= 2.52
d46530
BuildRequires:	pkgconfig(gobject-introspection-1.0)
d46530
BuildRequires:	pkgconfig(govirt-1.0)
d46530
BuildRequires:	pkgconfig(gtk+-3.0) >= 3.22.20
d46530
BuildRequires:	pkgconfig(gtk-vnc-2.0)
d46530
BuildRequires:	pkgconfig(libarchive)
d46530
BuildRequires:	pkgconfig(json-glib-1.0)
d46530
BuildRequires:	pkgconfig(libsecret-1)
d46530
BuildRequires:	pkgconfig(libvirt-gobject-1.0)
d46530
BuildRequires:	pkgconfig(libvirt-gconfig-1.0)
d46530
BuildRequires:	pkgconfig(libxml-2.0)
d46530
BuildRequires:	pkgconfig(gudev-1.0)
d46530
BuildRequires:	pkgconfig(libosinfo-1.0) >= 1.2.0
d46530
BuildRequires:	pkgconfig(libsoup-2.4) >= 2.44
d46530
BuildRequires:	pkgconfig(libusb-1.0)
d46530
BuildRequires:	pkgconfig(tracker-sparql-2.0)
d46530
BuildRequires:	pkgconfig(webkit2gtk-4.0)
d46530
BuildRequires:	spice-gtk3-vala
d46530
BuildRequires:	libosinfo-vala
d46530
BuildRequires:	desktop-file-utils
d46530
d46530
# Pulls in libvirtd + KVM, but no NAT / firewall configs
d46530
%if %{with_qemu_kvm}
d46530
Requires:	libvirt-daemon-kvm
d46530
%else
d46530
Requires:	libvirt-daemon-qemu
d46530
%endif
d46530
d46530
# Pulls in the libvirtd NAT 'default' network
d46530
# Original request: https://bugzilla.redhat.com/show_bug.cgi?id=1081762
d46530
#
d46530
# However, the 'default' network does not mix well with the Fedora livecd
d46530
# when it is run inside a VM. The whole saga is documented here:
d46530
#
d46530
#   boxes: https://bugzilla.redhat.com/show_bug.cgi?id=1164492
d46530
#   libvirt: https://bugzilla.redhat.com/show_bug.cgi?id=1146232
d46530
#
d46530
# Until a workable solution has been determined and implemented, this
d46530
# dependency should stay disabled in rawhide and fedora development
d46530
# branches so it does not end up on the livecd. Once a Fedora GA is
d46530
# released, a gnome-boxes update can be pushed with this dependency
d46530
# re-enabled. crobinso will handle this process, see:
d46530
#
d46530
#    https://bugzilla.redhat.com/show_bug.cgi?id=1164492#c71
d46530
Requires:	libvirt-daemon-config-network
d46530
d46530
# Needed for unattended installations
d46530
Requires:	mtools
d46530
Requires:	genisoimage
d46530
d46530
Requires:	adwaita-icon-theme
d46530
d46530
%description
d46530
gnome-boxes lets you easily create, setup, access, and use:
d46530
  * remote machines
d46530
  * remote virtual machines
d46530
  * local virtual machines
d46530
  * When technology permits, set up access for applications on
d46530
    local virtual machines
d46530
d46530
%prep
d46530
%setup -q
d46530
%patch0 -p1
d46530
%patch1 -p1
d46530
%patch2 -p1
2199b0
%patch3 -p1
2199b0
%patch4 -p1
d46530
d46530
%build
d46530
%meson \
d46530
%if %{?distributor_name:1}%{!?distributor_name:0}
d46530
    -D distributor_name=%{distributor_name} \
d46530
%endif
d46530
%if 0%{?distributor_version}
d46530
    -D distributor_version=%{distributor_version} \
d46530
%endif
d46530
d46530
%meson_build
d46530
d46530
%install
d46530
%meson_install
d46530
%find_lang %{name} --with-gnome
d46530
d46530
%check
d46530
desktop-file-validate %{buildroot}%{_datadir}/applications/org.gnome.Boxes.desktop
d46530
d46530
%files -f %{name}.lang
d46530
%license COPYING
d46530
%doc AUTHORS README NEWS TODO
d46530
%{_bindir}/%{name}
d46530
%{_datadir}/%{name}/
d46530
%{_datadir}/applications/org.gnome.Boxes.desktop
d46530
%{_datadir}/glib-2.0/schemas/org.gnome.boxes.gschema.xml
d46530
%{_datadir}/icons/hicolor/*/apps/org.gnome.Boxes.png
d46530
%{_datadir}/icons/hicolor/symbolic/apps/org.gnome.Boxes-symbolic.svg
d46530
%{_libexecdir}/gnome-boxes-search-provider
d46530
%{_datadir}/dbus-1/services/org.gnome.Boxes.SearchProvider.service
d46530
%{_datadir}/dbus-1/services/org.gnome.Boxes.service
d46530
%dir %{_datadir}/gnome-shell
d46530
%dir %{_datadir}/gnome-shell/search-providers
d46530
%{_datadir}/gnome-shell/search-providers/gnome-boxes-search-provider.ini
d46530
%{_datadir}/metainfo/org.gnome.Boxes.appdata.xml
d46530
d46530
%changelog
2199b0
* Thu Aug 15 2019 Felipe Borges <feborges@redhat.com> - 3.28.5-7
2199b0
- Bump the release to 3.28.5-7
2199b0
- Related: #1739897
2199b0
2199b0
* Thu Aug 15 2019 Felipe Borges <feborges@redhat.com> - 3.28.5-7
2199b0
- Filter off unsupported architectures
2199b0
- Related: #1739897
2199b0
2199b0
* Mon Jun 17 2019 Fabiano FidĂªncio <fidencio@redhat.com> - 3.28.5-6
2199b0
- Revert "Add 3D acceleration option (powered by virgl)"
2199b0
- Related: #1647004
2199b0
2199b0
* Mon Jun 03 2019 Felipe Borges <feborges@redhat.com> - 3.28.5-5
2199b0
- Add 3D acceleration option (powered by virgl)
2199b0
- Resolves: #1647004
2199b0
2199b0
* Thu May 23 2019 Fabiano FidĂªncio <fidencio@redhat.com> - 3.28.5-4
2199b0
- Add rhel-8.0 logo & update logo for rhel-4.0 & update recommendations
2199b0
- Resolves: #1713130
2199b0
d46530
* Wed Dec 05 2018 Felipe Borges <feborges@redhat.com> - 3.28.5-3
d46530
- Pick our recommended downloads
d46530
- Related #1656446
d46530
d46530
* Mon Oct 15 2018 Felipe Borges <feborges@redhat.com> - 3.28.5-2
d46530
- Use q35 for machine type
d46530
- Related #1581422
d46530
d46530
* Fri Jun 08 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.28.5-1
d46530
- Update to 3.28.5
d46530
d46530
* Wed May 09 2018 Kalev Lember <klember@redhat.com> - 3.28.4-1
d46530
- Update to 3.28.4
d46530
d46530
* Tue May 08 2018 Kalev Lember <klember@redhat.com> - 3.28.3-1
d46530
- Update to 3.28.3
d46530
d46530
* Mon Apr 30 2018 Cole Robinson <crobinso@redhat.com> - 3.28.2-1.fc28.1
d46530
- Re-enable libvirt-daemon-config-network dep, see bz 1164492#c71
d46530
d46530
* Tue Apr 10 2018 Kalev Lember <klember@redhat.com> - 3.28.2-1
d46530
- Update to 3.28.2
d46530
d46530
* Mon Apr 09 2018 Kalev Lember <klember@redhat.com> - 3.28.1-1
d46530
- Update to 3.28.1
d46530
d46530
* Mon Mar 26 2018 Adam Williamson <awilliam@redhat.com> - 3.27.92-2.fc28.1
d46530
- Disable libvirt-daemon-config-network dep until GA (#1164492)
d46530
d46530
* Mon Mar 12 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.27.92-2
d46530
- Override the user agent for Fedora and RHEL
d46530
d46530
* Mon Mar 05 2018 Kalev Lember <klember@redhat.com> - 3.27.92-1
d46530
- Update to 3.27.92
d46530
- Switch to the meson build system
d46530
d46530
* Mon Feb 19 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.27.2-1
d46530
- Update to 3.27.2
d46530
d46530
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.27.1-5
d46530
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
d46530
d46530
* Mon Jan 08 2018 Björn Esser <besser82@fedoraproject.org> - 3.27.1-4
d46530
- Prefer %%global over %%define as indicated by guidelines
d46530
d46530
* Mon Jan 08 2018 Björn Esser <besser82@fedoraproject.org> - 3.27.1-3
d46530
- Add a patch making newly created VMs use VIRTIO
d46530
- Resolves: rhbz#1491320
d46530
d46530
* Fri Jan 05 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.27.1-2
d46530
- Remove obsolete scriptlets
d46530
d46530
* Tue Nov 21 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.27.1-1
d46530
- Update to 3.27.1
d46530
d46530
* Wed Nov 01 2017 Kalev Lember <klember@redhat.com> - 3.26.2-1
d46530
- Update to 3.26.2
d46530
d46530
* Thu Oct 12 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.26.1-2
d46530
- Add the RHEL Developer Suite patches (GNOME #786679)
d46530
d46530
* Sun Oct 08 2017 Kalev Lember <klember@redhat.com> - 3.26.1-1
d46530
- Update to 3.26.1
d46530
d46530
* Wed Sep 13 2017 Kalev Lember <klember@redhat.com> - 3.26.0-1
d46530
- Update to 3.26.0
d46530
d46530
* Wed Aug 23 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.25.91-1
d46530
- Update to 3.25.91
d46530
d46530
* Tue Aug 01 2017 Kalev Lember <klember@redhat.com> - 3.25.4-1
d46530
- Update to 3.25.4
d46530
d46530
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.25.3-2
d46530
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
d46530
d46530
* Sun Jun 25 2017 Kalev Lember <klember@redhat.com> - 3.25.3-1
d46530
- Update to 3.25.3
d46530
d46530
* Mon Jun 12 2017 Kalev Lember <klember@redhat.com> - 3.25.2-1
d46530
- Update to 3.25.2
d46530
d46530
* Tue Mar 21 2017 Kalev Lember <klember@redhat.com> - 3.24.0-1
d46530
- Update to 3.24.0
d46530
d46530
* Tue Feb 28 2017 Richard Hughes <rhughes@redhat.com> - 3.23.91-1
d46530
- Update to 3.23.91
d46530
d46530
* Mon Feb 06 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.23.4.1-1
d46530
- Update to 3.23.4.1
d46530
d46530
* Thu Nov 24 2016 Kalev Lember <klember@redhat.com> - 3.23.2-1
d46530
- Update to 3.23.2
d46530
d46530
* Sat Nov 05 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.22.2-1
d46530
- Update to 3.22.2
d46530
d46530
* Fri Nov 04 2016 Kalev Lember <klember@redhat.com> - 3.22.1-2
d46530
- Re-add libvirt-daemon-config-network dep (#1164492)
d46530
d46530
* Wed Oct 12 2016 Kalev Lember <klember@redhat.com> - 3.22.1-1
d46530
- Update to 3.22.1
d46530
d46530
* Thu Sep 22 2016 Kalev Lember <klember@redhat.com> - 3.22.0-2
d46530
- BR vala instead of obsolete vala-tools subpackage
d46530
d46530
* Wed Sep 21 2016 Kalev Lember <klember@redhat.com> - 3.22.0-1
d46530
- Update to 3.22.0
d46530
d46530
* Fri Sep 16 2016 Kalev Lember <klember@redhat.com> - 3.21.92-1
d46530
- Update to 3.21.92
d46530
- Drop unrecognized configure options
d46530
- Don't set group tags
d46530
d46530
* Wed Jun 22 2016 Richard Hughes <rhughes@redhat.com> - 3.21.3-1
d46530
- Update to 3.21.3
d46530
d46530
* Wed Jun 22 2016 Marc-André Lureau <mlureau@redhat.com> - 3.20.2-4
d46530
- Rebuild to pick spice-gtk 0.32 ABI break
d46530
d46530
* Mon Jun 13 2016 Christophe Fergeau <cfergeau@redhat.com> - 3.20.2-3
d46530
- Added upstream patch to avoid showing privilege elevation dialog at
d46530
  every Boxes startup (it's only needed if one wants to import system
d46530
  VMs)
d46530
d46530
* Wed May 25 2016 Kalev Lember <klember@redhat.com> - 3.20.2-2
d46530
- Temporarily remove libvirt-daemon-config-network dep (#1164492)
d46530
d46530
* Mon May 09 2016 Kalev Lember <klember@redhat.com> - 3.20.2-1
d46530
- Update to 3.20.2
d46530
d46530
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 3.20.0-1
d46530
- Update to 3.20.0
d46530
d46530
* Wed Mar 16 2016 Kalev Lember <klember@redhat.com> - 3.19.92-1
d46530
- Update to 3.19.92
d46530
d46530
* Fri Mar 04 2016 Kalev Lember <klember@redhat.com> - 3.19.91-1
d46530
- Update to 3.19.91
d46530
d46530
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.19.4-2
d46530
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
d46530
d46530
* Wed Jan 20 2016 Kalev Lember <klember@redhat.com> - 3.19.4-1
d46530
- Update to 3.19.4
d46530
d46530
* Thu Dec 17 2015 Kalev Lember <klember@redhat.com> - 3.19.3-1
d46530
- Update to 3.19.3
d46530
d46530
* Wed Oct 28 2015 Kalev Lember <klember@redhat.com> - 3.19.1-1
d46530
- Update to 3.19.1
d46530
d46530
* Mon Oct 12 2015 Kalev Lember <klember@redhat.com> - 3.18.1-1
d46530
- Update to 3.18.1
d46530
d46530
* Tue Sep 22 2015 Kalev Lember <klember@redhat.com> - 3.18.0-1
d46530
- Update to 3.18.0
d46530
- Update URL
d46530
d46530
* Tue Sep 01 2015 Kalev Lember <klember@redhat.com> - 3.17.91-1
d46530
- Update to 3.17.91
d46530
d46530
* Tue Aug 18 2015 Kalev Lember <klember@redhat.com> - 3.17.90-1
d46530
- Update to 3.17.90
d46530
- Use make_install macro
d46530
d46530
* Tue Jun 30 2015 Kalev Lember <klember@redhat.com> - 3.17.3-1
d46530
- Update to 3.17.3
d46530
d46530
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.17.2-2
d46530
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
d46530
d46530
* Thu May 28 2015 Zeeshan Ali <zeenix@redhat.com> - 3.17.2-1
d46530
- Update to 3.17.2
d46530
- Update dependencies.
d46530
d46530
* Fri May 01 2015 Kalev Lember <kalevlember@gmail.com> - 3.17.1-1
d46530
- Update to 3.17.1
d46530
- Include the symbolic icon
d46530
d46530
* Thu Apr 16 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.1-1
d46530
- Update to 3.16.1
d46530
d46530
* Tue Mar 24 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.0-1
d46530
- Update to 3.16.0
d46530
d46530
* Tue Mar 17 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.92-1
d46530
- Update to 3.15.92
d46530
d46530
* Tue Mar 03 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.91-1
d46530
- Update to 3.15.91
d46530
- Use the %%license macro for the COPYING file
d46530
d46530
* Thu Feb 19 2015 Richard Hughes <rhughes@redhat.com> - 3.15.90-1
d46530
- Update to 3.15.90
d46530
d46530
* Thu Jan 22 2015 Richard Hughes <rhughes@redhat.com> - 3.15.4-1
d46530
- Update to 3.15.4
d46530
d46530
* Fri Dec 19 2014 Richard Hughes <rhughes@redhat.com> - 3.15.3-1
d46530
- Update to 3.15.3
d46530
d46530
* Tue Nov 25 2014 Kalev Lember <kalevlember@gmail.com> - 3.15.2-1
d46530
- Update to 3.15.2
d46530
d46530
* Wed Nov 12 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.2-1
d46530
- Update to 3.14.2
d46530
d46530
* Tue Nov 04 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.1.2-1
d46530
- Update to 3.14.1.2
d46530
d46530
* Wed Oct 15 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.1.1-1
d46530
- Update to 3.14.1.1
d46530
d46530
* Mon Oct 13 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.1-1
d46530
- Update to 3.14.1
d46530
d46530
* Thu Oct  2 2014 Zeeshan Ali <zeenix@redhat.com> 3.14.0-3
d46530
- Remove now unneeded deps on fuseiso and genisoimage.
d46530
d46530
* Wed Sep 24 2014 Peter Robinson <pbrobinson@fedoraproject.org> 3.14.0-2
d46530
- Update KVM arches
d46530
d46530
* Tue Sep 23 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.0-1
d46530
- Update to 3.14.0
d46530
d46530
* Tue Sep 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.92-1
d46530
- Update to 3.13.92
d46530
- Adapt packaging for the desktop file rename
d46530
d46530
* Wed Sep 03 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.91-1
d46530
- Update to 3.13.91
d46530
d46530
* Tue Aug 26 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.90-1
d46530
- Update to 3.13.90
d46530
d46530
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.4-2
d46530
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
d46530
d46530
* Mon Jul 21 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.4-1
d46530
- Update to 3.13.4
d46530
d46530
* Fri Jun 27 2014 Bastien Nocera <bnocera@redhat.com> 3.13.3-2
d46530
- Don't run update-mime-database in post, we don't ship mime XML
d46530
  files anymore
d46530
d46530
* Wed Jun 25 2014 Richard Hughes <rhughes@redhat.com> - 3.13.3-1
d46530
- Update to 3.13.3
d46530
d46530
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12.2-3
d46530
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
d46530
d46530
* Mon May 26 2014 Matthias Clasen <mclasen@redhat.com> - 3.12.2-2
d46530
- Require adwaita-icon-theme. Its the default
d46530
d46530
* Thu May 15 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.2-1
d46530
- Update to 3.12.2
d46530
d46530
* Wed Apr 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.1-1
d46530
- Update to 3.12.1
d46530
d46530
* Mon Mar 31 2014 Zeeshan Ali <zeenix@redhat.com> - 3.12.0-2
d46530
- Add dep on libvirt-daemon-config-network to fix rhbz#1081762.
d46530
d46530
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 3.12.0-1
d46530
- Update to 3.12.0
d46530
d46530
* Wed Mar 19 2014 Richard Hughes <rhughes@redhat.com> - 3.11.92-1
d46530
- Update to 3.11.92
d46530
d46530
* Tue Mar 04 2014 Richard Hughes <rhughes@redhat.com> - 3.11.91-1
d46530
- Update to 3.11.91
d46530
d46530
* Thu Feb 20 2014 Kalev Lember <kalevlember@gmail.com> - 3.11.90.1-2
d46530
- Rebuilt for cogl soname bump
d46530
d46530
* Wed Feb 19 2014 Richard Hughes <rhughes@redhat.com> - 3.11.90.1-1
d46530
- Update to 3.11.90.1
d46530
d46530
* Tue Feb 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.90-1
d46530
- Update to 3.11.90
d46530
d46530
* Mon Feb 10 2014 Peter Hutterer <peter.hutterer@redhat.com> - 3.11.5.1-2
d46530
- Rebuild for libevdev soname bump
d46530
d46530
* Thu Feb 06 2014 Kalev Lember <kalevlember@gmail.com> - 3.11.5.1-1
d46530
- Update to 3.11.5.1
d46530
d46530
* Wed Feb 05 2014 Kalev Lember <kalevlember@gmail.com> - 3.11.5-2
d46530
- Rebuilt for cogl soname bump
d46530
d46530
* Wed Feb 05 2014 Richard Hughes <rhughes@redhat.com> - 3.11.5-1
d46530
- Update to 3.11.5
d46530
d46530
* Wed Jan 15 2014 Richard Hughes <rhughes@redhat.com> - 3.11.4-1
d46530
- Update to 3.11.4
d46530
d46530
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 3.11.3-1
d46530
- Update to 3.11.3
d46530
d46530
* Wed Dec 04 2013 Christophe Fergeau <cfergeau@redhat.com> 3.11.2-2
d46530
- Rebuild against new libgovirt release
d46530
d46530
* Mon Nov 25 2013 Richard Hughes <rhughes@redhat.com> - 3.11.2-1
d46530
- Update to 3.11.2
d46530
d46530
* Thu Nov 14 2013 Richard Hughes <rhughes@redhat.com> - 3.10.2-1
d46530
- Update to 3.10.2
d46530
d46530
* Wed Sep 25 2013 Kalev Lember <kalevlember@gmail.com> - 3.10.0-1
d46530
- Update to 3.10.0
d46530
d46530
* Wed Sep 18 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.92-1
d46530
- Update to 3.9.92
d46530
d46530
* Mon Sep 09 2013 Zeeshan Ali <zeenix@redhat.com> - 3.9.91.1-1
d46530
- Update to 3.9.91.1
d46530
- Fix vala and gtk+ dependency
d46530
d46530
* Tue Sep 03 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.91-1
d46530
- Update to 3.9.91
d46530
d46530
* Fri Aug 09 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.3-4
d46530
- Rebuilt for cogl 1.15.4 soname bump
d46530
d46530
* Wed Aug 07 2013 Christophe Fergeau <cfergeau@redhat.com> 3.9.3-3
d46530
- Add Requires on dconf and gnome-themes-standard, fixes rhbz#978727
d46530
d46530
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9.3-2
d46530
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
d46530
d46530
* Tue Jul 16 2013 Richard Hughes <rhughes@redhat.com> - 3.9.3-1
d46530
- Update to 3.9.3
d46530
d46530
* Tue May 28 2013 Zeeshan Ali <zeenix@redhat.com> - 3.9.2-1
d46530
- Update to 3.9.2.
d46530
d46530
* Mon May 27 2013 Kalev Lember <kalevlember@gmail.com> 3.8.2-5
d46530
- Only pull in qemu on non-kvm arches
d46530
d46530
* Fri May 24 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.2-4
d46530
- ... and remove again the ExclusiveArch on fedora. If libvirt-daemon-qemu
d46530
  is available, this means we can create (very slow) x86 boxes regardless
d46530
  of the arch
d46530
d46530
* Thu May 23 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.2-3
d46530
- Readd ExclusiveArch as Boxes is not really functional on non-x86
d46530
  arch even if it can be built. Also, libvirt-daemon-kvm is not
d46530
  available on every arch, causing rhbz#962325
d46530
d46530
* Thu May 16 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.2-2
d46530
- Add upstream patch for rhbz#963464
d46530
d46530
* Tue May 14 2013 Zeeshan Ali <zeenix@redhat.com> - 3.8.2-1
d46530
- Update to 3.8.2.
d46530
d46530
* Thu Apr 18 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.1.2-1
d46530
- Update to 3.8.1.2
d46530
d46530
* Tue Apr 16 2013 Richard Hughes <rhughes@redhat.com> - 3.8.1-1
d46530
- Update to 3.8.1
d46530
d46530
* Tue Apr 02 2013 Christophe Fergeau <cfergeau@redhat.com> 3.8.0-2
d46530
- Enable smartcard support and oVirt support
d46530
d46530
* Tue Mar 26 2013 Richard Hughes <rhughes@redhat.com> - 3.8.0-1
d46530
- Update to 3.8.0
d46530
d46530
* Wed Mar 20 2013 Richard Hughes <rhughes@redhat.com> - 3.7.92-1
d46530
- Update to 3.7.92
d46530
d46530
* Fri Mar  8 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.91-1
d46530
- Update to 3.7.91
d46530
d46530
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.90-2
d46530
- Rebuilt for cogl soname bump
d46530
d46530
* Thu Feb 21 2013 Christophe Fergeau <cfergeau@redhat.com> 3.7.90-1
d46530
- Update do 3.7.90
d46530
d46530
* Wed Feb 06 2013 Richard Hughes <rhughes@redhat.com> - 3.7.5-1
d46530
- Update to 3.7.5
d46530
d46530
* Sun Jan 27 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.4-3
d46530
- Rebuilt for tracker 0.16 ABI
d46530
d46530
* Fri Jan 25 2013 Peter Robinson <pbrobinson@fedoraproject.org> 3.7.4-2
d46530
- Rebuild for new cogl
d46530
d46530
* Tue Jan 15 2013 Zeeshan Ali <zeenix@redhat.com> - 3.7.4-1
d46530
- Update to 3.7.4.
d46530
d46530
* Thu Dec 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.7.3-1
d46530
- Update to 3.7.3
d46530
d46530
* Tue Nov 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.7.2-2
d46530
- Reenable USB redirection (it's disabled by default, packagers must
d46530
  enable it if appropriate)
d46530
d46530
* Tue Nov 20 2012 Zeeshan Ali <zeenix@redhat.com> - 3.7.2-1
d46530
- Update to 3.7.2.
d46530
d46530
* Tue Nov 13 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.6.2-2
d46530
- Update to 3.6.2
d46530
d46530
* Tue Oct 16 2012 Zeeshan Ali <zeenix@redhat.com> - 3.6.1.1-2
d46530
- Enable USB redirection in new domains.
d46530
d46530
* Tue Oct 16 2012 Zeeshan Ali <zeenix@redhat.com> - 3.6.1.1-1
d46530
- Update to 3.6.1.1
d46530
d46530
* Mon Oct 15 2012 Zeeshan Ali <zeenix@redhat.com> - 3.6.1-1
d46530
- Update to 3.6.1
d46530
d46530
* Tue Sep 25 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.6.0-1
d46530
- Update to 3.6.0
d46530
d46530
* Wed Sep 19 2012 Richard Hughes <hughsient@gmail.com> - 3.5.92-1
d46530
- Update to 3.5.92
d46530
d46530
* Thu Sep  6 2012 Matthias Clasen <mclasen@redhat.com> - 3.5.91-2
d46530
- Rebuild against new spice
d46530
d46530
* Tue Sep 04 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.5.91-1
d46530
- Update do 3.5.91
d46530
d46530
* Wed Aug 22 2012 Richard Hughes <hughsient@gmail.com> - 3.5.90-1
d46530
- Update to 3.5.90
d46530
d46530
* Tue Aug 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.5-1
d46530
- Update to 3.5.5
d46530
d46530
* Thu Jul 19 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.5.4.1-2
d46530
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
d46530
d46530
* Mon Jul 16 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.5.4.1-1
d46530
- Update to 3.5.4.1
d46530
d46530
* Mon Jul 16 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.5.4-1
d46530
- Update to 3.5.4
d46530
- Update some BuildRequires min version
d46530
d46530
* Tue Jun 26 2012 Richard Hughes <hughsient@gmail.com> - 3.5.3-1
d46530
- Update to 3.5.3
d46530
d46530
* Thu Jun 07 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.5.2-2
d46530
- enable logos after getting confirmation this has been approved by
d46530
  fedora-legal and the Fedora board
d46530
d46530
* Thu Jun 07 2012 Richard Hughes <hughsient@gmail.com> - 3.5.2-1
d46530
- Update to 3.5.2
d46530
d46530
* Wed May 16 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.4.2-2
d46530
- Remove ExclusiveArch now that spice-gtk is built on all arch
d46530
d46530
* Tue May 15 2012 Zeeshan Ali <zeenix@redhat.com> - 3.4.2-1
d46530
- Update to 3.4.2
d46530
d46530
* Thu Apr 26 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.4.1-2
d46530
- Backport a few upstream patches:
d46530
  - asynchronously fetch domain information from libvirt, this makes Boxes
d46530
    much more responsive
d46530
  - make the file chooser dialog modal
d46530
  - fix f17 unattended installation
d46530
d46530
* Tue Apr 17 2012 Richard Hughes <hughsient@gmail.com> - 3.4.1-1
d46530
- Update to 3.4.1
d46530
d46530
* Sat Mar 31 2012 Daniel P. Berrange <berrange@redhat.com> - 3.4.0.1-2
d46530
- Only pull in libvirtd + KVM drivers, without default configs (bug 802475)
d46530
d46530
* Sat Mar 31 2012 Zeeshan Ali <zeenix@redhat.com> - 3.4.0.1-1
d46530
- Update to 3.4.0.1
d46530
d46530
* Mon Mar 26 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.4.0-1
d46530
- Update to 3.4.0
d46530
d46530
* Mon Mar 26 2012 Dan HorĂ¡k <dan[at]danny.cz> - 3.3.92-2
d46530
- set ExclusiveArch equal to spice-gtk
d46530
d46530
* Tue Mar 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.92-1
d46530
- Update to 3.3.92
d46530
d46530
* Tue Mar  6 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.91-1
d46530
- Update to 3.3.91
d46530
d46530
* Sun Feb 26 2012 Matthias Clasen <mclasen@redhat.com> - 3.3.90-1
d46530
- Update to 3.3.90
d46530
d46530
* Wed Feb 08 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.5.1-1
d46530
- Update to 3.3.5.1
d46530
d46530
* Wed Jan 25 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4.1-1
d46530
- Update to minor 3.3.4.1 release
d46530
d46530
* Fri Jan 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4-4
d46530
- call desktop-file-validate in %%install. gnome-boxes upstream installs
d46530
  a .desktop file on its own so desktop-file-validate is enough, no need
d46530
  to call desktop-file-install.
d46530
d46530
* Fri Jan 20 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4-3
d46530
- Fix %%global use (%%url_ver got expanded to 3.3.4 instead of 3.3 in
d46530
  -2)
d46530
d46530
* Tue Jan 17 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4-2
d46530
- Remove use of BuildRoot
d46530
- Remove use of defattr
d46530
- Use %%global instead of %%define
d46530
d46530
* Tue Jan 17 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.4-1
d46530
- Update to 3.3.4 release
d46530
d46530
* Thu Jan 05 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.3-3
d46530
- Escape %%{buildroot} in changelog
d46530
- Remove empty %%pre section
d46530
d46530
* Wed Jan 04 2012 Christophe Fergeau <cfergeau@redhat.com> - 3.3.3-2
d46530
- Use %%{buildroot} instead of $RPM_BUILD_ROOT
d46530
- Remove unneeded patch
d46530
- Add missing dependency on fuseiso
d46530
d46530
* Fri Dec 23 2011 Christophe Fergeau <cfergeau@redhat.com> - 3.3.3-1
d46530
- Initial import
d46530