Bugfix update to evolution-data-server-3.4.4.

This commit is contained in:
ajacoutot 2012-08-13 07:50:27 +00:00
parent a5ec5219ce
commit bea5fd8c6a
3 changed files with 7 additions and 25 deletions

View File

@ -1,12 +1,11 @@
# $OpenBSD: Makefile,v 1.112 2012/07/13 14:31:04 ajacoutot Exp $
# $OpenBSD: Makefile,v 1.113 2012/08/13 07:50:27 ajacoutot Exp $
SHARED_ONLY= Yes
COMMENT= unified backend for PIM programs
GNOME_PROJECT= evolution-data-server
GNOME_VERSION= 3.4.3
REVISION= 0
GNOME_VERSION= 3.4.4
# Only get the first x.y which is needed in the PLIST.
R= ${GNOME_VERSION:C/^([0-9]+\.[0-9]+).*/\1/}
@ -66,8 +65,8 @@ YACC= bison
MODPY_RUNDEP= No
MODPY_ADJ_FILES= addressbook/libebook/gen-western-table.py
AUTOCONF_VERSION= 2.68
AUTOMAKE_VERSION= 1.9
AUTOCONF_VERSION= 2.69
AUTOMAKE_VERSION= 1.10
MODGNOME_TOOLS= goi vala

View File

@ -1,5 +1,2 @@
MD5 (evolution-data-server-3.4.3.tar.xz) = HkI8V4kWAyB71ZULcG0CAg==
RMD160 (evolution-data-server-3.4.3.tar.xz) = mzPcGeVy23vuKS445z02E1+hSKg=
SHA1 (evolution-data-server-3.4.3.tar.xz) = QPxmyjaXelo1/Ov7mZfDpf6G7xg=
SHA256 (evolution-data-server-3.4.3.tar.xz) = RV0O5bpfFjj1k0dkJ2l8m1/JZoOJsY8XBElxD3EWJtg=
SIZE (evolution-data-server-3.4.3.tar.xz) = 3645752
SHA256 (evolution-data-server-3.4.4.tar.xz) = zp4dViVQPNfx8GMewvVS4mgAwzMFtFcis066jaXO1JE=
SIZE (evolution-data-server-3.4.4.tar.xz) = 3647048

View File

@ -1,12 +1,7 @@
$OpenBSD: patch-addressbook_backends_file_e-book-backend-file_c,v 1.13 2012/07/13 14:31:04 ajacoutot Exp $
$OpenBSD: patch-addressbook_backends_file_e-book-backend-file_c,v 1.14 2012/08/13 07:50:27 ajacoutot Exp $
On OpenBSD, time_t is an int.
From 9ce3be5e6c44ac07c0dd8020627073c7427e7677 Mon Sep 17 00:00:00 2001
From: Matthew Barnes <mbarnes@redhat.com>
Date: Tue, 19 Jun 2012 19:17:04 +0000
Subject: e_book_backend_file_open: Fix directory existence test.
--- addressbook/backends/file/e-book-backend-file.c.orig Mon Jun 18 00:09:39 2012
+++ addressbook/backends/file/e-book-backend-file.c Fri Jul 13 16:21:56 2012
@@ -759,7 +759,7 @@ e_book_backend_file_create_unique_id (void)
@ -18,12 +13,3 @@ Subject: e_book_backend_file_open: Fix directory existence test.
}
static gchar *
@@ -1894,7 +1894,7 @@ e_book_backend_file_open (EBookBackendSync *backend,
source = e_backend_get_source (E_BACKEND (backend));
dirname = e_book_backend_file_extract_path_from_source (source, GET_PATH_DB_DIR);
- if (!g_file_test (dirname, G_FILE_TEST_IS_DIR)) {
+ if (only_if_exists && !g_file_test (dirname, G_FILE_TEST_IS_DIR)) {
g_free (dirname);
g_propagate_error (perror, EDB_ERROR (NO_SUCH_BOOK));
return;