[libbot-basicbot-perl] 01/18: Import Debian changes 0.7-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 10e659ccd9a995e945ed43106b3f6983a78a8575
Author: Stephen Gran <sgran at debian.org>
Date:   Wed Jul 30 20:08:21 2008 +0100

    Import Debian changes 0.7-1
    
    libbot-basicbot-perl (0.7-1) unstable; urgency=low
    
      * Initial Release.
---
 debian/changelog |  5 +++++
 debian/compat    |  1 +
 debian/control   | 17 +++++++++++++++
 debian/copyright | 35 +++++++++++++++++++++++++++++++
 debian/rules     | 64 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 debian/watch     |  4 ++++
 6 files changed, 126 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..6d01b8b
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+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 --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..2a18b0e
--- /dev/null
+++ b/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 <sgran at debian.org>
+Standards-Version: 3.8.0
+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 --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..7249d06
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,35 @@
+This is the debian package for the Bot-BasicBot module.
+It was created by Stephen Gran <sgran at debian.org> using dh-make-perl.
+
+It was downloaded from http://search.cpan.org/dist/Bot-BasicBot/
+
+The upstream author is: 
+  © 2006 Tom Insam <tom at jerakeen.org>
+
+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
+  <simon at hitherto.net>. 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 <sgran at debian.org> and
+is licensed under the same terms as the software itself (see above).
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..921dc12
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,64 @@
+#!/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-stamp:
+	dh_testdir
+	# Add commands to compile the package here
+	$(PERL) Build.PL installdirs=vendor
+	$(PERL) Build
+	$(PERL) Build 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
+
+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
+	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
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..fd67bdc
--- /dev/null
+++ b/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)$

-- 
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