pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/liferea update to 1.4.12



details:   https://anonhg.NetBSD.org/pkgsrc/rev/50372b583bfd
branches:  trunk
changeset: 538249:50372b583bfd
user:      drochner <drochner%pkgsrc.org@localhost>
date:      Sun Feb 03 11:14:27 2008 +0000

description:
update to 1.4.12
changes:
-fix a crash when selecting news bins
-add compatibility with non-standard "xmlURL" OPML attributes
 used by LiveJournal
-bugfixes

diffstat:

 www/liferea/Makefile         |   5 ++---
 www/liferea/distinfo         |  11 +++++------
 www/liferea/patches/patch-ae |  39 ++++++---------------------------------
 www/liferea/patches/patch-af |  13 -------------
 4 files changed, 13 insertions(+), 55 deletions(-)

diffs (109 lines):

diff -r 6b4feddf76bc -r 50372b583bfd www/liferea/Makefile
--- a/www/liferea/Makefile      Sun Feb 03 03:37:32 2008 +0000
+++ b/www/liferea/Makefile      Sun Feb 03 11:14:27 2008 +0000
@@ -1,9 +1,8 @@
-# $NetBSD: Makefile,v 1.67 2008/01/16 19:53:24 smb Exp $
+# $NetBSD: Makefile,v 1.68 2008/02/03 11:14:27 drochner Exp $
 
-DISTNAME=              liferea-1.4.10
+DISTNAME=              liferea-1.4.12
 CATEGORIES=            www
 MASTER_SITES=          ${MASTER_SITE_SOURCEFORGE:=liferea/}
-PKGREVISION=           2
 
 MAINTAINER=            pkgsrc-users%NetBSD.org@localhost
 HOMEPAGE=              http://liferea.sourceforge.net/
diff -r 6b4feddf76bc -r 50372b583bfd www/liferea/distinfo
--- a/www/liferea/distinfo      Sun Feb 03 03:37:32 2008 +0000
+++ b/www/liferea/distinfo      Sun Feb 03 11:14:27 2008 +0000
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.46 2008/01/16 19:53:24 smb Exp $
+$NetBSD: distinfo,v 1.47 2008/02/03 11:14:27 drochner Exp $
 
-SHA1 (liferea-1.4.10.tar.gz) = 7293e6872149308d0fbfdad57c3aae8ec20b6b63
-RMD160 (liferea-1.4.10.tar.gz) = af7656ef9e89850c5e5b2fcee4b9e1d5312ffaf5
-Size (liferea-1.4.10.tar.gz) = 1609333 bytes
-SHA1 (patch-ae) = 546eb57a0e98d511c53da66483180efb0e25a8cb
-SHA1 (patch-af) = fa8d4ec8b23a73890a9f1c62387c775e44bb7878
+SHA1 (liferea-1.4.12.tar.gz) = fcc1c49e657113e81005aeb725f0d8069882ac2e
+RMD160 (liferea-1.4.12.tar.gz) = 893242d162837da70bb46e11140cbe14c2299025
+Size (liferea-1.4.12.tar.gz) = 1610494 bytes
+SHA1 (patch-ae) = 91c32840150a33d2162301c17bd5c35edc6264ba
diff -r 6b4feddf76bc -r 50372b583bfd www/liferea/patches/patch-ae
--- a/www/liferea/patches/patch-ae      Sun Feb 03 03:37:32 2008 +0000
+++ b/www/liferea/patches/patch-ae      Sun Feb 03 11:14:27 2008 +0000
@@ -1,35 +1,8 @@
-$NetBSD: patch-ae,v 1.3 2008/01/16 19:53:24 smb Exp $
+$NetBSD: patch-ae,v 1.4 2008/02/03 11:14:27 drochner Exp $
 
---- src/common.c.orig  2007-10-21 14:30:46.000000000 -0400
-+++ src/common.c       2008-01-09 15:58:30.000000000 -0500
-@@ -37,7 +37,7 @@
- #  include <config.h>
- #endif
- 
--#define _XOPEN_SOURCE /* glibc2 needs this (man strptime) */
-+#define _XOPEN_SOURCE 600 /* Set according to Opengroup standards */
- 
- #include <libxml/uri.h>
- 
-@@ -196,7 +196,7 @@
- 
- /* converts a ISO 8601 time string to a time_t value */
- time_t parseISO8601Date(gchar *date) {
--      struct tm       tm;
-+      struct tm       tm, t2buf;
-       time_t          t, t2, offset = 0;
-       gboolean        success = FALSE;
-       gchar *pos;
-@@ -252,7 +252,7 @@
-               if((time_t)(-1) != (t = mktime(&tm))) {
-                       /* Correct for the local timezone*/
-                       t = t - offset;
--                      t2 = mktime(gmtime(&t));
-+                      t2 = mktime(gmtime_r(&t, &t2buf));
-                       t = t - (t2 - t);
-                       
-                       return t;
-@@ -270,9 +270,9 @@
+--- src/common.c.orig  2008-01-13 02:07:10.000000000 +0100
++++ src/common.c
+@@ -273,9 +273,9 @@ gchar *dayofweek[] = { "Sun", "Mon", "Tu
  gchar *months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"};
  
  gchar *createRFC822Date(const time_t *time) {
@@ -41,7 +14,7 @@
        return g_strdup_printf("%s, %2d %s %4d %02d:%02d:%02d GMT", dayofweek[tm->tm_wday], tm->tm_mday,
                                           months[tm->tm_mon], 1900 + tm->tm_year, tm->tm_hour, tm->tm_min, tm->tm_sec);
  }
-@@ -322,7 +322,7 @@
+@@ -325,7 +325,7 @@ static time_t common_parse_rfc822_tz(cha
  
  /* converts a RFC822 time string to a time_t value */
  time_t parseRFC822Date(gchar *date) {
@@ -50,7 +23,7 @@
        time_t          t, t2;
        char            *oldlocale;
        char            *pos;
-@@ -370,7 +370,7 @@
+@@ -373,7 +373,7 @@ time_t parseRFC822Date(gchar *date) {
                           correction. (Usually, there is no daylight savings
                           time since the input is GMT.) */
                        t = t - common_parse_rfc822_tz(pos);
diff -r 6b4feddf76bc -r 50372b583bfd www/liferea/patches/patch-af
--- a/www/liferea/patches/patch-af      Sun Feb 03 03:37:32 2008 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-af,v 1.2 2008/01/16 19:53:24 smb Exp $
-
---- src/parsers/ns_dc.c.orig   2008-01-09 16:01:28.000000000 -0500
-+++ src/parsers/ns_dc.c        2008-01-09 16:02:11.000000000 -0500
-@@ -23,7 +23,7 @@
- #  include <config.h>
- #endif
- 
--#define _XOPEN_SOURCE         /* glibc2 needs this (man strptime) */
-+#define _XOPEN_SOURCE 600 /* Set according to Opengroup standards */
- 
- #include "ns_dc.h"
- #include "conf.h"



Home | Main Index | Thread Index | Old Index