pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/devel/rt3 perl FCGI 0.69 onwards is more picky about t...
details: https://anonhg.NetBSD.org/pkgsrc/rev/4d6ea88cedaf
branches: trunk
changeset: 574308:4d6ea88cedaf
user: spz <spz%pkgsrc.org@localhost>
date: Tue Apr 13 21:06:30 2010 +0000
description:
perl FCGI 0.69 onwards is more picky about the strings it gets.
Thus, if you feed it perl strings with utf-8 you get a complaint about
wide characters in the string.
The new patch-ac contains a fix.
diffstat:
devel/rt3/Makefile | 4 ++--
devel/rt3/distinfo | 3 ++-
devel/rt3/patches/patch-ac | 12 ++++++++++++
3 files changed, 16 insertions(+), 3 deletions(-)
diffs (44 lines):
diff -r ffe6a408e20a -r 4d6ea88cedaf devel/rt3/Makefile
--- a/devel/rt3/Makefile Tue Apr 13 21:05:41 2010 +0000
+++ b/devel/rt3/Makefile Tue Apr 13 21:06:30 2010 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.42 2010/03/14 13:12:04 spz Exp $
+# $NetBSD: Makefile,v 1.43 2010/04/13 21:06:30 spz Exp $
DISTNAME= rt-3.8.7
CATEGORIES= devel
MASTER_SITES= http://download.bestpractical.com/pub/rt/release/
-PKGREVISION= 1
+PKGREVISION= 2
MAINTAINER= spz%NetBSD.org@localhost
HOMEPAGE= http://bestpractical.com/rt/
diff -r ffe6a408e20a -r 4d6ea88cedaf devel/rt3/distinfo
--- a/devel/rt3/distinfo Tue Apr 13 21:05:41 2010 +0000
+++ b/devel/rt3/distinfo Tue Apr 13 21:06:30 2010 +0000
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.16 2010/03/14 13:12:04 spz Exp $
+$NetBSD: distinfo,v 1.17 2010/04/13 21:06:30 spz Exp $
SHA1 (rt-3.8.7.tar.gz) = 9de5860c5c58d40c5f6914cdde807ecc66a68f20
RMD160 (rt-3.8.7.tar.gz) = 269b7a7ef18afa6f1191c77bf7cadbbb7ef698d1
Size (rt-3.8.7.tar.gz) = 3372703 bytes
SHA1 (patch-aa) = 23964ba8d686931e1f92be88fa3a5d5e06070fce
SHA1 (patch-ab) = 0cbfa31fb20b2c53e7beeed5591437361bbcf173
+SHA1 (patch-ac) = a330a62fba92f98ec3d590efccbc7607aebb3854
diff -r ffe6a408e20a -r 4d6ea88cedaf devel/rt3/patches/patch-ac
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/devel/rt3/patches/patch-ac Tue Apr 13 21:06:30 2010 +0000
@@ -0,0 +1,12 @@
+$NetBSD: patch-ac,v 1.3 2010/04/13 21:06:30 spz Exp $
+
+--- ./lib/RT/Interface/Web.pm.orig 2009-12-11 17:27:20.000000000 +0000
++++ ./lib/RT/Interface/Web.pm
+@@ -88,6 +88,7 @@ sub EscapeUTF8 {
+ $$ref =~ s/\)/)/g;
+ $$ref =~ s/"/"/g;
+ $$ref =~ s/'/'/g;
++ $$ref = Encode::encode_utf8($$ref);
+ }
+
+ # }}}
Home |
Main Index |
Thread Index |
Old Index