This commit is contained in:
parent
b07cf89237
commit
7ab7d234ea
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:232975ed9a80ede97190e1cd3650bcd96beb01c2c2d1ab74e938580efaa65bf9
|
|
||||||
size 1563593
|
|
3
telepathy-glib-0.7.26.tar.bz2
Normal file
3
telepathy-glib-0.7.26.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:44e6e402079392e98d3286b9e38725a6fe6beceb6bec429c7254dfeb02c581b5
|
||||||
|
size 1592870
|
@ -1,3 +1,43 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 17 03:36:55 CET 2009 - vuntz@novell.com
|
||||||
|
|
||||||
|
- Update to version 0.7.26:
|
||||||
|
+ Enhancements:
|
||||||
|
- Add tp_connection_manager_call_when_ready()
|
||||||
|
- When constructing TpConnectionManager, if the .manager file
|
||||||
|
is missing or can't be read, always try to activate the
|
||||||
|
connection manager (in practice, this is what's wanted)
|
||||||
|
- fdo#18291: when listing connection managers, wait for them to
|
||||||
|
all be ready
|
||||||
|
- fdo#18056: add method-based accessors for TpConnectionManager
|
||||||
|
members
|
||||||
|
- fdo#17519: track the Connection's SelfHandle property in
|
||||||
|
TpConnection
|
||||||
|
- Add tp_dbus_daemon_dup(), convenient API to share a
|
||||||
|
starter-bus connection
|
||||||
|
- Generate GTypes for arrays of mappings, and improve use of
|
||||||
|
the type-generation functions
|
||||||
|
- Add tp_intset_new_containing(), a convenient factory for sets
|
||||||
|
with exactly one member
|
||||||
|
+ Deprecations:
|
||||||
|
- Deprecate tp_get_bus_proxy()
|
||||||
|
+ Fixes:
|
||||||
|
- Reduce our reliance on making a DBusGProxy for the
|
||||||
|
dbus-daemon (working towards avoiding overly-broad
|
||||||
|
NameOwnerChanged matches)
|
||||||
|
- fdo#18832 (partially addressed): document that tp_get_bus()
|
||||||
|
can call exit() and why, and discourage it in processes that
|
||||||
|
aren't totally reliant on D-Bus
|
||||||
|
- fdo#18207: reliably emit TpConnectionManager::got-info signal
|
||||||
|
(although tp_connection_manager_call_when_ready() should be
|
||||||
|
used instead)
|
||||||
|
- Fix some assertion failures in TpConnectionManager when
|
||||||
|
.manager files contain surprising types
|
||||||
|
- Parse all currently supported types in .manager files
|
||||||
|
+ Miscellaneous:
|
||||||
|
- Add regression test coverage for TpConnectionManager
|
||||||
|
- Remove .la file.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Feb 1 18:23:47 EST 2009 - mboman@suse.de
|
Sun Feb 1 18:23:47 EST 2009 - mboman@suse.de
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package telepathy-glib (Version 0.7.25)
|
# spec file for package telepathy-glib (Version 0.7.26)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2009 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -24,7 +24,7 @@ BuildRequires: dbus-1-glib-devel
|
|||||||
BuildRequires: gtk-doc
|
BuildRequires: gtk-doc
|
||||||
BuildRequires: libxslt-devel
|
BuildRequires: libxslt-devel
|
||||||
BuildRequires: python-xml
|
BuildRequires: python-xml
|
||||||
Version: 0.7.25
|
Version: 0.7.26
|
||||||
Release: 1
|
Release: 1
|
||||||
License: LGPL v2.1 or later
|
License: LGPL v2.1 or later
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
@ -140,8 +140,7 @@ Authors:
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
%makeinstall
|
%makeinstall
|
||||||
# remove .la files. See bnc #357465
|
rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
|
||||||
#rm -f $RPM_BUILD_ROOT/%{_libdir}/*.la
|
|
||||||
|
|
||||||
%post -n libtelepathy-glib0 -p /sbin/ldconfig
|
%post -n libtelepathy-glib0 -p /sbin/ldconfig
|
||||||
|
|
||||||
@ -161,14 +160,50 @@ rm -rf "$RPM_BUILD_ROOT"
|
|||||||
%{_includedir}/telepathy-1.0/telepathy-glib/*
|
%{_includedir}/telepathy-1.0/telepathy-glib/*
|
||||||
%{_libdir}/lib*.so
|
%{_libdir}/lib*.so
|
||||||
%{_libdir}/pkgconfig/*.pc
|
%{_libdir}/pkgconfig/*.pc
|
||||||
%{_libdir}/lib*.la
|
|
||||||
|
|
||||||
%files doc
|
%files doc
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_datadir}/gtk-doc/html/telepathy-glib
|
%{_datadir}/gtk-doc/html/telepathy-glib
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sun Feb 01 2009 mboman@suse.de
|
* Tue Feb 17 2009 vuntz@novell.com
|
||||||
|
- Update to version 0.7.26:
|
||||||
|
+ Enhancements:
|
||||||
|
- Add tp_connection_manager_call_when_ready()
|
||||||
|
- When constructing TpConnectionManager, if the .manager file
|
||||||
|
is missing or can't be read, always try to activate the
|
||||||
|
connection manager (in practice, this is what's wanted)
|
||||||
|
- fdo#18291: when listing connection managers, wait for them to
|
||||||
|
all be ready
|
||||||
|
- fdo#18056: add method-based accessors for TpConnectionManager
|
||||||
|
members
|
||||||
|
- fdo#17519: track the Connection's SelfHandle property in
|
||||||
|
TpConnection
|
||||||
|
- Add tp_dbus_daemon_dup(), convenient API to share a
|
||||||
|
starter-bus connection
|
||||||
|
- Generate GTypes for arrays of mappings, and improve use of
|
||||||
|
the type-generation functions
|
||||||
|
- Add tp_intset_new_containing(), a convenient factory for sets
|
||||||
|
with exactly one member
|
||||||
|
+ Deprecations:
|
||||||
|
- Deprecate tp_get_bus_proxy()
|
||||||
|
+ Fixes:
|
||||||
|
- Reduce our reliance on making a DBusGProxy for the
|
||||||
|
dbus-daemon (working towards avoiding overly-broad
|
||||||
|
NameOwnerChanged matches)
|
||||||
|
- fdo#18832 (partially addressed): document that tp_get_bus()
|
||||||
|
can call exit() and why, and discourage it in processes that
|
||||||
|
aren't totally reliant on D-Bus
|
||||||
|
- fdo#18207: reliably emit TpConnectionManager::got-info signal
|
||||||
|
(although tp_connection_manager_call_when_ready() should be
|
||||||
|
used instead)
|
||||||
|
- Fix some assertion failures in TpConnectionManager when
|
||||||
|
.manager files contain surprising types
|
||||||
|
- Parse all currently supported types in .manager files
|
||||||
|
+ Miscellaneous:
|
||||||
|
- Add regression test coverage for TpConnectionManager
|
||||||
|
- Remove .la file.
|
||||||
|
* Mon Feb 02 2009 mboman@suse.de
|
||||||
- Update to version 0.7.25:
|
- Update to version 0.7.25:
|
||||||
+ fdo#17588: don't break ABI if errors are re-ordered in a future spec
|
+ fdo#17588: don't break ABI if errors are re-ordered in a future spec
|
||||||
version
|
version
|
||||||
@ -180,7 +215,7 @@ rm -rf "$RPM_BUILD_ROOT"
|
|||||||
to be set on the user themselves, and warn if the connection manager
|
to be set on the user themselves, and warn if the connection manager
|
||||||
got this wrong
|
got this wrong
|
||||||
+ Fix a memory leak in tp_presence_mixin_get_statuses()
|
+ Fix a memory leak in tp_presence_mixin_get_statuses()
|
||||||
* Wed Jan 28 2009 hfiguiere@suse.de
|
* Thu Jan 29 2009 hfiguiere@suse.de
|
||||||
- Update to version 0.7.24
|
- Update to version 0.7.24
|
||||||
+ Update to telepathy-spec 0.17.19: better error handling
|
+ Update to telepathy-spec 0.17.19: better error handling
|
||||||
+ Different error when a TpConnection is invalidated
|
+ Different error when a TpConnection is invalidated
|
||||||
|
Loading…
x
Reference in New Issue
Block a user