debian/0000755000000000000000000000000011537027027007172 5ustar debian/control0000644000000000000000000000234211537025705010577 0ustar Source: libnet-jabber-bot-perl Section: perl Priority: optional Build-Depends: devscripts (>= 2.10.7~), perl, cdbs (>= 0.4.85~), debhelper (>= 7.0.1), dh-buildinfo, liblog-log4perl-perl, libmoose-perl (>= 0.82), libmoosex-types-perl (>= 0.12), libnet-jabber-perl, libtest-nowarnings-perl Maintainer: Debian Perl Group Uploaders: Jonas Smedegaard Standards-Version: 3.9.1 Vcs-Git: git://git.debian.org/git/pkg-perl/packages/libnet-jabber-bot-perl Vcs-Browser: http://git.debian.org/?p=pkg-perl/packages/libnet-jabber-bot-perl.git Homepage: http://search.cpan.org/dist/Net-Jabber-Bot/ Package: libnet-jabber-bot-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, ${cdbs:Depends} Recommends: ${cdbs:Recommends} Description: automated Bot creation with safeties This Perl module, Net::Jabber::Bot, provides tools for writing a Jabber Bot. . The idea behind the module is that someone creating a bot should not really have to know a whole lot about how the Jabber protocol works in order to use it. It also allows us to abstract away all the things that can get a bot maker into trouble. Essentially the object helps protect the coders from their own mistakes. debian/source/0000755000000000000000000000000011462647673010506 5ustar debian/source/format0000644000000000000000000000001411373262460011700 0ustar 3.0 (quilt) debian/changelog0000644000000000000000000000026411537027027011046 0ustar libnet-jabber-bot-perl (2.1.5-1) unstable; urgency=low * Initial packaging release. Closes: bug#617979. -- Jonas Smedegaard Sun, 13 Mar 2011 03:38:11 +0100 debian/compat0000644000000000000000000000000211524363714010372 0ustar 7 debian/watch0000644000000000000000000000024311537013246010220 0ustar # Run the "uscan" command to check for upstream updates and more. version=3 http://search.cpan.org/dist/Net-Jabber-Bot/ .*/Net-Jabber-Bot-(\d.*)\.tar\.gz debian debian/copyright_hints0000644000000000000000000000153511537022312012326 0ustar Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=166 Upstream-Name: FIXME Upstream-Contact: FIXME Source: FIXME Disclaimer: Autogenerated by CDBS Files: Changes MANIFEST META.yml Makefile.PL debian/compat debian/control debian/control.in debian/gbp.conf debian/source/format debian/source/local-options debian/watch examples/bot_example.pl examples/gtalk_RSSbot.pl t/00-load.t t/03-test_connectivity.t t/05-helper_functions.t t/06-test_safeties.t t/99-pod-coverage.t t/99-pod.t t/lib/MockJabberClient.pm t/test_config.sample Copyright: *No copyright* License: UNKNOWN FIXME Files: debian/rules Copyright: 2011, Jonas Smedegaard License: GPL FIXME Files: lib/Net/Jabber/Bot.pm Copyright: & LICENSE 2007, Todd E Rinaldo License: Perl FIXME Files: README Copyright: 2007, Todd E Rinaldo License: Perl FIXME debian/copyright0000644000000000000000000000320511537025616011127 0ustar Format: http://svn.debian.org/wsvn/dep/web/deps/dep5.mdwn?rev=173 Upstream-Name: Net::Jabber::Bot Upstream-Contact: http://code.google.com/p/perl-net-jabber-bot/issues/entry Source: http://search.cpan.org/dist/Net-Jabber-Bot/ Files: * Copyright: 2007, Todd E Rinaldo License: Artistic or GPL-1+ This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. Comment: Perl is licensed under either the Artistic license or the GNU General Public License, version 1 or later. Files: ./debian/* Copyright: 2011, Jonas Smedegaard License: GPL-2+ License: Artistic Comment: On Debian systems the Artistic License is located in '/usr/share/common-licenses/Artistic'. License: GPL-1+ Comment: On Debian systems the GNU General Public License (GPL) version 1 is located in '/usr/share/common-licenses/GPL-1'. License: GPL-2+ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. . This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. Comment: On Debian GNU systems the GNU General Public License (GPL) version 2 is located in '/usr/share/common-licenses/GPL-2'. . You should have received a copy of the GNU General Public License along with this program. If not, see . debian/gbp.conf0000644000000000000000000000014611373262460010612 0ustar # Configuration file for git-buildpackage and friends [DEFAULT] pristine-tar = True sign-tags = True debian/rules0000755000000000000000000000304711537024512010252 0ustar #!/usr/bin/make -f # -*- mode: makefile; coding: utf-8 -*- # Copyright 2011, Jonas Smedegaard # Description: Main Debian packaging script for Net::Jabber::Bot # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . include /usr/share/cdbs/1/rules/upstream-tarball.mk include /usr/share/cdbs/1/rules/utils.mk include /usr/share/cdbs/1/class/perl-makemaker.mk include /usr/share/cdbs/1/rules/debhelper.mk DEB_UPSTREAM_PACKAGE = Net-Jabber-Bot DEB_UPSTREAM_URL = http://www.cpan.org/modules/by-module/Net #DEB_UPSTREAM_URL = http://search.cpan.org/CPAN/authors/id/T/TO/TODDR DEB_UPSTREAM_TARBALL_MD5 = c6cc7ec700fa1b1b11214ab8d86fa5cc # Needed both by upstream build process and at runtime common-depends = liblog-log4perl-perl, libmoose-perl (>= 0.82), libmoosex-types-perl (>= 0.12), libnet-jabber-perl CDBS_BUILD_DEPENDS += , $(common-depends) CDBS_DEPENDS = $(common-depends) # Needed by upstream tests CDBS_BUILD_DEPENDS += , libtest-nowarnings-perl DEB_INSTALL_EXAMPLES_ALL += examples/* debian/control.in0000644000000000000000000000201711537025012011172 0ustar Source: libnet-jabber-bot-perl Section: perl Priority: optional Build-Depends: @cdbs@ Maintainer: Debian Perl Group Uploaders: Jonas Smedegaard Standards-Version: 3.9.1 Vcs-Git: git://git.debian.org/git/pkg-perl/packages/libnet-jabber-bot-perl Vcs-Browser: http://git.debian.org/?p=pkg-perl/packages/libnet-jabber-bot-perl.git Homepage: http://search.cpan.org/dist/Net-Jabber-Bot/ Package: libnet-jabber-bot-perl Architecture: all Depends: ${perl:Depends}, ${misc:Depends}, ${cdbs:Depends} Recommends: ${cdbs:Recommends} Description: automated Bot creation with safeties This Perl module, Net::Jabber::Bot, provides tools for writing a Jabber Bot. . The idea behind the module is that someone creating a bot should not really have to know a whole lot about how the Jabber protocol works in order to use it. It also allows us to abstract away all the things that can get a bot maker into trouble. Essentially the object helps protect the coders from their own mistakes.