[libbot-basicbot-perl] 03/18: Import Debian changes 0.89-1

Nick Morrott nickm-guest at moszumanska.debian.org
Sat Aug 26 01:42:32 UTC 2017


This is an automated email from the git hooks/post-receive script.

nickm-guest pushed a commit to branch master
in repository libbot-basicbot-perl.

commit afd660ef099f7c3209151430be7a299f02be5f13
Merge: ad6e1b9 0e41be8
Author: Stephen Gran <sgran at debian.org>
Date:   Wed Jul 24 08:05:33 2013 +0100

    Import Debian changes 0.89-1
    
    libbot-basicbot-perl (0.89-1) unstable; urgency=low
    
      * New upstream version (closes: #717696)

 Build.PL                 |   19 -
 Changes                  |   54 ++
 LICENSE                  |  379 ++++++++
 MANIFEST                 |   13 +-
 MANIFEST.SKIP            |    6 +
 META.json                |   59 ++
 META.yml                 |   40 +-
 Makefile.PL              |   83 +-
 README                   |  403 ++++-----
 debian/changelog         |    6 +
 debian/control           |    2 +-
 debian/rules             |   17 +-
 dist.ini                 |   21 +
 examples/countdownbot.pl |    0
 examples/cpanbot.pl      |    0
 examples/namer.pl        |    2 +-
 examples/tailbot.pl      |    0
 examples/tango.pl        |    0
 lib/Bot/BasicBot.pm      | 2202 ++++++++++++++++++++++------------------------
 t/00bootstrap.t          |   55 +-
 t/connect.t              |   16 +-
 t/lib/TestBot.pm         |   10 +-
 22 files changed, 1896 insertions(+), 1491 deletions(-)

diff --cc debian/changelog
index c50e024,0000000..a42ffd0
mode 100644,000000..100644
--- a/debian/changelog
+++ b/debian/changelog
@@@ -1,11 -1,0 +1,17 @@@
++libbot-basicbot-perl (0.89-1) unstable; urgency=low
++
++  * New upstream version (closes: #717696)
++
++ -- Stephen Gran <sgran at debian.org>  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 <sgran at debian.org>  Mon, 04 Aug 2008 02:27:37 +0100
 +
 +libbot-basicbot-perl (0.7-1) unstable; urgency=low
 +
 +  * Initial Release.
 +
 + -- Stephen Gran <sgran at debian.org>  Wed, 30 Jul 2008 20:08:21 +0100
diff --cc debian/control
index 2a18b0e,0000000..ae603aa
mode 100644,000000..100644
--- a/debian/control
+++ b/debian/control
@@@ -1,17 -1,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 <sgran at debian.org>
- Standards-Version: 3.8.0
++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.
diff --cc debian/rules
index 921dc12,0000000..8044f47
mode 100755,000000..100755
--- a/debian/rules
+++ b/debian/rules
@@@ -1,64 -1,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 <marc at dch-faq.de> 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 <email at jasonkohles.com>
 +# 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: build-stamp
++build-arch:
++
++build-indep: build-stamp
++
++build: build-indep build-arch
++
 +build-stamp:
 +	dh_testdir
 +	# Add commands to compile the package here
- 	$(PERL) Build.PL installdirs=vendor
- 	$(PERL) Build
- 	$(PERL) Build test
++	$(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 Build ] || $(PERL) Build --allow_mb_mismatch 1 distclean
++	[ ! -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
- 	$(PERL) Build install destdir=$(TMP) create_packlist=0
++	$(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

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-perl/packages/libbot-basicbot-perl.git



More information about the Pkg-perl-cvs-commits mailing list