--- libbusiness-onlinepayment-tclink-perl-1.03.orig/debian/changelog +++ libbusiness-onlinepayment-tclink-perl-1.03/debian/changelog @@ -0,0 +1,44 @@ +libbusiness-onlinepayment-tclink-perl (1.03-3) unstable; urgency=low + + * New maintainer (closes: Bug#352663). + * Depend on libbusiness-onlinepayment-perl (closes: Bug#373717) + + -- Ivan Kohler Thu, 22 Jun 2006 00:44:17 -0700 + +libbusiness-onlinepayment-tclink-perl (1.03-2) unstable; urgency=low + + * QA upload. + * Package is orphaned (#352663); set maintainer to Debian QA Group. + * Change section to perl in accordance with the override file. + * Finish /usr/doc transition. Closes: #359442. + * Switch to debhelper 5. + * debian/changelog: Remove obsolete Emacs local variables. + * Conforms to Standards version 3.6.2. + + -- Matej Vela Wed, 5 Apr 2006 17:42:27 +0200 + +libbusiness-onlinepayment-tclink-perl (1.03-1) unstable; urgency=low + + * new upstream release with more verbose result reporting + + -- Dan Helfman Tue, 4 Feb 2003 12:32:17 -0800 + +libbusiness-onlinepayment-tclink-perl (1.02-1) unstable; urgency=low + + * new upstream release that fixes ach/echeck bug + + -- Dan Helfman Mon, 4 Nov 2002 15:46:53 -0800 + +libbusiness-onlinepayment-tclink-perl (1.01-2) unstable; urgency=low + + * moved deb building from binary-arch to binary-indep. closes: bug#157462. + * removed README.Debian. moved info to debian/copyright. closes: bug#157517. + * added path to Perl licenses in debian/copyright. closes: bug#157551. + + -- Dan Helfman Tue, 20 Aug 2002 17:35:44 -0700 + +libbusiness-onlinepayment-tclink-perl (1.01-1) unstable; urgency=low + + * initial release. closes: bug#148598. + + -- Dan Helfman Thu, 30 May 2002 15:22:51 -0700 --- libbusiness-onlinepayment-tclink-perl-1.03.orig/debian/compat +++ libbusiness-onlinepayment-tclink-perl-1.03/debian/compat @@ -0,0 +1 @@ +5 --- libbusiness-onlinepayment-tclink-perl-1.03.orig/debian/control +++ libbusiness-onlinepayment-tclink-perl-1.03/debian/control @@ -0,0 +1,19 @@ +Source: libbusiness-onlinepayment-tclink-perl +Section: perl +Priority: optional +Build-Depends-Indep: debhelper (>= 5), perl (>= 5.6.0-17) +Maintainer: Ivan Kohler +Standards-Version: 3.6.2 + +Package: libbusiness-onlinepayment-tclink-perl +Architecture: all +Depends: ${perl:Depends}, libnet-tclink-perl, libbusiness-onlinepayment-perl +Description: TrustCommerce backend for Business::OnlinePayment + This is Business::OnlinePayment::TCLink, a Business::OnlinePayment + backend module for the TrustCommerce payment gateway. It is only useful if + you have an account with TrustCommerce: http://www.trustcommerce.com/ + . + Business::OnlinePayment is a generic interface for processing payments through + online credit card processors, online check acceptance houses, etc. (If you + like buzzwords, call it an "multiplatform ecommerce-enabling middleware + solution"). --- libbusiness-onlinepayment-tclink-perl-1.03.orig/debian/copyright +++ libbusiness-onlinepayment-tclink-perl-1.03/debian/copyright @@ -0,0 +1,16 @@ +The Debian maintainer is: +Dan Helfman + +The upstream author is: +Dan Helfman + +Derived from code by Jason Kohles and Ivan Kohler. + +Copyright (c) 2002 TrustCommerce +All rights reserved. This program is free software; you can redistribute +it and/or modify it under the same terms as Perl itself. + +Perl is licensed under the GNU GPL or the Artistic License. On Debian +systems, the full text of the GPL may be found in the file +/usr/share/common-licenses/GPL, and the full text of the Artistic license may +be found in the file /usr/share/common-licenses/Artistic. --- libbusiness-onlinepayment-tclink-perl-1.03.orig/debian/docs +++ libbusiness-onlinepayment-tclink-perl-1.03/debian/docs @@ -0,0 +1,2 @@ +README +README.freeside --- libbusiness-onlinepayment-tclink-perl-1.03.orig/debian/rules +++ libbusiness-onlinepayment-tclink-perl-1.03/debian/rules @@ -0,0 +1,54 @@ +#!/usr/bin/make -f +#-*- makefile -*- + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +PERL ?= /usr/bin/perl + +build: build-stamp +build-stamp: + dh_testdir + + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + [ ! -f Makefile ] || $(MAKE) realclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=`pwd`/debian/`dh_listpackages` + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installchangelogs Changes + dh_installdocs + dh_link + dh_compress + dh_fixperms + dh_perl + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +# Build architecture-dependent files here. +binary-arch: build install + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install