2016-04-30 16:37:30 +08:00
|
|
|
#
|
2019-10-11 14:29:46 +08:00
|
|
|
# Copyright (C) Alexandru Ardelean <ardeleanalex@gmail.com>
|
2016-04-30 16:37:30 +08:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=django
|
2024-07-17 19:46:52 +08:00
|
|
|
PKG_VERSION:=5.0.7
|
2022-12-03 05:26:34 +08:00
|
|
|
PKG_RELEASE:=1
|
2016-04-30 16:37:30 +08:00
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
PYPI_NAME:=Django
|
2024-07-17 19:46:52 +08:00
|
|
|
PKG_HASH:=bd4505cae0b9bd642313e8fb71810893df5dc2ffcacaa67a33af2d5cd61888f2
|
2016-04-30 16:37:30 +08:00
|
|
|
|
2020-05-11 14:48:37 +08:00
|
|
|
PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>, Peter Stadler <peter.stadler@student.uibk.ac.at>
|
2018-12-17 03:33:26 +08:00
|
|
|
PKG_LICENSE:=BSD-3-Clause
|
|
|
|
PKG_LICENSE_FILES:=LICENSE LICENSE.python
|
|
|
|
PKG_CPE_ID:=cpe:/a:djangoproject:django
|
|
|
|
|
2019-10-21 03:03:12 +08:00
|
|
|
include ../pypi.mk
|
2016-04-30 16:37:30 +08:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2019-06-03 20:25:39 +08:00
|
|
|
include ../python3-package.mk
|
|
|
|
|
2020-02-05 19:13:45 +08:00
|
|
|
define Package/python3-django
|
2019-06-03 20:25:39 +08:00
|
|
|
SUBMENU:=Python
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
TITLE:=The web framework for perfectionists with deadlines.
|
|
|
|
URL:=https://www.djangoproject.com/
|
2020-01-29 04:31:58 +08:00
|
|
|
DEPENDS:= +python3 +python3-pytz +python3-sqlparse +python3-asgiref
|
2020-04-23 04:24:23 +08:00
|
|
|
CONFLICTS:=python3-django1
|
2020-02-05 19:13:45 +08:00
|
|
|
PROVIDES:=django
|
2016-04-30 16:37:30 +08:00
|
|
|
endef
|
|
|
|
|
2019-06-03 20:25:39 +08:00
|
|
|
define Package/python3-django/description
|
2020-04-22 01:27:50 +08:00
|
|
|
The web framework for perfectionists with deadlines.
|
2016-04-30 16:37:30 +08:00
|
|
|
endef
|
|
|
|
|
2019-11-05 21:24:37 +08:00
|
|
|
define Py3Package/python3-django/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
2021-12-27 19:12:46 +08:00
|
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/django-admin $(1)/usr/bin
|
2019-11-05 21:24:37 +08:00
|
|
|
endef
|
|
|
|
|
2019-06-03 20:25:39 +08:00
|
|
|
$(eval $(call Py3Package,python3-django))
|
|
|
|
$(eval $(call BuildPackage,python3-django))
|
2019-10-11 14:29:46 +08:00
|
|
|
$(eval $(call BuildPackage,python3-django-src))
|