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.

35 lines
957 B

  1. include $(TOPDIR)/rules.mk
  2. PKG_NAME:=futures
  3. PKG_VERSION:=3.2.0
  4. PKG_RELEASE:=1
  5. PYPI_NAME:=$(PKG_NAME)
  6. PKG_HASH:=9ec02aa7d674acb8618afb127e27fde7fc68994c0437ad759fa094a574adb265
  7. PKG_MAINTAINER:=Daniel Danzberger <daniel@dd-wrt.com>
  8. PKG_LICENSE:=MIT
  9. include ../pypi.mk
  10. include $(INCLUDE_DIR)/package.mk
  11. include ../python-package.mk
  12. define Package/python-futures
  13. SUBMENU:=Python
  14. SECTION:=lang
  15. CATEGORY:=Languages
  16. TITLE:=futures
  17. URL:=https://github.com/agronholm/pythonfutures
  18. DEPENDS:=+python
  19. VARIANT:=python
  20. endef
  21. define Package/python-futures/description
  22. This is a backport of the concurrent.futures standard library module to Python 2.
  23. It should not be installed on Python 3, although there should be no harm in doing so,
  24. as the standard library takes precedence over third party libraries.
  25. endef
  26. $(eval $(call PyPackage,python-futures))
  27. $(eval $(call BuildPackage,python-futures))
  28. $(eval $(call BuildPackage,python-futures-src))