--- esniper-2.18.1.orig/esniper.1 +++ esniper-2.18.1/esniper.1 @@ -283,7 +283,7 @@ .PP Many thanks to all contributors and users. .SH AUTHOR -Copyright © 2002, 2003, 2004 Scott Nicol +Copyright (C) 2002, 2003, 2004 Scott Nicol All rights reserved. .\" Redistribution and use in source and binary forms, with or without .\" modification, are permitted provided that the following conditions are met: --- esniper-2.18.1.orig/debian/changelog +++ esniper-2.18.1/debian/changelog @@ -0,0 +1,57 @@ +esniper (2.18.1-1) unstable; urgency=low + + * New upstream release + + -- Dima Barsky Thu, 05 Jun 2008 21:38:28 +0100 + +esniper (2.18.0-1) unstable; urgency=low + + * New upstream release (Closes: #474010) + + -- Dima Barsky Wed, 02 Apr 2008 18:00:12 +0100 + +esniper (2.17.1-1) unstable; urgency=low + + * New upstream release (Closes: #452663) + * Added dependency on ca-certificates (Closes: #453060) + + -- Dima Barsky Tue, 27 Nov 2007 10:02:01 +0000 + +esniper (2.17.0-1) unstable; urgency=low + + * New upstream release (Closes: #444984) + + -- Dima Barsky Tue, 02 Oct 2007 17:28:11 +0100 + +esniper (2.16.1+cvs20070920-1) unstable; urgency=low + + * Fixed a minor build problem (the previous release had debian + directory in the esniper_2.16.1+cvs20070919.orig.tar.gz file). + + -- Dima Barsky Thu, 20 Sep 2007 11:02:59 +0100 + +esniper (2.16.1+cvs20070919-1) unstable; urgency=low + + * Took a CVS snapshot on 19/09/2007 to fix a grave bug (Closes: #442369) + + -- Dima Barsky Mon, 17 Sep 2007 13:59:46 +0100 + +esniper (2.16.1-2) unstable; urgency=low + + * Changed build dependency from libcurl3-openssl-dev to + libcurl4-openssl-dev (Closes: #423447) + + -- Dima Barsky Wed, 16 May 2007 16:16:35 +0100 + +esniper (2.16.1-1) unstable; urgency=low + + * New upstream release + + -- Dima Barsky Mon, 30 Apr 2007 11:10:17 +0100 + +esniper (2.16.0-1) unstable; urgency=low + + * Initial release + + -- Dima Barsky Fri, 30 Mar 2007 16:25:35 +0100 + --- esniper-2.18.1.orig/debian/control +++ esniper-2.18.1/debian/control @@ -0,0 +1,18 @@ +Source: esniper +Section: misc +Priority: extra +Maintainer: Dima Barsky +Build-Depends: debhelper (>= 5), autotools-dev, libcurl4-openssl-dev (>= 7.16.2-3), comerr-dev (>= 1.33), libidn11-dev (>= 0.5.18), libssl-dev (>= 0.9.8c), libkrb5-dev (>= 1.4.2), zlib1g-dev (>= 1:1.2.1) +Standards-Version: 3.7.3 + +Package: esniper +Architecture: any +Depends: ${shlibs:Depends}, ca-certificates +Description: a simple, lightweight tool for sniping ebay auctions + esniper is a lightweight ebay sniping tool. It doesn't have a lot of + features, and that is by design. + . + Auctions are specified on the command line, using the auction number + and your bid price. Multiple auctions can be bid on by specifying more + auctions and bid prices. esniper stops when the desired quantity has + been won (default is 1). --- esniper-2.18.1.orig/debian/rules +++ esniper-2.18.1/debian/rules @@ -0,0 +1,99 @@ +#!/usr/bin/make -f +# -*- makefile -*- +# Sample debian/rules that uses debhelper. +# This file was originally written by Joey Hess and Craig Small. +# As a special exception, when this file is copied by dh-make into a +# dh-make output file, you may use that output file without restriction. +# This special exception was added by Craig Small in version 0.37 of dh-make. + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + # Add here commands to configure the package. + ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" + +build: build-stamp + +build-stamp: config.status + dh_testdir + + # Add here commands to compile the package. + $(MAKE) + #docbook-to-man debian/esniper.sgml > esniper.1 + + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + # Add here commands to clean up after the build process. + if [ -r Makefile ]; then $(MAKE) distclean; fi + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Add here commands to install the package into debian/esniper. + $(MAKE) DESTDIR=$(CURDIR)/debian/esniper install + + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_python +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- esniper-2.18.1.orig/debian/watch +++ esniper-2.18.1/debian/watch @@ -0,0 +1,8 @@ +# watch control file for uscan +# See uscan(1) for format + +# Compulsory line, this is a version 3 file +version=3 + +# Uncomment to find new files on sourceforge, for debscripts >= 2.9 +http://sf.net/esniper/esniper-(.*)\.tgz --- esniper-2.18.1.orig/debian/docs +++ esniper-2.18.1/debian/docs @@ -0,0 +1,4 @@ +README +TODO +sample_auction.txt +sample_config.txt --- esniper-2.18.1.orig/debian/compat +++ esniper-2.18.1/debian/compat @@ -0,0 +1 @@ +5 --- esniper-2.18.1.orig/debian/copyright +++ esniper-2.18.1/debian/copyright @@ -0,0 +1,16 @@ +This package was debianized by Dima Barsky on +Fri, 30 Mar 2007 16:25:35 +0100. + +It was downloaded from http://esniper.sf.net + +Upstream Author: + esniper was originally written by Scott Nicol . + Many esniper users have contributed patches, updates and fixes. + +Copyright: 2002, 2003, 2004 Scott Nicol + +License: BSD, see `/usr/share/common-licenses/BSD' + +The Debian packaging is (C) 2007, Dima Barsky and +is licensed under the GPL, see `/usr/share/common-licenses/GPL'. + --- esniper-2.18.1.orig/debian/dirs +++ esniper-2.18.1/debian/dirs @@ -0,0 +1,2 @@ +usr/bin +