commit xchat-gnome for openSUSE:Factory

2016-01-13 Thread h_root
Hello community,

here is the log from the commit of package xchat-gnome for openSUSE:Factory 
checked in at 2016-01-13 22:45:54

Comparing /work/SRC/openSUSE:Factory/xchat-gnome (Old)
 and  /work/SRC/openSUSE:Factory/.xchat-gnome.new (New)


Package is "xchat-gnome"

Changes:

--- /work/SRC/openSUSE:Factory/xchat-gnome/xchat-gnome.changes  2015-04-13 
20:31:20.0 +0200
+++ /work/SRC/openSUSE:Factory/.xchat-gnome.new/xchat-gnome.changes 
2016-01-13 22:45:56.0 +0100
@@ -1,0 +2,7 @@
+Sat Jan  9 01:48:52 UTC 2016 - zai...@opensuse.org
+
+- Replace libcanberra-devel for pkgconfig(libcanberra-gtk)
+  BuildRequires, this is what configure is looking for, and is
+  needed now that libcanberra-devel was split.
+
+---



Other differences:
--
++ xchat-gnome.spec ++
--- /var/tmp/diff_new_pack.YVh9x5/_old  2016-01-13 22:45:57.0 +0100
+++ /var/tmp/diff_new_pack.YVh9x5/_new  2016-01-13 22:45:57.0 +0100
@@ -44,7 +44,6 @@
 BuildRequires:  gnome-doc-utils-devel
 BuildRequires:  gnome-patch-translation
 BuildRequires:  intltool
-BuildRequires:  libcanberra-devel
 BuildRequires:  libglade2-devel
 BuildRequires:  libgnome-devel
 BuildRequires:  libgnomeui-devel
@@ -55,6 +54,7 @@
 BuildRequires:  tcl-devel
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
+BuildRequires:  pkgconfig(libcanberra-gtk)
 %{?libperl_requires}
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build




commit xchat-gnome for openSUSE:Factory

2015-04-13 Thread h_root
Hello community,

here is the log from the commit of package xchat-gnome for openSUSE:Factory 
checked in at 2015-04-13 20:31:19

Comparing /work/SRC/openSUSE:Factory/xchat-gnome (Old)
 and  /work/SRC/openSUSE:Factory/.xchat-gnome.new (New)


Package is xchat-gnome

Changes:

--- /work/SRC/openSUSE:Factory/xchat-gnome/xchat-gnome.changes  2013-09-23 
15:54:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.xchat-gnome.new/xchat-gnome.changes 
2015-04-13 20:31:20.0 +0200
@@ -1,0 +2,5 @@
+Sun Apr 12 09:42:49 UTC 2015 - zai...@opensuse.org
+
+- Add xchat-gnome-poodle.patch, protect against poole (bgo#738870).
+
+---

New:

  xchat-gnome-poodle.patch



Other differences:
--
++ xchat-gnome.spec ++
--- /var/tmp/diff_new_pack.OqBax2/_old  2015-04-13 20:31:21.0 +0200
+++ /var/tmp/diff_new_pack.OqBax2/_new  2015-04-13 20:31:21.0 +0200
@@ -33,6 +33,8 @@
 Patch3: xchat-gnome-dso-linking.patch
 # PATCH-FIX-UPSTREAM xchat-gnome-perl-plugin.patch bgo#698232 
dims...@opensuse.org -- Fix building with -Werror=missing-prototypes.
 Patch4: xchat-gnome-perl-plugin.patch
+# PATCH-FIX-UPSTREAM xchat-gnome-poodle.patch bgo#738870 zai...@opensuse.org 
-- Patch for poodle attack.
+Patch5: xchat-gnome-poodle.patch
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  fdupes
 BuildRequires:  gconf2-devel
@@ -91,6 +93,7 @@
 %patch2 -p1
 %patch3 -p1
 %patch4 -p1
+%patch5 -p1
 translation-update-upstream
 
 %build

++ xchat-gnome-poodle.patch ++
From f9e2f17c26abf90b340c8a80248326f4c7c1f3b7 Mon Sep 17 00:00:00 2001
From: Marc Deslauriers marc.deslauri...@ubuntu.com
Date: Tue, 9 Dec 2014 22:02:14 +0530
Subject: gnome bz#738870

SSLv3 should no longer be used for security reasons. Let the best
connection method be automatically determined by using SSLv23_client_method()
and SSLv23_server_method().

https://blog.mozilla.org/security/2014/10/14/the-poodle-attack-and-the-end-of-ssl-3-0/

diff --git a/src/common/ssl.c b/src/common/ssl.c
index a18ad47..35eb237 100644
--- a/src/common/ssl.c
+++ b/src/common/ssl.c
@@ -70,7 +70,7 @@ _SSL_context_init (void (*info_cb_func), int server)
 
SSLeay_add_ssl_algorithms ();
SSL_load_error_strings ();
-   ctx = SSL_CTX_new (server ? SSLv3_server_method() : SSLv3_client_method 
());
+   ctx = SSL_CTX_new (server ? SSLv23_server_method() : 
SSLv23_client_method ());
 
SSL_CTX_set_session_cache_mode (ctx, SSL_SESS_CACHE_BOTH);
SSL_CTX_set_timeout (ctx, 300);
@@ -281,7 +281,7 @@ _SSL_socket (SSL_CTX *ctx, int sd)
__SSL_critical_error (SSL_new);
 
SSL_set_fd (ssl, sd);
-   if (ctx-method == SSLv3_client_method())
+   if (ctx-method == SSLv23_client_method())
SSL_set_connect_state (ssl);
else
SSL_set_accept_state(ssl);
-- 
cgit v0.10.2



commit xchat-gnome for openSUSE:Factory

2013-09-23 Thread h_root
Hello community,

here is the log from the commit of package xchat-gnome for openSUSE:Factory 
checked in at 2013-09-23 15:53:57

Comparing /work/SRC/openSUSE:Factory/xchat-gnome (Old)
 and  /work/SRC/openSUSE:Factory/.xchat-gnome.new (New)


Package is xchat-gnome

Changes:

--- /work/SRC/openSUSE:Factory/xchat-gnome/xchat-gnome.changes  2013-04-24 
12:23:41.0 +0200
+++ /work/SRC/openSUSE:Factory/.xchat-gnome.new/xchat-gnome.changes 
2013-09-23 15:54:00.0 +0200
@@ -1,0 +2,6 @@
+Thu Sep  5 18:56:45 CEST 2013 - m...@suse.de
+
+- Add libperl_requires, as we link against libperl and thus
+  need a specific version of perl.
+
+---



Other differences:
--
++ xchat-gnome.spec ++
--- /var/tmp/diff_new_pack.cI08Gy/_old  2013-09-23 15:54:00.0 +0200
+++ /var/tmp/diff_new_pack.cI08Gy/_new  2013-09-23 15:54:00.0 +0200
@@ -53,6 +53,7 @@
 BuildRequires:  tcl-devel
 BuildRequires:  translation-update-upstream
 BuildRequires:  update-desktop-files
+%{?libperl_requires}
 Recommends: %{name}-lang
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Url:http://xchat-gnome.navi.cx/

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



commit xchat-gnome for openSUSE:Factory

2013-04-24 Thread h_root
Hello community,

here is the log from the commit of package xchat-gnome for openSUSE:Factory 
checked in at 2013-04-24 10:55:35

Comparing /work/SRC/openSUSE:Factory/xchat-gnome (Old)
 and  /work/SRC/openSUSE:Factory/.xchat-gnome.new (New)


Package is xchat-gnome, Maintainer is gnome-maintain...@suse.de

Changes:

--- /work/SRC/openSUSE:Factory/xchat-gnome/xchat-gnome.changes  2011-09-23 
12:51:02.0 +0200
+++ /work/SRC/openSUSE:Factory/.xchat-gnome.new/xchat-gnome.changes 
2013-04-24 10:55:37.0 +0200
@@ -1,0 +2,6 @@
+Wed Apr 17 19:38:16 UTC 2013 - dims...@opensuse.org
+
+- Add xchat-gnome-perl-plugin.patch: Fix build with
+  -Werror=missing-protorypes.
+
+---

New:

  xchat-gnome-perl-plugin.patch



Other differences:
--
++ xchat-gnome.spec ++
--- /var/tmp/diff_new_pack.IphnGq/_old  2013-04-24 10:55:41.0 +0200
+++ /var/tmp/diff_new_pack.IphnGq/_new  2013-04-24 10:55:41.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package xchat-gnome
 #
-# Copyright (c) 2011 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
@@ -15,15 +15,13 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-# norootforbuild
-
 
 Name:   xchat-gnome
+Summary:A more simple IRC Client
 License:GPL-2.0+
 Group:  Productivity/Networking/IRC
-Summary:A more simple IRC Client
 Version:0.26.1
-Release:19
+Release:0
 Source: 
http://download.gnome.org/sources/%{name}/0.24/%{name}-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM xchat-gnome-gtk2.19.7.patch dims...@opensuse.org -- Fix 
build with gtk 2.19.7. Patch taken from upstream git.
 Patch0: xchat-gnome-gtk2.19.7.patch
@@ -33,6 +31,8 @@
 Patch2: xchat-gnome-0.26.1-libnotify.patch
 # PATCH-FIX-UPSTREAM xchat-gnome-dso-linking.patch vu...@opensuse.org -- Fix 
linking issue, taken from git
 Patch3: xchat-gnome-dso-linking.patch
+# PATCH-FIX-UPSTREAM xchat-gnome-perl-plugin.patch bgo#698232 
dims...@opensuse.org -- Fix building with -Werror=missing-prototypes.
+Patch4: xchat-gnome-perl-plugin.patch
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  fdupes
 BuildRequires:  gconf2-devel
@@ -89,6 +89,7 @@
 %patch1 -p1
 %patch2 -p1
 %patch3 -p1
+%patch4 -p1
 translation-update-upstream
 
 %build

++ xchat-gnome-perl-plugin.patch ++
commit fa86953132e7b9500430bd125276e755d963db01
Author: Dominique Leuenberger dims...@opensuse.org
Date:   Wed Apr 17 21:33:18 2013 +0200

plugin/perl: add function prototypes.

https://bugzilla.gnome.org/show_bug.cgi?id=698232

Index: xchat-gnome-0.26.1/plugins/perl/perl.c
===
--- xchat-gnome-0.26.1.orig/plugins/perl/perl.c
+++ xchat-gnome-0.26.1/plugins/perl/perl.c
@@ -37,7 +37,9 @@
 static xchat_plugin *ph; /* plugin handle */
 
 static int perl_load_file (char *script_name);
-
+void xchat_plugin_get_info   (char **plugin_name, char **plugin_desc, char 
**plugin_version, void **reserved);
+int  xchat_plugin_init   (xchat_plugin *plugin_handle, char **plugin_name, 
char **plugin_desc, char **plugin_version, char *arg);
+int  xchat_plugin_deinit (xchat_plugin * plugin_handle);
 #ifdef WIN32
 
 static DWORD
-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit xchat-gnome for openSUSE:Factory

2011-12-06 Thread h_root
Hello community,

here is the log from the commit of package xchat-gnome for openSUSE:Factory 
checked in at 2011-12-06 19:13:59

Comparing /work/SRC/openSUSE:Factory/xchat-gnome (Old)
 and  /work/SRC/openSUSE:Factory/.xchat-gnome.new (New)


Package is xchat-gnome, Maintainer is gnome-maintain...@suse.de

Changes:




Other differences:
--
++ xchat-gnome.spec ++
--- /var/tmp/diff_new_pack.rU2mPE/_old  2011-12-06 19:53:41.0 +0100
+++ /var/tmp/diff_new_pack.rU2mPE/_new  2011-12-06 19:53:41.0 +0100
@@ -19,7 +19,7 @@
 
 
 Name:   xchat-gnome
-License:GPLv2+
+License:GPL-2.0+
 Group:  Productivity/Networking/IRC
 Summary:A more simple IRC Client
 Version:0.26.1

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



commit xchat-gnome for openSUSE:Factory

2011-09-09 Thread h_root

Hello community,

here is the log from the commit of package xchat-gnome for openSUSE:Factory
checked in at Fri Sep 9 11:57:17 CEST 2011.




--- GNOME/xchat-gnome/xchat-gnome.changes   2011-04-22 14:46:22.0 
+0200
+++ /mounts/work_src_done/STABLE/xchat-gnome/xchat-gnome.changes
2011-09-07 02:16:31.0 +0200
@@ -1,0 +2,5 @@
+Wed Sep  7 00:10:09 UTC 2011 - vu...@opensuse.org
+
+- Add xchat-gnome-dso-linking.patch: fix linking issue.
+
+---

calling whatdependson for head-i586


New:

  xchat-gnome-dso-linking.patch



Other differences:
--
++ xchat-gnome.spec ++
--- /var/tmp/diff_new_pack.PbxVeI/_old  2011-09-09 11:57:13.0 +0200
+++ /var/tmp/diff_new_pack.PbxVeI/_new  2011-09-09 11:57:13.0 +0200
@@ -23,7 +23,7 @@
 Group:  Productivity/Networking/IRC
 Summary:A more simple IRC Client
 Version:0.26.1
-Release:17
+Release:19
 Source: 
http://download.gnome.org/sources/%{name}/0.24/%{name}-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM xchat-gnome-gtk2.19.7.patch dims...@opensuse.org -- Fix 
build with gtk 2.19.7. Patch taken from upstream git.
 Patch0: xchat-gnome-gtk2.19.7.patch
@@ -31,6 +31,8 @@
 Patch1: xchat-gnome-make382.patch
 # PATCH-FIX-UPSTREAM xchat-gnome-0.26.1-libnotify.patch fcro...@novell.com -- 
Fix build with libnotify 0.7.x. Patch taken from upstream git.
 Patch2: xchat-gnome-0.26.1-libnotify.patch
+# PATCH-FIX-UPSTREAM xchat-gnome-dso-linking.patch vu...@opensuse.org -- Fix 
linking issue, taken from git
+Patch3: xchat-gnome-dso-linking.patch
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  fdupes
 BuildRequires:  gconf2-devel
@@ -86,6 +88,7 @@
 %endif
 %patch1 -p1
 %patch2 -p1
+%patch3 -p1
 translation-update-upstream
 
 %build
@@ -98,6 +101,7 @@
 done
 ls -1 *.po | sed 's/\.po//' LINGUAS
 cd ..
+# needed for patch1  patch3
 autoreconf
 %configure\
 --disable-maintainer-mode \

++ xchat-gnome-dso-linking.patch ++
From 74296a4cb768e03273196dd7497f0329948abfe6 Mon Sep 17 00:00:00 2001
From: Ritesh Khadgaray khadga...@gmail.com
Date: Wed, 10 Mar 2010 09:23:45 +
Subject: Bug 612340 - [Patch] Add missing libm  libX11 linking

XChat-GNOME fails to build due to a change DSO-linking semantics of the gcc
compiler in Fedora. For more info please refer to:
https://bugzilla.redhat.com/show_bug.cgi?id=564820
http://fedoraproject.org/wiki/Features/ChangeInImplicitDSOLinking
http://fedoraproject.org/wiki/UnderstandingDSOLinkChange
---
diff --git a/src/fe-gnome/Makefile.am b/src/fe-gnome/Makefile.am
index 8faab84..1288ab9 100644
--- a/src/fe-gnome/Makefile.am
+++ b/src/fe-gnome/Makefile.am
@@ -113,6 +113,7 @@ xchat_gnome_CFLAGS = \
$(AM_CFLAGS)
 
 xchat_gnome_LDFLAGS = \
+   -lX11   \
-export-dynamic \
$(AM_LDFLAGS)
 
diff --git a/src/libcontrast/Makefile.am b/src/libcontrast/Makefile.am
index 08daa14..857d9ab 100644
--- a/src/libcontrast/Makefile.am
+++ b/src/libcontrast/Makefile.am
@@ -12,6 +12,7 @@ libcontrast_la_CFLAGS =   \
$(AM_CFLAGS)
 
 libcontrast_la_LDFLAGS =   \
+   -lm \
$(AM_LDFLAGS)   \
-static
 
--
cgit v0.9.0.2





Remember to have fun...

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



commit xchat-gnome for openSUSE:Factory

2011-05-02 Thread h_root

Hello community,

here is the log from the commit of package xchat-gnome for openSUSE:Factory
checked in at Mon May 2 16:30:29 CEST 2011.




--- GNOME/xchat-gnome/xchat-gnome.changes   2011-02-12 20:27:42.0 
+0100
+++ /mounts/work_src_done/STABLE/xchat-gnome/xchat-gnome.changes
2011-04-22 14:46:22.0 +0200
@@ -1,0 +2,15 @@
+Fri Apr 22 12:45:26 UTC 2011 - fcro...@novell.com
+
+- Update xchat-gnome-0.26.1-libnotify.patch to fix build with old
+  libnotify release.
+- Revert BuildRequires to libnotify-devel to fix build on old
+  release.
+
+---
+Tue Mar 22 17:35:28 UTC 2011 - fcro...@novell.com
+
+- Add xchat-gnome-0.26.1-libnotify.patch: fix build with libnotify
+  0.7.x (from git).
+- Change libnotify-devel BuildRequires to pkgconfig(libnotify).
+
+---

calling whatdependson for head-i586


New:

  xchat-gnome-0.26.1-libnotify.patch



Other differences:
--
++ xchat-gnome.spec ++
--- /var/tmp/diff_new_pack.b53lwo/_old  2011-05-02 16:29:30.0 +0200
+++ /var/tmp/diff_new_pack.b53lwo/_new  2011-05-02 16:29:30.0 +0200
@@ -23,12 +23,14 @@
 Group:  Productivity/Networking/IRC
 Summary:A more simple IRC Client
 Version:0.26.1
-Release:12
+Release:17
 Source: 
http://download.gnome.org/sources/%{name}/0.24/%{name}-%{version}.tar.bz2
 # PATCH-FIX-UPSTREAM xchat-gnome-gtk2.19.7.patch dims...@opensuse.org -- Fix 
build with gtk 2.19.7. Patch taken from upstream git.
 Patch0: xchat-gnome-gtk2.19.7.patch
 # PATCH-FIX-UPSTREAM xchat-gnome-make382.patch bgo#629382 dims...@opensuse.org 
-- Fix build with make 3.82, requires autoreconf and gnome-common BuildRequires
 Patch1: xchat-gnome-make382.patch
+# PATCH-FIX-UPSTREAM xchat-gnome-0.26.1-libnotify.patch fcro...@novell.com -- 
Fix build with libnotify 0.7.x. Patch taken from upstream git.
+Patch2: xchat-gnome-0.26.1-libnotify.patch
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  fdupes
 BuildRequires:  gconf2-devel
@@ -83,6 +85,7 @@
 %patch0 -p1
 %endif
 %patch1 -p1
+%patch2 -p1
 translation-update-upstream
 
 %build

++ xchat-gnome-0.26.1-libnotify.patch ++
From 557c940ba6e5f181f1db50059aa9ce107f10cb2e Mon Sep 17 00:00:00 2001
From: Ritesh Khadgaray khadga...@gmail.com
Date: Mon, 06 Dec 2010 18:03:02 +
Subject: libnotify has removed the ability to attach notifications to widgets 
or positions

update notify_notification_new call
---
diff --git a/plugins/notify-osd/notify-osd.c b/plugins/notify-osd/notify-osd.c
index cee221f..c7e8f77 100644
--- a/plugins/notify-osd/notify-osd.c
+++ b/plugins/notify-osd/notify-osd.c
@@ -67,7 +67,12 @@ add_notify (char *summary, char *message)
gchar *escaped;
 
escaped = g_markup_escape_text (message, strlen(message));
+#if !NOTIFY_CHECK_VERSION(0,7,0)
notify = notify_notification_new (summary, escaped, NULL, NULL);
+#else
+   notify = notify_notification_new (summary, escaped, NULL);
+#endif
+
notify_notification_set_urgency (notify, NOTIFY_URGENCY_NORMAL);
notify_notification_set_icon_from_pixbuf (notify, notify_icon);
if (!notify_notification_show (notify, error)) {
--
cgit v0.9


From 3d69d88f9f24fc63335ee2a4da6af0d9595510dd Mon Sep 17 00:00:00 2001
From: Frederic Crozat fcro...@novell.com
Date: Fri, 22 Apr 2011 14:31:12 +0200
Subject: [PATCH] Fix build when using libnotify  0.7

---
 plugins/notify-osd/notify-osd.c |4 
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/plugins/notify-osd/notify-osd.c b/plugins/notify-osd/notify-osd.c
index 9582529..c52c8fd 100644
--- a/plugins/notify-osd/notify-osd.c
+++ b/plugins/notify-osd/notify-osd.c
@@ -27,6 +27,10 @@
 #include xchat-plugin.h
 #include xg-plugin.h
 
+#ifndef NOTIFY_CHECK_VERSION
+#define NOTIFY_CHECK_VERSION(x,y,z) 0
+#endif
+
 #define NOTIFY_OSD_NAME_(On-screen display)
 #define NOTIFY_OSD_VERSION 0.1
 #define NOTIFY_OSD_DESCRIPTION _(Pops up notification of important messages 
when XChat-GNOME doesn't have the focus)
-- 
1.7.3.4






Remember to have fun...

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