upgrade to version 0.71

This commit is contained in:
kevlo 2001-10-29 01:41:59 +00:00
parent 55cf5fa44d
commit 4b5f2fe021
3 changed files with 5 additions and 16 deletions

View File

@ -1,8 +1,8 @@
# $OpenBSD: Makefile,v 1.2 2001/05/06 05:00:18 lebel Exp $
# $OpenBSD: Makefile,v 1.3 2001/10/29 01:41:59 kevlo Exp $
COMMENT= "modules to implement the irc protocol"
DISTNAME= Net-IRC-0.70
DISTNAME= Net-IRC-0.71
PKGNAME= p5-${DISTNAME}
CATEGORIES= net perl5
NEED_VERSION= 1.402

View File

@ -1,3 +1,3 @@
MD5 (Net-IRC-0.70.tar.gz) = 27ee8e5990c6c98a89941c6880de7225
RMD160 (Net-IRC-0.70.tar.gz) = cdd631f4462d3b2e32639fd9c2a8ceb5be8065fd
SHA1 (Net-IRC-0.70.tar.gz) = 1fb14b604d473eff20bd5ee9da3ede799281b360
MD5 (Net-IRC-0.71.tar.gz) = a826fb30864b619d6de47c97cef4fc24
RMD160 (Net-IRC-0.71.tar.gz) = 5c729390ff7bb5aeecbe1d3aa4f35d45adc33693
SHA1 (Net-IRC-0.71.tar.gz) = d621a8abb5be1f136825b9bd5ffcfa939b1fbbf2

View File

@ -1,11 +0,0 @@
--- Connection.pm.orig Sun Jul 15 17:38:58 2001
+++ Connection.pm Sun Jul 15 17:39:41 2001
@@ -1101,7 +1101,7 @@
/x) # That ought to do it for now...
{
$line = substr $line, 1 if $line =~ /^:/;
- ($from, $line) = split ":", $line, 2;
+ ($from, $line) = $line =~ m/^(.*):(.*?)$/;
($from, $type, @stuff) = split /\s+/, $from;
$type = lc $type;