[Mod] First commit

This commit is contained in:
2022-10-31 22:18:58 +08:00
commit 1c8a3d9709
13090 changed files with 526733 additions and 0 deletions

View File

@ -0,0 +1,12 @@
config BR2_PACKAGE_PYTHON_ZOPE_INTERFACE
bool "python-zope-interface"
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
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.
https://zopeinterface.readthedocs.io/

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/zope-interface/json
md5 c58b31da83449631efb499de13c68c6a zope.interface-5.4.0.tar.gz
sha256 5dba5f530fec3f0988d83b78cc591b58c0b6eb8431a85edd1569a0539a8a5a0e zope.interface-5.4.0.tar.gz
# Locally computed sha256 checksums
sha256 3e671db11df687516cc1db5b3d65e4aa383eaca3c20cea3faf53a0f7335d0a3c LICENSE.txt

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-zope-interface
#
################################################################################
PYTHON_ZOPE_INTERFACE_VERSION = 5.4.0
PYTHON_ZOPE_INTERFACE_SOURCE = zope.interface-$(PYTHON_ZOPE_INTERFACE_VERSION).tar.gz
PYTHON_ZOPE_INTERFACE_SITE = https://files.pythonhosted.org/packages/ae/58/e0877f58daa69126a5fb325d6df92b20b77431cd281e189c5ec42b722f58
PYTHON_ZOPE_INTERFACE_SETUP_TYPE = setuptools
PYTHON_ZOPE_INTERFACE_LICENSE = ZPL-2.1
PYTHON_ZOPE_INTERFACE_LICENSE_FILES = LICENSE.txt
$(eval $(python-package))