[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,7 @@
config BR2_PACKAGE_PYTHON_COUCHDB
bool "python-couchdb"
select BR2_PACKAGE_PYTHON3_SSL # runtime
help
Python client library for working with CouchDB.
https://github.com/djc/couchdb-python/

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/couchdb/json
md5 de40696472202d728cfca4279629e4ff CouchDB-1.2.tar.gz
sha256 1386a1a43f25bed3667e3b805222054940d674fa1967fa48e9d2012a18630ab7 CouchDB-1.2.tar.gz
# Locally computed sha256 checksums
sha256 c538da1ae16b6d75f6fa65852bb158dbf9e556b01681be5b692692906d244241 COPYING

View File

@ -0,0 +1,14 @@
################################################################################
#
# python-couchdb
#
################################################################################
PYTHON_COUCHDB_VERSION = 1.2
PYTHON_COUCHDB_SOURCE = CouchDB-$(PYTHON_COUCHDB_VERSION).tar.gz
PYTHON_COUCHDB_SITE = https://files.pythonhosted.org/packages/7c/c8/f94a107eca0c178e5d74c705dad1a5205c0f580840bd1b155cd8a258cb7c
PYTHON_COUCHDB_SETUP_TYPE = setuptools
PYTHON_COUCHDB_LICENSE = BSD-3-Clause
PYTHON_COUCHDB_LICENSE_FILES = COPYING
$(eval $(python-package))