diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2008-11-25 17:52:33 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2008-11-25 17:54:02 +0100 |
commit | d930861216a318e6d851b2a8cea8f78b786bdec6 (patch) | |
tree | 0b7fc06cf71cb9061187c31b62af0ca8cb2be3b0 /packages/python | |
parent | 313d0662ee9183b85e9674f892c2f45fbcfe3a9e (diff) |
python-rpyc: new recipe; remote procedure call package for python
Diffstat (limited to 'packages/python')
-rw-r--r-- | packages/python/python-rpyc_3.00.bb | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/packages/python/python-rpyc_3.00.bb b/packages/python/python-rpyc_3.00.bb new file mode 100644 index 0000000000..b11856b713 --- /dev/null +++ b/packages/python/python-rpyc_3.00.bb @@ -0,0 +1,30 @@ +DESCRIPTION = "RPyC is a Remote Procedure Call Package for Python" +SECTION = "devel/python" +HOMEPAGE = "http://rpyc.wikizone.com" +LICENSE = "GPL" +SRCNAME = "rpyc" +PR = "ml0" + +SRC_URI = "${SOURCEFORGE_MIRROR}/rpyc/${SRCNAME}-${PV}-dev.tar.gz" +S = "${WORKDIR}/${SRCNAME}-${PV}-dev/build" + +inherit distutils + +do_configure_prepend() { + cd .. + rm -rf build + mkdir build + mkdir build/rpyc + + cp README build + cp setup.py build + cp __init__.py build/rpyc + cp license.py build/rpyc + cp -r core build/rpyc/ + cp -r servers build/rpyc/ + cp -r utils build/rpyc/ + + cd build + find . -name "*.pyc" | xargs rm -f +} + |