diff options
author | miwi <miwi@FreeBSD.org> | 2011-06-25 12:28:06 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2011-06-25 12:28:06 +0800 |
commit | 151b8d7d0312fd75d00339c72e05d18977aa4f4f (patch) | |
tree | 4e6b6dd267d1d02bcd47254a17ca24779f766654 /devel/py-pyro | |
parent | e846f363abb7b51aa86a78626f7f9821e8bb2c2c (diff) | |
download | freebsd-ports-gnome-151b8d7d0312fd75d00339c72e05d18977aa4f4f.tar.gz freebsd-ports-gnome-151b8d7d0312fd75d00339c72e05d18977aa4f4f.tar.zst freebsd-ports-gnome-151b8d7d0312fd75d00339c72e05d18977aa4f4f.zip |
- Use CHEESESHOP instead absolute download url
- Add LICENSE
- Minimal python version is 2.6
- Add USE_DOS2UNIX
- Whitespace fixes in pkg-descr
PR: 157962
Submitted by: Ruslan Mahmatkhanov <cvs-src@yandex.ru> (maintainer)
Diffstat (limited to 'devel/py-pyro')
-rw-r--r-- | devel/py-pyro/Makefile | 8 | ||||
-rw-r--r-- | devel/py-pyro/pkg-descr | 4 |
2 files changed, 8 insertions, 4 deletions
diff --git a/devel/py-pyro/Makefile b/devel/py-pyro/Makefile index d447d41df21e..c002612a19aa 100644 --- a/devel/py-pyro/Makefile +++ b/devel/py-pyro/Makefile @@ -7,15 +7,19 @@ PORTNAME= pyro PORTVERSION= 4.6 +PORTREVISION= 1 CATEGORIES= devel python -MASTER_SITES= http://pypi.python.org/packages/source/P/Pyro4/ +MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} DISTNAME= Pyro4-${PORTVERSION} MAINTAINER= cvs-src@yandex.ru COMMENT= Distributed Object Middleware for Python(IPC/RPC) -USE_PYTHON= 2.5+ +LICENSE= MIT + +USE_DOS2UNIX= yes +USE_PYTHON= 2.6+ USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= Pyro4 diff --git a/devel/py-pyro/pkg-descr b/devel/py-pyro/pkg-descr index bd70504eb111..45bedf348abb 100644 --- a/devel/py-pyro/pkg-descr +++ b/devel/py-pyro/pkg-descr @@ -8,8 +8,8 @@ you split them over different machines on the network. All the gory socket programming details are taken care of, you just call a method on a remote object as if it were a local object! -Pyro provides an object-oriented form of RPC. You can use Pyro within a -single system but also use it for IPC. For those that are familiar with +Pyro provides an object-oriented form of RPC. You can use Pyro within a +single system but also use it for IPC. For those that are familiar with Java, Pyro resembles Java's Remote Method Invocation (RMI). It is less similar to CORBA - which is a system- and language independent Distributed Object Technology and has much more to offer than Pyro or |