Accepting request 99041 from GNOME:Factory
Pushing G:F OBS-URL: https://build.opensuse.org/request/show/99041 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gnome-online-accounts?expand=0&rev=11
This commit is contained in:
commit
051f986356
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:310eb898205d78aa90b96ce0fdab39e64ffbad7c860a845968928c3d20c7a2c5
|
||||
size 536233
|
3
gnome-online-accounts-3.3.0.tar.xz
Normal file
3
gnome-online-accounts-3.3.0.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:c5c0bc70b46f5ed5d6aa734834b2e0ef73fb8eddd9fd20606f0582043efb5d22
|
||||
size 472028
|
@ -1,3 +1,22 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 20 09:47:21 UTC 2011 - vuntz@opensuse.org
|
||||
|
||||
- Update to version 3.3.0:
|
||||
+ Add support for Windows Live.
|
||||
+ Facebook provider: Add Chat.
|
||||
+ GoaOAuth2Based: Add ClientId and ClientSecret properties.
|
||||
+ Correctly launch the preferences from the daemon.
|
||||
+ Remove unused org.gnome.OnlineAccounts.PasswordBased D-Bus
|
||||
interface.
|
||||
+ Build fixes.
|
||||
+ Updated translations.
|
||||
- Add xz BuildRequires because we can't build a package for a
|
||||
xz-compressed tarball without explicitly specifying that... See
|
||||
bnc#697467 for more details.
|
||||
- Add new --enable-windows-live option to configure.
|
||||
- Split typelib file into typelib-1_0-Goa-1_0 subpackage.
|
||||
- Add typelib-1_0-Goa-1_0 Requires to devel subpackage.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 17 19:33:49 UTC 2011 - dimstar@opensuse.org
|
||||
|
||||
|
@ -15,16 +15,14 @@
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
|
||||
|
||||
Name: gnome-online-accounts
|
||||
Version: 3.2.1
|
||||
Release: 1
|
||||
License: LGPL-2.1+
|
||||
Version: 3.3.0
|
||||
Release: 0
|
||||
Summary: GNOME service to access online accounts
|
||||
Url: http://www.gnome.org
|
||||
License: LGPL-2.1+
|
||||
Group: System/GUI/GNOME
|
||||
Source: http://download.gnome.org/sources/gnome-online-accounts/3.2/%{name}-%{version}.tar.bz2
|
||||
Url: http://www.gnome.org
|
||||
Source: http://download.gnome.org/sources/gnome-online-accounts/3.3/%{name}-%{version}.tar.xz
|
||||
BuildRequires: docbook-xsl-stylesheets
|
||||
BuildRequires: gobject-introspection-devel
|
||||
BuildRequires: gtk-doc
|
||||
@ -33,6 +31,8 @@ BuildRequires: intltool
|
||||
# duplicating them in the .spec file here, we include them from libsocialweb-branding.
|
||||
BuildRequires: libsocialweb-branding-openSUSE
|
||||
BuildRequires: update-desktop-files
|
||||
# Only needed because we don't (and won't) support building xz tarballs by default... See bnc#697467
|
||||
BuildRequires: xz
|
||||
BuildRequires: pkgconfig(glib-2.0)
|
||||
BuildRequires: pkgconfig(gnome-keyring-1)
|
||||
BuildRequires: pkgconfig(gtk+-3.0)
|
||||
@ -49,7 +49,6 @@ gnome-online-accounts provides interfaces so applications and
|
||||
libraries in GNOME can access the user's online accounts.
|
||||
|
||||
%package -n libgoa-1_0-0
|
||||
License: LGPL-2.1+
|
||||
Summary: GNOME service to access online accounts -- Client Library
|
||||
Group: System/Libraries
|
||||
Recommends: %{name}
|
||||
@ -58,8 +57,18 @@ Recommends: %{name}
|
||||
gnome-online-accounts provides interfaces so applications and
|
||||
libraries in GNOME can access the user's online accounts.
|
||||
|
||||
%package -n typelib-1_0-Goa-1_0
|
||||
Summary: GNOME service to access online accounts -- Introspection bindings
|
||||
Group: System/Libraries
|
||||
|
||||
%description -n typelib-1_0-Goa-1_0
|
||||
gnome-online-accounts provides interfaces so applications and
|
||||
libraries in GNOME can access the user's online accounts.
|
||||
|
||||
This package provides the GObject Introspection bindings for the libgoa
|
||||
client library.
|
||||
|
||||
%package -n libgoa-backend-1_0-0
|
||||
License: LGPL-2.1+
|
||||
Summary: GNOME service to access online accounts -- Backend Library
|
||||
Group: System/Libraries
|
||||
Recommends: %{name}
|
||||
@ -69,11 +78,11 @@ gnome-online-accounts provides interfaces so applications and
|
||||
libraries in GNOME can access the user's online accounts.
|
||||
|
||||
%package devel
|
||||
License: LGPL-2.1+
|
||||
Summary: GNOME service to access online accounts -- Development Files
|
||||
Group: Development/Libraries/GNOME
|
||||
Requires: libgoa-1_0-0 = %{version}
|
||||
Requires: libgoa-backend-1_0-0 = %{version}
|
||||
Requires: typelib-1_0-Goa-1_0 = %{version}
|
||||
|
||||
%description devel
|
||||
gnome-online-accounts provides interfaces so applications and
|
||||
@ -97,7 +106,8 @@ TWITTER_SECRET=$(echo $TWITTER | awk '{print $2}')
|
||||
--enable-twitter \
|
||||
--with-twitter-consumer-key=$TWITTER_KEY \
|
||||
--with-twitter-consumer-secret=$TWITTER_SECRET \
|
||||
--enable-google
|
||||
--enable-google \
|
||||
--enable-windows-live
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
@ -119,7 +129,6 @@ rm -rf %{buildroot}
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%doc COPYING NEWS
|
||||
%{_libdir}/girepository-1.0/Goa-1.0.typelib
|
||||
%{_libexecdir}/goa-daemon
|
||||
%{_datadir}/dbus-1/services/org.gnome.OnlineAccounts.service
|
||||
%{_datadir}/icons/hicolor/*/apps/goa-account*.png
|
||||
@ -129,6 +138,10 @@ rm -rf %{buildroot}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libgoa-1.0.so.*
|
||||
|
||||
%files -n typelib-1_0-Goa-1_0
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/girepository-1.0/Goa-1.0.typelib
|
||||
|
||||
%files -n libgoa-backend-1_0-0
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libgoa-backend-1.0.so.*
|
||||
|
Loading…
Reference in New Issue
Block a user