pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/converters/p5-Jcode Update p5-Jcode package to 2.06.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/95b1f63b725b
branches:  trunk
changeset: 515823:95b1f63b725b
user:      taca <taca%pkgsrc.org@localhost>
date:      Sun Jul 09 13:13:00 2006 +0000

description:
Update p5-Jcode package to 2.06.

#
# $Id: Changes,v 2.6 2006/07/02 07:56:06 dankogai Exp dankogai $
#
$Revision: 2.6 $ $Date: 2006/07/02 07:56:06 $
! Jcode.pm t/regex.t t/tr.t
  Security fix by Hanabusa-san that prevents options from being eval'ed.
  <20060702140740.9DDB.DOT-DANKOGAI%ziro.org@localhost>

2.05 2006/05/16 05:00:19
! Jcode.pm t/jfold.t
  Jcode->new('12345678900')->jfold(5) must be ('12345','67890', '0')
  but the trailing 0 was lost.
  Message-Id: <6.2.3.4.2.20060516111520.03407f18%mail.sj.estore.co.jp@localhost>

2.04 2006/04/15 04:08:30
! Jcode.pm t/perl581.t
  Fixed: $j->GIVEN_ENCODING not working as advertized.
  Message-Id: <20060414152058.2BCE.KSK%be.to@localhost>
  Message-Id: <4355CE4F-6261-458F-8F2F-66BE6831991D%dan.co.jp@localhost>

2.03 2005/07/07 04:00:52
! Jcode.pm t/tr.t
  Fixed: $j->tr($from, "a-z/") yields unexpected result
  Message-Id: <20050706114544.D80E.KSK%be.to@localhost>
  Message-Id: <530FB8E2-B09D-4BBA-A271-09F0D91AAD79%dan.co.jp@localhost>

2.02 2005/06/29 14:00:09
! Jcode.pm t/convert.t
  Addressed: Jcode::convert("constant" ...) croaks
  because  'Modification of a read-only value attempted'.
  Reported by Akira Kawamata via htmllint%ring.gr.jp@localhost
  Message-Id: <200506291823.ADF32994.VUONVB%piedey.co.jp@localhost>
  Message-Id: <674CABD0-F30B-4244-AFD6-AE9BFA0F3744%dan.co.jp@localhost>

2.01 2005/06/20 06:21:06
! Makefile.PL
  vs. ExtUtils::MakeMaker 6.30 -- Thanks, Mike (Castle|Schwern).
  Message-Id: <20050620041227.GE5165%windhund.schwern.org@localhost>

2.00 2005/05/16 19:07:51
! Jcode.pm
  2.00 released ex officio!

1.99_07 2005/03/08
! Jcode.pm
  jfold() fixes by nipotan
  http://blog.livedoor.jp/nipotan/archives/15894714.html

1.99_06 2005/02/19
! Jcode.pm Jcode/Nihongo.pod
  tr(), jfold(), m() and s() now accepts flagged UTF-8 strings
  in addition to EUC-JP strings.
! Jcode.pm Jcode/Nihongo.pod t/jfold.t
  More patches by makamaka%donzoko.net@localhost.
  Message-Id: <200502180920.j1I9KLvB000550%www231.sakura.ne.jp@localhost>

1.99_05 2005/02/18
! Jcode.pm MANIFEST Makefile.PL
+ Jcode/Nihongo.pod t/jfold.t
  Enhancements & Japanese POD with a help from makamaka%donzoko.net@localhost.
  Message-Id: <200502161338.j1GDct2I012566%www231.sakura.ne.jp@localhost>

1.99_04 2005/02/15
! Jcode.pm
  * Minor pod fixes
  * More field test at http://openlab.jp/Jcode/ before the official release

1.99_03 2005/02/13
! Jcode.pm
  Addressed a bug that Jcode did not handle 'binary' correctly,
  reported by Takahashi-san
+ t/append.t
  Surprisingly, append() was not in the test suite so there.
! Jcode.pm
  * $j->any_encoding feature added via AUTOLOAD.
  * More testings
  * Pod revisions

1.99_02 2005/02/12
- Unicode/_test.pl
  This file was totally unnecessary but got installed via MakeMaker
  so it is now removed from MANIFEST
! Makefile.PL
  Now smarter so that only Jcode.pm is build and installed
  when appropriate (when your perl is 5.8.1 or better).

1.99_01 2005/02/12
! *
  First 2.0-beta.

diffstat:

 converters/p5-Jcode/Makefile         |   8 ++------
 converters/p5-Jcode/distinfo         |   9 ++++-----
 converters/p5-Jcode/patches/patch-aa |  18 ------------------
 3 files changed, 6 insertions(+), 29 deletions(-)

diffs (61 lines):

diff -r 09841b77d063 -r 95b1f63b725b converters/p5-Jcode/Makefile
--- a/converters/p5-Jcode/Makefile      Sun Jul 09 13:08:30 2006 +0000
+++ b/converters/p5-Jcode/Makefile      Sun Jul 09 13:13:00 2006 +0000
@@ -1,10 +1,9 @@
-# $NetBSD: Makefile,v 1.18 2005/08/06 06:19:05 jlam Exp $
+# $NetBSD: Makefile,v 1.19 2006/07/09 13:13:00 taca Exp $
 #
 
-DISTNAME=      Jcode-0.88
+DISTNAME=      Jcode-2.06
 PKGNAME=       p5-${DISTNAME}
 SVR4_PKGNAME=  p5jco
-PKGREVISION=   2
 CATEGORIES=    converters japanese perl5
 MASTER_SITES=  http://openlab.ring.gr.jp/Jcode/
 
@@ -18,8 +17,5 @@
 
 PERL5_PACKLIST=                auto/Jcode/.packlist
 
-pre-configure:
-       @cd ${WRKSRC}; ${RM} -f mac_install.pl win_install.pl
-
 .include "../../lang/perl5/module.mk"
 .include "../../mk/bsd.pkg.mk"
diff -r 09841b77d063 -r 95b1f63b725b converters/p5-Jcode/distinfo
--- a/converters/p5-Jcode/distinfo      Sun Jul 09 13:08:30 2006 +0000
+++ b/converters/p5-Jcode/distinfo      Sun Jul 09 13:13:00 2006 +0000
@@ -1,6 +1,5 @@
-$NetBSD: distinfo,v 1.8 2005/02/23 16:12:34 agc Exp $
+$NetBSD: distinfo,v 1.9 2006/07/09 13:13:00 taca Exp $
 
-SHA1 (Jcode-0.88.tar.gz) = 6071a65b189ea5f6969583d8e47313d15ab64636
-RMD160 (Jcode-0.88.tar.gz) = 01b126c068cd034dcd4ed91f0d6ca239546ca455
-Size (Jcode-0.88.tar.gz) = 233586 bytes
-SHA1 (patch-aa) = 2d29204006ad6fbe9d0c4bc65e4c3664d3d8f00c
+SHA1 (Jcode-2.06.tar.gz) = 08c085bc8776b42b8dea178e56f7b820b3b39238
+RMD160 (Jcode-2.06.tar.gz) = f7e6f1d8c0eaf05730386367e9683f6360ee74ea
+Size (Jcode-2.06.tar.gz) = 350545 bytes
diff -r 09841b77d063 -r 95b1f63b725b converters/p5-Jcode/patches/patch-aa
--- a/converters/p5-Jcode/patches/patch-aa      Sun Jul 09 13:08:30 2006 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,18 +0,0 @@
-$NetBSD: patch-aa,v 1.2 2004/06/25 14:55:02 taca Exp $
-
---- MANIFEST.orig      2004-06-19 03:36:55.000000000 +0900
-+++ MANIFEST
-@@ -16,7 +16,6 @@ Unicode/_test.pl
- Unicode/euc2uni.h
- Unicode/uni2euc.h
- Unicode/uni.c
--mac_install.pl
- t/ambiguous.pl
- t/benchmark.pl
- t/convert.t
-@@ -33,5 +32,4 @@ t/tr.t
- t/unibench.pl
- t/x0212.euc
- t/zenkaku.euc
--win_install.pl
- META.yml                                 Module meta-data (added by MakeMaker)



Home | Main Index | Thread Index | Old Index