Update to 3.7.5
This commit is contained in:
parent
63f0d711b3
commit
8d83340571
1
.gitignore
vendored
1
.gitignore
vendored
@ -21,3 +21,4 @@
|
|||||||
/gnome-online-accounts-3.7.2.tar.xz
|
/gnome-online-accounts-3.7.2.tar.xz
|
||||||
/gnome-online-accounts-3.7.3.tar.xz
|
/gnome-online-accounts-3.7.3.tar.xz
|
||||||
/gnome-online-accounts-3.7.4.tar.xz
|
/gnome-online-accounts-3.7.4.tar.xz
|
||||||
|
/gnome-online-accounts-3.7.5.tar.xz
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Name: gnome-online-accounts
|
Name: gnome-online-accounts
|
||||||
Version: 3.7.4
|
Version: 3.7.5
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Provide online accounts information
|
Summary: Provide online accounts information
|
||||||
|
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
@ -8,6 +8,7 @@ License: LGPLv2+
|
|||||||
URL: https://live.gnome.org/GnomeOnlineAccounts
|
URL: https://live.gnome.org/GnomeOnlineAccounts
|
||||||
Source0: http://download.gnome.org/sources/gnome-online-accounts/3.7/%{name}-%{version}.tar.xz
|
Source0: http://download.gnome.org/sources/gnome-online-accounts/3.7/%{name}-%{version}.tar.xz
|
||||||
|
|
||||||
|
BuildRequires: desktop-file-utils
|
||||||
BuildRequires: gcr-devel
|
BuildRequires: gcr-devel
|
||||||
BuildRequires: glib2-devel >= 2.35
|
BuildRequires: glib2-devel >= 2.35
|
||||||
BuildRequires: gtk3-devel >= 3.5.1
|
BuildRequires: gtk3-devel >= 3.5.1
|
||||||
@ -47,6 +48,7 @@ files for developing applications that use gnome-online-accounts.
|
|||||||
--enable-gtk-doc \
|
--enable-gtk-doc \
|
||||||
--enable-exchange \
|
--enable-exchange \
|
||||||
--enable-facebook \
|
--enable-facebook \
|
||||||
|
--enable-google \
|
||||||
--enable-kerberos \
|
--enable-kerberos \
|
||||||
--enable-owncloud \
|
--enable-owncloud \
|
||||||
--enable-windows-live
|
--enable-windows-live
|
||||||
@ -56,14 +58,18 @@ make %{?_smp_mflags}
|
|||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la $RPM_BUILD_ROOT/%{_libdir}/control-center-1/panels/*.la
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la $RPM_BUILD_ROOT/%{_libdir}/control-center-1/panels/*.la
|
||||||
|
|
||||||
|
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/goa-daemon.desktop
|
||||||
|
|
||||||
%find_lang %{name}
|
%find_lang %{name}
|
||||||
|
|
||||||
%post
|
%post
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
|
/usr/bin/update-desktop-database &> /dev/null || :
|
||||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
touch --no-create %{_datadir}/icons/hicolor &>/dev/null || :
|
||||||
|
|
||||||
%postun
|
%postun
|
||||||
/sbin/ldconfig
|
/sbin/ldconfig
|
||||||
|
/usr/bin/update-desktop-database &> /dev/null || :
|
||||||
if [ $1 -eq 0 ] ; then
|
if [ $1 -eq 0 ] ; then
|
||||||
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
touch --no-create %{_datadir}/icons/hicolor &>/dev/null
|
||||||
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
||||||
@ -80,6 +86,7 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||||||
%{_libdir}/libgoa-backend-1.0.so.0
|
%{_libdir}/libgoa-backend-1.0.so.0
|
||||||
%{_libdir}/libgoa-backend-1.0.so.0.0.0
|
%{_libdir}/libgoa-backend-1.0.so.0.0.0
|
||||||
%{_prefix}/libexec/goa-daemon
|
%{_prefix}/libexec/goa-daemon
|
||||||
|
%{_datadir}/applications/goa-daemon.desktop
|
||||||
%{_datadir}/dbus-1/services/org.gnome.OnlineAccounts.service
|
%{_datadir}/dbus-1/services/org.gnome.OnlineAccounts.service
|
||||||
%{_datadir}/icons/hicolor/*/apps/goa-*.png
|
%{_datadir}/icons/hicolor/*/apps/goa-*.png
|
||||||
%{_datadir}/man/man8/goa-daemon.8.gz
|
%{_datadir}/man/man8/goa-daemon.8.gz
|
||||||
@ -98,6 +105,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || :
|
|||||||
%{_libdir}/goa-1.0/include
|
%{_libdir}/goa-1.0/include
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Feb 06 2013 Debarshi Ray <rishi@fedoraproject.org> - 3.7.5-1
|
||||||
|
- Update to 3.7.5
|
||||||
|
|
||||||
* Wed Feb 06 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.4-2
|
* Wed Feb 06 2013 Kalev Lember <kalevlember@gmail.com> - 3.7.4-2
|
||||||
- Rebuilt for libgcr soname bump
|
- Rebuilt for libgcr soname bump
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user