pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/news/pan Update to 0.136:
details: https://anonhg.NetBSD.org/pkgsrc/rev/8f7a7d5abe5d
branches: trunk
changeset: 602277:8f7a7d5abe5d
user: wiz <wiz%pkgsrc.org@localhost>
date: Mon Apr 09 23:00:48 2012 +0000
description:
Update to 0.136:
This release introduces a plethora of bugfixes and improvements, everybody
using older versions of Pan is encouraged to upgrade. This version supports
binary uploading, TLS (SSL) connections, PGP handling and other nice
features.
diffstat:
news/pan/Makefile | 5 ++---
news/pan/PLIST | 3 ++-
news/pan/distinfo | 10 ++++++----
news/pan/patches/patch-pan_gui_e-cte-dialog.c | 15 +++++++++++++++
news/pan/patches/patch-pan_usenet-utils_mime-utils.cc | 15 +++++++++++++++
5 files changed, 40 insertions(+), 8 deletions(-)
diffs (84 lines):
diff -r e34a410b29e0 -r 8f7a7d5abe5d news/pan/Makefile
--- a/news/pan/Makefile Mon Apr 09 18:39:17 2012 +0000
+++ b/news/pan/Makefile Mon Apr 09 23:00:48 2012 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.65 2012/03/03 00:13:49 wiz Exp $
+# $NetBSD: Makefile,v 1.66 2012/04/09 23:00:48 wiz Exp $
#
-DISTNAME= pan-0.135
-PKGREVISION= 3
+DISTNAME= pan-0.136
CATEGORIES= news
MASTER_SITES= http://pan.rebelbase.com/download/releases/${DISTNAME:C/pan-//}/source/
EXTRACT_SUFX= .tar.bz2
diff -r e34a410b29e0 -r 8f7a7d5abe5d news/pan/PLIST
--- a/news/pan/PLIST Mon Apr 09 18:39:17 2012 +0000
+++ b/news/pan/PLIST Mon Apr 09 23:00:48 2012 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.12 2011/06/17 13:07:53 obache Exp $
+@comment $NetBSD: PLIST,v 1.13 2012/04/09 23:00:48 wiz Exp $
bin/pan
share/applications/pan.desktop
share/locale/am/LC_MESSAGES/pan.mo
@@ -13,6 +13,7 @@
share/locale/el/LC_MESSAGES/pan.mo
share/locale/en_CA/LC_MESSAGES/pan.mo
share/locale/en_GB/LC_MESSAGES/pan.mo
+share/locale/eo/LC_MESSAGES/pan.mo
share/locale/es/LC_MESSAGES/pan.mo
share/locale/et/LC_MESSAGES/pan.mo
share/locale/eu/LC_MESSAGES/pan.mo
diff -r e34a410b29e0 -r 8f7a7d5abe5d news/pan/distinfo
--- a/news/pan/distinfo Mon Apr 09 18:39:17 2012 +0000
+++ b/news/pan/distinfo Mon Apr 09 23:00:48 2012 +0000
@@ -1,5 +1,7 @@
-$NetBSD: distinfo,v 1.19 2011/06/17 13:07:53 obache Exp $
+$NetBSD: distinfo,v 1.20 2012/04/09 23:00:48 wiz Exp $
-SHA1 (pan-0.135.tar.bz2) = 6cd93facf86615761279113badd7462e59399ae4
-RMD160 (pan-0.135.tar.bz2) = 09e98323ad88d0bc609d8ca030cbe8316b2b5e9e
-Size (pan-0.135.tar.bz2) = 1404420 bytes
+SHA1 (pan-0.136.tar.bz2) = 05c5b3577ea7445d74b0be0ec91dfabe18c6717f
+RMD160 (pan-0.136.tar.bz2) = 1a168c8736427e1fd7894f484996f0180ac87ad3
+Size (pan-0.136.tar.bz2) = 1509412 bytes
+SHA1 (patch-pan_gui_e-cte-dialog.c) = a13a5bd87188aed6add39a2b8e16df0a02a11482
+SHA1 (patch-pan_usenet-utils_mime-utils.cc) = 3e807f25924907744fcffc6a857d9b8f55449243
diff -r e34a410b29e0 -r 8f7a7d5abe5d news/pan/patches/patch-pan_gui_e-cte-dialog.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/news/pan/patches/patch-pan_gui_e-cte-dialog.c Mon Apr 09 23:00:48 2012 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-pan_gui_e-cte-dialog.c,v 1.1 2012/04/09 23:00:49 wiz Exp $
+
+Non-void function needs return value.
+
+--- pan/gui/e-cte-dialog.c.orig 2012-04-08 15:30:36.000000000 +0000
++++ pan/gui/e-cte-dialog.c
+@@ -128,7 +128,7 @@ e_cte_dialog (const char *title, const c
+ GMimeContentEncoding value;
+
+ if (!gtk_combo_box_get_active_iter (GTK_COMBO_BOX(picker), &iter))
+- return;
++ return GMIME_CONTENT_ENCODING_DEFAULT;
+
+ model = gtk_combo_box_get_model (GTK_COMBO_BOX(picker));
+ gtk_tree_model_get (model, &iter, 1, &value, -1);
diff -r e34a410b29e0 -r 8f7a7d5abe5d news/pan/patches/patch-pan_usenet-utils_mime-utils.cc
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/news/pan/patches/patch-pan_usenet-utils_mime-utils.cc Mon Apr 09 23:00:48 2012 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-pan_usenet-utils_mime-utils.cc,v 1.1 2012/04/09 23:00:49 wiz Exp $
+
+Fix build with NetBSD's iconv().
+
+--- pan/usenet-utils/mime-utils.cc.orig 2012-04-08 15:30:36.000000000 +0000
++++ pan/usenet-utils/mime-utils.cc
+@@ -77,7 +77,7 @@ namespace pan
+ outbuf = out + converted;
+ outleft = outlen - converted;
+
+- converted = iconv (cd, (char **) &inbuf, &inleft, &outbuf, &outleft);
++ converted = iconv (cd, (const char **) &inbuf, &inleft, &outbuf, &outleft);
+
+ if (converted != (size_t) -1 && errno == 0) {
+ /*
Home |
Main Index |
Thread Index |
Old Index