--- libpoe-component-pubsub-perl-0.05.orig/debian/control +++ libpoe-component-pubsub-perl-0.05/debian/control @@ -0,0 +1,19 @@ +Source: libpoe-component-pubsub-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7), perl-modules (>= 5.10) | libmodule-build-perl +Build-Depends-Indep: libpoe-perl (>= 1.003) +Maintainer: Debian Perl Group +Uploaders: Ryan Niebur +Standards-Version: 3.8.1 +Homepage: http://search.cpan.org/dist/POE-Component-PubSub/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libpoe-component-pubsub-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libpoe-component-pubsub-perl/ + +Package: libpoe-component-pubsub-perl +Architecture: all +Depends: ${misc:Depends}, ${perl:Depends}, libpoe-perl (>= 1.003) +Description: generic publish/subscribe POE::Component + POE::Component::PubSub is a generic publish/subscribe POE::Component + that enables POE::Sessions to publish events to which other + POE::Sessions may subscribe. --- libpoe-component-pubsub-perl-0.05.orig/debian/copyright +++ libpoe-component-pubsub-perl-0.05/debian/copyright @@ -0,0 +1,21 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Nicholas R. Perez +Upstream-Source: http://search.cpan.org/dist/POE-Component-PubSub/ +Upstream-Name: POE-Component-PubSub + +Files: * +Copyright: 2008-2009, Nicholas R. Perez +License: GPL-1+ + +Files: debian/* +Copyright: 2009, Ryan Niebur +License: GPL-1+ + +License: GPL-1+ + 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 1, or (at your option) + any later version. + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/GPL' --- libpoe-component-pubsub-perl-0.05.orig/debian/watch +++ libpoe-component-pubsub-perl-0.05/debian/watch @@ -0,0 +1,2 @@ +version=3 +http://search.cpan.org/dist/POE-Component-PubSub/ .*/POE-Component-PubSub-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libpoe-component-pubsub-perl-0.05.orig/debian/compat +++ libpoe-component-pubsub-perl-0.05/debian/compat @@ -0,0 +1 @@ +7 --- libpoe-component-pubsub-perl-0.05.orig/debian/changelog +++ libpoe-component-pubsub-perl-0.05/debian/changelog @@ -0,0 +1,5 @@ +libpoe-component-pubsub-perl (0.05-1) unstable; urgency=low + + * Initial Release. (Closes: #525509) + + -- Ryan Niebur Fri, 24 Apr 2009 21:15:08 -0700 --- libpoe-component-pubsub-perl-0.05.orig/debian/rules +++ libpoe-component-pubsub-perl-0.05/debian/rules @@ -0,0 +1,23 @@ +#!/usr/bin/make -f + +build: build-stamp +build-stamp: + dh build + touch $@ + +clean: + dh $@ + +install: install-stamp +install-stamp: build-stamp + dh install + touch $@ + +binary-arch: + +binary-indep: install + dh $@ + +binary: binary-arch binary-indep + +.PHONY: binary binary-arch binary-indep install clean build