From owner-freebsd-perl@FreeBSD.ORG Sat Jan 31 21:30:14 2004 Return-Path: Delivered-To: freebsd-perl@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9873A16A4CE; Sat, 31 Jan 2004 21:30:14 -0800 (PST) Received: from ftp.bjpu.edu.cn (ftp.bjpu.edu.cn [202.112.78.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA2E843D1D; Sat, 31 Jan 2004 21:30:12 -0800 (PST) (envelope-from delphij@frontfree.net) Received: by ftp.bjpu.edu.cn (Postfix, from userid 426) id 506F3535A; Sun, 1 Feb 2004 13:30:10 +0800 (CST) Received: from beastie.frontfree.net (beastie.frontfree.net [218.107.145.7]) by ftp.bjpu.edu.cn (Postfix) with ESMTP id 11AF25358; Sun, 1 Feb 2004 13:30:10 +0800 (CST) Received: by beastie.frontfree.net (Postfix, from userid 1001) id 6188011552; Sun, 1 Feb 2004 13:30:08 +0800 (CST) To: FreeBSD-gnats-submit@freebsd.org From: Xin LI X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20040201053008.6188011552@beastie.frontfree.net> Date: Sun, 1 Feb 2004 13:30:08 +0800 (CST) cc: perl@FreeBSD.org cc: tobez@FreeBSD.org Subject: [PATCH] Update lang/perl5.8 to 5.8.3 X-BeenThere: freebsd-perl@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Xin LI List-Id: maintainer of a number of perl-related ports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Feb 2004 05:30:14 -0000 >Submitter-Id: current-users >Originator: Xin LI >Organization: The FreeBSD Simplified Chinese Project >Confidential: no >Synopsis: [PATCH] Update lang/perl5.8 to 5.8.3 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 5.2-RELEASE i386 >Environment: System: FreeBSD beastie.frontfree.net 5.2-RELEASE FreeBSD 5.2-RELEASE #16: Sat Jan 10 15:24:09 CST 2004 delphij@beastie.frontfree.net:/usr/obj/usr/src/sys/BEASTIE i386 >Description: The attached patch updates Perl to 5.8.3. Please review it. This PR is mostly a reminder about the update because I have not throughly tested it (yet). On my own 5-CURRENT test box the updated port has passed 'make test' test suite. >How-To-Repeat: >Fix: --- patch-perl begins here --- diff -ru perl5.8.orig/Makefile perl5.8/Makefile --- perl5.8.orig/Makefile Wed Jan 28 13:11:21 2004 +++ perl5.8/Makefile Wed Jan 28 12:51:40 2004 @@ -7,7 +7,6 @@ PORTNAME= perl PORTVERSION= ${PERL_VER} -PORTREVISION= 3 CATEGORIES= lang devel perl5 MASTER_SITES= ${MASTER_SITE_PERL_CPAN} \ ${MASTER_SITE_LOCAL:S/$/:local/} \ @@ -20,7 +19,7 @@ MAINTAINER= tobez@FreeBSD.org COMMENT= Practical Extraction and Report Language -PERL_VER= 5.8.2 +PERL_VER= 5.8.3 PERL_ARCH= mach PERL_VERSION= ${PERL_VER} @@ -159,7 +158,7 @@ Locale::Language.3 Locale::Maketext.3 Locale::Maketext::TPJ13.3 \ Locale::Script.3 MIME::Base64.3 MIME::QuotedPrint.3 \ Math::BigFloat.3 Math::BigInt.3 Math::BigInt::Calc.3 \ - Math::BigInt::Scalar.3 Math::BigRat.3 \ + Math::BigRat.3 \ Math::Complex.3 Math::Trig.3 Memoize.3 Memoize::AnyDBM_File.3 \ Memoize::Expire.3 Memoize::ExpireFile.3 Memoize::ExpireTest.3 \ Memoize::NDBM_File.3 Memoize::SDBM_File.3 Memoize::Storable.3 \ diff -ru perl5.8.orig/distinfo perl5.8/distinfo --- perl5.8.orig/distinfo Wed Jan 28 13:11:21 2004 +++ perl5.8/distinfo Wed Jan 28 12:16:33 2004 @@ -1,2 +1,2 @@ -MD5 (perl-5.8.2.tar.gz) = fa356b74f99166b63a68a322c3c68f91 +MD5 (perl-5.8.3.tar.gz) = 6d2b389f8c6424b7af303f417947714f MD5 (BSDPAN-5.8.0_1.tar.gz) = af9f075e073b14714cfeb8a7582013e7 diff -ru perl5.8.orig/pkg-plist perl5.8/pkg-plist --- perl5.8.orig/pkg-plist Wed Jan 28 13:11:21 2004 +++ perl5.8/pkg-plist Wed Jan 28 12:51:24 2004 @@ -166,7 +166,6 @@ lib/perl5/%%PERL_VER%%/ExtUtils/Packlist.pm lib/perl5/%%PERL_VER%%/ExtUtils/README lib/perl5/%%PERL_VER%%/ExtUtils/TODO -lib/perl5/%%PERL_VER%%/ExtUtils/instmodsh lib/perl5/%%PERL_VER%%/ExtUtils/testlib.pm lib/perl5/%%PERL_VER%%/ExtUtils/typemap lib/perl5/%%PERL_VER%%/ExtUtils/xsubpp @@ -233,7 +232,6 @@ lib/perl5/%%PERL_VER%%/Math/BigFloat/Trace.pm lib/perl5/%%PERL_VER%%/Math/BigInt.pm lib/perl5/%%PERL_VER%%/Math/BigInt/Calc.pm -lib/perl5/%%PERL_VER%%/Math/BigInt/Scalar.pm lib/perl5/%%PERL_VER%%/Math/BigInt/Trace.pm lib/perl5/%%PERL_VER%%/Math/BigRat.pm lib/perl5/%%PERL_VER%%/Math/Complex.pm --- patch-perl ends here ---