mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Add p5-RPC-Simple 1.002, perl classes to handle simple asynchronous RPC
calls with call-back. PR: ports/102256 Submitted by: Gea-Suan Lin <gslin at gslin.org>
This commit is contained in:
parent
3f861d0268
commit
373af94e47
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=171151
5 changed files with 62 additions and 0 deletions
|
@ -503,6 +503,7 @@
|
||||||
SUBDIR += p5-Parallel-MPI
|
SUBDIR += p5-Parallel-MPI
|
||||||
SUBDIR += p5-Parallel-Pvm
|
SUBDIR += p5-Parallel-Pvm
|
||||||
SUBDIR += p5-PlRPC
|
SUBDIR += p5-PlRPC
|
||||||
|
SUBDIR += p5-RPC-Simple
|
||||||
SUBDIR += p5-RPC-XML
|
SUBDIR += p5-RPC-XML
|
||||||
SUBDIR += p5-RRD-Simple
|
SUBDIR += p5-RRD-Simple
|
||||||
SUBDIR += p5-ResourcePool-Resource-Net-LDAP
|
SUBDIR += p5-ResourcePool-Resource-Net-LDAP
|
||||||
|
|
25
net/p5-RPC-Simple/Makefile
Normal file
25
net/p5-RPC-Simple/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
# New ports collection makefile for: p5-RPC-Simple
|
||||||
|
# Date created: 2006-08-19
|
||||||
|
# Whom: Gea-Suan Lin <gslin@gslin.org>
|
||||||
|
#
|
||||||
|
# $FreeBSD$
|
||||||
|
#
|
||||||
|
|
||||||
|
PORTNAME= RPC-Simple
|
||||||
|
PORTVERSION= 1.002
|
||||||
|
CATEGORIES= net perl5
|
||||||
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||||
|
MASTER_SITE_SUBDIR= RPC
|
||||||
|
PKGNAMEPREFIX= p5-
|
||||||
|
|
||||||
|
MAINTAINER= gslin@gslin.org
|
||||||
|
COMMENT= Perl classes to handle simple asynchronous RPC calls with call-back
|
||||||
|
|
||||||
|
PERL_CONFIGURE= yes
|
||||||
|
|
||||||
|
MAN3= RPC::Simple.3 RPC::Simple::Agent.3 RPC::Simple::AnyLocal.3 \
|
||||||
|
RPC::Simple::AnyRemote.3 RPC::Simple::AnyWhere.3 \
|
||||||
|
RPC::Simple::CallHandler.3 RPC::Simple::Factory.3 \
|
||||||
|
RPC::Simple::ObjectHandler.3 RPC::Simple::Server.3
|
||||||
|
|
||||||
|
.include <bsd.port.mk>
|
3
net/p5-RPC-Simple/distinfo
Normal file
3
net/p5-RPC-Simple/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
MD5 (RPC-Simple-1.002.tar.gz) = 115b7c59defc0878d606ceaab3b1c58d
|
||||||
|
SHA256 (RPC-Simple-1.002.tar.gz) = 6f282e73a706aecdfe3e09647a083da7cbdc57591535f44ba853f8b83a61d3f9
|
||||||
|
SIZE (RPC-Simple-1.002.tar.gz) = 19064
|
18
net/p5-RPC-Simple/pkg-descr
Normal file
18
net/p5-RPC-Simple/pkg-descr
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
This module implements remote procedure call. I've tried to keep
|
||||||
|
things simple.
|
||||||
|
|
||||||
|
So this module should be :
|
||||||
|
- quite simple to use (thanks to autoload mechanisms)
|
||||||
|
- lightweight
|
||||||
|
|
||||||
|
It sure is not :
|
||||||
|
- DCE
|
||||||
|
- CORBA
|
||||||
|
- bulletproof
|
||||||
|
- securityproof
|
||||||
|
- foolproof
|
||||||
|
|
||||||
|
But it works. (Although I'm opened to suggestion regarding the
|
||||||
|
"un-proof" areas)
|
||||||
|
|
||||||
|
WWW: http://search.cpan.org/dist/RPC-Simple/
|
15
net/p5-RPC-Simple/pkg-plist
Normal file
15
net/p5-RPC-Simple/pkg-plist
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
@comment $FreeBSD$
|
||||||
|
%%SITE_PERL%%/%%PERL_ARCH%%/auto/RPC/Simple/.packlist
|
||||||
|
%%SITE_PERL%%/RPC/Simple.pm
|
||||||
|
%%SITE_PERL%%/RPC/Simple/Agent.pm
|
||||||
|
%%SITE_PERL%%/RPC/Simple/AnyLocal.pm
|
||||||
|
%%SITE_PERL%%/RPC/Simple/AnyRemote.pm
|
||||||
|
%%SITE_PERL%%/RPC/Simple/AnyWhere.pm
|
||||||
|
%%SITE_PERL%%/RPC/Simple/CallHandler.pm
|
||||||
|
%%SITE_PERL%%/RPC/Simple/Factory.pm
|
||||||
|
%%SITE_PERL%%/RPC/Simple/ObjectHandler.pm
|
||||||
|
%%SITE_PERL%%/RPC/Simple/Server.pm
|
||||||
|
@dirrmtry %%SITE_PERL%%/RPC/Simple
|
||||||
|
@dirrmtry %%SITE_PERL%%/RPC
|
||||||
|
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/RPC/Simple
|
||||||
|
@dirrmtry %%SITE_PERL%%/%%PERL_ARCH%%/auto/RPC
|
Loading…
Add table
Reference in a new issue