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.

55 lines
1.3 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:=django1
  9. PKG_VERSION:=1.11.25
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=Django
  12. PKG_HASH:=5314e8586285d532b7aa5c6d763b0248d9a977a37efec86d30f0212b82e8ef66
  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 ../python-package.mk
  20. define Package/django1/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/python-django1
  29. $(call Package/django1/Default)
  30. DEPENDS:= \
  31. +PACKAGE_python-django1:python \
  32. +PACKAGE_python-django1:python-pytz
  33. VARIANT:=python
  34. CONFLICTS:=python3-django
  35. endef
  36. define Package/python-django1/description
  37. The web framework for perfectionists with deadlines (LTS 1.11 series).
  38. Python2 only.
  39. endef
  40. $(eval $(call PyPackage,python-django1))
  41. define Package/python-django1-src +=
  42. MDEPENDS:=python-django1
  43. endef
  44. $(eval $(call BuildPackage,python-django1))
  45. $(eval $(call BuildPackage,python-django1-src))