mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-21 01:52:11 +00:00
Fixes the following security vulnerabilities: - CVE-2019-19118: Privilege escalation in the Django admin Additionally, 2.2.8 (and 2.2.7) fixes a number of bugs and adds python 3.8 support. For more details, see the release notes: https://docs.djangoproject.com/en/dev/releases/2.2.8/ Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
16 lines
593 B
Makefile
16 lines
593 B
Makefile
################################################################################
|
|
#
|
|
# python-django
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_DJANGO_VERSION = 2.2.8
|
|
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/1c/aa/f618f346b895123be44739b276099a2b418b45b2b7afb5e1071403e8d2e9
|
|
PYTHON_DJANGO_LICENSE = BSD-3-Clause
|
|
PYTHON_DJANGO_LICENSE_FILES = LICENSE
|
|
PYTHON_DJANGO_SETUP_TYPE = setuptools
|
|
|
|
$(eval $(python-package))
|