lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 3ce89f1ebbbb8917c3c1da402825d92759315320
parent 5ccaccf03bfd6f522806e27cc2d27d77453015e4
Author: Jeffery To <jeffery.to@gmail.com>
Date:   Thu,  5 Nov 2015 23:25:12 +0800

zope-interface: import from old packages feed

- split from twisted, since the twisted tarball no longer includes zope.interface
- update to latest version (4.1.3)
- add setuptools to PKG_BUILD_DEPENDS
- update description, filespec
- add license info
- add myself as maintainer

Signed-off-by: Jeffery To <jeffery.to@gmail.com>

Diffstat:
Alang/zope-interface/Makefile | 56++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+), 0 deletions(-)

diff --git a/lang/zope-interface/Makefile b/lang/zope-interface/Makefile @@ -0,0 +1,56 @@ +# +# Copyright (C) 2006-2015 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=zope.interface +PKG_VERSION:=4.1.3 +PKG_RELEASE:=1 + +PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz +PKG_SOURCE_URL:=https://pypi.python.org/packages/source/z/zope.interface +PKG_MD5SUM:=9ae3d24c0c7415deb249dd1a132f0f79 + +PKG_BUILD_DEPENDS:=python python-setuptools + +PKG_LICENSE:=ZPL-2.1 +PKG_LICENSE_FILES:=LICENSE.txt +PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com> + +include $(INCLUDE_DIR)/package.mk +$(call include_mk, python-package.mk) + +define Package/zope-interface + SECTION:=lang + CATEGORY:=Languages + SUBMENU:=Python + TITLE:=Zope interface + URL:=https://github.com/zopefoundation/zope.interface + DEPENDS:=+python-light +endef + +define Package/zope-interface/description +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. +endef + +define PyPackage/zope-interface/filespec ++|$(PYTHON_PKG_DIR) +-|$(PYTHON_PKG_DIR)/zope/interface/common/tests +-|$(PYTHON_PKG_DIR)/zope/interface/tests +endef + +define Build/Compile + $(call Build/Compile/PyMod,, \ + install --prefix="/usr" --root="$(PKG_INSTALL_DIR)" --no-compile, \ + ) +endef + +$(eval $(call PyPackage,zope-interface)) +$(eval $(call BuildPackage,zope-interface))