Blame SPECS/gnome-boxes.spec

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