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.

36 lines
1.1 KiB

  1. # This is free software, licensed under the GNU General Public License v2.
  2. # See /LICENSE for more information.
  3. #
  4. include $(TOPDIR)/rules.mk
  5. PKG_NAME:=python-contextlib2
  6. PKG_VERSION:=0.5.5
  7. PKG_RELEASE:=1
  8. PKG_MAINTAINER:=Karel Kočí <cynerd@email.cz>
  9. PKG_SOURCE_URL:=https://pypi.python.org/packages/source/c/contextlib2/
  10. PKG_SOURCE:=contextlib2-$(PKG_VERSION).tar.gz
  11. PKG_HASH:=509f9419ee91cdd00ba34443217d5ca51f5a364a404e1dce9e8979cea969ca48
  12. PKG_BUILD_DIR:=$(BUILD_DIR)/contextlib2-$(PKG_VERSION)
  13. include $(INCLUDE_DIR)/package.mk
  14. include ../python3-package.mk
  15. define Package/python3-contextlib2
  16. SECTION:=lang
  17. CATEGORY:=Languages
  18. SUBMENU:=Python
  19. URL:=http://contextlib2.readthedocs.org
  20. TITLE:=python3-contextlib2
  21. DEPENDS:=+python3-light
  22. VARIANT:=python3
  23. endef
  24. define Package/python-contextlib2/description
  25. contextlib2 is a backport of the standard library’s contextlib module to earlier Python versions.
  26. endef
  27. $(eval $(call Py3Package,python3-contextlib2))
  28. $(eval $(call BuildPackage,python3-contextlib2))
  29. $(eval $(call BuildPackage,python3-contextlib2-src))