diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-09-21 15:49:37 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-09-21 15:49:37 +0000 |
commit | ae08410274473c5ab78d300ea2365c4b1070cc61 (patch) | |
tree | b7c8ba3dee66edfadb32e57332ed76025981c94d /gnome-unstable | |
parent | d739da01541d53414129d3171df221cfe2440fe5 (diff) |
Wed Sep 21 15:49:35 UTC 2011
Diffstat (limited to 'gnome-unstable')
4 files changed, 0 insertions, 170 deletions
diff --git a/gnome-unstable/folks/Bug_658631_crash_at_empathy_startup.patch b/gnome-unstable/folks/Bug_658631_crash_at_empathy_startup.patch deleted file mode 100644 index 6ba35bc02..000000000 --- a/gnome-unstable/folks/Bug_658631_crash_at_empathy_startup.patch +++ /dev/null @@ -1,41 +0,0 @@ -From 1f85f89051e63b05e271b418687c242a83e2f296 Mon Sep 17 00:00:00 2001 -From: Philip Withnall <philip@tecnocode.co.uk> -Date: Mon, 12 Sep 2011 22:09:10 +0000 -Subject: Bug 658631 — crash at empathy startup - -In the case that a persona is removed and the individual containing that -persona is replaced by a different non-null individual which doesn't contain -that persona (because it's been removed), we need to set the persona's -individual pointer to null rather than the replacement individual. - -This stops us tripping the assertion in the setter for Persona.individual. - -Closes: bgo#658631 ---- -diff --git a/folks/individual.vala b/folks/individual.vala -index 3b6c12b..59548ee 100644 ---- a/folks/individual.vala -+++ b/folks/individual.vala -@@ -1510,7 +1510,19 @@ public class Folks.Individual : Object, - * aggregator's rewritten, it would be nice to fix this. */ - if (persona.individual == this) - { -- persona.individual = replacement_individual; -+ /* It may be the case that the persona's being removed from the -+ * individual (i.e. the replacement individual is non-null, but -+ * doesn't contain this persona). In this case, we need to set the -+ * persona's individual to null. */ -+ if (replacement_individual != null && -+ persona in replacement_individual.personas) -+ { -+ persona.individual = replacement_individual; -+ } -+ else -+ { -+ persona.individual = null; -+ } - } - } - --- -cgit v0.9.0.2 diff --git a/gnome-unstable/glib-networking/fix_G_TLS_ERROR_EOF_handling.patch b/gnome-unstable/glib-networking/fix_G_TLS_ERROR_EOF_handling.patch deleted file mode 100644 index c26f422aa..000000000 --- a/gnome-unstable/glib-networking/fix_G_TLS_ERROR_EOF_handling.patch +++ /dev/null @@ -1,73 +0,0 @@ -From 9e2aaacafb45d51cff57dc033f4b5ad5bc1a1762 Mon Sep 17 00:00:00 2001 -From: Dan Winship <danw@gnome.org> -Date: Fri, 16 Sep 2011 15:29:29 +0000 -Subject: gnutls: fix G_TLS_ERROR_EOF handling with gnutls 3.0 - -gnutls 3.0 has a new error code for "peer closed connection without -sending a Close packet", so add some #ifdefs to do the right thing -with either 2.x or 3.x. - -https://bugzilla.gnome.org/show_bug.cgi?id=659233 ---- -diff --git a/tls/gnutls/gtlsconnection-gnutls.c b/tls/gnutls/gtlsconnection-gnutls.c -index c1ede79..0f792bb 100644 ---- a/tls/gnutls/gtlsconnection-gnutls.c -+++ b/tls/gnutls/gtlsconnection-gnutls.c -@@ -132,7 +132,10 @@ struct _GTlsConnectionGnutlsPrivate - - GError *error; - GCancellable *cancellable; -- gboolean blocking, eof; -+ gboolean blocking; -+#ifndef GNUTLS_E_PREMATURE_TERMINATION -+ gboolean eof; -+#endif - GIOCondition internal_direction; - }; - -@@ -548,19 +551,22 @@ end_gnutls_io (GTlsConnectionGnutls *gnutls, - gnutls->priv->need_handshake = TRUE; - return status; - } -- else if (status == GNUTLS_E_UNEXPECTED_PACKET_LENGTH) -+ else if ( -+#ifdef GNUTLS_E_PREMATURE_TERMINATION -+ status == GNUTLS_E_PREMATURE_TERMINATION -+#else -+ status == GNUTLS_E_UNEXPECTED_PACKET_LENGTH && gnutls->priv->eof -+#endif -+ ) - { -- if (gnutls->priv->eof) -+ if (gnutls->priv->require_close_notify) - { -- if (gnutls->priv->require_close_notify) -- { -- g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_EOF, -- _("TLS connection closed unexpectedly")); -- return status; -- } -- else -- return 0; -+ g_set_error_literal (error, G_TLS_ERROR, G_TLS_ERROR_EOF, -+ _("TLS connection closed unexpectedly")); -+ return status; - } -+ else -+ return 0; - } - - return status; -@@ -795,8 +801,10 @@ g_tls_connection_gnutls_pull_func (gnutls_transport_ptr_t transport_data, - - if (ret < 0) - set_gnutls_error (gnutls, G_IO_IN); -+#ifndef GNUTLS_E_PREMATURE_TERMINATION - else if (ret == 0) - gnutls->priv->eof = TRUE; -+#endif - - return ret; - } --- -cgit v0.9.0.2 diff --git a/gnome-unstable/glib-networking/glib-networking-2.29.9-port-gnutls3-API.patch b/gnome-unstable/glib-networking/glib-networking-2.29.9-port-gnutls3-API.patch deleted file mode 100644 index 19a168638..000000000 --- a/gnome-unstable/glib-networking/glib-networking-2.29.9-port-gnutls3-API.patch +++ /dev/null @@ -1,17 +0,0 @@ -Index: tls/gnutls/gtlsconnection-gnutls.c -=================================================================== ---- tls/gnutls/gtlsconnection-gnutls.c -+++ tls/gnutls/gtlsconnection-gnutls.c 2011-08-04 00:40:33.194189789 +0200 -@@ -860,9 +860,10 @@ - - if (peer_certificate) - { -- int status; -+ int verify_ret; -+ unsigned int status; - -- status = gnutls_certificate_verify_peers (gnutls->priv->session); -+ verify_ret = gnutls_certificate_verify_peers2 (gnutls->priv->session, &status); - peer_certificate_errors = g_tls_certificate_gnutls_convert_flags (status); - if (peer_certificate_errors) - { diff --git a/gnome-unstable/pygobject/documentation-location.patch b/gnome-unstable/pygobject/documentation-location.patch deleted file mode 100644 index a3bacd345..000000000 --- a/gnome-unstable/pygobject/documentation-location.patch +++ /dev/null @@ -1,39 +0,0 @@ -From 07cbf21a0c729000db28da7cb9ba08e5b79f7674 Mon Sep 17 00:00:00 2001 -From: Dieter Verfaillie <dieterv@optionexplicit.be> -Date: Tue, 23 Aug 2011 10:45:50 +0200 -Subject: [PATCH] Fix documentation installation directory - ---- - docs/Makefile.am | 5 +++-- - 1 files changed, 3 insertions(+), 2 deletions(-) - -diff --git a/docs/Makefile.am b/docs/Makefile.am -index 775e1e9..b9086a9 100644 ---- a/docs/Makefile.am -+++ b/docs/Makefile.am -@@ -1,3 +1,4 @@ -+PLATFORM_VERSION = 3.0 - REF_VERSION = $(PYGOBJECT_MAJOR_VERSION).$(PYGOBJECT_MINOR_VERSION) - FULL_VERSION = $(REF_VERSION).$(PYGOBJECT_MICRO_VERSION) - -@@ -52,7 +53,7 @@ XSL_FILES = \ - # so the date is newer then the files in HTML_FILES - FIXXREF = xsl/fixxref.py - --TARGET_DIR = $(datadir)/gtk-doc/html/pygobject -+TARGET_DIR = $(datadir)/gtk-doc/html/pygobject-$(PLATFORM_VERSION) - CSSdir = $(TARGET_DIR) - CSS_DATA = $(CSS_FILES) - -@@ -75,7 +76,7 @@ uninstall-local: - rm -f $(DESTDIR)$(TARGET_DIR)/* - - --XSLdir = $(datadir)/pygobject/xsl -+XSLdir = $(datadir)/pygobject-$(PLATFORM_VERSION)/xsl - XSL_DATA = $(XSL_FILES) $(FIXXREF) - - EXTRA_DIST = \ --- -1.7.6.msysgit.0 - |