Accepting request 34501 from home:dimstar:branches:GNOME:Factory
Copy from home:dimstar:branches:GNOME:Factory/evolution via accept of submit request 34501 revision 4. Request was accepted with message: OBS-URL: https://build.opensuse.org/request/show/34501 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/evolution?expand=0&rev=72
This commit is contained in:
parent
613c298f37
commit
ff4e429499
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2b13eb5adfeb483304de1b76947d394211ccdd941b5e510e0aa064944a6e2622
|
||||
size 30280331
|
3
evolution-2.29.92.tar.bz2
Normal file
3
evolution-2.29.92.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a18ffea141281d75d5827f09ffc15d9ecf5faa9bf94f30ec86daaa6c966daf9a
|
||||
size 30447130
|
133
evolution-gtk2.19.7.patch
Normal file
133
evolution-gtk2.19.7.patch
Normal file
@ -0,0 +1,133 @@
|
||||
From 56e6bdb414fb251d99ffe43667bbc2a25741091a Mon Sep 17 00:00:00 2001
|
||||
From: Matthew Barnes <mbarnes@redhat.com>
|
||||
Date: Wed, 10 Mar 2010 12:38:32 +0000
|
||||
Subject: Bug 612374 - Build failure due to recent GTK+ deprecations
|
||||
|
||||
---
|
||||
diff --git a/calendar/gui/weekday-picker.c b/calendar/gui/weekday-picker.c
|
||||
index ab06db9..12dd47d 100644
|
||||
--- a/calendar/gui/weekday-picker.c
|
||||
+++ b/calendar/gui/weekday-picker.c
|
||||
@@ -92,15 +92,18 @@ colorize_items (WeekdayPicker *wp)
|
||||
GdkColor *outline, *focus_outline;
|
||||
GdkColor *fill, *sel_fill;
|
||||
GdkColor *text_fill, *sel_text_fill;
|
||||
+ GtkStateType state;
|
||||
gint i;
|
||||
|
||||
priv = wp->priv;
|
||||
|
||||
- outline = >K_WIDGET (wp)->style->fg[GTK_WIDGET_STATE (wp)];
|
||||
- focus_outline = >K_WIDGET (wp)->style->bg[GTK_WIDGET_STATE (wp)];
|
||||
+ state = gtk_widget_get_state (GTK_WIDGET (wp));
|
||||
|
||||
- fill = >K_WIDGET (wp)->style->base[GTK_WIDGET_STATE (wp)];
|
||||
- text_fill = >K_WIDGET (wp)->style->fg[GTK_WIDGET_STATE (wp)];
|
||||
+ outline = >K_WIDGET (wp)->style->fg[state];
|
||||
+ focus_outline = >K_WIDGET (wp)->style->bg[state];
|
||||
+
|
||||
+ fill = >K_WIDGET (wp)->style->base[state];
|
||||
+ text_fill = >K_WIDGET (wp)->style->fg[state];
|
||||
|
||||
sel_fill = >K_WIDGET (wp)->style->bg[GTK_STATE_SELECTED];
|
||||
sel_text_fill = >K_WIDGET (wp)->style->fg[GTK_STATE_SELECTED];
|
||||
diff --git a/mail/e-mail-display.c b/mail/e-mail-display.c
|
||||
index df65c25..70789c0 100644
|
||||
--- a/mail/e-mail-display.c
|
||||
+++ b/mail/e-mail-display.c
|
||||
@@ -98,10 +98,10 @@ mail_display_update_formatter_colors (EMailDisplay *display)
|
||||
EMFormatHTMLColorType type;
|
||||
EMFormatHTML *formatter;
|
||||
GdkColor *color;
|
||||
+ GtkStateType state;
|
||||
GtkStyle *style;
|
||||
- gint state;
|
||||
|
||||
- state = GTK_WIDGET_STATE (display);
|
||||
+ state = gtk_widget_get_state (GTK_WIDGET (display));
|
||||
formatter = display->priv->formatter;
|
||||
|
||||
style = gtk_widget_get_style (GTK_WIDGET (display));
|
||||
diff --git a/widgets/table/e-table-field-chooser-item.c b/widgets/table/e-table-field-chooser-item.c
|
||||
index f38cb39..69f1fe8 100644
|
||||
--- a/widgets/table/e-table-field-chooser-item.c
|
||||
+++ b/widgets/table/e-table-field-chooser-item.c
|
||||
@@ -463,7 +463,7 @@ etfci_draw (GnomeCanvasItem *item, GdkDrawable *drawable, gint x, gint y, gint w
|
||||
rows = e_table_header_count (etfci->combined_header);
|
||||
|
||||
style = GTK_WIDGET (canvas)->style;
|
||||
- state = GTK_WIDGET_STATE (canvas);
|
||||
+ state = gtk_widget_get_state (GTK_WIDGET (canvas));
|
||||
|
||||
y1 = y2 = 0;
|
||||
for (row = 0; row < rows; row++, y1 = y2) {
|
||||
@@ -519,6 +519,7 @@ etfci_start_drag (ETableFieldChooserItem *etfci, GdkEvent *event, gdouble x, gdo
|
||||
GtkWidget *widget = GTK_WIDGET (GNOME_CANVAS_ITEM (etfci)->canvas);
|
||||
GtkTargetList *list;
|
||||
GdkDragContext *context;
|
||||
+ GtkStateType state;
|
||||
ETableCol *ecol;
|
||||
GdkPixmap *pixmap;
|
||||
gint drag_col;
|
||||
@@ -552,8 +553,10 @@ etfci_start_drag (ETableFieldChooserItem *etfci, GdkEvent *event, gdouble x, gdo
|
||||
button_height = e_table_header_compute_height (ecol, widget);
|
||||
pixmap = gdk_pixmap_new (widget->window, etfci->width, button_height, -1);
|
||||
|
||||
+ state = gtk_widget_get_state (widget);
|
||||
+
|
||||
e_table_header_draw_button (pixmap, ecol,
|
||||
- widget->style, GTK_WIDGET_STATE (widget),
|
||||
+ widget->style, state,
|
||||
widget,
|
||||
0, 0,
|
||||
etfci->width, button_height,
|
||||
diff --git a/widgets/table/e-table-header-item.c b/widgets/table/e-table-header-item.c
|
||||
index 7c75b58..b2bcb59 100644
|
||||
--- a/widgets/table/e-table-header-item.c
|
||||
+++ b/widgets/table/e-table-header-item.c
|
||||
@@ -1000,6 +1000,7 @@ ethi_draw (GnomeCanvasItem *item,
|
||||
x2 += ethi->group_indent_width;
|
||||
for (col = 0; col < cols; col++, x1 = x2) {
|
||||
ETableCol *ecol = e_table_header_get_column (ethi->eth, col);
|
||||
+ GtkStateType state;
|
||||
gint col_width;
|
||||
|
||||
col_width = ecol->width;
|
||||
@@ -1015,9 +1016,11 @@ ethi_draw (GnomeCanvasItem *item,
|
||||
if (x2 <= x1)
|
||||
continue;
|
||||
|
||||
+ state = gtk_widget_get_state (GTK_WIDGET (canvas));
|
||||
+
|
||||
e_table_header_draw_button (drawable, ecol,
|
||||
GTK_WIDGET (canvas)->style,
|
||||
- GTK_WIDGET_STATE (canvas),
|
||||
+ state,
|
||||
GTK_WIDGET (canvas),
|
||||
x1 - x, -y,
|
||||
width, height,
|
||||
@@ -1154,6 +1157,7 @@ ethi_start_drag (ETableHeaderItem *ethi, GdkEvent *event)
|
||||
GtkWidget *widget = GTK_WIDGET (GNOME_CANVAS_ITEM (ethi)->canvas);
|
||||
GtkTargetList *list;
|
||||
GdkDragContext *context;
|
||||
+ GtkStateType state;
|
||||
ETableCol *ecol;
|
||||
gint col_width;
|
||||
GdkPixmap *pixmap;
|
||||
@@ -1210,10 +1214,12 @@ ethi_start_drag (ETableHeaderItem *ethi, GdkEvent *event)
|
||||
col_width = ecol->width;
|
||||
pixmap = gdk_pixmap_new (widget->window, col_width, ethi->height, -1);
|
||||
|
||||
+ state = gtk_widget_get_state (widget);
|
||||
+
|
||||
e_table_header_draw_button (
|
||||
pixmap, ecol,
|
||||
widget->style,
|
||||
- GTK_WIDGET_STATE (widget),
|
||||
+ state,
|
||||
widget,
|
||||
0, 0,
|
||||
col_width, ethi->height,
|
||||
--
|
||||
cgit v0.8.3.1
|
||||
|
@ -1,3 +1,37 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 8 10:05:45 CET 2010 - dimstar@opensuse.org
|
||||
|
||||
- Update to version 2.29.92:
|
||||
+ Bug Fixes:
|
||||
- bgo#529331: Deletes appointments when moving to the same
|
||||
calendar
|
||||
- bgo#594083: Oversized main window on startup
|
||||
- bgo#601551: [PST] evolution crashed with SIGSEGV
|
||||
- bgo#610327: Proxy login doesn't show folder list
|
||||
- bgo#610382: No addressbook selected on account disable
|
||||
- bgo#610658: Contact is lost after moving to the same address
|
||||
book
|
||||
- bgo#610659: Clear option is disabled after moving to other
|
||||
component
|
||||
- bgo#610663: Message receipts combo box is empty
|
||||
- bgo#610824: Contacts list view column width doesn't follow
|
||||
header
|
||||
- bgo#611873: Make triple-clicking a shortcut for "Show Only
|
||||
This ..."
|
||||
- bgo#611975: Delivery Notification message not
|
||||
internationalized
|
||||
+ Other Changes:
|
||||
- Various cleanups for Windows support
|
||||
- Work around recent GTK+ deprecations.
|
||||
- Fix a misspelled icon name.
|
||||
- Save state key file asynchronously.
|
||||
- Allow retrieving multiple messages without cancelling if the
|
||||
store is async
|
||||
- Restore some calendar headers that got dropped.
|
||||
- Do less output on an evolution-alarm-notify console
|
||||
+ Updated translations.
|
||||
- Add evolution-gtk2.19.7.patch to fix build with gtk 2.19.7.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 23 15:58:09 CET 2010 - dimstar@opensuse.org
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package evolution (Version 2.29.91)
|
||||
# spec file for package evolution (Version 2.29.92)
|
||||
#
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -60,7 +60,7 @@ License: LGPLv2.0 ; LGPLv3
|
||||
Group: Productivity/Networking/Email/Clients
|
||||
# This should be updated upon major version changes; it should match BASE_VERSION as defined in configure.in.
|
||||
%define evolution_base_version 2.30
|
||||
Version: 2.29.91
|
||||
Version: 2.29.92
|
||||
Release: 1
|
||||
Summary: The Integrated GNOME Mail, Calendar, and Address Book Suite
|
||||
Source0: ftp://ftp.gnome.org/pub/gnome/sources/evolution/2.25/%{name}-%{version}.tar.bz2
|
||||
@ -94,6 +94,8 @@ Patch54: bnc-445996-address-conflict.patch
|
||||
Patch101: sp-process-meetings.diff
|
||||
# PATCH-FIX-UPSTREAM evolution-as-needed.patch bgo#589393 dominique-obs@leuenberger.net -- Fix configure with --as-needed
|
||||
Patch102: evolution-as-needed.patch
|
||||
# PATCH-FIX-UPSTREAM evolution-gtk2.19.7.patch bgo#612374 dimstar@opensuse.org -- Do not use deprecated symbols from gtk 2.19.7, patch from git commit 56e6bd4
|
||||
Patch103: evolution-gtk2.19.7.patch
|
||||
Url: http://gnome.org/projects/evolution/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Recommends: bogofilter
|
||||
@ -200,6 +202,7 @@ gnome-patch-translation-prepare
|
||||
# NEEDS-REBASE
|
||||
#%patch101 -p1
|
||||
%patch102 -p1
|
||||
%patch103 -p1
|
||||
gnome-patch-translation-update
|
||||
|
||||
%build
|
||||
|
Loading…
Reference in New Issue
Block a user