python-zope-interface: new package

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
Yegor Yefremov 2015-01-24 21:28:58 +01:00 committed by Peter Korsgaard
parent 88f3034651
commit c1e3f66bf2
4 changed files with 26 additions and 0 deletions

View File

@ -558,6 +558,7 @@ menu "external python modules"
source "package/python-versiontools/Config.in"
source "package/python-webpy/Config.in"
source "package/python-werkzeug/Config.in"
source "package/python-zope-interface/Config.in"
endmenu
endif
source "package/ruby/Config.in"

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_PYTHON_ZOPE_INTERFACE
bool "python-zope-interface"
help
This package provides an implementation of "object interfaces" for
Python. Interfaces are a mechanism for labeling objects as conforming
to a given API or contract. So, this package can be considered as
implementation of the Design By Contract methodology support in Python.
http://docs.zope.org/zope.interface/

View File

@ -0,0 +1,2 @@
# Locally computed:
sha256 441fefcac1fbac57c55239452557d3598571ab82395198b2565a29d45d1232f6 zope.interface-4.1.2.tar.gz

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-zope-interface
#
################################################################################
PYTHON_ZOPE_INTERFACE_VERSION = 4.1.2
PYTHON_ZOPE_INTERFACE_SOURCE = zope.interface-$(PYTHON_ZOPE_INTERFACE_VERSION).tar.gz
PYTHON_ZOPE_INTERFACE_SITE = https://pypi.python.org/packages/source/z/zope.interface/
PYTHON_ZOPE_INTERFACE_SETUP_TYPE = setuptools
PYTHON_ZOPE_INTERFACE_LICENSE = ZPLv2.1
PYTHON_ZOPE_INTERFACE_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))