diff options
author | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2015-08-03 22:39:32 +0200 |
---|---|---|
committer | Bartłomiej Piotrowski <b@bpiotrowski.pl> | 2015-08-03 22:39:32 +0200 |
commit | 341e2145cdaa73e5f73a4b010fc5d9f68b4f5d4a (patch) | |
tree | 4f4f1433321d1a387578813c9e72e727d2d0d271 /main | |
parent | 70e182d033a7e76c95170b93c7679c48cdc754eb (diff) | |
download | aports-341e2145cdaa73e5f73a4b010fc5d9f68b4f5d4a.tar.bz2 aports-341e2145cdaa73e5f73a4b010fc5d9f68b4f5d4a.tar.xz |
main/claws-mail: upgrade to 3.12.0
Diffstat (limited to 'main')
-rw-r--r-- | main/claws-mail/APKBUILD | 16 | ||||
-rw-r--r-- | main/claws-mail/claws.git-72510f27b10889e119b42804835e8beaf70bc18d.patch | 30 |
2 files changed, 6 insertions, 40 deletions
diff --git a/main/claws-mail/APKBUILD b/main/claws-mail/APKBUILD index cc217ecf93..63e3e69eae 100644 --- a/main/claws-mail/APKBUILD +++ b/main/claws-mail/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=claws-mail -pkgver=3.11.1 -pkgrel=3 +pkgver=3.12.0 +pkgrel=0 pkgdesc="A GTK+ based e-mail client." url="http://www.claws-mail.org" arch="all" @@ -37,8 +37,7 @@ makedepends="gtk+-dev openssl-dev startup-notification-dev enchant-dev " depends="aspell-en" install= -source="http://downloads.sourceforge.net/project/claws-mail/Claws%20Mail/$pkgver/claws-mail-$pkgver.tar.xz - claws.git-72510f27b10889e119b42804835e8beaf70bc18d.patch +source="http://www.claws-mail.org/download.php?file=releases/claws-mail-$pkgver.tar.xz " _builddir="$srcdir"/$pkgname-$pkgver @@ -188,9 +187,6 @@ _vcalendar () { } -md5sums="4cbf9b53c4cf691e093bd98efc0dbb63 claws-mail-3.11.1.tar.xz -02c242490c4b99dd5387332566ffe3bc claws.git-72510f27b10889e119b42804835e8beaf70bc18d.patch" -sha256sums="d72381b6c9f872638cae2c208925e19bd5d4a9476bb9049742f1ba27c3efd133 claws-mail-3.11.1.tar.xz -8ab7a747ab483363bb49fb0e42094e8513f5ac9575d71a6841898b073f89f3b9 claws.git-72510f27b10889e119b42804835e8beaf70bc18d.patch" -sha512sums="ae4f0d4299647e201e94111a6eb26cce1d6a72045c317b879a07847cfcc75c35dfdf571f2826d365800586f5798131ce95985f746f7dbdd878f3766370ab3570 claws-mail-3.11.1.tar.xz -67add41b754cb3b0d08928b5c4cdea26bd271b2dd4303f22d641432f1d580308aadf5b7ae436c2451ed6649bcfec66f3f6dbc69e4655ac09aecc7ba43da054da claws.git-72510f27b10889e119b42804835e8beaf70bc18d.patch" +md5sums="73c11bf9f260473abe0e888af19e23b8 claws-mail-3.12.0.tar.xz" +sha256sums="272ad6aaa066a4f5e0f26ed151b23b836a65190e6b45c049479b5e7677e4d6ca claws-mail-3.12.0.tar.xz" +sha512sums="f6eb3eb9f252f93aab21305118eca34abab3a75abb6619a7ab4a79338a640de6012eeb9ffb4a1317cc3c1abfc830b8399e82a93b430aa72c131e14f9f630b321 claws-mail-3.12.0.tar.xz" diff --git a/main/claws-mail/claws.git-72510f27b10889e119b42804835e8beaf70bc18d.patch b/main/claws-mail/claws.git-72510f27b10889e119b42804835e8beaf70bc18d.patch deleted file mode 100644 index b16e59d470..0000000000 --- a/main/claws-mail/claws.git-72510f27b10889e119b42804835e8beaf70bc18d.patch +++ /dev/null @@ -1,30 +0,0 @@ -From 72510f27b10889e119b42804835e8beaf70bc18d Mon Sep 17 00:00:00 2001 -From: Andrej Kacian <ticho@claws-mail.org> -Date: Thu, 8 Jan 2015 22:51:04 +0100 -Subject: [PATCH] RSSyl: Day-of-week name in RFC822 timestamps is optional. - ---- - src/plugins/rssyl/libfeed/date.c | 7 +++++-- - 1 file changed, 5 insertions(+), 2 deletions(-) - -diff --git a/src/plugins/rssyl/libfeed/date.c b/src/plugins/rssyl/libfeed/date.c -index c37756d..92f5a86 100644 ---- a/src/plugins/rssyl/libfeed/date.c -+++ b/src/plugins/rssyl/libfeed/date.c -@@ -132,8 +132,11 @@ time_t parseRFC822Date(gchar *date) - if (c != NULL) - setlocale(LC_TIME, "C"); - -- if (!strptime(date, "%a, %d %b %Y %H:%M:%S %Z", &t) && -- !strptime(date, "%a, %d %b %Y %H:%M %Z", &t)) { -+ if (date != NULL && -+ !strptime(date, "%a, %d %b %Y %H:%M:%S %Z", &t) && -+ !strptime(date, "%a, %d %b %Y %H:%M %Z", &t) && -+ !strptime(date, "%d %b %Y %H:%M:%S %Z", &t) && -+ !strptime(date, "%d %b %Y %H:%M %Z", &t)) { - g_warning("Invalid RFC822 date!\n"); - if (c != NULL) - setlocale(LC_TIME, c); --- -1.7.10.4 - |