aboutsummaryrefslogtreecommitdiff
path: root/mail/claws-mail
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2010-02-08 09:16:04 +0000
committerMartin Wilke <miwi@FreeBSD.org>2010-02-08 09:16:04 +0000
commitdf249d9fbad3fa9b4561858d5c99ca94536fa1a1 (patch)
tree124a1441cc6c2e493eafaa649ed977a88d403bbe /mail/claws-mail
parentf8ceb4d5802af1d41bb7cb86df3ee27dc03931db (diff)
downloadports-df249d9fbad3fa9b4561858d5c99ca94536fa1a1.tar.gz
ports-df249d9fbad3fa9b4561858d5c99ca94536fa1a1.zip
- Update to 3.7.5
Changelog: Bug fixes: o bug 2059 'gpgme >=1.1.8 not compatible with S/MIME encryption' o bug 2076 'having worked 2 times properly CLAWS ceased to decrypt incoming PGP mails -displays base64 instead - sucks completely' o bug 2098, 'claws-mails crashes frequently with pgpcore' o Address Book: fix button sensitivity in compose mode. Bump all cm-plugins Approved by: maintainers implicit
Notes
Notes: svn path=/head/; revision=249419
Diffstat (limited to 'mail/claws-mail')
-rw-r--r--mail/claws-mail/Makefile3
-rw-r--r--mail/claws-mail/distinfo6
-rw-r--r--mail/claws-mail/files/patch-plugins-pgcore_sgpgme.c30
-rw-r--r--mail/claws-mail/files/patch-src_privacy.c19
4 files changed, 4 insertions, 54 deletions
diff --git a/mail/claws-mail/Makefile b/mail/claws-mail/Makefile
index a7f4ffee4f74..77b695d2df31 100644
--- a/mail/claws-mail/Makefile
+++ b/mail/claws-mail/Makefile
@@ -6,8 +6,7 @@
#
PORTNAME= claws-mail
-PORTVERSION= 3.7.4
-PORTREVISION= 1
+PORTVERSION= 3.7.5
CATEGORIES= mail news ipv6
MASTER_SITES= SF/sylpheed-claws/Claws%20Mail/${PORTVERSION}
diff --git a/mail/claws-mail/distinfo b/mail/claws-mail/distinfo
index 67e2e18e40c8..64f78e4f20ca 100644
--- a/mail/claws-mail/distinfo
+++ b/mail/claws-mail/distinfo
@@ -1,3 +1,3 @@
-MD5 (claws-mail-3.7.4.tar.bz2) = aa6c8b9177bc2bc506470821ee2afbb2
-SHA256 (claws-mail-3.7.4.tar.bz2) = 96022a5a2982d945320ce0ffc4e572dbd6b2e9856a0a7de2336c8211cc66089d
-SIZE (claws-mail-3.7.4.tar.bz2) = 5971559
+MD5 (claws-mail-3.7.5.tar.bz2) = 05a97ef3bf41ae5e6e2a3ddeb600ab44
+SHA256 (claws-mail-3.7.5.tar.bz2) = 290fa9373d55911b24423bf0d656cfa16bc8117c6349e15cdfe7513bd776dd01
+SIZE (claws-mail-3.7.5.tar.bz2) = 6060781
diff --git a/mail/claws-mail/files/patch-plugins-pgcore_sgpgme.c b/mail/claws-mail/files/patch-plugins-pgcore_sgpgme.c
deleted file mode 100644
index 85f988bc357f..000000000000
--- a/mail/claws-mail/files/patch-plugins-pgcore_sgpgme.c
+++ /dev/null
@@ -1,30 +0,0 @@
-Index: src/plugins/pgpcore/sgpgme.c
-===================================================================
-RCS file: //claws/src/plugins/pgpcore/Attic/sgpgme.c,v
-retrieving revision 1.1.2.65
-retrieving revision 1.1.2.66
-diff -u -r1.1.2.65 -r1.1.2.66
---- src/plugins/pgpcore/sgpgme.c 20 Oct 2009 17:40:30 -0000 1.1.2.65
-+++ src/plugins/pgpcore/sgpgme.c 16 Jan 2010 18:19:42 -0000 1.1.2.66
-@@ -860,15 +860,17 @@
- if (!err)
- err = gpgme_op_keylist_next(ctx, &key);
- gpgme_op_keylist_end(ctx);
-- gpgme_release(ctx);
- if (gpg_err_code(err) == GPG_ERR_EOF) {
- if (gpgme_get_protocol(ctx) != GPGME_PROTOCOL_CMS) {
- gpgme_set_protocol(ctx, GPGME_PROTOCOL_CMS);
- goto check_again;
- }
-+ gpgme_release(ctx);
- return FALSE;
-- } else
-+ } else {
-+ gpgme_release(ctx);
- return TRUE;
-+ }
- }
-
- void sgpgme_check_create_key(void)
-
-
diff --git a/mail/claws-mail/files/patch-src_privacy.c b/mail/claws-mail/files/patch-src_privacy.c
deleted file mode 100644
index 422f806ebe7b..000000000000
--- a/mail/claws-mail/files/patch-src_privacy.c
+++ /dev/null
@@ -1,19 +0,0 @@
-Index: src/privacy.c
-===================================================================
-RCS file: //claws/src/privacy.c,v
-retrieving revision 1.10.2.22
-retrieving revision 1.10.2.23
-diff -u -r1.10.2.22 -r1.10.2.23
---- src/privacy.c 23 Feb 2009 16:55:45 -0000 1.10.2.22
-+++ src/privacy.c 15 Jan 2010 13:42:13 -0000 1.10.2.23
-@@ -318,6 +318,8 @@
- GSList *cur;
- cm_return_val_if_fail(mimeinfo != NULL, FALSE);
-
-+ procmime_decode_content(mimeinfo);
-+
- for(cur = systems; cur != NULL; cur = g_slist_next(cur)) {
- PrivacySystem *system = (PrivacySystem *) cur->data;
-
-
-