From krion@voodoo.oberon.net  Tue May  6 15:51:09 2003
Return-Path: <krion@voodoo.oberon.net>
Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])
	by hub.freebsd.org (Postfix) with ESMTP id EBFF737B401
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  6 May 2003 15:51:09 -0700 (PDT)
Received: from office.LF.net (office.LF.net [212.9.190.165])
	by mx1.FreeBSD.org (Postfix) with ESMTP id 3EF3843FCB
	for <FreeBSD-gnats-submit@freebsd.org>; Tue,  6 May 2003 15:51:09 -0700 (PDT)
	(envelope-from krion@voodoo.oberon.net)
Received: from voodoo.oberon.net ([212.118.165.100])
	by office.LF.net with esmtp (TLSv1:DES-CBC3-SHA:168)
	(Exim 4.10)
	id 19DBH2-0009r1-00
	for FreeBSD-gnats-submit@freebsd.org; Wed, 07 May 2003 00:51:00 +0200
Received: from krion by voodoo.oberon.net with local (Exim 4.10)
	id 19DBHU-000LiV-00
	for FreeBSD-gnats-submit@freebsd.org; Wed, 07 May 2003 00:51:28 +0200
Message-Id: <E19DBHU-000LiV-00@voodoo.oberon.net>
Date: Wed, 07 May 2003 00:51:28 +0200
From: Kirill Ponomarew <ponomarew@oberon.net>
Sender: Kirill Ponomarew <krion@voodoo.oberon.net>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: Update security/botan: 1.2.0 -> 1.2.1
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         51903
>Category:       ports
>Synopsis:       Update security/botan: 1.2.0 -> 1.2.1
>Confidential:   no
>Severity:       non-critical
>Priority:       low
>Responsible:    freebsd-ports-bugs
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          update
>Submitter-Id:   current-users
>Arrival-Date:   Tue May 06 16:00:24 PDT 2003
>Closed-Date:    Mon May 12 01:30:50 PDT 2003
>Last-Modified:  Mon May 12 01:30:50 PDT 2003
>Originator:     Kirill Ponomarew
>Release:        FreeBSD 4.8-RELEASE i386
>Organization:
Oberon.net 
>Environment:
 
        
>Description:
Update security/botan: 1.2.0 -> 1.2.1

>How-To-Repeat:
>Fix:


diff -ruN botan.orig/Makefile botan/Makefile
--- botan.orig/Makefile	Sun May  4 20:59:39 2003
+++ botan/Makefile	Wed May  7 00:28:56 2003
@@ -7,7 +7,7 @@
 #
 
 PORTNAME=	botan
-PORTVERSION=	1.2.0
+PORTVERSION=	1.2.1
 PORTREVISION=	0
 CATEGORIES=	security
 MASTER_SITES=	${MASTER_SITE_SOURCEFORGE}
diff -ruN botan.orig/distinfo botan/distinfo
--- botan.orig/distinfo	Thu May  1 17:42:02 2003
+++ botan/distinfo	Wed May  7 00:30:57 2003
@@ -1 +1 @@
-MD5 (Botan-1.2.0.tgz) = 0792fbd2d1927e7c167b65d9c30a9c9c
+MD5 (Botan-1.2.1.tgz) = 719c8b28adecc1a042b767fbb72ae8fc
diff -ruN botan.orig/files/patch-pipe_io.cpp botan/files/patch-pipe_io.cpp
--- botan.orig/files/patch-pipe_io.cpp	Fri May 10 04:32:18 2002
+++ botan/files/patch-pipe_io.cpp	Thu Jan  1 01:00:00 1970
@@ -1,34 +0,0 @@
---- src/pipe_io.cpp.orig	Fri May 10 10:10:27 2002
-+++ src/pipe_io.cpp	Fri May 10 10:10:57 2002
-@@ -33,12 +33,12 @@
-    {
-    static const u32bit BUFFERSIZE = DEFAULT_BUFFERSIZE;
-    SecureBuffer<byte, BUFFERSIZE> buffer;
--   while(!std::ferror(stream) && pipe.remaining())
-+   while(!ferror(stream) && pipe.remaining())
-       {
-       u32bit got = pipe.read(buffer, BUFFERSIZE);
--      std::fwrite(buffer, 1, got, stream);
-+      fwrite(buffer, 1, got, stream);
-       }
--   if(std::ferror(stream))
-+   if(ferror(stream))
-       throw Stream_IO_Error("Pipe output operator (stdio) has failed");
-    return stream;
-    }
-@@ -67,12 +67,12 @@
-    {
-    static const u32bit BUFFERSIZE = DEFAULT_BUFFERSIZE;
-    SecureBuffer<byte, BUFFERSIZE> buffer;
--   while(!std::ferror(stream) && !std::feof(stream))
-+   while(!ferror(stream) && !feof(stream))
-       {
--      u32bit got = std::fread(buffer, 1, BUFFERSIZE, stream);
-+      u32bit got = fread(buffer, 1, BUFFERSIZE, stream);
-       pipe.write(buffer, got);
-       }
--   if(std::ferror(stream))
-+   if(ferror(stream))
-       throw Stream_IO_Error("Pipe input operator (stdio) has failed");
-    return stream;
-    }
diff -ruN botan.orig/pkg-plist botan/pkg-plist
--- botan.orig/pkg-plist	Thu May  1 17:42:02 2003
+++ botan/pkg-plist	Wed May  7 00:45:18 2003
@@ -151,7 +151,7 @@
 include/botan/x919_mac.h
 include/botan/xtea.h
 lib/libbotan.a
-lib/libbotan-1.2.0.so
+lib/libbotan-1.2.1.so
 lib/libbotan-1.2.so
 lib/libbotan-1.so
 lib/libbotan.so
>Release-Note:
>Audit-Trail:
State-Changed-From-To: open->closed 
State-Changed-By: ijliao 
State-Changed-When: Mon May 12 01:30:39 PDT 2003 
State-Changed-Why:  
committed, thanks 

http://www.freebsd.org/cgi/query-pr.cgi?pr=51903 
>Unformatted:
