Sun Aug 9 13:39:06 2009 UTC ()
Make esniper use case sensitive passwords. Patch was committed upstream
today and will be in the next release.


(heinz)
diff -r1.13 -r1.14 pkgsrc/misc/esniper/Makefile
diff -r1.10 -r1.11 pkgsrc/misc/esniper/distinfo
diff -r0 -r1.1 pkgsrc/misc/esniper/patches/patch-ab

cvs diff -r1.13 -r1.14 pkgsrc/misc/esniper/Makefile (expand / switch to unified diff)

--- pkgsrc/misc/esniper/Makefile 2008/10/14 18:21:18 1.13
+++ pkgsrc/misc/esniper/Makefile 2009/08/09 13:39:06 1.14
@@ -1,18 +1,19 @@ @@ -1,18 +1,19 @@
1# $NetBSD: Makefile,v 1.13 2008/10/14 18:21:18 heinz Exp $ 1# $NetBSD: Makefile,v 1.14 2009/08/09 13:39:06 heinz Exp $
2# 2#
3 3
4DISTNAME= esniper-2-19-0 4DISTNAME= esniper-2-19-0
5PKGNAME= esniper-2.19.0 5PKGNAME= esniper-2.19.0
 6PKGREVISION= 1
6CATEGORIES= misc 7CATEGORIES= misc
7MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=esniper/} 8MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=esniper/}
8EXTRACT_SUFX= .tgz 9EXTRACT_SUFX= .tgz
9 10
10MAINTAINER= heinz@NetBSD.org 11MAINTAINER= heinz@NetBSD.org
11HOMEPAGE= http://esniper.sourceforge.net/ 12HOMEPAGE= http://esniper.sourceforge.net/
12COMMENT= Simple, lightweight tool for sniping ebay auctions 13COMMENT= Simple, lightweight tool for sniping ebay auctions
13 14
14PKG_INSTALLATION_TYPES= overwrite pkgviews 15PKG_INSTALLATION_TYPES= overwrite pkgviews
15PKG_DESTDIR_SUPPORT= user-destdir 16PKG_DESTDIR_SUPPORT= user-destdir
16 17
17GNU_CONFIGURE= yes 18GNU_CONFIGURE= yes
18 19

cvs diff -r1.10 -r1.11 pkgsrc/misc/esniper/distinfo (expand / switch to unified diff)

--- pkgsrc/misc/esniper/distinfo 2008/10/14 18:21:18 1.10
+++ pkgsrc/misc/esniper/distinfo 2009/08/09 13:39:06 1.11
@@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
1$NetBSD: distinfo,v 1.10 2008/10/14 18:21:18 heinz Exp $ 1$NetBSD: distinfo,v 1.11 2009/08/09 13:39:06 heinz Exp $
2 2
3SHA1 (esniper-2-19-0.tgz) = eee1e30f68e889dafdb896c691f88ba1ae0e1d55 3SHA1 (esniper-2-19-0.tgz) = eee1e30f68e889dafdb896c691f88ba1ae0e1d55
4RMD160 (esniper-2-19-0.tgz) = 004d67d558ccec5fb1626671c3d3ca4d7bf86b56 4RMD160 (esniper-2-19-0.tgz) = 004d67d558ccec5fb1626671c3d3ca4d7bf86b56
5Size (esniper-2-19-0.tgz) = 110571 bytes 5Size (esniper-2-19-0.tgz) = 110571 bytes
 6SHA1 (patch-ab) = 349fea6599aeac0f5a365c80aa27db78fc83b706

File Added: pkgsrc/misc/esniper/patches/Attic/patch-ab
$NetBSD: patch-ab,v 1.1 2009/08/09 13:39:06 heinz Exp $

  eBay Passwords are case-sensitive. Patch committed upstream, see revision
  1.40 of util.c.
  http://sourceforge.net/tracker/index.php?func=detail&aid=2819198&group_id=45285&atid=442436

--- util.c.orig	2008-08-05 05:44:43.000000000 +0200
+++ util.c
@@ -640,7 +640,6 @@ setPassword(char *password)
 
 	/* http escape password, clear original */
 	len = strlen(password);
-	toLowerString(password);
 	escapedPassword = curl_escape(password, len);
 	for (i = 0; i < len; ++i)
 		password[i] = '\0';