This commit is contained in:
TriForceX
2019-09-25 20:51:37 -03:00
commit 6203ff3e7c
11215 changed files with 428258 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
config BR2_PACKAGE_PYTHON_DJANGO
bool "python-django"
depends on BR2_PACKAGE_PYTHON3
select BR2_PACKAGE_PYTHON3_UNICODEDATA
select BR2_PACKAGE_PYTHON3_PYEXPAT
select BR2_PACKAGE_PYTHON_PYTZ # runtime
select BR2_PACKAGE_PYTHON_SETUPTOOLS # 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/
+5
View File
@@ -0,0 +1,5 @@
# md5, sha256 from https://pypi.org/pypi/django/json
md5 b32e396c354880742d85a7628a0bdd5a Django-2.2.4.tar.gz
sha256 16a5d54411599780ac9dfe3b9b38f90f785c51259a584e0b24b6f14a7f69aae8 Django-2.2.4.tar.gz
# Locally computed sha256 checksums
sha256 b846415d1b514e9c1dff14a22deb906d794bc546ca6129f950a18cd091e2a669 LICENSE
+15
View File
@@ -0,0 +1,15 @@
################################################################################
#
# python-django
#
################################################################################
PYTHON_DJANGO_VERSION = 2.2.4
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/19/11/3449a2071df9427e7a5c4dddee2462e88840dd968a9b0c161097154fcb0c
PYTHON_DJANGO_LICENSE = BSD-3-Clause
PYTHON_DJANGO_LICENSE_FILES = LICENSE
PYTHON_DJANGO_SETUP_TYPE = setuptools
$(eval $(python-package))