new package: add package 'zope.interface'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-07-28 11:33:14 +02:00
parent 618d47f711
commit 464906492e
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,7 @@
#!/bin/sh
. config/options $1
. config/options.python
cd $PKG_BUILD
$PYTHON setup.py bdist_egg --exclude-source-files

View File

@ -0,0 +1,8 @@
#!/bin/sh
. config/options $1
. config/options.python
PKG_SRC_DIR=`ls -d $PKG_BUILD`
$TOOLCHAIN/bin/easy_install --exclude-scripts --zip-ok --no-deps --quiet --prefix=$INSTALL/usr $PKG_SRC_DIR/dist/*.egg

View File

@ -0,0 +1,14 @@
PKG_NAME="zope.interface"
PKG_VERSION="3.3.0"
PKG_REV="1"
PKG_ARCH="any"
PKG_LICENSE="OSS"
PKG_SITE="http://zope.org/Products/ZopeInterface/"
PKG_URL="http://www.zope.org/Products/ZopeInterface/$PKG_VERSION/$PKG_NAME-$PKG_VERSION.tar.gz"
PKG_DEPENDS="Python setuptools"
PKG_BUILD_DEPENDS="toolchain Python setuptools"
PKG_PRIORITY="optional"
PKG_SECTION="python/web"
PKG_SHORTDESC="zopeinterface: zope.interface package from Zope 3"
PKG_LONGDESC="This is a separate distribution of the zope.interface package used in Zope 3, along with the packages it depends on."
PKG_IS_ADDON="no"