pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/misc/bidwatcher Update "bidwatcher" package to version...
details: https://anonhg.NetBSD.org/pkgsrc/rev/b9bf3e13592d
branches: trunk
changeset: 463680:b9bf3e13592d
user: tron <tron%pkgsrc.org@localhost>
date: Tue Nov 25 08:43:51 2003 +0000
description:
Update "bidwatcher" package to version 1.3.11rc1.
Changes since version 1.3.10:
- Fixed Bug #779784 Keeps updating finished auctions
- More portable build (builds with Compaq's C++ compiler)
- Removed some dead code.
- Details window shows all available information.
- Fixed BuyItNow autodeletion bug.
- Added basic proxy authentication.
- Fixed some BuyItNow handling.
- GetUserListings fixes.
- Better compatibility with Purchase Only auctions.
- Fixed quantity amount in detail window.
- Fixed bigUpdate: timeToNextEnd was > 5 mins, so it wouldn't fire.
- Fixed the idempotent header defines in bidwatcher.h
- Added functionality to open to a specific ebay country website.
- Fixed GMTIME BSD specific code.
- Don't try to bid if we failed to get the snipe key
- Fixed "Bid too low" message
- Fixed "You are highest bidder" message
- Fixed "Outbid" detection
- Added Pragma headers to coerce proxies into refreshing the content
- Printout log messages since they currently disappear in the statusbar.
- Changed needelessly complex status bar operations.
- Fixed pre-bid on ended auctions error message
- Fixed pre-bid/snipe URL+headers
- Fixed updating after snipe
- Updated User-Agent
- Handy --enable-debug configure option
diffstat:
misc/bidwatcher/Makefile | 6 +++---
misc/bidwatcher/distinfo | 8 +++-----
misc/bidwatcher/patches/patch-aa | 13 -------------
misc/bidwatcher/patches/patch-ab | 13 -------------
4 files changed, 6 insertions(+), 34 deletions(-)
diffs (62 lines):
diff -r 8b8b9af6369b -r b9bf3e13592d misc/bidwatcher/Makefile
--- a/misc/bidwatcher/Makefile Tue Nov 25 07:35:22 2003 +0000
+++ b/misc/bidwatcher/Makefile Tue Nov 25 08:43:51 2003 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.31 2003/08/30 22:17:29 tron Exp $
+# $NetBSD: Makefile,v 1.32 2003/11/25 08:43:51 tron Exp $
-DISTNAME= bidwatcher-1.3.10
-PKGREVISION= 1
+DISTNAME= bidwatcher-1.3.11-rc1
+PKGNAME= ${DISTNAME:S/-rc/rc/}
CATEGORIES= misc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=bidwatcher/}
diff -r 8b8b9af6369b -r b9bf3e13592d misc/bidwatcher/distinfo
--- a/misc/bidwatcher/distinfo Tue Nov 25 07:35:22 2003 +0000
+++ b/misc/bidwatcher/distinfo Tue Nov 25 08:43:51 2003 +0000
@@ -1,7 +1,5 @@
-$NetBSD: distinfo,v 1.26 2003/08/30 22:17:30 tron Exp $
+$NetBSD: distinfo,v 1.27 2003/11/25 08:43:51 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 (bidwatcher-1.3.11-rc1.tar.gz) = 444be1d76e962bbf4c7f833f07468d0d19ede971
+Size (bidwatcher-1.3.11-rc1.tar.gz) = 164332 bytes
SHA1 (patch-ac) = ff37c64771f09b40b82f744420e2f1af43d9e37b
diff -r 8b8b9af6369b -r b9bf3e13592d misc/bidwatcher/patches/patch-aa
--- a/misc/bidwatcher/patches/patch-aa Tue Nov 25 07:35:22 2003 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-aa,v 1.16 2003/04/06 11:48:25 tron Exp $
-
---- bidwatcher.cpp.orig 2002-12-23 08:49:08.000000000 +0100
-+++ bidwatcher.cpp 2003-03-31 09:53:56.000000000 +0200
-@@ -4093,7 +4093,7 @@
-
- if (strlen(HtmlBuff) < 1000) {
- #ifdef DEBUG_NETWORK
-- fprintf(stderr, "Short web page (%d bytes) from ebay's time web page, retrying... (%d)\n", strlen(HtmlBuff), i);
-+ fprintf(stderr, "Short web page (%ld bytes) from ebay's time web page, retrying... (%d)\n", (long int)strlen(HtmlBuff), i);
- #endif
- continue;
- }
diff -r 8b8b9af6369b -r b9bf3e13592d misc/bidwatcher/patches/patch-ab
--- a/misc/bidwatcher/patches/patch-ab Tue Nov 25 07:35:22 2003 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.5 2002/12/30 02:09:27 dmcmahill Exp $
-
---- netstuff.cpp.orig Sat Oct 19 14:40:15 2002
-+++ netstuff.cpp
-@@ -353,7 +353,7 @@ int fetchURL(URL *url, int Post, char **
- if (*Args != '\0')
- Args++;
-
-- sprintf(lineBuff, "POST %.*s HTTP/1.1\r\nConnection: close\r\nHost: %s\r\nContent-Length: %d\r\n%s\r\n%s", URLLen, url->url, url->hoststring, strlen(Args), UserAgent, Args);
-+ sprintf(lineBuff, "POST %.*s HTTP/1.1\r\nConnection: close\r\nHost: %s\r\nContent-Length: %ld\r\n%s\r\n%s", URLLen, url->url, url->hoststring, (long int) strlen(Args), UserAgent, Args);
- } else {
- sprintf(lineBuff, "GET %s HTTP/1.1\r\nConnection: close\r\nHost: %s\r\n%s\r\n", url->url, url->hoststring, UserAgent);
- }
Home |
Main Index |
Thread Index |
Old Index