--- libipc-pubsub-perl-0.29.orig/debian/control +++ libipc-pubsub-perl-0.29/debian/control @@ -0,0 +1,23 @@ +Source: libipc-pubsub-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 7) +Build-Depends-Indep: perl (>= 5.6.0), libossp-uuid-perl, + libclass-accessor-perl, libdbm-deep-perl +Maintainer: Debian Perl Group +Uploaders: AGOSTINI Yves +Standards-Version: 3.8.0 +Homepage: http://search.cpan.org/dist/IPC-PubSub/ +Vcs-Svn: svn://svn.debian.org/pkg-perl/trunk/libipc-pubsub-perl/ +Vcs-Browser: http://svn.debian.org/viewsvn/pkg-perl/trunk/libipc-pubsub-perl/ + +Package: libipc-pubsub-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libossp-uuid-perl, + libclass-accessor-perl, libdbm-deep-perl +Description: Interprocess Publish/Subscribe channels + IPC::PubSub provides a simple API for publishing messages to channels + and for subscribing to them. + . + When a message is published on a channel, all subscribers currently in + that channel will get it on their next get or get_all call. --- libipc-pubsub-perl-0.29.orig/debian/copyright +++ libipc-pubsub-perl-0.29/debian/copyright @@ -0,0 +1,59 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Audrey Tang +Upstream-Source: http://search.cpan.org/dist/IPC-PubSub/ +Upstream-Name: IPC::PubSub + +Files: * +Copyright: Copyright 2006, 2007 by Audrey Tang . +License: MIT + This software is released under the MIT license cited below. + +Files: inc/* +Copyright: Copyright 2002 - 2008 by Brian Ingerson, Audrey Tang and Adam Kennedy. +License: GPL-1+ | Artistic + This program is free software; you can redistribute it and/or modify it under + the same terms as Perl itself. + +Files: debian/* +Copyright: 2008, AGOSTINI Yves +License: MIT + The Debian packaging is put under the same terms as the module itself. + +Perl is distributed under your choice of the GNU General Public License or +the Artistic License. On Debian GNU/Linux systems, the complete text of the +GNU General Public License can be found in `/usr/share/common-licenses/GPL' +and the Artistic Licence in `/usr/share/common-licenses/Artistic'. + +License: Artistic + This program is free software; you can redistribute it and/or modify + it under the terms of the Artistic License, which comes with Perl. + On Debian GNU/Linux systems, the complete text of the Artistic License + can be found in /usr/share/common-licenses/Artistic + +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' + +License: MIT + Permission is hereby granted, free of charge, to any person obtaining a + copy of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, including without limitation + the rights to use, copy, modify, merge, publish, distribute, sublicense, + and/or sell copies of the Software, and to permit persons to whom the + Software is furnished to do so, subject to the following conditions: + + The above copyright notice and this permission notice shall be included in + all copies or substantial portions of the Software. + + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING + FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER + DEALINGS IN THE SOFTWARE. --- libipc-pubsub-perl-0.29.orig/debian/watch +++ libipc-pubsub-perl-0.29/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/IPC-PubSub/ .*/IPC-PubSub-v?(\d[\d_.-]+)\.(?:tar(?:\.gz|\.bz2)?|tgz|zip)$ --- libipc-pubsub-perl-0.29.orig/debian/compat +++ libipc-pubsub-perl-0.29/debian/compat @@ -0,0 +1 @@ +7 --- libipc-pubsub-perl-0.29.orig/debian/changelog +++ libipc-pubsub-perl-0.29/debian/changelog @@ -0,0 +1,22 @@ +libipc-pubsub-perl (0.29-1) unstable; urgency=low + + [ AGOSTINI Yves ] + * new 0.29 upstream release (0.28 was not packaged for debian) + * bump Standards-Version to 3.8.0, no change + * update copyright to proposal format rev 196 + * add copyright for M::I inc directory + * add libdbm-deep-perl dep in control + + [ gregor herrmann ] + * debian/control: Changed: Switched Vcs-Browser field to ViewSVN + (source stanza). + * Set debhelper compatibility level to 7; adapt + debian/{control,compat,rules}. + + -- AGOSTINI Yves Mon, 15 Dec 2008 11:27:34 +0100 + +libipc-pubsub-perl (0.27-1) unstable; urgency=low + + * Initial Release (Closes: #476743) + + -- AGOSTINI Yves Fri, 18 Apr 2008 23:33:58 +0200 --- libipc-pubsub-perl-0.29.orig/debian/rules +++ libipc-pubsub-perl-0.29/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