commit telepathy-idle for openSUSE:Factory

2020-03-16 Thread root
Hello community,

here is the log from the commit of package telepathy-idle for openSUSE:Factory 
checked in at 2020-03-16 10:15:47

Comparing /work/SRC/openSUSE:Factory/telepathy-idle (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-idle.new.3160 (New)


Package is "telepathy-idle"

Mon Mar 16 10:15:47 2020 rev:30 rq:784408 version:0.2.0

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-idle/telepathy-idle.changes
2018-03-08 10:49:37.866332597 +0100
+++ /work/SRC/openSUSE:Factory/.telepathy-idle.new.3160/telepathy-idle.changes  
2020-03-16 10:16:05.927532503 +0100
@@ -1,0 +2,7 @@
+Sat Feb 22 13:28:52 UTC 2020 - Bjørn Lie 
+
+- Add telepathy-idle-dont-bling-non-bling.patch: ctcp: Don't bling
+  the non-bling.
+- Modernize spec, add upstream URL.
+
+---

New:

  telepathy-idle-dont-bling-non-bling.patch



Other differences:
--
++ telepathy-idle.spec ++
--- /var/tmp/diff_new_pack.QqZ87W/_old  2020-03-16 10:16:07.319533070 +0100
+++ /var/tmp/diff_new_pack.QqZ87W/_new  2020-03-16 10:16:07.355533085 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package telepathy-idle
 #
-# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -12,7 +12,7 @@
 # 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/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
@@ -22,7 +22,11 @@
 Summary:IRC support for Telepathy
 License:LGPL-2.1-or-later
 Group:  Productivity/Networking/IRC
+URL:https://gitlab.freedesktop.org/telepathy/telepathy-idle
 Source: 
http://telepathy.freedesktop.org/releases/telepathy-idle/%{name}-%{version}.tar.gz
+# PATCH-FIX-UPSTREAM telepathy-idle-dont-bling-non-bling.patch --
+Patch:  telepathy-idle-dont-bling-non-bling.patch
+
 BuildRequires:  libxslt
 BuildRequires:  pkgconfig
 BuildRequires:  python-xml
@@ -33,11 +37,13 @@
 Telepathy-idle provides IRC support for Telepathy.
 
 %prep
-%setup -q
+%autosetup -p1
 
 %build
-%configure --libexecdir=%{_prefix}/lib/%{name}
-make %{?_smp_mflags}
+%configure \
+   --libexecdir=%{_prefix}/lib/%{name} \
+   %{nil}
+%make_build
 
 %install
 %make_install

++ telepathy-idle-dont-bling-non-bling.patch ++
>From bf6d596e40e5b9426a68dcd22aa62a697457c4f7 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Florian=20M=C3=BCllner?= 
Date: Sat, 13 Feb 2016 10:08:42 +0100
Subject: [PATCH] ctcp: Don't bling the non-bling

When stripping color codes, we currently remove any sequence of digits
following ^C. As color codes use at most two digits, this means that we
also remove any numbers at the start of the colored text - make sure we
stop doing that and only remove digits that are actually part of a color
code.

https://bugs.freedesktop.org/show_bug.cgi?id=94189
---
 src/idle-ctcp.c | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/idle-ctcp.c b/src/idle-ctcp.c
index f282360..f28bf4b 100644
--- a/src/idle-ctcp.c
+++ b/src/idle-ctcp.c
@@ -98,13 +98,18 @@ gchar *idle_ctcp_kill_blingbling(const gchar *msg) {
case '\x03': /* ^C */
iter++;
 
-   while (isdigit(*iter))
+   /* Color codes are 1-2 digits */
+if (isdigit(*iter))
+   iter++;
+if (isdigit(*iter))
iter++;
 
if (*iter == ',') {
iter++;
 
-   while (isdigit(*iter))
+   if (isdigit(*iter))
+   iter++;
+   if (isdigit(*iter))
iter++;
}
break;
-- 
2.24.1




commit telepathy-idle for openSUSE:Factory

2018-03-08 Thread root
Hello community,

here is the log from the commit of package telepathy-idle for openSUSE:Factory 
checked in at 2018-03-08 10:49:35

Comparing /work/SRC/openSUSE:Factory/telepathy-idle (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-idle.new (New)


Package is "telepathy-idle"

Thu Mar  8 10:49:35 2018 rev:29 rq:582867 version:0.2.0

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-idle/telepathy-idle.changes
2013-10-04 13:55:15.0 +0200
+++ /work/SRC/openSUSE:Factory/.telepathy-idle.new/telepathy-idle.changes   
2018-03-08 10:49:37.866332597 +0100
@@ -1,0 +2,5 @@
+Wed Feb 28 16:40:11 UTC 2018 - dims...@opensuse.org
+
+- Modernize spec-file by calling spec-cleaner
+
+---



Other differences:
--
++ telepathy-idle.spec ++
--- /var/tmp/diff_new_pack.eBdRVx/_old  2018-03-08 10:49:38.558307685 +0100
+++ /var/tmp/diff_new_pack.eBdRVx/_new  2018-03-08 10:49:38.558307685 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package telepathy-idle
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,15 +19,15 @@
 Name:   telepathy-idle
 Version:0.2.0
 Release:0
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Summary:IRC support for Telepathy
+License:LGPL-2.1-or-later
+Group:  Productivity/Networking/IRC
+Source: 
http://telepathy.freedesktop.org/releases/telepathy-idle/%{name}-%{version}.tar.gz
 BuildRequires:  libxslt
+BuildRequires:  pkgconfig
 BuildRequires:  python-xml
 BuildRequires:  pkgconfig(gio-2.0) >= 2.32.0
 BuildRequires:  pkgconfig(telepathy-glib) >= 0.21
-Summary:IRC support for Telepathy
-License:LGPL-2.1+
-Group:  Productivity/Networking/IRC
-Source: 
http://telepathy.freedesktop.org/releases/telepathy-idle/%{name}-%{version}.tar.gz
 
 %description
 Telepathy-idle provides IRC support for Telepathy.
@@ -37,25 +37,20 @@
 
 %build
 %configure --libexecdir=%{_prefix}/lib/%{name}
-make %{?jobs:-j %jobs}
+make %{?_smp_mflags}
 
 %install
-%makeinstall
+%make_install
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
-%clean
-%{__rm} -rf "%{buildroot}"
-
 %files
-%defattr(-,root,root)
 
%{_datadir}/dbus-1/services/org.freedesktop.Telepathy.ConnectionManager.idle.service
 %dir %{_datadir}/telepathy
 %dir %{_datadir}/telepathy/managers
 %{_datadir}/telepathy/managers/idle.manager
 %{_prefix}/lib/%{name}
-%{_mandir}/man8/telepathy-idle.8.gz
+%{_mandir}/man8/telepathy-idle.8%{ext_man}
 
 %changelog




commit telepathy-idle for openSUSE:Factory

2013-10-04 Thread h_root
Hello community,

here is the log from the commit of package telepathy-idle for openSUSE:Factory 
checked in at 2013-10-04 13:55:14

Comparing /work/SRC/openSUSE:Factory/telepathy-idle (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-idle.new (New)


Package is telepathy-idle

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-idle/telepathy-idle.changes
2013-09-23 11:18:24.0 +0200
+++ /work/SRC/openSUSE:Factory/.telepathy-idle.new/telepathy-idle.changes   
2013-10-04 13:55:15.0 +0200
@@ -1,0 +2,6 @@
+Thu Oct  3 19:26:19 UTC 2013 - dims...@opensuse.org
+
+- Update to version 0.2.0:
+  + No code changes since 0.1.17.
+
+---

Old:

  telepathy-idle-0.1.17.tar.gz

New:

  telepathy-idle-0.2.0.tar.gz



Other differences:
--
++ telepathy-idle.spec ++
--- /var/tmp/diff_new_pack.EvkVL8/_old  2013-10-04 13:55:16.0 +0200
+++ /var/tmp/diff_new_pack.EvkVL8/_new  2013-10-04 13:55:16.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   telepathy-idle
-Version:0.1.17
+Version:0.2.0
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libxslt

++ telepathy-idle-0.1.17.tar.gz - telepathy-idle-0.2.0.tar.gz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/telepathy-idle-0.1.17/ChangeLog 
new/telepathy-idle-0.2.0/ChangeLog
--- old/telepathy-idle-0.1.17/ChangeLog 2013-09-18 14:17:15.0 +0200
+++ new/telepathy-idle-0.2.0/ChangeLog  2013-10-03 14:13:48.0 +0200
@@ -1,3 +1,9 @@
+commit 22371837e080c41343600ca773fd987e5310baf2
+Author: Guillaume Desmottes guillaume.desmot...@collabora.co.uk
+Date:   2013-10-03 11:28:25 +0200
+
+0.2.0
+
 commit 297c9a8ce746f57b22f807ce0478b3fe3d44a49d
 Author: Guillaume Desmottes guillaume.desmot...@collabora.co.uk
 Date:   2013-09-18 14:13:04 +0200
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/telepathy-idle-0.1.17/NEWS 
new/telepathy-idle-0.2.0/NEWS
--- old/telepathy-idle-0.1.17/NEWS  2013-09-18 14:07:27.0 +0200
+++ new/telepathy-idle-0.2.0/NEWS   2013-10-03 14:12:27.0 +0200
@@ -1,3 +1,10 @@
+telepathy-idle 0.2.0 (2013-10-03)
+=
+
+This is a new stable branch, recommended for GNOME 3.10-based distributions.
+
+No code changes since 0.1.17.
+
 telepathy-idle 0.1.17 (2013-09-18)
 ==
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/telepathy-idle-0.1.17/configure 
new/telepathy-idle-0.2.0/configure
--- old/telepathy-idle-0.1.17/configure 2013-09-18 14:07:54.0 +0200
+++ new/telepathy-idle-0.2.0/configure  2013-10-03 14:13:40.0 +0200
@@ -1,6 +1,6 @@
 #! /bin/sh
 # Guess values for system-dependent variables and create Makefiles.
-# Generated by GNU Autoconf 2.69 for telepathy-idle 0.1.17.
+# Generated by GNU Autoconf 2.69 for telepathy-idle 0.2.0.
 #
 # Report bugs to 
https://bugs.freedesktop.org/enter_bug.cgi?product=Telepathycomponent=idle.
 #
@@ -591,8 +591,8 @@
 # Identity of this package.
 PACKAGE_NAME='telepathy-idle'
 PACKAGE_TARNAME='telepathy-idle'
-PACKAGE_VERSION='0.1.17'
-PACKAGE_STRING='telepathy-idle 0.1.17'
+PACKAGE_VERSION='0.2.0'
+PACKAGE_STRING='telepathy-idle 0.2.0'
 
PACKAGE_BUGREPORT='https://bugs.freedesktop.org/enter_bug.cgi?product=Telepathycomponent=idle'
 PACKAGE_URL=''
 
@@ -1354,7 +1354,7 @@
   # Omit some internal or obsolete options to make the list less imposing.
   # This message is too long to be a string in the A/UX 3.1 sh.
   cat _ACEOF
-\`configure' configures telepathy-idle 0.1.17 to adapt to many kinds of 
systems.
+\`configure' configures telepathy-idle 0.2.0 to adapt to many kinds of systems.
 
 Usage: $0 [OPTION]... [VAR=VALUE]...
 
@@ -1424,7 +1424,7 @@
 
 if test -n $ac_init_help; then
   case $ac_init_help in
- short | recursive ) echo Configuration of telepathy-idle 0.1.17:;;
+ short | recursive ) echo Configuration of telepathy-idle 0.2.0:;;
esac
   cat \_ACEOF
 
@@ -1550,7 +1550,7 @@
 test -n $ac_init_help  exit $ac_status
 if $ac_init_version; then
   cat \_ACEOF
-telepathy-idle configure 0.1.17
+telepathy-idle configure 0.2.0
 generated by GNU Autoconf 2.69
 
 Copyright (C) 2012 Free Software Foundation, Inc.
@@ -1828,7 +1828,7 @@
 This file contains any messages produced by compilers while
 running configure, to aid debugging if configure makes a mistake.
 
-It was created by telepathy-idle $as_me 0.1.17, which was
+It was created by telepathy-idle $as_me 0.2.0, which was
 generated by GNU Autoconf 2.69.  Invocation command line was
 
   $ $0 $@
@@ -2698,7 +2698,7 

commit telepathy-idle for openSUSE:Factory

2013-09-23 Thread h_root
Hello community,

here is the log from the commit of package telepathy-idle for openSUSE:Factory 
checked in at 2013-09-23 11:05:31

Comparing /work/SRC/openSUSE:Factory/telepathy-idle (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-idle.new (New)


Package is telepathy-idle

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-idle/telepathy-idle.changes
2013-05-16 11:42:34.0 +0200
+++ /work/SRC/openSUSE:Factory/.telepathy-idle.new/telepathy-idle.changes   
2013-09-23 11:18:24.0 +0200
@@ -1,0 +2,17 @@
+Wed Sep 18 17:26:55 UTC 2013 - zai...@opensuse.org
+
+- Update to version 0.1.17:
+  + This is a release candidate for telepathy-idle 0.2, recommended
+for use with GNOME 3.10.
+  + Dependencies:
+- GLib = 2.32
+- telepathy-glib = 0.21
+  + Fixes:
+- Don't crash when a channel with multiple requests fails.
+- Add handle-name to RoomList properties (fdo#65614).
+- Kill async read when disconnecting (fdo#64923).
+- Fix tests with automake 1.13 (fdo#69258).
+- Stop using deprecated telepathy-glib API (fdo#64122,
+  fdo#69311).
+
+---

Old:

  telepathy-idle-0.1.16.tar.gz

New:

  telepathy-idle-0.1.17.tar.gz



Other differences:
--
++ telepathy-idle.spec ++
--- /var/tmp/diff_new_pack.Ions8h/_old  2013-09-23 11:18:24.0 +0200
+++ /var/tmp/diff_new_pack.Ions8h/_new  2013-09-23 11:18:24.0 +0200
@@ -17,13 +17,13 @@
 
 
 Name:   telepathy-idle
-Version:0.1.16
+Version:0.1.17
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libxslt
 BuildRequires:  python-xml
-BuildRequires:  pkgconfig(gio-2.0) = 2.28.0
-BuildRequires:  pkgconfig(telepathy-glib) = 0.15.9
+BuildRequires:  pkgconfig(gio-2.0) = 2.32.0
+BuildRequires:  pkgconfig(telepathy-glib) = 0.21
 Summary:IRC support for Telepathy
 License:LGPL-2.1+
 Group:  Productivity/Networking/IRC

++ telepathy-idle-0.1.16.tar.gz - telepathy-idle-0.1.17.tar.gz ++
 8755 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit telepathy-idle for openSUSE:Factory

2013-05-16 Thread h_root
Hello community,

here is the log from the commit of package telepathy-idle for openSUSE:Factory 
checked in at 2013-05-16 11:42:33

Comparing /work/SRC/openSUSE:Factory/telepathy-idle (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-idle.new (New)


Package is telepathy-idle

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-idle/telepathy-idle.changes
2012-11-19 07:08:06.0 +0100
+++ /work/SRC/openSUSE:Factory/.telepathy-idle.new/telepathy-idle.changes   
2013-05-16 11:42:34.0 +0200
@@ -1,0 +2,15 @@
+Sun May  5 07:00:16 UTC 2013 - zai...@opensuse.org
+
+- Update to version 0.1.16:
+  + Enhancements:
+- Add support for interactive TLS certificate validation,
+  fixing the regression in 0.1.15 that self-signed certificates
+  could not be used any more (fdo#57130).
+- Changes from version 0.1.15:
+  + Fixes:
+- Validate TLS certificates properly, preventing
+  man-in-the-middle attacks (CVE-2007-6746, fdo#63810).
+- Fix compilation and regression tests with GLib 2.36.
+- Drop libopenssl-devel BuildRequires: no longer needed.
+
+---

Old:

  telepathy-idle-0.1.14.tar.gz

New:

  telepathy-idle-0.1.16.tar.gz



Other differences:
--
++ telepathy-idle.spec ++
--- /var/tmp/diff_new_pack.K0GREU/_old  2013-05-16 11:42:35.0 +0200
+++ /var/tmp/diff_new_pack.K0GREU/_new  2013-05-16 11:42:35.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package telepathy-idle
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,10 +17,9 @@
 
 
 Name:   telepathy-idle
-Version:0.1.14
+Version:0.1.16
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-BuildRequires:  libopenssl-devel
 BuildRequires:  libxslt
 BuildRequires:  python-xml
 BuildRequires:  pkgconfig(gio-2.0) = 2.28.0

++ telepathy-idle-0.1.14.tar.gz - telepathy-idle-0.1.16.tar.gz ++
 3445 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit telepathy-idle for openSUSE:Factory

2012-11-18 Thread h_root
Hello community,

here is the log from the commit of package telepathy-idle for openSUSE:Factory 
checked in at 2012-11-19 07:08:04

Comparing /work/SRC/openSUSE:Factory/telepathy-idle (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-idle.new (New)


Package is telepathy-idle, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-idle/telepathy-idle.changes
2012-08-23 16:06:39.0 +0200
+++ /work/SRC/openSUSE:Factory/.telepathy-idle.new/telepathy-idle.changes   
2012-11-19 07:08:06.0 +0100
@@ -1,0 +2,24 @@
+Sun Nov 18 17:02:56 UTC 2012 - zai...@opensuse.org
+
+- Update to version 0.1.14:
+  + Parse PONG replies more leniently. bip's PONGs were rejected by
+0.1.13.
+
+---
+Thu Nov 15 21:45:23 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.1.13:
+  + Enhancements:
+- Initial support for listing rooms (fdo#23005).
+- Chat room channels now respawn if you Close() them
+  (fdo#24614).
+  + Fixes:
+- Fix for make -j safety (fdo#54016).
+- Sending well-formed but invalid UTF-8 no longer gets Idle
+  kicked off the bus (fdo#30741).
+- Idle now disconnects if it doesn't get a reply to its pings
+  after a while (fdo#56589).
+- Don't wedge and stop sending messages in a situation we
+  believe was triggered by a short-lived GIO bug (fdo#49163).
+
+---

Old:

  telepathy-idle-0.1.12.tar.gz

New:

  telepathy-idle-0.1.14.tar.gz



Other differences:
--
++ telepathy-idle.spec ++
--- /var/tmp/diff_new_pack.Z8wwCS/_old  2012-11-19 07:08:07.0 +0100
+++ /var/tmp/diff_new_pack.Z8wwCS/_new  2012-11-19 07:08:07.0 +0100
@@ -17,7 +17,7 @@
 
 
 Name:   telepathy-idle
-Version:0.1.12
+Version:0.1.14
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libopenssl-devel

++ telepathy-idle-0.1.12.tar.gz - telepathy-idle-0.1.14.tar.gz ++
 2989 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit telepathy-idle for openSUSE:Factory

2012-08-23 Thread h_root
Hello community,

here is the log from the commit of package telepathy-idle for openSUSE:Factory 
checked in at 2012-08-23 16:06:37

Comparing /work/SRC/openSUSE:Factory/telepathy-idle (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-idle.new (New)


Package is telepathy-idle, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-idle/telepathy-idle.changes
2012-02-16 12:28:48.0 +0100
+++ /work/SRC/openSUSE:Factory/.telepathy-idle.new/telepathy-idle.changes   
2012-08-23 16:06:39.0 +0200
@@ -1,0 +2,13 @@
+Wed Aug  8 12:29:32 UTC 2012 - dims...@opensuse.org
+
+- Update to version 0.1.12:
+  + Fixes:
+- Implement the the ActorHandle property on the Subject
+  interface, to fix showing who changed the topic in Empathy
+- Idle no longer gets stuck in a 100% CPU loop when the
+  connection is lost in some situations (fdo#48084)
+- Get rid of deprecated things (fdo#49600)
+- Renamed variables to avoid warnings with -Werror=shadow
+  (fdo#51906)
+
+---

Old:

  telepathy-idle-0.1.11.tar.gz

New:

  telepathy-idle-0.1.12.tar.gz



Other differences:
--
++ telepathy-idle.spec ++
--- /var/tmp/diff_new_pack.YxXq8u/_old  2012-08-23 16:06:40.0 +0200
+++ /var/tmp/diff_new_pack.YxXq8u/_new  2012-08-23 16:06:40.0 +0200
@@ -17,7 +17,7 @@
 
 
 Name:   telepathy-idle
-Version:0.1.11
+Version:0.1.12
 Release:0
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libopenssl-devel

++ telepathy-idle-0.1.11.tar.gz - telepathy-idle-0.1.12.tar.gz ++
 13904 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit telepathy-idle for openSUSE:Factory

2012-01-09 Thread h_root
Hello community,

here is the log from the commit of package telepathy-idle for openSUSE:Factory 
checked in at 2012-01-09 15:21:57

Comparing /work/SRC/openSUSE:Factory/telepathy-idle (Old)
 and  /work/SRC/openSUSE:Factory/.telepathy-idle.new (New)


Package is telepathy-idle, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/telepathy-idle/telepathy-idle.changes
2011-09-23 12:47:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.telepathy-idle.new/telepathy-idle.changes   
2012-01-09 15:21:59.0 +0100
@@ -1,0 +2,19 @@
+Tue Nov 15 09:58:06 UTC 2011 - vu...@opensuse.org
+
+- Update to version 0.1.11:
+  + Enhancements:
+- fdo#21168: Idle now implements the Contacts interface (which
+  has officially been mandatory for a while).
+- fdo#37145: Rather than using its own home-grown network code,
+  Idle now uses GIO. This should make it more robust and
+  maintainable.
+- fdo#40734: The new Subject interface is now implemented. The
+  old Properties interface is no longer supported, and hence
+  various other aspects of room configuration are no longer
+  exposed. In future, they should be reincarnated on the
+  RoomConfig interface.
+- Add pkgconfig(gio-2.0) BuildRequires.
+- Change telepathy-glib-devel BuildRequires to
+  pkgconfig(telepathy-glib).
+
+---

Old:

  telepathy-idle-0.1.10.tar.bz2

New:

  telepathy-idle-0.1.11.tar.gz



Other differences:
--
++ telepathy-idle.spec ++
--- /var/tmp/diff_new_pack.W56Cdu/_old  2012-01-09 15:22:00.0 +0100
+++ /var/tmp/diff_new_pack.W56Cdu/_new  2012-01-09 15:22:00.0 +0100
@@ -19,17 +19,18 @@
 
 
 Name:   telepathy-idle
-Version:0.1.10
-Release:2
+Version:0.1.11
+Release:1
 License:LGPLv2.1+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  libopenssl-devel
 BuildRequires:  libxslt
 BuildRequires:  python-xml
-BuildRequires:  telepathy-glib-devel
+BuildRequires:  pkgconfig(gio-2.0) = 2.28.0
+BuildRequires:  pkgconfig(telepathy-glib) = 0.15.9
 Group:  Productivity/Networking/IRC
 Summary:IRC support for Telepathy
-Source: %{name}-%{version}.tar.bz2
+Source: 
http://telepathy.freedesktop.org/releases/telepathy-idle/%{name}-%{version}.tar.gz
 
 %description
 Telepathy-idle provides IRC support for Telepathy.

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit telepathy-idle for openSUSE:Factory

2011-05-02 Thread h_root

Hello community,

here is the log from the commit of package telepathy-idle for openSUSE:Factory
checked in at Mon May 2 16:52:02 CEST 2011.




--- telepathy-idle/telepathy-idle.changes   2010-12-08 08:47:05.0 
+0100
+++ /mounts/work_src_done/STABLE/telepathy-idle/telepathy-idle.changes  
2011-04-11 15:53:14.0 +0200
@@ -1,0 +2,29 @@
+Mon Apr 11 12:56:30 UTC 2011 - fcro...@novell.com
+
+- Update to version 0.1.9:
+  + Correctly implement Destroyable to avoid Idle eating 100% CPU
+if there is no text handler (fdo#34166).
+  + Correctly quote message in PART commands (fdo#34812)
+  + Don't truncate room names at ! in the parser (fdo#28371,
+fdo#31343, fdo#30609).
+  + Using an underscore '_' in IRC login name causes network error
+(fdo#33913).
+  + The 'username' parameter is now validated for its conformance
+to RFC 2812 (fdo#35239).
+  + Additionally, the human-readable information from ERROR
+messages is now exposed in the ConnectionError signal's Details
+dictionary, as server-message. (also fdo#35239).
+  + Add Messages properties to immutable properties.
+  + Add the password-prompt to the manager file.
+  + Set the 'message-sender-id' key in messages.
+
+---
+Wed Mar  9 09:48:51 UTC 2011 - fcro...@novell.com
+
+- Update to version 0.1.8:
+  + Enhancements:
+- Implements SASL channel.
+  + Fixes:
+- Properly advertise that text channels implement Messages.
+
+---

calling whatdependson for head-i586


Old:

  telepathy-idle-0.1.7.tar.bz2

New:

  telepathy-idle-0.1.9.tar.bz2



Other differences:
--
++ telepathy-idle.spec ++
--- /var/tmp/diff_new_pack.E8N1dK/_old  2011-05-02 16:51:36.0 +0200
+++ /var/tmp/diff_new_pack.E8N1dK/_new  2011-05-02 16:51:36.0 +0200
@@ -1,7 +1,7 @@
 #
-# spec file for package telepathy-idle (Version 0.1.7)
+# spec file for package telepathy-idle
 #
-# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
 
 
 Name:   telepathy-idle
-Version:0.1.7
+Version:0.1.9
 Release:1
 License:LGPLv2.1+
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build

++ telepathy-idle-0.1.7.tar.bz2 - telepathy-idle-0.1.9.tar.bz2 ++
 6972 lines of diff (skipped)






Remember to have fun...

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org