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.

68 lines
1.7 KiB

  1. #
  2. # Copyright (C) 2007-2016 OpenWrt.org
  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-appconf
  9. PKG_VERSION:=1.0.2
  10. PKG_RELEASE:=5
  11. PYPI_NAME:=$(PKG_NAME)
  12. PKG_HASH:=6a4d9aea683b4c224d97ab8ee11ad2d29a37072c0c6c509896dd9857466fb261
  13. PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
  14. PKG_LICENSE:=BSD-3-Clause
  15. PKG_LICENSE_FILES:=LICENSE
  16. include ../pypi.mk
  17. include $(INCLUDE_DIR)/package.mk
  18. include ../python-package.mk
  19. include ../python3-package.mk
  20. define Package/$(PKG_NAME)/Default
  21. SUBMENU:=Python
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=Helper class for handling config defaults
  25. URL:=https://$(PKG_NAME).readthedocs.io
  26. endef
  27. define Package/python-$(PKG_NAME)
  28. $(call Package/$(PKG_NAME)/Default)
  29. DEPENDS:= \
  30. +PACKAGE_python-$(PKG_NAME):python \
  31. python-django1
  32. VARIANT:=python
  33. MDEPENDS:=python-django1
  34. endef
  35. define Package/python-$(PKG_NAME)/description
  36. A helper class for handling configuration defaults of packaged apps gracefully
  37. endef
  38. define Package/python3-$(PKG_NAME)
  39. $(call Package/$(PKG_NAME)/Default)
  40. DEPENDS:= \
  41. +PACKAGE_python3-$(PKG_NAME):python3 \
  42. python3-django
  43. VARIANT:=python3
  44. MDEPENDS:=python3-django
  45. endef
  46. define Package/python3-$(PKG_NAME)/description
  47. $(call define Package/python-$(PKG_NAME)/description)
  48. .
  49. (Variant for Python3)
  50. endef
  51. $(eval $(call PyPackage,python-$(PKG_NAME)))
  52. $(eval $(call BuildPackage,python-$(PKG_NAME)))
  53. $(eval $(call BuildPackage,python-$(PKG_NAME)-src))
  54. $(eval $(call Py3Package,python3-$(PKG_NAME)))
  55. $(eval $(call BuildPackage,python3-$(PKG_NAME)))
  56. $(eval $(call BuildPackage,python3-$(PKG_NAME)-src))