This commit is contained in:
parent
aead5340c3
commit
4295f23777
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b6152839fc842a8c45fe387d9ddfe13b214eb51acb31a8778cfb4931279f83a4
|
|
||||||
size 1385489
|
|
3
telepathy-glib-0.7.17.tar.bz2
Normal file
3
telepathy-glib-0.7.17.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2999b4cb1257677658e7ebb18a16502d413d5d786144b6258a139e9c480cb91d
|
||||||
|
size 1400990
|
@ -1,3 +1,38 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Oct 22 12:37:59 CDT 2008 - maw@suse.de
|
||||||
|
|
||||||
|
- Make debug packages require a specific %{version}-%{release}.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Oct 19 11:53:02 EST 2008 - mboman@suse.de
|
||||||
|
|
||||||
|
- Update to version 0.7.17:
|
||||||
|
+ Updated to spec 0.17.13, which adds Requested, InitiatorHandle and
|
||||||
|
InitiatorID properties to Channel
|
||||||
|
+ Updated two example CMs (echo and channelspecific) to spec 0.17.13 too
|
||||||
|
+ Added handle reference-counting helpers, which should be used instead
|
||||||
|
of using the HoldHandles, RequestHandles and ReleaseHandles D-Bus API
|
||||||
|
directly
|
||||||
|
+ Added C accessors for TpProxy's read-only properties, and for
|
||||||
|
TpConnection's connection-ready property
|
||||||
|
+ Added some infrastructure for test coverage analysis using lcov
|
||||||
|
+ Moved some of the release/checking machinery to tools/telepathy.am
|
||||||
|
for easy pasting into other Telepathy projects
|
||||||
|
+ The first time TP_ERRORS is used, the error domain is now automatically
|
||||||
|
registered with dbus-glib
|
||||||
|
+ Added sanity checks (g_return_if_fail/g_critical) to TpConnection,
|
||||||
|
TpProxy, TpDBusDaemon and tp_dbus_check_* public API
|
||||||
|
+ tp_handle_is_valid and tp_handles_are_valid raise InvalidHandle on
|
||||||
|
failure, not InvalidArgument (numerous methods in telepathy-spec require
|
||||||
|
InvalidHandle to be raised, so this should make most CMs more
|
||||||
|
spec-compliant)
|
||||||
|
+ The test and example CMs raise NotAvailable on syntactically incorrect
|
||||||
|
strings, rather than InvalidArgument (which is not spec-compliant)
|
||||||
|
+ The example valgrind suppressions file now works if libdbus was not
|
||||||
|
installed in /usr, or if glibc is version 2.7
|
||||||
|
+ fdo#17502: fixed documentation of the #include for TpDBusPropertiesMixin
|
||||||
|
+ Fixed a memory leak in TpContactsMixin
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 13 15:01:53 CEST 2008 - sbrabec@suse.cz
|
Mon Oct 13 15:01:53 CEST 2008 - sbrabec@suse.cz
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
#
|
#
|
||||||
# spec file for package telepathy-glib (Version 0.7.16)
|
# spec file for package telepathy-glib (Version 0.7.17)
|
||||||
#
|
#
|
||||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
@ -21,11 +21,11 @@
|
|||||||
Name: telepathy-glib
|
Name: telepathy-glib
|
||||||
Url: http://telepathy.freedesktop.org/
|
Url: http://telepathy.freedesktop.org/
|
||||||
BuildRequires: dbus-1-glib-devel gtk-doc libxslt-devel python-xml
|
BuildRequires: dbus-1-glib-devel gtk-doc libxslt-devel python-xml
|
||||||
Version: 0.7.16
|
Version: 0.7.17
|
||||||
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
|
||||||
%define debug_package_requires libtelepathy-glib0 = %{version}
|
%define debug_package_requires libtelepathy-glib0 = %{version}-%{release}
|
||||||
Summary: Libraries for adding telepathy support to applications that use glib
|
Summary: Libraries for adding telepathy support to applications that use glib
|
||||||
Group: Development/Languages/C and C++
|
Group: Development/Languages/C and C++
|
||||||
Source: telepathy-glib-%{version}.tar.bz2
|
Source: telepathy-glib-%{version}.tar.bz2
|
||||||
@ -165,6 +165,35 @@ rm -rf "$RPM_BUILD_ROOT"
|
|||||||
%{_datadir}/gtk-doc/html/telepathy-glib
|
%{_datadir}/gtk-doc/html/telepathy-glib
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Oct 22 2008 maw@suse.de
|
||||||
|
- Make debug packages require a specific %%{version}-%%{release}.
|
||||||
|
* Sun Oct 19 2008 mboman@suse.de
|
||||||
|
- Update to version 0.7.17:
|
||||||
|
+ Updated to spec 0.17.13, which adds Requested, InitiatorHandle and
|
||||||
|
InitiatorID properties to Channel
|
||||||
|
+ Updated two example CMs (echo and channelspecific) to spec 0.17.13 too
|
||||||
|
+ Added handle reference-counting helpers, which should be used instead
|
||||||
|
of using the HoldHandles, RequestHandles and ReleaseHandles D-Bus API
|
||||||
|
directly
|
||||||
|
+ Added C accessors for TpProxy's read-only properties, and for
|
||||||
|
TpConnection's connection-ready property
|
||||||
|
+ Added some infrastructure for test coverage analysis using lcov
|
||||||
|
+ Moved some of the release/checking machinery to tools/telepathy.am
|
||||||
|
for easy pasting into other Telepathy projects
|
||||||
|
+ The first time TP_ERRORS is used, the error domain is now automatically
|
||||||
|
registered with dbus-glib
|
||||||
|
+ Added sanity checks (g_return_if_fail/g_critical) to TpConnection,
|
||||||
|
TpProxy, TpDBusDaemon and tp_dbus_check_* public API
|
||||||
|
+ tp_handle_is_valid and tp_handles_are_valid raise InvalidHandle on
|
||||||
|
failure, not InvalidArgument (numerous methods in telepathy-spec require
|
||||||
|
InvalidHandle to be raised, so this should make most CMs more
|
||||||
|
spec-compliant)
|
||||||
|
+ The test and example CMs raise NotAvailable on syntactically incorrect
|
||||||
|
strings, rather than InvalidArgument (which is not spec-compliant)
|
||||||
|
+ The example valgrind suppressions file now works if libdbus was not
|
||||||
|
installed in /usr, or if glibc is version 2.7
|
||||||
|
+ fdo#17502: fixed documentation of the #include for TpDBusPropertiesMixin
|
||||||
|
+ Fixed a memory leak in TpContactsMixin
|
||||||
* Mon Oct 13 2008 sbrabec@suse.cz
|
* Mon Oct 13 2008 sbrabec@suse.cz
|
||||||
- Signed-off.
|
- Signed-off.
|
||||||
* Thu Oct 02 2008 dominique-opensuse@leuenberger.net
|
* Thu Oct 02 2008 dominique-opensuse@leuenberger.net
|
||||||
@ -183,7 +212,7 @@ rm -rf "$RPM_BUILD_ROOT"
|
|||||||
* Fixed a compiler warning on platforms with daemon(3) in their libc
|
* Fixed a compiler warning on platforms with daemon(3) in their libc
|
||||||
* TpChannelManager can no longer be crashed by asking for unsupported
|
* TpChannelManager can no longer be crashed by asking for unsupported
|
||||||
handle types
|
handle types
|
||||||
* Wed Aug 20 2008 hfiguiere@suse.de
|
* Tue Aug 19 2008 hfiguiere@suse.de
|
||||||
- Upgrade to 0.7.14
|
- Upgrade to 0.7.14
|
||||||
* Updated to specification 0.17.9
|
* Updated to specification 0.17.9
|
||||||
* Added TpContactsMixin, a generic implementation of the Contacts interface
|
* Added TpContactsMixin, a generic implementation of the Contacts interface
|
||||||
|
Loading…
Reference in New Issue
Block a user