Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 31 May 2006 17:43:30 -0600 (MDT)
From:      "Aaron Dalton" <aaron@FreeBSD.org>
To:        FreeBSD-gnats-submit@FreeBSD.org
Subject:   ports/98250: Update Port: devel/p5-IO 1.20->1.2301
Message-ID:  <200605312343.k4VNhU9B079555@moondance.itsy-bitsy.net>
Resent-Message-ID: <200605312350.k4VNoB5A089294@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help

>Number:         98250
>Category:       ports
>Synopsis:       Update Port: devel/p5-IO 1.20->1.2301
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    freebsd-ports-bugs
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Wed May 31 23:50:11 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator:     Aaron Dalton
>Release:        FreeBSD 5.4-RELEASE i386
>Organization:
>Environment:
System: FreeBSD moondance.itsy-bitsy.net 5.4-RELEASE FreeBSD 5.4-RELEASE #0: Sun May 8 10:21:06 UTC 2005 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386


	
>Description:
- Update from v1.20 to v1.2301
- Vendor requires Perl 5.6+ to run

IO 1.23 -- Sat Mar 25 19:28:28 CST 2006

 * Adjust the regression tests to use t/test.pl when $ENV{PERL_CORE} is 
defined
 * Reduce number of calls to getpeername
 * Call qualify on format name passed to format_write. Bug reported by 
Johan Vromans
 * Reduce calls to getprotobyname/number. Patch from Gisle Aas
 * Remove references to file TEST used in core so appropriate tests are 
skipped
   during an install from CPAN
 * Add method say to IO::Handle
 * Performance improvement for IO::File::open
 * Don't warn about a directory being closed in the DESTROY

IO 1.22 -- Mon Sep  5 10:29:35 CDT 2005

 * Update with changes made in perl core distribution

Change 173 on 1998/07/14 by <gbarr@pobox.com> (Graham Barr)

	IO::Socket
	- Added method connected
	
	IO.xs
	- Added check that file * is not null
	
	t/io_udp.t
	- Added check for connected
	- Made change to catch recv not returning the address, and added a 
fix to
	  ensure test does not hang
	
	t/io_sock.t
	- Added check for connected.

Change 137 on 1998/05/21 by <gbarr@pobox.com> (Graham Barr)

	IO::Socket::INET
	- Added checks to all peer* and host* methods for undef

Change 134 on 1998/05/09 by <gbarr@pobox.com> (Graham Barr)

	t/io_sock.t
	- fix race condition on Solaris & SunOS
	
	IO::Handle
	- Applied patch from Gisle Aas <gisle@aas.no> for
	    documentation update
	- Applied patch from Kuma <tgy@chocobo.org>
	    changed input_line_number to be on a per-handle basis.
	
	IO::File
	- Applied patch from Gisle Aas <gisle@aas.no> for
	    documentation update
	
	IO::Seekable
	- Applied patch from Gisle Aas <gisle@aas.no> for
	    documentation update
	    added sysseek
	
	IO, IO::Socket::INET
	- documentation update
	
	IO.xs
	- Applied patch from Gisle Aas <gisle@aas.no> for
	   blocking

Change 133 on 1998/05/09 by <gbarr@pobox.com> (Graham Barr)

	t/io_sock.t
	- Added checks for blocking()

Sun Apr 12 1998 <gbarr@pobox.com> (Graham Barr)

	IO.xs
	- enclosed newCONSTSUB in #ifdef as _64 now defines it.

Thu Mar 19 1998 <gbarr@pobox.com> (Graham Barr)

	All
	- Changed copyright/distribution policy back to be the same as 
perl

Sun Feb 15 1998 <gbarr@pobox.com> (Graham Barr)

	IO::Socket
	- Fix to ->accept, accept() returns false on error not undef.
>How-To-Repeat:
	
>Fix:

	

--- submission.txt begins here ---
? submission.txt
Index: Makefile
===================================================================
RCS file: /home/pcvs/ports/devel/p5-IO/Makefile,v
retrieving revision 1.4
diff -u -r1.4 Makefile
--- Makefile	9 Aug 2003 12:20:10 -0000	1.4
+++ Makefile	31 May 2006 23:42:14 -0000
@@ -6,7 +6,7 @@
 #
 
 PORTNAME=	IO
-PORTVERSION=	1.20
+PORTVERSION=	1.2301
 CATEGORIES=	devel perl5
 MASTER_SITES=	${MASTER_SITE_PERL_CPAN}
 MASTER_SITE_SUBDIR=	IO
@@ -24,8 +24,8 @@
 
 .include <bsd.port.pre.mk>
 
-.if ${PERL_LEVEL} > 500600
-IGNORE=		"This module is already included in perl 5.6.x and later."
+.if ${PERL_LEVEL} < 500600
+IGNORE=	requires at least Perl 5.6 to run
 .endif
 
 .include <bsd.port.post.mk>
Index: distinfo
===================================================================
RCS file: /home/pcvs/ports/devel/p5-IO/distinfo,v
retrieving revision 1.3
diff -u -r1.3 distinfo
--- distinfo	22 Jan 2006 11:02:38 -0000	1.3
+++ distinfo	31 May 2006 23:42:14 -0000
@@ -1,3 +1,3 @@
-MD5 (IO-1.20.tar.gz) = facf78d93f21aa8399726ef44c4a88c0
-SHA256 (IO-1.20.tar.gz) = c4d4aba0ba5c592e5c31fc4455430234c97ab32a509fc02de81c339ed894517f
-SIZE (IO-1.20.tar.gz) = 31587
+MD5 (IO-1.2301.tar.gz) = 4f209b75851b27f39a4d221d01a19b92
+SHA256 (IO-1.2301.tar.gz) = ea4662a3dc47b79b06837e64824cb32cd8c1919439772fe38f4b9e89bebad46e
+SIZE (IO-1.2301.tar.gz) = 49006
Index: files/patch-Makefile.PL
===================================================================
RCS file: /home/pcvs/ports/devel/p5-IO/files/patch-Makefile.PL,v
retrieving revision 1.1
diff -u -r1.1 patch-Makefile.PL
--- files/patch-Makefile.PL	10 Mar 2001 19:23:00 -0000	1.1
+++ files/patch-Makefile.PL	31 May 2006 23:42:14 -0000
@@ -1,10 +1,8 @@
-*** Makefile.PL.orig	Wed Jan  3 14:28:25 2001
---- Makefile.PL	Wed Jan  3 14:28:38 2001
-***************
-*** 75,79 ****
-  					map { "$_ */$_ */*/$_" }
-  					qw(*% *.html *.b[ac]k *.old *.orig))
-  			   },
-- 	'macro'		=> { INSTALLDIRS => 'perl' },
-  );
---- 75,78 ----
+--- Makefile.PL.orig	Sat Mar 25 19:27:13 2006
++++ Makefile.PL	Wed May 31 17:34:39 2006
+@@ -45,5 +45,4 @@
+ 					map { "$_ */$_ */*/$_" }
+ 					qw(*% *.html *.b[ac]k *.old *.orig))
+ 			   },
+-	INSTALLDIRS => 'perl',
+ );
--- submission.txt ends here ---


>Release-Note:
>Audit-Trail:
>Unformatted:



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200605312343.k4VNhU9B079555>