Blame SPECS/gnome-photos.spec

a2e38e
%global tarball_version %%(echo %{version} | tr '~' '.')
a2e38e
%global major_version %%(echo %%{tarball_version} | cut -d. -f1)
a2e38e
a2e38e
%global cairo_version 1.14.0
a2e38e
%global dazzle_version 3.26.0
a2e38e
%global gdk_pixbuf_version 2.36.8
a2e38e
%global gegl_version 0.4.0
a2e38e
%global gettext_version 0.19.8
a2e38e
%global gexiv2_version 0.10.8
a2e38e
%global glib2_version 2.62.0
a2e38e
%global goa_version 3.8.0
a2e38e
%global gtk3_version 3.22.16
a2e38e
%global handy_version 1.1.90
a2e38e
%global tracker_miners_version 3.0.0
a2e38e
a2e38e
Name:          gnome-photos
a2e38e
Version:       40.0
a2e38e
Release:       4%{?dist}
a2e38e
Summary:       Access, organize and share your photos on GNOME
a2e38e
a2e38e
# GNOME Photos itself is GPLv3+, but the bundled libgd is LGPLv2+
a2e38e
License:       GPLv3+ and LGPLv2+
a2e38e
URL:           https://wiki.gnome.org/Apps/Photos
a2e38e
Source0:       http://download.gnome.org/sources/%{name}/%{major_version}/%{name}-%{tarball_version}.tar.xz
a2e38e
a2e38e
# https://bugzilla.redhat.com/show_bug.cgi?id=1913641
a2e38e
Patch0:        0001-Remove-Facebook-Flickr-and-Google-support.patch
a2e38e
a2e38e
BuildRequires: desktop-file-utils
a2e38e
BuildRequires: docbook-style-xsl
a2e38e
BuildRequires: gcc
a2e38e
BuildRequires: gettext >= %{gettext_version}
a2e38e
BuildRequires: itstool
a2e38e
BuildRequires: libxslt
a2e38e
BuildRequires: meson
a2e38e
BuildRequires: pkgconfig(babl)
a2e38e
BuildRequires: pkgconfig(cairo) >= %{cairo_version}
a2e38e
BuildRequires: pkgconfig(cairo-gobject) >= %{cairo_version}
a2e38e
BuildRequires: pkgconfig(gdk-pixbuf-2.0) >= %{gdk_pixbuf_version}
a2e38e
BuildRequires: pkgconfig(gegl-0.4) >= %{gegl_version}
a2e38e
BuildRequires: pkgconfig(geocode-glib-1.0)
a2e38e
BuildRequires: pkgconfig(gexiv2) >= %{gexiv2_version}
a2e38e
BuildRequires: pkgconfig(gio-2.0) >= %{glib2_version}
a2e38e
BuildRequires: pkgconfig(glib-2.0) >= %{glib2_version}
a2e38e
BuildRequires: pkgconfig(gobject-2.0) >= %{glib2_version}
a2e38e
BuildRequires: pkgconfig(goa-1.0) >= %{goa_version}
a2e38e
BuildRequires: pkgconfig(gsettings-desktop-schemas)
a2e38e
BuildRequires: pkgconfig(gtk+-3.0) >= %{gtk3_version}
a2e38e
BuildRequires: pkgconfig(libdazzle-1.0) >= %{dazzle_version}
a2e38e
BuildRequires: pkgconfig(libhandy-1) >= %{handy_version}
a2e38e
BuildRequires: pkgconfig(libjpeg)
a2e38e
BuildRequires: pkgconfig(tracker-sparql-3.0)
a2e38e
a2e38e
Requires:      baobab
a2e38e
Requires:      gdk-pixbuf2%{?isa} >= %{gdk_pixbuf_version}
a2e38e
Requires:      gegl04%{?_isa} >= %{gegl_version}
a2e38e
Requires:      glib2%{?isa} >= %{glib2_version}
a2e38e
Requires:      gnome-settings-daemon
a2e38e
Requires:      gtk3%{?_isa} >= %{gtk3_version}
a2e38e
Requires:      libdazzle%{?isa} >= %{dazzle_version}
a2e38e
Requires:      libgexiv2%{?_isa} >= %{gexiv2_version}
a2e38e
Requires:      libhandy1%{?_isa} >= %{handy_version}
a2e38e
Requires:      tracker3-miners >= %{tracker_miners_version}
a2e38e
a2e38e
# libgd is not meant to be installed as a system-wide shared library.
a2e38e
# It is just a way for GNOME applications to share widgets and other common
a2e38e
# code on an ad-hoc basis.
a2e38e
Provides: bundled(libgd)
a2e38e
a2e38e
a2e38e
%description
a2e38e
Access, organize and share your photos on GNOME. A simple and elegant
a2e38e
replacement for using a file manager to deal with photos. Enhance, crop
a2e38e
and edit in a snap. Seamless cloud integration is offered through GNOME
a2e38e
Online Accounts.
a2e38e
a2e38e
a2e38e
%package       tests
a2e38e
Summary:       Tests for %{name}
a2e38e
a2e38e
%description   tests
a2e38e
This package contains the installable tests for %{name}.
a2e38e
a2e38e
a2e38e
%prep
a2e38e
%autosetup -p1 -n %{name}-%{tarball_version}
a2e38e
a2e38e
a2e38e
%build
a2e38e
%meson \
a2e38e
  --buildtype=plain \
a2e38e
  -Ddogtail=false \
a2e38e
%if 0%{?flatpak}
a2e38e
  -Dflatpak=true \
a2e38e
%else
a2e38e
  -Dflatpak=false \
a2e38e
%endif
a2e38e
  -Dinstalled_tests=true \
a2e38e
  -Dmanuals=true \
a2e38e
a2e38e
%meson_build
a2e38e
a2e38e
a2e38e
%install
a2e38e
%meson_install
a2e38e
a2e38e
# Upstream doesn't install with desktop-file-install, so let's check
a2e38e
desktop-file-validate %{buildroot}%{_datadir}/applications/org.gnome.Photos.desktop
a2e38e
a2e38e
%find_lang %{name} --with-gnome
a2e38e
a2e38e
a2e38e
%files -f %{name}.lang
a2e38e
%license COPYING
a2e38e
%{_bindir}/%{name}
a2e38e
%{_datadir}/metainfo/org.gnome.Photos.appdata.xml
a2e38e
%{_datadir}/applications/org.gnome.Photos.desktop
a2e38e
%{_datadir}/dbus-1/services/org.gnome.Photos.service
a2e38e
a2e38e
%if 0%{?flatpak}
a2e38e
%{_datadir}/dbus-1/services/org.gnome.Photos.Tracker3.Miner.Extract.service
a2e38e
%{_datadir}/dbus-1/services/org.gnome.Photos.Tracker3.Miner.Files.service
a2e38e
%endif
a2e38e
a2e38e
%{_datadir}/glib-2.0/schemas/org.gnome.photos.gschema.xml
a2e38e
%{_datadir}/gnome-shell/
a2e38e
%{_datadir}/icons/hicolor/scalable/apps/org.gnome.Photos.svg
a2e38e
%{_datadir}/icons/hicolor/symbolic/apps/org.gnome.Photos-symbolic.svg
a2e38e
%{_datadir}/man/man1/%{name}.1*
a2e38e
a2e38e
%if 0%{?flatpak}
a2e38e
%{_datadir}/tracker3-miners/domain-ontologies/org.gnome.Photos.rule
a2e38e
%endif
a2e38e
a2e38e
%{_docdir}/%{name}
a2e38e
a2e38e
%dir %{_libdir}/%{name}
a2e38e
%{_libdir}/%{name}/libgnome-photos.so
a2e38e
a2e38e
%{_libexecdir}/%{name}-thumbnailer
a2e38e
a2e38e
%files tests
a2e38e
%{_libexecdir}/installed-tests/%{name}
a2e38e
%{_datadir}/installed-tests
a2e38e
a2e38e
a2e38e
%changelog
a2e38e
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 40.0-4
a2e38e
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
a2e38e
  Related: rhbz#1991688
a2e38e
a2e38e
* Fri Apr 23 2021 Debarshi Ray <rishi@fedoraproject.org> - 40.0-3
a2e38e
- Add gcc to BuildRequires
a2e38e
- Remove Facebook, Flickr and Google support
a2e38e
Resolves: #1913641
a2e38e
a2e38e
* Thu Apr 15 2021 Mohan Boddu <mboddu@redhat.com> - 40.0-2
a2e38e
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
a2e38e
a2e38e
* Thu Mar 25 2021 Kalev Lember <klember@redhat.com> - 40.0-1
a2e38e
- Update to 40.0
a2e38e
a2e38e
* Mon Mar 22 2021 Debarshi Ray <rishi@fedoraproject.org> - 40~rc-3
a2e38e
- The gnome-online-miners package won't be part of RHEL 9
a2e38e
a2e38e
* Fri Mar 19 2021 Debarshi Ray <rishi@fedoraproject.org> - 40~rc-2
a2e38e
- Update to 40.rc
a2e38e
a2e38e
* Fri Mar 12 2021 Debarshi Ray <rishi@fedoraproject.org> - 40~beta-2
a2e38e
- Unbreak Flatpak builds on hosts without Tracker 3
a2e38e
a2e38e
* Fri Mar 12 2021 Debarshi Ray <rishi@fedoraproject.org> - 40~beta-1
a2e38e
- Update to 40.beta
a2e38e
a2e38e
* Tue Feb 16 2021 Debarshi Ray <rishi@fedoraproject.org> - 3.38.1-1
a2e38e
- Update to 3.38.1
a2e38e
a2e38e
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 3.38.0-3
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
a2e38e
a2e38e
* Mon Dec 14 2020 Debarshi Ray <rishi@fedoraproject.org> - 3.38.0-2
a2e38e
- Remove python3-dogtail from Requires on RHEL 9
a2e38e
a2e38e
* Wed Sep 23 2020 Debarshi Ray <rishi@fedoraproject.org> - 3.38.0-1
a2e38e
- Update to 3.38.0
a2e38e
a2e38e
* Mon Aug 24 2020 Debarshi Ray <rishi@fedoraproject.org> - 3.37.91.1-1
a2e38e
- Update to 3.37.91.1
a2e38e
a2e38e
* Mon Aug 24 2020 Debarshi Ray <rishi@fedoraproject.org> - 3.37.91-1
a2e38e
- Update to 3.37.91
a2e38e
a2e38e
* Tue Aug 11 2020 Debarshi Ray <rishi@fedoraproject.org> - 3.37.2-4
a2e38e
- The dLeyna stack won't be part of RHEL 9
a2e38e
a2e38e
* Sat Aug 01 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.37.2-3
a2e38e
- Second attempt - Rebuilt for
a2e38e
  https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
a2e38e
a2e38e
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.37.2-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
a2e38e
a2e38e
* Fri May 22 2020 Debarshi Ray <rishi@fedoraproject.org> - 3.37.2-1
a2e38e
- Update to 3.37.2
a2e38e
a2e38e
* Wed May 20 2020 Debarshi Ray <rishi@fedoraproject.org> - 3.34.2-1
a2e38e
- Update to 3.34.2
a2e38e
a2e38e
* Thu Feb 13 2020 Kalev Lember <klember@redhat.com> - 3.34.1-1
a2e38e
- Update to 3.34.1
a2e38e
a2e38e
* Tue Jan 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 3.34.0-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
a2e38e
a2e38e
* Wed Sep 11 2019 Kalev Lember <klember@redhat.com> - 3.34.0-1
a2e38e
- Update to 3.34.0
a2e38e
a2e38e
* Tue Aug 20 2019 Debarshi Ray <rishi@fedoraproject.org> - 3.33.91-1
a2e38e
- Update to 3.33.91
a2e38e
a2e38e
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.32.0-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
a2e38e
a2e38e
* Mon Mar 18 2019 Kalev Lember <klember@redhat.com> - 3.32.0-1
a2e38e
- Update to 3.32.0
a2e38e
a2e38e
* Thu Feb 21 2019 Debarshi Ray <rishi@fedoraproject.org> - 3.31.91-1
a2e38e
- Update to 3.31.91
a2e38e
a2e38e
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 3.31.3-3
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
a2e38e
a2e38e
* Mon Dec 17 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.31.3-2
a2e38e
- Update dependencies
a2e38e
a2e38e
* Sun Dec 16 2018 Phil Wyett <philwyett@kathenas.org> - 3.31.3-1
a2e38e
- Update to 3.31.3
a2e38e
a2e38e
* Thu Nov 15 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.31.2-1
a2e38e
- Update to 3.31.2
a2e38e
a2e38e
* Sat Oct 13 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.31.1-2
a2e38e
- Build without git-core
a2e38e
a2e38e
* Sat Oct 13 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.31.1-1
a2e38e
- Update to 3.31.1
a2e38e
- Switch to the Meson build system
a2e38e
- Add %%license
a2e38e
- Switch to %%autosetup
a2e38e
- Update dependencies
a2e38e
a2e38e
* Thu Sep 27 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.30.1-1
a2e38e
- Update to 3.30.1
a2e38e
a2e38e
* Thu Sep 06 2018 Kalev Lember <klember@redhat.com> - 3.30.0-1
a2e38e
- Update to 3.30.0
a2e38e
a2e38e
* Mon Sep 03 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.29.92-1
a2e38e
- Update to 3.29.92
a2e38e
a2e38e
* Tue Aug 14 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.29.91-1
a2e38e
- Update to 3.29.91
a2e38e
a2e38e
* Thu Aug 09 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.29.4-2
a2e38e
- Remove Requires: gettext-libs - it is extraneous
a2e38e
a2e38e
* Wed Jul 18 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.29.4-1
a2e38e
- Update to 3.29.4
a2e38e
a2e38e
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.29.3-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
a2e38e
a2e38e
* Fri Jun 22 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.29.3-1
a2e38e
- Update to 3.29.3
a2e38e
- Drop the run-time requirement on ImageMagick
a2e38e
a2e38e
* Thu Mar 15 2018 Kalev Lember <klember@redhat.com> - 3.28.0-1
a2e38e
- Update to 3.28.0
a2e38e
a2e38e
* Wed Mar 07 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.27.92-1
a2e38e
- Update to 3.27.92
a2e38e
a2e38e
* Mon Feb 19 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.27.90-1
a2e38e
- Update to 3.27.90
a2e38e
a2e38e
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 3.27.4-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
a2e38e
a2e38e
* Fri Jan 12 2018 Debarshi Ray <rishi@fedoraproject.org> - 3.27.4-1
a2e38e
- Update to 3.27.4
a2e38e
a2e38e
* Thu Jan 11 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 3.27.3-2
a2e38e
- Remove obsolete scriptlets
a2e38e
a2e38e
* Wed Dec 13 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.27.3-1
a2e38e
- Update to 3.27.3
a2e38e
a2e38e
* Tue Oct 24 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.27.1-1
a2e38e
- Update to 3.27.1
a2e38e
a2e38e
* Sun Oct 08 2017 Kalev Lember <klember@redhat.com> - 3.26.1-1
a2e38e
- Update to 3.26.1
a2e38e
a2e38e
* Tue Sep 19 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.26.0-2
a2e38e
- Add run-time dependency on tracker-miners
a2e38e
a2e38e
* Wed Sep 13 2017 Kalev Lember <klember@redhat.com> - 3.26.0-1
a2e38e
- Update to 3.26.0
a2e38e
a2e38e
* Tue Sep 05 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.25.92-1
a2e38e
- Update to 3.25.92
a2e38e
a2e38e
* Wed Aug 23 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.25.91-1
a2e38e
- Update to 3.25.91
a2e38e
a2e38e
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.25.4-3
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
a2e38e
a2e38e
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.25.4-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
a2e38e
a2e38e
* Wed Jul 19 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.25.4-1
a2e38e
- Update to 3.25.4
a2e38e
a2e38e
* Wed Jun 21 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.25.3-1
a2e38e
- Update to 3.25.3
a2e38e
a2e38e
* Wed May 10 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.25.1-1
a2e38e
- Update to 3.25.1
a2e38e
a2e38e
* Tue Apr 11 2017 Kalev Lember <klember@redhat.com> - 3.24.1-1
a2e38e
- Update to 3.24.1
a2e38e
a2e38e
* Tue Mar 21 2017 Kalev Lember <klember@redhat.com> - 3.24.0-1
a2e38e
- Update to 3.24.0
a2e38e
a2e38e
* Tue Mar 14 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.23.92-1
a2e38e
- Update to 3.23.92
a2e38e
a2e38e
* Fri Mar 03 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.23.91-1
a2e38e
- Update to 3.23.91
a2e38e
a2e38e
* Mon Feb 20 2017 Debarshi Ray <rishi@fedoraproject.org> - 3.23.90-1
a2e38e
- Update to 3.23.90
a2e38e
a2e38e
* Mon Feb 13 2017 Richard Hughes <rhughes@redhat.com> - 3.23.4-1
a2e38e
- Update to 3.23.4
a2e38e
a2e38e
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 3.23.2-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
a2e38e
a2e38e
* Thu Dec 01 2016 Kalev Lember <klember@redhat.com> - 3.23.2-1
a2e38e
- Update to 3.23.2
a2e38e
a2e38e
* Wed Nov 23 2016 Kalev Lember <klember@redhat.com> - 3.22.2-1
a2e38e
- Update to 3.22.2
a2e38e
a2e38e
* Thu Oct 06 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.22.1-1
a2e38e
- Update to 3.22.1
a2e38e
- Use --disable-silent-rules
a2e38e
a2e38e
* Mon Sep 19 2016 Kalev Lember <klember@redhat.com> - 3.22.0-1
a2e38e
- Update to 3.22.0
a2e38e
a2e38e
* Mon Sep 12 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.21.92-1
a2e38e
- Update to 3.21.92
a2e38e
- Use make_build macro
a2e38e
- Update minimum required versions; use pkgconfig(...) for BRs
a2e38e
a2e38e
* Sat Sep 03 2016 Kalev Lember <klember@redhat.com> - 3.21.91-1
a2e38e
- Update to 3.21.91
a2e38e
a2e38e
* Mon Aug 22 2016 Kalev Lember <klember@redhat.com> - 3.21.90-1
a2e38e
- Update to 3.21.90
a2e38e
a2e38e
* Wed Jul 20 2016 Richard Hughes <rhughes@redhat.com> - 3.21.4-1
a2e38e
- Update to 3.21.4
a2e38e
a2e38e
* Wed Jun 22 2016 Richard Hughes <rhughes@redhat.com> - 3.21.3-1
a2e38e
- Update to 3.21.3
a2e38e
a2e38e
* Tue May 03 2016 Kalev Lember <klember@redhat.com> - 3.21.1-1
a2e38e
- Update to 3.21.1
a2e38e
a2e38e
* Wed Apr 13 2016 Kalev Lember <klember@redhat.com> - 3.20.1-1
a2e38e
- Update to 3.20.1
a2e38e
a2e38e
* Tue Mar 22 2016 Kalev Lember <klember@redhat.com> - 3.20.0-1
a2e38e
- Update to 3.20.0
a2e38e
a2e38e
* Wed Mar 16 2016 Kalev Lember <klember@redhat.com> - 3.19.92-1
a2e38e
- Update to 3.19.92
a2e38e
a2e38e
* Fri Mar 04 2016 Richard Hughes <rhughes@redhat.com> - 3.19.91-1
a2e38e
- Update to 3.19.91
a2e38e
a2e38e
* Thu Feb 18 2016 Richard Hughes <rhughes@redhat.com> - 3.19.90-1
a2e38e
- Update to 3.19.90
a2e38e
a2e38e
* Wed Feb 03 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.19.4-3
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
a2e38e
a2e38e
* Fri Jan 29 2016 Debarshi Ray <rishi@fedoraproject.org> - 3.19.4-2
a2e38e
- Use upstreamed screenshots
a2e38e
a2e38e
* Wed Jan 20 2016 Kalev Lember <klember@redhat.com> - 3.19.4-1
a2e38e
- Update to 3.19.4
a2e38e
a2e38e
* Fri Dec 18 2015 Kalev Lember <klember@redhat.com> - 3.19.3-2
a2e38e
- Build with grilo 0.3
a2e38e
a2e38e
* Wed Dec 16 2015 Kalev Lember <klember@redhat.com> - 3.19.3-1
a2e38e
- Update to 3.19.3
a2e38e
- Build with grilo 0.2
a2e38e
- Define minimum gegl version
a2e38e
- Use make_install macro
a2e38e
a2e38e
* Tue Dec 08 2015 Debarshi Ray <rishi@fedoraproject.org> - 3.19.2-1
a2e38e
- Update to 3.19.2
a2e38e
a2e38e
* Tue Nov 10 2015 Kalev Lember <klember@redhat.com> - 3.18.2-1
a2e38e
- Update to 3.18.2
a2e38e
a2e38e
* Mon Oct 12 2015 Kalev Lember <klember@redhat.com> - 3.18.1-1
a2e38e
- Update to 3.18.1
a2e38e
a2e38e
* Tue Sep 22 2015 Kalev Lember <klember@redhat.com> - 3.18.0-1
a2e38e
- Update to 3.18.0
a2e38e
a2e38e
* Wed Jul 22 2015 David King <amigadave@amigadave.com> - 3.17.2-3
a2e38e
- Bump for new gnome-desktop3
a2e38e
a2e38e
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.17.2-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
a2e38e
a2e38e
* Fri May 29 2015 Debarshi Ray <rishi@fedoraproject.org> - 3.17.2-1
a2e38e
- Update to 3.17.2
a2e38e
a2e38e
* Wed May 13 2015 Debarshi Ray <rishi@fedoraproject.org> - 3.16.2-1
a2e38e
- Update to 3.16.2
a2e38e
a2e38e
* Mon Apr 27 2015 David King <amigadave@amigadave.com> - 3.16.0-3
a2e38e
- Rebuild for libgdata soname bump
a2e38e
a2e38e
* Mon Mar 30 2015 Richard Hughes <rhughes@redhat.com> - 3.16.0-2
a2e38e
- Use better AppData screenshots
a2e38e
a2e38e
* Mon Mar 23 2015 Kalev Lember <kalevlember@gmail.com> - 3.16.0-1
a2e38e
- Update to 3.16.0
a2e38e
a2e38e
* Fri Mar 13 2015 Kalev Lember <kalevlember@gmail.com> - 3.15.91-1
a2e38e
- Update to 3.15.91
a2e38e
a2e38e
* Wed Feb 25 2015 Richard Hughes <rhughes@redhat.com> - 3.15.90-1
a2e38e
- Update to 3.15.90
a2e38e
a2e38e
* Thu Jan 22 2015 Richard Hughes <rhughes@redhat.com> - 3.15.4-1
a2e38e
- Update to 3.15.4
a2e38e
a2e38e
* Fri Dec 19 2014 Richard Hughes <rhughes@redhat.com> - 3.15.3-1
a2e38e
- Update to 3.15.3
a2e38e
a2e38e
* Sat Nov 29 2014 Kalev Lember <kalevlember@gmail.com> - 3.15.2-1
a2e38e
- Update to 3.15.2
a2e38e
a2e38e
* Wed Nov 12 2014 Vadim Rutkovsky <vrutkovs@redhat.com> - 3.14.2-2
a2e38e
- Build installed tests
a2e38e
a2e38e
* Mon Nov 10 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.2-1
a2e38e
- Update to 3.14.2
a2e38e
a2e38e
* Wed Sep 24 2014 Kalev Lember <kalevlember@gmail.com> - 3.14.0-1
a2e38e
- Update to 3.14.0
a2e38e
- Set minimum required versions for libgdata and gtk3
a2e38e
a2e38e
* Wed Sep 17 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.92-1
a2e38e
- Update to 3.13.92
a2e38e
a2e38e
* Fri Sep 05 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.91-1
a2e38e
- Update to 3.13.91
a2e38e
- Include HighContrast icons
a2e38e
a2e38e
* Sat Aug 16 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.13.4-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
a2e38e
a2e38e
* Thu Jul 24 2014 Kalev Lember <kalevlember@gmail.com> - 3.13.4-1
a2e38e
- Update to 3.13.4
a2e38e
a2e38e
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.12.1-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
a2e38e
a2e38e
* Wed Apr 16 2014 Kalev Lember <kalevlember@gmail.com> - 3.12.1-1
a2e38e
- Update to 3.12.1
a2e38e
- Include help files
a2e38e
a2e38e
* Mon Mar 24 2014 Richard Hughes <rhughes@redhat.com> - 3.12.0-1
a2e38e
- Update to 3.12.0
a2e38e
a2e38e
* Tue Mar 18 2014 Richard Hughes <rhughes@redhat.com> - 3.11.92-1
a2e38e
- Update to 3.11.92
a2e38e
a2e38e
* Sat Mar 08 2014 Richard Hughes <rhughes@redhat.com> - 3.11.91-1
a2e38e
- Update to 3.11.91
a2e38e
a2e38e
* Thu Feb 20 2014 Kalev Lember <kalevlember@gmail.com> - 3.11.90-1
a2e38e
- Update to 3.11.90
a2e38e
a2e38e
* Wed Feb 19 2014 Richard Hughes <rhughes@redhat.com> - 3.11.5-2
a2e38e
- Rebuilt for gnome-desktop soname bump
a2e38e
a2e38e
* Thu Feb 06 2014 Kalev Lember <kalevlember@gmail.com> - 3.11.5-1
a2e38e
- Update to 3.11.5
a2e38e
a2e38e
* Wed Jan 15 2014 Richard Hughes <rhughes@redhat.com> - 3.11.4-1
a2e38e
- Update to 3.11.4
a2e38e
a2e38e
* Tue Dec 17 2013 Richard Hughes <rhughes@redhat.com> - 3.11.3-1
a2e38e
- Update to 3.11.3
a2e38e
a2e38e
* Mon Nov 25 2013 Richard Hughes <rhughes@redhat.com> - 3.11.2-1
a2e38e
- Update to 3.11.2
a2e38e
a2e38e
* Thu Nov 14 2013 Richard Hughes <rhughes@redhat.com> - 3.10.2-1
a2e38e
- Update to 3.10.2
a2e38e
a2e38e
* Tue Oct 29 2013 Richard Hughes <rhughes@redhat.com> - 3.10.1-1
a2e38e
- Update to 3.10.1
a2e38e
a2e38e
* Wed Sep 25 2013 Richard Hughes <rhughes@redhat.com> - 3.10.0-1
a2e38e
- Update to 3.10.0
a2e38e
a2e38e
* Wed Sep 18 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.92-1
a2e38e
- Update to 3.9.92
a2e38e
- Include the appdata file
a2e38e
a2e38e
* Wed Sep 04 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.91-1
a2e38e
- Update to 3.9.91
a2e38e
a2e38e
* Thu Aug 22 2013 Kalev Lember <kalevlember@gmail.com> - 3.9.90-1
a2e38e
- Update to 3.9.90
a2e38e
a2e38e
* Sun Aug 04 2013 Debarshi Ray <rishi@fedoraproject.org> - 3.9.5.1-1
a2e38e
- Update to 3.9.5.1
a2e38e
a2e38e
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.9.4-2
a2e38e
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
a2e38e
a2e38e
* Tue Jul 16 2013 Debarshi Ray <rishi@fedoraproject.org> - 3.9.4-1
a2e38e
- Update to 3.9.4
a2e38e
a2e38e
* Tue May 14 2013 Richard Hughes <rhughes@redhat.com> - 3.8.2-1
a2e38e
- Update to 3.8.2
a2e38e
a2e38e
* Mon Apr 15 2013 Richard Hughes <rhughes@redhat.com> - 3.8.0-1
a2e38e
- Update to 3.8.0
a2e38e
- Drop upstreamed packages
a2e38e
- Fix BRs
a2e38e
a2e38e
* Thu Feb 21 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.3-6
a2e38e
- Rebuilt for cogl soname bump
a2e38e
a2e38e
* Wed Feb 20 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.3-5
a2e38e
- Rebuilt for libgnome-desktop soname bump
a2e38e
a2e38e
* Mon Jan 28 2013 Matthias Clasen <mclasen@redhat.com> - 3.7.3-4
a2e38e
- Rebuild for new tracker
a2e38e
a2e38e
* Fri Jan 25 2013 Peter Robinson <pbrobinson@fedoraproject.org> 3.7.3-3
a2e38e
- Rebuild for new cogl
a2e38e
a2e38e
* Fri Dec 21 2012 Kalev Lember <kalevlember@gmail.com> - 3.7.3-2
a2e38e
- Rebuilt for libgnome-desktop-3 3.7.3 soname bump
a2e38e
a2e38e
* Wed Dec 19 2012 Debarshi Ray <rishi@fedoraproject.org> - 3.7.3-1
a2e38e
- Update to 3.7.3
a2e38e
a2e38e
* Sat Dec 01 2012 Mathieu Bridon <bochecha@fedoraproject.org> - 3.7.2-4
a2e38e
* Fix based on Ivan's review feedback:
a2e38e
  - Add a comment on the multi-licensing situation
a2e38e
a2e38e
* Thu Nov 29 2012 Mathieu Bridon <bochecha@fedoraproject.org> - 3.7.2-3
a2e38e
* Fixes based on Ivan's review feedback:
a2e38e
  - Fix the upstream URL
a2e38e
  - Fix the License tag
a2e38e
  - Preserve timestamps when installing
a2e38e
a2e38e
* Sun Nov 25 2012 Mathieu Bridon <bochecha@fedoraproject.org> - 3.7.2-2
a2e38e
* Fixes based on Debarshi's review feedback:
a2e38e
  - Fix build requirement on gdk-pixbuf2-devel
a2e38e
  - Add missing Provides on the bundled libgd
a2e38e
a2e38e
* Sun Nov 18 2012 Mathieu Bridon <bochecha@fedoraproject.org> - 3.7.2-1
a2e38e
- Initial package for Fedora.