summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authorreinoud <reinoud>2006-03-01 12:16:04 +0000
committerreinoud <reinoud>2006-03-01 12:16:04 +0000
commitb144256b4e2de9ac8bf75adde54eb1f5cd928576 (patch)
tree599fc5f03a137a3dc23a2b52b6993f2a7d7368ce /net
parentbc5f901de33de75c25c6f7b6832ba2cff78d8b02 (diff)
downloadpkgsrc-b144256b4e2de9ac8bf75adde54eb1f5cd928576.tar.gz
This new 1.0.5 release fixes two bugs that were causing frequent core
dumps. It also fixes a logic error that was dropping certain connections randomly.
Diffstat (limited to 'net')
-rw-r--r--net/btget/Makefile6
-rw-r--r--net/btget/PLIST3
-rw-r--r--net/btget/distinfo10
-rw-r--r--net/btget/patches/patch-ab10
4 files changed, 14 insertions, 15 deletions
diff --git a/net/btget/Makefile b/net/btget/Makefile
index 75064d6308a..e3b81c71aea 100644
--- a/net/btget/Makefile
+++ b/net/btget/Makefile
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.3 2006/02/05 23:10:23 joerg Exp $
+# $NetBSD: Makefile,v 1.4 2006/03/01 12:16:04 reinoud Exp $
#
-DISTNAME= libbt-1.04
+DISTNAME= libbt-1.05
PKGNAME= ${DISTNAME:S/libbt/btget/}
-PKGREVISION= 2
+#PKGREVISION= 0
CATEGORIES= net
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=libbt/}
diff --git a/net/btget/PLIST b/net/btget/PLIST
index fbc015da5a4..147f524afb4 100644
--- a/net/btget/PLIST
+++ b/net/btget/PLIST
@@ -1,8 +1,7 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2005/08/05 22:00:49 reinoud Exp $
+@comment $NetBSD: PLIST,v 1.2 2006/03/01 12:16:04 reinoud Exp $
bin/btcheck
bin/btget
bin/btlist
man/man1/btcheck.1
man/man1/btget.1
man/man1/btlist.1
-@dirrm etc/cups/certs
diff --git a/net/btget/distinfo b/net/btget/distinfo
index b93a87d3fcd..9e26ee3e326 100644
--- a/net/btget/distinfo
+++ b/net/btget/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.3 2006/01/10 19:50:46 joerg Exp $
+$NetBSD: distinfo,v 1.4 2006/03/01 12:16:04 reinoud Exp $
-SHA1 (libbt-1.04.tar.gz) = ee65205f3e5575d86d5fec0b2958bb8855ec0fa5
-RMD160 (libbt-1.04.tar.gz) = a6b827fa1d5dc7a27ab78fefe2ac5009ef115f2a
-Size (libbt-1.04.tar.gz) = 309186 bytes
+SHA1 (libbt-1.05.tar.gz) = 909c19c77b15a3d1e6f2a3f5e9bdc5f3fa178525
+RMD160 (libbt-1.05.tar.gz) = 1d8e2fcaf5f2a0c71706be4efb478c3c1ff9bf7a
+Size (libbt-1.05.tar.gz) = 322880 bytes
SHA1 (patch-aa) = 3f045800da8d372d45fcf59fe2f1f9fb0a288a20
-SHA1 (patch-ab) = 9111ce4a3f5332fd02dc218990f1e75a3e71b563
+SHA1 (patch-ab) = 85355a29f326b97ea5f4269eb2b803496fbdd3c3
SHA1 (patch-ac) = b9e6c75dcb433227dc54047f48b87815ea303d67
diff --git a/net/btget/patches/patch-ab b/net/btget/patches/patch-ab
index 0bb52f66d38..56995fa9d64 100644
--- a/net/btget/patches/patch-ab
+++ b/net/btget/patches/patch-ab
@@ -1,8 +1,8 @@
-$NetBSD: patch-ab,v 1.2 2005/09/05 23:41:13 reinoud Exp $
+$NetBSD: patch-ab,v 1.3 2006/03/01 12:16:04 reinoud Exp $
---- src/peer.c.orig 2005-04-27 06:47:47.000000000 +0200
+--- src/peer.c.orig 2005-12-09 09:02:57.000000000 +0100
+++ src/peer.c
-@@ -6,6 +6,7 @@
+@@ -19,6 +19,7 @@
# include <arpa/inet.h>
# include <netdb.h>
# include <sys/socket.h>
@@ -10,11 +10,11 @@ $NetBSD: patch-ab,v 1.2 2005/09/05 23:41:13 reinoud Exp $
# if HAVE_UNISTD_H
# include <unistd.h>
# endif
-@@ -473,7 +474,7 @@ recv_peermsg( btContext *ctx, btPeer *pe
+@@ -596,7 +597,7 @@ recv_peermsg( btContext *ctx, btPeer *pe
btDownload *dl = ctx->downloads[peer->download];
int32_t nbo_len;
int len;
-- char msg[80];
+- char msg[84];
+ char msg[128];
char *nmsg, *param;
int res = 0;