|
@ -24,6 +24,7 @@ PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com> |
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk |
|
|
include $(INCLUDE_DIR)/package.mk |
|
|
include ../python-package.mk |
|
|
include ../python-package.mk |
|
|
|
|
|
include ../python3-package.mk |
|
|
|
|
|
|
|
|
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xjf $(DL_DIR)/$(PKG_SOURCE) |
|
|
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xjf $(DL_DIR)/$(PKG_SOURCE) |
|
|
|
|
|
|
|
@ -48,18 +49,48 @@ $(call Package/twisted/Default) |
|
|
VARIANT:=python |
|
|
VARIANT:=python |
|
|
endef |
|
|
endef |
|
|
|
|
|
|
|
|
|
|
|
define Package/python3-twisted |
|
|
|
|
|
$(call Package/twisted/Default) |
|
|
|
|
|
TITLE:=Python3 networking engine |
|
|
|
|
|
DEPENDS:= \
|
|
|
|
|
|
+PACKAGE_python3-twisted:python3-light \
|
|
|
|
|
|
+PACKAGE_python3-twisted:python3-attrs \
|
|
|
|
|
|
+PACKAGE_python3-twisted:python3-automat \
|
|
|
|
|
|
+PACKAGE_python3-twisted:python3-constantly \
|
|
|
|
|
|
+PACKAGE_python3-twisted:python3-incremental \
|
|
|
|
|
|
+PACKAGE_python3-twisted:python3-hyperlink \
|
|
|
|
|
|
+PACKAGE_python3-twisted:python3-zope-interface |
|
|
|
|
|
VARIANT:=python3 |
|
|
|
|
|
endef |
|
|
|
|
|
|
|
|
define Package/twisted/description |
|
|
define Package/twisted/description |
|
|
Twisted is a networking engine written in Python, supporting numerous |
|
|
Twisted is a networking engine written in Python, supporting numerous |
|
|
protocols. It contains a web server, numerous chat clients, chat servers, |
|
|
protocols. It contains a web server, numerous chat clients, chat servers, |
|
|
mail servers, and more. |
|
|
mail servers, and more. |
|
|
endef |
|
|
endef |
|
|
|
|
|
|
|
|
|
|
|
define Package/python3-twisted/description |
|
|
|
|
|
$(call Package/twisted/description) |
|
|
|
|
|
. |
|
|
|
|
|
(Variant for Python3) |
|
|
|
|
|
endef |
|
|
|
|
|
|
|
|
define PyPackage/twisted/filespec |
|
|
define PyPackage/twisted/filespec |
|
|
+|/usr/bin |
|
|
+|/usr/bin |
|
|
+|$(PYTHON_PKG_DIR) |
|
|
+|$(PYTHON_PKG_DIR) |
|
|
-|$(PYTHON_PKG_DIR)/twisted/conch/scripts/tkconch.py |
|
|
-|$(PYTHON_PKG_DIR)/twisted/conch/scripts/tkconch.py |
|
|
endef |
|
|
endef |
|
|
|
|
|
|
|
|
|
|
|
define Py3Package/python3-twisted/filespec |
|
|
|
|
|
+|/usr/bin |
|
|
|
|
|
+|$(PYTHON3_PKG_DIR) |
|
|
|
|
|
-|$(PYTHON3_PKG_DIR)/twisted/conch/scripts/tkconch.py |
|
|
|
|
|
endef |
|
|
|
|
|
|
|
|
$(eval $(call PyPackage,twisted)) |
|
|
$(eval $(call PyPackage,twisted)) |
|
|
$(eval $(call BuildPackage,twisted)) |
|
|
$(eval $(call BuildPackage,twisted)) |
|
|
$(eval $(call BuildPackage,twisted-src)) |
|
|
$(eval $(call BuildPackage,twisted-src)) |
|
|
|
|
|
|
|
|
|
|
|
$(eval $(call Py3Package,python3-twisted)) |
|
|
|
|
|
$(eval $(call BuildPackage,python3-twisted)) |
|
|
|
|
|
$(eval $(call BuildPackage,python3-twisted-src)) |