--- libbot-basicbot-perl-0.89.orig/debian/changelog +++ libbot-basicbot-perl-0.89/debian/changelog @@ -0,0 +1,17 @@ +libbot-basicbot-perl (0.89-1) unstable; urgency=low + + * New upstream version (closes: #717696) + + -- Stephen Gran Wed, 24 Jul 2013 08:05:33 +0100 + +libbot-basicbot-perl (0.7-2) unstable; urgency=low + + * Disable net based tests (closes: #493437) + + -- Stephen Gran Mon, 04 Aug 2008 02:27:37 +0100 + +libbot-basicbot-perl (0.7-1) unstable; urgency=low + + * Initial Release. + + -- Stephen Gran Wed, 30 Jul 2008 20:08:21 +0100 --- libbot-basicbot-perl-0.89.orig/debian/control +++ libbot-basicbot-perl-0.89/debian/control @@ -0,0 +1,17 @@ +Source: libbot-basicbot-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5), libmodule-build-perl +Build-Depends-Indep: perl (>= 5.6.10-12), libpoe-component-irc-perl (>= 4.0), libpoe-perl (>= 0.22) +Maintainer: Stephen Gran +Standards-Version: 3.9.4 +Homepage: http://search.cpan.org/dist/Bot-BasicBot/ + +Package: libbot-basicbot-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libpoe-component-irc-perl (>= 4.0), libpoe-perl (>= 0.22) +Description: simple irc bot baseclass + Basic bot system designed to make it easy to do simple bots, optionally + forking longer processes (like searches) concurrently in the background. + . + Designed primarily to be used as a superclass for other programs. --- libbot-basicbot-perl-0.89.orig/debian/copyright +++ libbot-basicbot-perl-0.89/debian/copyright @@ -0,0 +1,35 @@ +This is the debian package for the Bot-BasicBot module. +It was created by Stephen Gran using dh-make-perl. + +It was downloaded from http://search.cpan.org/dist/Bot-BasicBot/ + +The upstream author is: + © 2006 Tom Insam + +Notes from Tom Insam about previous copyright: + "The initial version of Bot::BasicBot was written by Mark Fowler, + and many thanks are due to him. + + Nice code for dealing with emotes thanks to Jo Walsh. + + Various patches from Tom Insam, including much improved rejoining, + AUTOLOAD stuff, better interactive help, and a few API tidies. + + Maintainership for a while was in the hands of Simon Kent + . Don't know what he did. :-) + + I received patches for tracking joins and parts from Silver, sat on + them for two months, and have finally applied them. Thanks, dude. He also + sent me changes for the tick event API, which made sense." + + +License: Artistic | GPL-1+ + This program is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + +On Debian systems, these two licenses can be found at +/usr/share/common-licenses/GPL-2 +/usr/share/common-licenses/Artistic + +The Debian packaging is © 2008, Stephen Gran and +is licensed under the same terms as the software itself (see above). --- libbot-basicbot-perl-0.89.orig/debian/watch +++ libbot-basicbot-perl-0.89/debian/watch @@ -0,0 +1,4 @@ +# format version number, currently 3; this line is compulsory! +version=3 +# URL to the package page followed by a regex to search +http://search.cpan.org/dist/Bot-BasicBot/ .*/Bot-BasicBot-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libbot-basicbot-perl-0.89.orig/debian/rules +++ libbot-basicbot-perl-0.89/debian/rules @@ -0,0 +1,69 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. +# +# It was later modified by Jason Kohles +# http://www.jasonkohles.com/ to support Module::Build installed modules + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +# If set to a true value then MakeMaker's prompt function will +# always return the default without waiting for user input. +export PERL_MM_USE_DEFAULT=1 + +PERL ?= /usr/bin/perl +PACKAGE = $(shell dh_listpackages) +TMP = $(CURDIR)/debian/$(PACKAGE) + +build-arch: + +build-indep: build-stamp + +build: build-indep build-arch + +build-stamp: + dh_testdir + # Add commands to compile the package here + $(PERL) Makefile.PL installdirs=vendor + $(MAKE) + $(MAKE) test + touch $@ + +clean: + dh_testdir + dh_testroot + dh_clean build-stamp install-stamp + # Add commands to clean up after the build process here + [ ! -f Makefile ] || $(MAKE) distclean + +install: install-stamp +install-stamp: build-stamp + dh_testdir + dh_testroot + dh_clean -k + # Add commands to install the package into $(TMP) here + $(MAKE) install DESTDIR=$(TMP) + touch $@ + +binary-arch: +# We have nothing to do here for an architecture-independent package + +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs README + dh_installexamples examples/* + dh_installchangelogs Changes + dh_perl + dh_compress + dh_fixperms + dh_installdeb + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- libbot-basicbot-perl-0.89.orig/debian/compat +++ libbot-basicbot-perl-0.89/debian/compat @@ -0,0 +1 @@ +5