Commit c1e3f66b authored by Yegor Yefremov's avatar Yegor Yefremov Committed by Peter Korsgaard
Browse files

python-zope-interface: new package

parent 88f30346
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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"
+9 −0
Original line number Diff line number Diff line
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/
+2 −0
Original line number Diff line number Diff line
# Locally computed:
sha256  441fefcac1fbac57c55239452557d3598571ab82395198b2565a29d45d1232f6  zope.interface-4.1.2.tar.gz
+14 −0
Original line number Diff line number Diff line
################################################################################
#
# 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))