This commit is contained in:
parent
47bdf5c8ac
commit
55d67a9099
3
telepathy-glib-0.7.14.tar.bz2
Normal file
3
telepathy-glib-0.7.14.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:691b64efa3504b13093f694db3dcf96e6219a2aab042be72ebe787937e293e40
|
||||
size 1312623
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:e2a69c4398cd20122bb2d14463f11bda8a6c0cf34385785a708a4554108b6df1
|
||||
size 913887
|
@ -1,8 +1,41 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 19 18:54:12 EDT 2008 - hfiguiere@suse.de
|
||||
|
||||
- Upgrade to 0.7.14
|
||||
* Updated to specification 0.17.9
|
||||
* Added TpContactsMixin, a generic implementation of the Contacts interface
|
||||
* Added tp_connection_get_status() convenience accessor for status and
|
||||
status-reason properties
|
||||
* Altered tp_debug_divert_messages() to support a "+" prefix to filenames,
|
||||
which changes the mode from truncate to append: you can now set something
|
||||
like GABBLE_LOGFILE="+gabble.log" to append to an existing log
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 19 10:02:25 EDT 2008 - hfiguiere@suse.de
|
||||
|
||||
- Keep the *.la files as they are needed for telepathy-mission-control
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 8 10:07:21 EDT 2008 - hfiguiere@suse.de
|
||||
|
||||
- Update to 0.7.13
|
||||
* couple of minor API added
|
||||
* fdo#14828, fod#14829: TpChannel and TpConnection can be subclassed
|
||||
* TpChannel tracks the Group interface automatically (fd.o #14180)
|
||||
* TpConnectionManager no longer causes a crash if destroyed before it has
|
||||
read the .manager file (fd.o #16774)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 1 17:32:40 CEST 2008 - ro@suse.de
|
||||
|
||||
- fix requires for debuginfo package
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jul 17 13:32:18 EDT 2008 - hfiguiere@suse.de
|
||||
|
||||
- Update to 0.7.11
|
||||
* lot of bugfixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 12 14:21:09 EDT 2008 - hfiguiere@suse.de
|
||||
|
||||
|
@ -1,10 +1,17 @@
|
||||
#
|
||||
# spec file for package telepathy-glib (Version 0.7.5)
|
||||
# spec file for package telepathy-glib (Version 0.7.14)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
# upon. The license for this file, and modifications and additions to the
|
||||
# file, is the same license as for the pristine package itself (unless the
|
||||
# license for the pristine package is not an Open Source License, in which
|
||||
# case the license is the MIT License). An "Open Source License" is a
|
||||
# license that conforms to the Open Source Definition (Version 1.9)
|
||||
# published by the Open Source Initiative.
|
||||
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
@ -14,8 +21,8 @@
|
||||
Name: telepathy-glib
|
||||
Url: http://telepathy.freedesktop.org/
|
||||
BuildRequires: dbus-1-glib-devel gtk-doc libxslt-devel python-xml
|
||||
Version: 0.7.5
|
||||
Release: 3
|
||||
Version: 0.7.14
|
||||
Release: 1
|
||||
License: LGPL v2.1 or later
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
%define debug_package_requires libtelepathy-glib0 = %{version}
|
||||
@ -125,13 +132,13 @@ Authors:
|
||||
%setup -q -n %{name}-%{version}
|
||||
|
||||
%build
|
||||
%configure
|
||||
%configure --disable-static
|
||||
%__make %{?jobs:-j%jobs}
|
||||
|
||||
%install
|
||||
%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
|
||||
|
||||
@ -151,15 +158,36 @@ rm -rf "$RPM_BUILD_ROOT"
|
||||
%{_includedir}/telepathy-1.0/telepathy-glib/*
|
||||
%{_libdir}/lib*.so
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%{_libdir}/lib*.a
|
||||
%{_libdir}/lib*.la
|
||||
|
||||
%files doc
|
||||
%defattr(-,root,root)
|
||||
%{_datadir}/gtk-doc/html/telepathy-glib
|
||||
|
||||
%changelog
|
||||
* Tue Aug 19 2008 hfiguiere@suse.de
|
||||
- Upgrade to 0.7.14
|
||||
* Updated to specification 0.17.9
|
||||
* Added TpContactsMixin, a generic implementation of the Contacts interface
|
||||
* Added tp_connection_get_status() convenience accessor for status and
|
||||
status-reason properties
|
||||
* Altered tp_debug_divert_messages() to support a "+" prefix to filenames,
|
||||
which changes the mode from truncate to append: you can now set something
|
||||
like GABBLE_LOGFILE="+gabble.log" to append to an existing log
|
||||
* Tue Aug 19 2008 hfiguiere@suse.de
|
||||
- Keep the *.la files as they are needed for telepathy-mission-control
|
||||
* Fri Aug 08 2008 hfiguiere@suse.de
|
||||
- Update to 0.7.13
|
||||
* couple of minor API added
|
||||
* fdo#14828, fod#14829: TpChannel and TpConnection can be subclassed
|
||||
* TpChannel tracks the Group interface automatically (fd.o #14180)
|
||||
* TpConnectionManager no longer causes a crash if destroyed before it has
|
||||
read the .manager file (fd.o #16774)
|
||||
* Fri Aug 01 2008 ro@suse.de
|
||||
- fix requires for debuginfo package
|
||||
* Thu Jul 17 2008 hfiguiere@suse.de
|
||||
- Update to 0.7.11
|
||||
* lot of bugfixes.
|
||||
* Wed Mar 12 2008 hfiguiere@suse.de
|
||||
- Update to 0.7.5.
|
||||
+ Updated to specification 0.17
|
||||
|
Loading…
x
Reference in New Issue
Block a user