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.

56 lines
1.5 KiB

  1. #
  2. # Copyright (C) 2015, 2017-2018 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-txsocksx
  9. PKG_VERSION:=1.15.0.2
  10. PKG_RELEASE:=4
  11. PKG_SOURCE:=txsocksx-$(PKG_VERSION).tar.gz
  12. PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/t/txsocksx
  13. PKG_HASH:=4f79b5225ce29709bfcee45e6f726e65b70fd6f1399d1898e54303dbd6f8065f
  14. PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-txsocksx-$(PKG_VERSION)
  15. PKG_LICENSE:=ISC
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
  18. include $(INCLUDE_DIR)/package.mk
  19. include ../python-package.mk
  20. PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
  21. PYTHON_PKG_SETUP_VARS:= \
  22. PKG_VERSION="$(PKG_VERSION)"
  23. define Package/python-txsocksx/Default
  24. SECTION:=lang
  25. CATEGORY:=Languages
  26. SUBMENU:=Python
  27. TITLE:=SOCKS client endpoints for Twisted
  28. URL:=https://github.com/habnabit/txsocksx
  29. endef
  30. define Package/python-txsocksx
  31. $(call Package/python-txsocksx/Default)
  32. DEPENDS:= \
  33. +PACKAGE_python-txsocksx:python-light \
  34. +PACKAGE_python-txsocksx:python-parsley \
  35. +PACKAGE_python-txsocksx:python-twisted
  36. VARIANT:=python
  37. endef
  38. define Package/python-txsocksx/description
  39. txsocksx is SOCKS4/4a and SOCKS5 client endpoints for Twisted 10.1 or
  40. greater.
  41. endef
  42. $(eval $(call PyPackage,python-txsocksx))
  43. $(eval $(call BuildPackage,python-txsocksx))
  44. $(eval $(call BuildPackage,python-txsocksx-src))