From 2478c293478e2fa58be6196a1089a827aeb44a25 Mon Sep 17 00:00:00 2001 From: Automatic Build System Date: Sat, 6 Jan 2024 08:56:49 +0100 Subject: [PATCH] automatic update by autodist [release 1.04-1mamba;Fri Jan 24 2014] --- README.md | 10 ++++++ perl-Event-RPC.spec | 80 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 perl-Event-RPC.spec diff --git a/README.md b/README.md index e896305..2cfce42 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,12 @@ # perl-Event-RPC +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. + +The object proxy handles refcounting and destruction of objects created by clients properly. Objects as method parameters and return values are handled as well (although with some limitations, see below). + +For the client the whole thing is totally transparent - once connected to the server it doesn't know whether it calls methods on local or remote objects. + +Also the methods on the server newer know whether they are called locally or from a connected client. Your application logic is not affected by Event::RPC at all, at least if it has a rudimentary clean OO design. + +For details on implementing servers and clients please refer to the man pages of Event::RPC::Server and Event::RPC::Client. + diff --git a/perl-Event-RPC.spec b/perl-Event-RPC.spec new file mode 100644 index 0000000..5df2892 --- /dev/null +++ b/perl-Event-RPC.spec @@ -0,0 +1,80 @@ +%define perl_major_ver %(eval `perl -V:version`; echo ${version%*.[0-9]*}.0) + +Name: perl-Event-RPC +Version: 1.04 +Release: 1mamba +Summary: Event::RPC - Event based transparent Client/Server RPC framework +Group: System/Libraries/Perl +Vendor: openmamba +Distribution: openmamba +Packager: Automatic Build System +URL: http://www.cpan.org +Source: http://search.cpan.org/CPAN/authors/id/J/JR/JRED/Event-RPC-%{version}.tar.gz +License: Artistic, GPL +Requires: perl >= %perl_major_ver +## AUTOBUILDREQ-BEGIN +BuildRequires: perl-devel +BuildRequires: perl-Event +BuildRequires: perl-Glib +## AUTOBUILDREQ-END +BuildRequires: perl-IO-Socket-SSL +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +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. + +The object proxy handles refcounting and destruction of objects created by clients properly. Objects as method parameters and return values are handled as well (although with some limitations, see below). + +For the client the whole thing is totally transparent - once connected to the server it doesn't know whether it calls methods on local or remote objects. + +Also the methods on the server newer know whether they are called locally or from a connected client. Your application logic is not affected by Event::RPC at all, at least if it has a rudimentary clean OO design. + +For details on implementing servers and clients please refer to the man pages of Event::RPC::Server and Event::RPC::Client. + +%prep + +%setup -q -n Event-RPC-%{version} + +%build +perl Makefile.PL PREFIX=%{_prefix} INSTALLDIRS=vendor +%make +%make test + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall_perl +packlist=`find %{buildroot} -name .packlist` +[ -z "$packlist" ] && exit 1 || cat $packlist | \ + sed "s,%buildroot,,g;s,.*/man/.*,&.gz,g" | \ + sort -u > .packlist && rm $packlist + +strid=`echo $packlist | sed 's,.*auto\(.*\)/.packlist,\1,'` +for dir in `find %{buildroot} -type d | grep $strid`; do + echo "%dir ${dir#%buildroot}" >> .packlist +done + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +rm -f .packlist + +%files -f .packlist +%defattr(-,root,root) + +%changelog +* Fri Jan 24 2014 Automatic Build System 1.04-1mamba +- automatic update by autodist + +* Fri Feb 22 2013 Automatic Build System 1.03-1mamba +- automatic version update by autodist + +* Tue Nov 13 2012 Silvan Calarco 1.01-2mamba +- perl 5.16 mass rebuild + +* Thu Feb 05 2009 Silvan Calarco 1.01-1mamba +- automatic update by autodist + +* Tue Nov 04 2008 Silvan Calarco 1.00-2mamba +- automatic rebuild by autodist + +* Mon Oct 20 2008 gil 1.00-1mamba +- package created by autospec