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.9 KiB

  1. #
  2. # This is free software, licensed under the GNU General Public License v2.
  3. # See /LICENSE for more information.
  4. #
  5. include $(TOPDIR)/rules.mk
  6. PKG_NAME:=django-ranged-response
  7. PKG_VERSION:=0.2.0
  8. PKG_RELEASE:=5
  9. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
  10. PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/d/${PKG_NAME}
  11. PKG_HASH:=f71fff352a37316b9bead717fc76e4ddd6c9b99c4680cdf4783b9755af1cf985
  12. PKG_MAINTAINER:=Eneas U de Queiroz <cotequeiroz@gmail.com>
  13. PKG_LICENSE:=MIT
  14. PKG_LICENSE_FILES:=LICENSE
  15. PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-$(PKG_NAME)-$(PKG_VERSION)
  16. include $(INCLUDE_DIR)/package.mk
  17. include ../python-package.mk
  18. include ../python3-package.mk
  19. PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
  20. define Package/$(PKG_NAME)/Default
  21. SUBMENU:=Python
  22. SECTION:=lang
  23. CATEGORY:=Languages
  24. TITLE:=Add Content-Range: to FileResponse
  25. URL:=https://github.com/wearespindle/django-ranged-fileresponse
  26. endef
  27. define Package/python-$(PKG_NAME)
  28. $(call Package/$(PKG_NAME)/Default)
  29. DEPENDS:= \
  30. +PACKAGE_python-$(PKG_NAME):python \
  31. +PACKAGE_python-$(PKG_NAME):python-django
  32. VARIANT:=python
  33. endef
  34. define Package/python-$(PKG_NAME)/description
  35. Modified Django FileResponse that adds Content-Range headers.
  36. endef
  37. define Package/python3-$(PKG_NAME)
  38. $(call Package/$(PKG_NAME)/Default)
  39. DEPENDS:= \
  40. +PACKAGE_python3-$(PKG_NAME):python3 \
  41. +PACKAGE_python3-$(PKG_NAME):python3-django
  42. VARIANT:=python3
  43. endef
  44. define Package/python3-$(PKG_NAME)/description
  45. $(call define Package/python-$(PKG_NAME)/description)
  46. .
  47. (Variant for Python3)
  48. endef
  49. $(eval $(call PyPackage,python-$(PKG_NAME)))
  50. $(eval $(call BuildPackage,python-$(PKG_NAME)))
  51. $(eval $(call BuildPackage,python-$(PKG_NAME)-src))
  52. $(eval $(call Py3Package,python3-$(PKG_NAME)))
  53. $(eval $(call BuildPackage,python3-$(PKG_NAME)))
  54. $(eval $(call BuildPackage,python3-$(PKG_NAME)-src))