--- libevent-rpc-perl-0.90.orig/debian/changelog +++ libevent-rpc-perl-0.90/debian/changelog @@ -0,0 +1,18 @@ +libevent-rpc-perl (0.90-1) unstable; urgency=low + + [ gregor herrmann] + * New upstream release, clarifies license. + + [ Russ Allbery ] + * Update to standards version 3.7.0 (no changes required). + * Remove template comments in debian/rules. + * Remove the stamp files as the first action of clean. + + -- Russ Allbery Sun, 30 Apr 2006 21:44:25 -0700 + +libevent-rpc-perl (0.89-1) unstable; urgency=low + + * Initial Release (closes: #320364). + + -- gregor herrmann Sat, 15 Apr 2006 19:12:49 +0200 + --- libevent-rpc-perl-0.90.orig/debian/control +++ libevent-rpc-perl-0.90/debian/control @@ -0,0 +1,27 @@ +Source: libevent-rpc-perl +Section: perl +Priority: optional +Build-Depends: debhelper (>= 5.0.0) +Build-Depends-Indep: perl (>= 5.8.0-7), libevent-perl | libglib-perl, libio-socket-ssl-perl, netbase +Maintainer: Debian Perl Group +Uploaders: gregor herrmann , Russ Allbery +Standards-Version: 3.7.0 + +Package: libevent-rpc-perl +Architecture: all +Depends: ${perl:Depends}, ${misc:Depends}, libevent-perl | libglib-perl +Recommends: libio-socket-ssl-perl +Description: Event based transparent Client/Server RPC framework + Event::RPC supports you in developing Event based networking client/server + applications with transparent object/method access from the client to the + server. Network communication is optionally encrypted using IO::Socket::SSL. + Several event loop managers are supported due to an extensible API. + Currently Event and Glib are implemented. + . + Event::RPC consists of a server and a client library. The server exports a + list of classes and methods, which are allowed to be called over the + network. More specific it acts as a proxy for objects created on the server + side (on demand of the connected clients) which handles client side methods + calls with transport of method arguments and return values. + . + Homepage: http://www.exit1.org/Event-RPC/ --- libevent-rpc-perl-0.90.orig/debian/compat +++ libevent-rpc-perl-0.90/debian/compat @@ -0,0 +1 @@ +5 --- libevent-rpc-perl-0.90.orig/debian/watch +++ libevent-rpc-perl-0.90/debian/watch @@ -0,0 +1,3 @@ +# format version number, currently 3; this line is compulsory! +version=3 +http://mirrors.kernel.org/cpan/modules/by-module/Event/Event-RPC-([\d\.]+)\.tar\.gz --- libevent-rpc-perl-0.90.orig/debian/copyright +++ libevent-rpc-perl-0.90/debian/copyright @@ -0,0 +1,24 @@ +This is the debian package for the Event-RPC module. +It was created by gregor herrmann using dh-make-perl. + +It was downloaded from http://search.cpan.org/~jred/Event-RPC-0.89/lib/Event/RPC.pm + +Author: + Jörn Reder + +Copyright: + Copyright (C) 2002-2006 by Jörn Reder. + +Licence: + + This library is free software; you can redistribute it and/or modify it + under the same terms as Perl itself. + +Perl is distributed under either the Artistic licence or the GPL. + +The full text of the GPL is available on Debian systems in +/usr/share/common-licenses/GPL + +The full text of the Artistic Licence is available on Debian systems in +/usr/share/common-licenses/Artistic + --- libevent-rpc-perl-0.90.orig/debian/rules +++ libevent-rpc-perl-0.90/debian/rules @@ -0,0 +1,74 @@ +#!/usr/bin/make -f +# This debian/rules file is provided as a template for normal perl +# packages. It was created by Marc Brockschmidt for +# the Debian Perl Group (http://pkg-perl.alioth.debian.org/) but may +# be used freely wherever it is useful. + +# 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 + +PACKAGE=$(shell dh_listpackages) + +ifndef PERL +PERL = /usr/bin/perl +endif + +TMP =$(CURDIR)/debian/$(PACKAGE) + +build: build-stamp +build-stamp: + dh_testdir + $(PERL) Makefile.PL INSTALLDIRS=vendor + $(MAKE) OPTIMIZE="-Wall -O2 -g" + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp install-stamp + [ ! -f Makefile ] || $(MAKE) realclean + dh_clean + +install: build install-stamp +install-stamp: + dh_testdir + dh_testroot + dh_clean -k + $(MAKE) test + $(MAKE) install DESTDIR=$(TMP) PREFIX=/usr + + # fix ö in manpages + sed -i -e 's/ö/\\\[:o\]/' $(TMP)/usr/share/man/man3/* + + # As this is a architecture independent package, we are not + # supposed to install stuff to /usr/lib. MakeMaker creates + # the dirs, we delete them from the deb: + rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5 + + touch install-stamp + +binary-arch: +# We have nothing to do by default. + +binary-indep: build install + dh_testdir + dh_testroot + dh_installexamples examples/* + dh_installdocs README + dh_installchangelogs Changes + dh_perl + dh_link + dh_strip + 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