initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_PYTHON_COUCHDB
bool "python-couchdb"
select BR2_PACKAGE_PYTHON_SSL if BR2_PACKAGE_PYTHON # runtime
select BR2_PACKAGE_PYTHON3_SSL if BR2_PACKAGE_PYTHON3 # runtime
help
Python client library for working with CouchDB.
https://github.com/djc/couchdb-python/
@@ -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
+14
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))