r2575 - in packages/libevent-rpc-perl/trunk: . debian examples t

gregor herrmann gregoa-guest at costa.debian.org
Sat Apr 15 18:15:43 UTC 2006


Author: gregoa-guest
Date: 2006-04-15 18:15:42 +0000 (Sat, 15 Apr 2006)
New Revision: 2575

Added:
   packages/libevent-rpc-perl/trunk/debian/
   packages/libevent-rpc-perl/trunk/debian/changelog
   packages/libevent-rpc-perl/trunk/debian/compat
   packages/libevent-rpc-perl/trunk/debian/control
   packages/libevent-rpc-perl/trunk/debian/copyright
   packages/libevent-rpc-perl/trunk/debian/rules
   packages/libevent-rpc-perl/trunk/debian/watch
Modified:
   packages/libevent-rpc-perl/trunk/examples/client.pl
   packages/libevent-rpc-perl/trunk/examples/server.pl
   packages/libevent-rpc-perl/trunk/t/Event_RPC_Test_Server.pm
Log:
Load libevent-rpc-perl-0.89 into packages/libevent-rpc-perl/trunk.


Added: packages/libevent-rpc-perl/trunk/debian/changelog
===================================================================
--- packages/libevent-rpc-perl/trunk/debian/changelog	2006-04-15 18:15:27 UTC (rev 2574)
+++ packages/libevent-rpc-perl/trunk/debian/changelog	2006-04-15 18:15:42 UTC (rev 2575)
@@ -0,0 +1,6 @@
+libevent-rpc-perl (0.89-1) unstable; urgency=low
+
+  * Initial Release (closes: #320364).
+
+ -- gregor herrmann <gregor+debian at comodo.priv.at>  Sat, 15 Apr 2006 19:12:49 +0200
+

Added: packages/libevent-rpc-perl/trunk/debian/compat
===================================================================
--- packages/libevent-rpc-perl/trunk/debian/compat	2006-04-15 18:15:27 UTC (rev 2574)
+++ packages/libevent-rpc-perl/trunk/debian/compat	2006-04-15 18:15:42 UTC (rev 2575)
@@ -0,0 +1 @@
+5

Added: packages/libevent-rpc-perl/trunk/debian/control
===================================================================
--- packages/libevent-rpc-perl/trunk/debian/control	2006-04-15 18:15:27 UTC (rev 2574)
+++ packages/libevent-rpc-perl/trunk/debian/control	2006-04-15 18:15:42 UTC (rev 2575)
@@ -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
+Maintainer: Debian Perl Group <pkg-perl-maintainers at lists.alioth.debian.org>
+Uploaders: gregor herrmann <gregor+debian at comodo.priv.at>
+Standards-Version: 3.6.2
+
+Package: libevent-rpc-perl
+Architecture: all
+Depends: ${perl:Depends}, ${misc:Depends}, libevent-perl | libglib-perl
+Suggests: 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://search.cpan.org/~jred/Event-RPC-0.89/lib/Event/RPC.pm

Added: packages/libevent-rpc-perl/trunk/debian/copyright
===================================================================
--- packages/libevent-rpc-perl/trunk/debian/copyright	2006-04-15 18:15:27 UTC (rev 2574)
+++ packages/libevent-rpc-perl/trunk/debian/copyright	2006-04-15 18:15:42 UTC (rev 2575)
@@ -0,0 +1,31 @@
+This is the debian package for the Event-RPC module.
+It was created by gregor herrmann <gregor+debian at comodo.priv.at> using dh-make-perl.
+
+It was downloaded from
+
+Author:
+Jörn Reder <joern at zyn dot de>
+
+Copyright:
+Copyright 2002-2006 by Jörn Reder
+
+Licence:
+
+This library is free software; you can redistribute it and/or modify it
+under the terms of the GNU Library General Public License as published by
+the Free Software Foundation; either version 2.1 of the License, or (at your
+option) any later version.
+
+This library 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 Library General Public License
+for more details.
+
+You should have received a copy of the GNU Library General Public License
+along with this library; if not, write to the Free Software Foundation,
+Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+
+
+The full text of the GPL is available on Debian systems in
+/usr/share/common-licenses/GPL
+

Added: packages/libevent-rpc-perl/trunk/debian/rules
===================================================================
--- packages/libevent-rpc-perl/trunk/debian/rules	2006-04-15 18:15:27 UTC (rev 2574)
+++ packages/libevent-rpc-perl/trunk/debian/rules	2006-04-15 18:15:42 UTC (rev 2575)
@@ -0,0 +1,86 @@
+#!/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.
+
+# 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
+
+	# Add commands to compile the package here
+	$(PERL) Makefile.PL INSTALLDIRS=vendor
+	$(MAKE) OPTIMIZE="-Wall -O2 -g"
+
+	touch build-stamp
+
+clean:
+	dh_testdir
+	dh_testroot
+
+	# Add commands to clean up after the build process here
+	[ ! -f Makefile ] || $(MAKE) realclean
+
+	dh_clean build-stamp install-stamp
+
+install: build install-stamp
+install-stamp:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+	# Add commands to install the package into debian/$PACKAGE_NAME here
+	-$(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_installcron
+#	dh_installmenu
+	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
+
+source diff:                                                                  
+	@echo >&2 'source and diff are obsolete - use dpkg-source -b'; false
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary


Property changes on: packages/libevent-rpc-perl/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/libevent-rpc-perl/trunk/debian/watch
===================================================================
--- packages/libevent-rpc-perl/trunk/debian/watch	2006-04-15 18:15:27 UTC (rev 2574)
+++ packages/libevent-rpc-perl/trunk/debian/watch	2006-04-15 18:15:42 UTC (rev 2575)
@@ -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


Property changes on: packages/libevent-rpc-perl/trunk/examples/client.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libevent-rpc-perl/trunk/examples/server.pl
___________________________________________________________________
Name: svn:executable
   - 
   + *


Property changes on: packages/libevent-rpc-perl/trunk/t/Event_RPC_Test_Server.pm
___________________________________________________________________
Name: svn:executable
   - 
   + *




More information about the Pkg-perl-cvs-commits mailing list