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.

46 lines
1.2 KiB

  1. #
  2. # Copyright (C) 2007-2017 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. # Please do not update: 3.3.0 is the last version compatible with Django 1.11
  9. PKG_NAME:=django-postoffice
  10. PKG_VERSION:=3.3.0
  11. PKG_RELEASE:=1
  12. PYPI_NAME:=django-post-office
  13. PYPI_SOURCE_NAME:=django-post_office
  14. PKG_HASH:=b06514da601c22e955bd93a4ac6dd6b2218c571ca67c193e62bd1f22cec7536f
  15. PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
  16. PKG_LICENSE:=MIT
  17. PKG_LICENSE_FILES:=LICENSE.txt
  18. include ../pypi.mk
  19. include $(INCLUDE_DIR)/package.mk
  20. include ../python3-package.mk
  21. define Package/python3-django-postoffice
  22. SUBMENU:=Python
  23. SECTION:=lang
  24. CATEGORY:=Languages
  25. TITLE:=A Django app to monitor and send mail asynchronously
  26. URL:=https://github.com/ui/django-post_office
  27. DEPENDS:= \
  28. +python3 \
  29. +python3-django1 \
  30. +python3-django-jsonfield2
  31. endef
  32. define Package/python3-django-postoffice/description
  33. A Django app to monitor and send mail asynchronously, complete with template
  34. support
  35. endef
  36. $(eval $(call Py3Package,python3-django-postoffice))
  37. $(eval $(call BuildPackage,python3-django-postoffice))
  38. $(eval $(call BuildPackage,python3-django-postoffice-src))