2015-12-01 10:22:26 +00:00
|
|
|
#
|
2018-01-14 15:48:43 +00:00
|
|
|
# Copyright (C) 2015, 2017-2018 OpenWrt.org
|
2015-12-01 10:22:26 +00:00
|
|
|
#
|
|
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
|
|
# See /LICENSE for more information.
|
|
|
|
#
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2018-01-14 15:48:43 +00:00
|
|
|
PKG_NAME:=python-txsocksx
|
2015-12-01 10:22:26 +00:00
|
|
|
PKG_VERSION:=1.15.0.2
|
2019-02-20 07:19:26 +00:00
|
|
|
PKG_RELEASE:=4
|
2015-12-01 10:22:26 +00:00
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
PYPI_NAME:=txsocksx
|
2017-08-28 04:28:09 +00:00
|
|
|
PKG_HASH:=4f79b5225ce29709bfcee45e6f726e65b70fd6f1399d1898e54303dbd6f8065f
|
2015-12-01 10:22:26 +00:00
|
|
|
|
|
|
|
PKG_LICENSE:=ISC
|
|
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
|
|
|
|
|
2019-10-20 19:03:12 +00:00
|
|
|
include ../pypi.mk
|
2015-12-01 10:22:26 +00:00
|
|
|
include $(INCLUDE_DIR)/package.mk
|
2018-01-10 07:56:52 +00:00
|
|
|
include ../python-package.mk
|
2015-12-01 10:22:26 +00:00
|
|
|
|
2019-02-19 07:29:21 +00:00
|
|
|
PYTHON_PKG_SETUP_VARS:= \
|
|
|
|
PKG_VERSION="$(PKG_VERSION)"
|
|
|
|
|
2018-01-14 15:48:43 +00:00
|
|
|
define Package/python-txsocksx/Default
|
|
|
|
SECTION:=lang
|
|
|
|
CATEGORY:=Languages
|
|
|
|
SUBMENU:=Python
|
2019-02-20 07:19:26 +00:00
|
|
|
TITLE:=SOCKS client endpoints for Twisted
|
2018-01-14 15:48:43 +00:00
|
|
|
URL:=https://github.com/habnabit/txsocksx
|
|
|
|
endef
|
|
|
|
|
2015-12-01 10:22:26 +00:00
|
|
|
define Package/python-txsocksx
|
2018-01-14 15:48:43 +00:00
|
|
|
$(call Package/python-txsocksx/Default)
|
|
|
|
DEPENDS:= \
|
|
|
|
+PACKAGE_python-txsocksx:python-light \
|
|
|
|
+PACKAGE_python-txsocksx:python-parsley \
|
2019-02-19 07:29:21 +00:00
|
|
|
+PACKAGE_python-txsocksx:python-twisted
|
2018-01-14 15:48:43 +00:00
|
|
|
VARIANT:=python
|
2015-12-01 10:22:26 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/python-txsocksx/description
|
|
|
|
txsocksx is SOCKS4/4a and SOCKS5 client endpoints for Twisted 10.1 or
|
|
|
|
greater.
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call PyPackage,python-txsocksx))
|
|
|
|
$(eval $(call BuildPackage,python-txsocksx))
|
2018-01-14 15:48:43 +00:00
|
|
|
$(eval $(call BuildPackage,python-txsocksx-src))
|