diff options
author | tron <tron@pkgsrc.org> | 2003-08-30 22:17:29 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2003-08-30 22:17:29 +0000 |
commit | 299035c4fb1ac22bc81ddd7dd6d1e6add383b493 (patch) | |
tree | c9031e9f9fb705baa1b56b4f625b6abcced81ee8 | |
parent | 16b85dbe206a6635dcf282d1068cbfed7491f69d (diff) | |
download | pkgsrc-299035c4fb1ac22bc81ddd7dd6d1e6add383b493.tar.gz |
Add patch from bidwatcher's home page for bug 782059 ("snipe fails with
parseerror".
-rw-r--r-- | misc/bidwatcher/Makefile | 3 | ||||
-rw-r--r-- | misc/bidwatcher/distinfo | 3 | ||||
-rw-r--r-- | misc/bidwatcher/patches/patch-ac | 14 |
3 files changed, 18 insertions, 2 deletions
diff --git a/misc/bidwatcher/Makefile b/misc/bidwatcher/Makefile index e250fd39d24..3d04f6542b4 100644 --- a/misc/bidwatcher/Makefile +++ b/misc/bidwatcher/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.30 2003/07/20 11:54:23 tron Exp $ +# $NetBSD: Makefile,v 1.31 2003/08/30 22:17:29 tron Exp $ DISTNAME= bidwatcher-1.3.10 +PKGREVISION= 1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bidwatcher/} diff --git a/misc/bidwatcher/distinfo b/misc/bidwatcher/distinfo index 67a741ce2c5..bd0be4debe7 100644 --- a/misc/bidwatcher/distinfo +++ b/misc/bidwatcher/distinfo @@ -1,6 +1,7 @@ -$NetBSD: distinfo,v 1.25 2003/07/20 11:54:23 tron Exp $ +$NetBSD: distinfo,v 1.26 2003/08/30 22:17:30 tron Exp $ SHA1 (bidwatcher-1.3.10.tar.gz) = 6ac820bb8d5975f3ba7aab70d3ff42eff52b5e8f Size (bidwatcher-1.3.10.tar.gz) = 152727 bytes SHA1 (patch-aa) = 499a9a53cb555060ca8c53cffbd78eef569d722b SHA1 (patch-ab) = 85052062bd165ba0ae3de05c887e3236c5ae7da7 +SHA1 (patch-ac) = ff37c64771f09b40b82f744420e2f1af43d9e37b diff --git a/misc/bidwatcher/patches/patch-ac b/misc/bidwatcher/patches/patch-ac new file mode 100644 index 00000000000..464b93dc874 --- /dev/null +++ b/misc/bidwatcher/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.10 2003/08/30 22:17:31 tron Exp $ + +--- helpers.cpp 17 Jul 2003 04:41:59 -0000 1.90 ++++ helpers.cpp 4 Aug 2003 04:22:05 -0000 +@@ -513,7 +513,8 @@ + return PB_OUTBID; + else if (strstr(Buff, "You have been outbid")) + return PB_OUTBID; +- else if (strstr(Buff, "Problem with bid amount")) ++ else if (strstr(Buff, "Problem with bid amount") || ++ strstr(Buff, "Your bid must be at least")) + return PB_BIDTOOLOW; + else if (strstr(Buff, "Problem with quantity")) + return PB_BADQUANTITY; |