You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.4 KiB

  1. #
  2. # Copyright (C) Alexandru Ardelean <ardeleanalex@gmail.com>
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=django
  9. PKG_VERSION:=3.0.2
  10. PKG_RELEASE:=2
  11. PYPI_NAME:=Django
  12. PKG_HASH:=8c3575f81e11390893860d97e1e0154c47512f180ea55bd84ce8fa69ba8051ca
  13. PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
  14. PKG_LICENSE:=BSD-3-Clause
  15. PKG_LICENSE_FILES:=LICENSE LICENSE.python
  16. PKG_CPE_ID:=cpe:/a:djangoproject:django
  17. include ../pypi.mk
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../python3-package.mk
  20. define Package/django/Default
  21. SUBMENU:=Python
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=The web framework for perfectionists with deadlines.
  25. URL:=https://www.djangoproject.com/
  26. MENU:=1
  27. endef
  28. define Package/python3-django
  29. $(call Package/django/Default)
  30. DEPENDS:= +python3 +python3-pytz +python3-sqlparse +python3-asgiref
  31. VARIANT:=python3
  32. endef
  33. define Package/python3-django/description
  34. The web framework for perfectionists with deadlines (LTS 2.2 series).
  35. Python3 only.
  36. endef
  37. define Py3Package/python3-django/install
  38. $(INSTALL_DIR) $(1)/usr/bin
  39. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/django-admin.py \
  40. $(1)/usr/bin/django-admin
  41. endef
  42. $(eval $(call Py3Package,python3-django))
  43. $(eval $(call BuildPackage,python3-django))
  44. $(eval $(call BuildPackage,python3-django-src))