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.

44 lines
1.1 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.4
  10. PKG_RELEASE:=1
  11. PYPI_NAME:=$(PKG_NAME)
  12. PKG_HASH:=be58deb54a43d77d2e1621fe59f787681376d3cd0b8bd8e4758ef6c3a6453380
  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 ../python3-package.mk
  19. define Package/python3-django-appconf
  20. SUBMENU:=Python
  21. SECTION:=lang
  22. CATEGORY:=Languages
  23. TITLE:=Helper class for handling config defaults
  24. URL:=https://django-appconf.readthedocs.io
  25. DEPENDS:= \
  26. @BROKEN \
  27. +python3 \
  28. +python3-django1 \
  29. +python3-six
  30. endef
  31. define Package/python3-django-appconf/description
  32. A helper class for handling configuration defaults of packaged apps gracefully
  33. endef
  34. $(eval $(call Py3Package,python3-django-appconf))
  35. $(eval $(call BuildPackage,python3-django-appconf))
  36. $(eval $(call BuildPackage,python3-django-appconf-src))