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.

63 lines
1.7 KiB

  1. #
  2. # Copyright (C) 2015 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:=python-six
  9. PKG_VERSION:=1.10.0
  10. PKG_RELEASE:=3
  11. PKG_SOURCE:=six-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://pypi.python.org/packages/source/s/six
  13. PKG_MD5SUM:=34eed507548117b2ab523ab14b2f8b55
  14. HOST_BUILD_DEPENDS:=python/host
  15. PKG_BUILD_DEPENDS:=python
  16. PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
  17. PKG_LICENSE:=MIT
  18. PKG_LICENSE_FILES:=LICENSE
  19. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  20. include $(INCLUDE_DIR)/host-build.mk
  21. include $(INCLUDE_DIR)/package.mk
  22. $(call include_mk, python-package.mk)
  23. PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
  24. HOST_UNPACK:=$(HOST_TAR) -C $(HOST_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
  25. define Package/python-six
  26. SECTION:=lang
  27. CATEGORY:=Languages
  28. SUBMENU:=Python
  29. TITLE:=python-six
  30. URL:=https://pypi.python.org/pypi/six
  31. DEPENDS:=+python-light
  32. endef
  33. define Package/python-six/description
  34. Six is a Python 2 and 3 compatibility library. It provides utility functions
  35. for smoothing over the differences between the Python versions with the goal of
  36. writing Python code that is compatible on both Python versions. See the
  37. documentation for more information on what is provided.
  38. endef
  39. define Build/Compile
  40. $(call Build/Compile/PyMod,,install --prefix=/usr --root=$(PKG_INSTALL_DIR))
  41. endef
  42. define Host/Compile
  43. $(call Build/Compile/HostPyMod,,install --prefix="" --root="$(STAGING_DIR_HOSTPKG)")
  44. endef
  45. Host/Install:=
  46. $(eval $(call HostBuild))
  47. $(eval $(call PyPackage,python-six))
  48. $(eval $(call BuildPackage,python-six))