[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,19 @@
config BR2_PACKAGE_PYTHON_DJANGO
bool "python-django"
select BR2_PACKAGE_PYTHON3_UNICODEDATA
select BR2_PACKAGE_PYTHON3_PYEXPAT
select BR2_PACKAGE_PYTHON_ASGIREF # runtime
select BR2_PACKAGE_PYTHON_PYTZ # runtime
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
select BR2_PACKAGE_PYTHON_SQLPARSE # runtime
help
Django is a high-level Python Web framework that encourages
rapid development and clean, pragmatic design. It takes your
Web applications from concept to launch in a matter of
hours. Django takes care of user authentication, content
administration, site maps, RSS feeds, user comments and many
more tasks. Django takes security seriously and helps
developers avoid many common security mistakes
https://www.djangoproject.com/

View File

@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/django/json
md5 ad4e850c7110a45a6c7778d5bd01b85e Django-4.0.6.tar.gz
sha256 a67a793ff6827fd373555537dca0da293a63a316fe34cb7f367f898ccca3c3ae Django-4.0.6.tar.gz
# Locally computed sha256 checksums
sha256 b846415d1b514e9c1dff14a22deb906d794bc546ca6129f950a18cd091e2a669 LICENSE

View File

@ -0,0 +1,18 @@
################################################################################
#
# python-django
#
################################################################################
PYTHON_DJANGO_VERSION = 4.0.6
PYTHON_DJANGO_SOURCE = Django-$(PYTHON_DJANGO_VERSION).tar.gz
# The official Django site has an unpractical URL
PYTHON_DJANGO_SITE = https://files.pythonhosted.org/packages/a4/17/b10aa26d7a566a3c19e9d29fac39c8643cbceb6cd7649a378d676839b5db
PYTHON_DJANGO_LICENSE = BSD-3-Clause
PYTHON_DJANGO_LICENSE_FILES = LICENSE
PYTHON_DJANGO_CPE_ID_VENDOR = djangoproject
PYTHON_DJANGO_CPE_ID_PRODUCT = django
PYTHON_DJANGO_SETUP_TYPE = setuptools
$(eval $(python-package))