twisted: updated to 17.9.0, add src package

There have been some new dependencies added in recent versions of
Twisted (mostly internal classes that have been spun out into their own
libraries):

* constantly (#5453), since 16.5.0
* incremental (#5454), since 16.5.0
* Automat (#5456), since 17.1.0
* hyperlink (#5455) since 17.5.0

Signed-off-by: Jeffery To <jeffery.to@gmail.com>
This commit is contained in:
Jeffery To
2018-01-16 00:40:45 +08:00
parent ed2d1923ee
commit 3690cac14b
4 changed files with 74 additions and 64 deletions

View File

@@ -1,5 +1,5 @@
#
# Copyright (C) 2006-2011, 2015-2016 OpenWrt.org
# Copyright (C) 2006-2011, 2015-2018 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
@@ -8,15 +8,14 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=twisted
PKG_VERSION:=16.4.1
PKG_RELEASE:=2
PKG_VERSION:=17.9.0
PKG_RELEASE:=1
PKG_SOURCE:=Twisted-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=https://pypi.python.org/packages/6b/23/8dbe86fc83215015e221fbd861a545c6ec5c9e9cd7514af114d1f64084ab \
http://twistedmatrix.com/Releases/Twisted/16.4
PKG_HASH:=1d8d73f006c990744effb35588359fd44d43608649ac0b6b7edc71176e88e816
PKG_SOURCE_URL:=https://files.pythonhosted.org/packages/source/T/Twisted
PKG_HASH:=0da1a7e35d5fcae37bc9c7978970b5feb3bc82822155b8654ec63925c05af75c
PKG_BUILD_DIR:=$(BUILD_DIR)/Twisted-$(PKG_VERSION)
PKG_BUILD_DIR:=$(BUILD_DIR)/$(BUILD_VARIANT)-twisted-$(PKG_VERSION)
PKG_BUILD_DEPENDS:=USE_MUSL:librpc
PKG_LICENSE:=MIT
@@ -26,33 +25,40 @@ PKG_MAINTAINER:=Jeffery To <jeffery.to@gmail.com>
include $(INCLUDE_DIR)/package.mk
include ../python-package.mk
define Package/twisted
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xjf $(DL_DIR)/$(PKG_SOURCE)
define Package/twisted/Default
SUBMENU:=Python
SECTION:=lang
CATEGORY:=Languages
TITLE:=Python networking engine
URL:=http://twistedmatrix.com/
DEPENDS:=+python-light +python-zope-interface
endef
define Package/twisted
$(call Package/twisted/Default)
TITLE:=Python networking engine
DEPENDS:= \
+PACKAGE_twisted:python-light \
+PACKAGE_twisted:python-automat \
+PACKAGE_twisted:python-constantly \
+PACKAGE_twisted:python-incremental \
+PACKAGE_twisted:python-hyperlink \
+PACKAGE_twisted:python-zope-interface
VARIANT:=python
endef
define Package/twisted/description
Twisted is a networking engine written in Python, supporting numerous
protocols. It contains a web server, numerous chat clients, chat servers,
mail servers, and more.
Twisted is a networking engine written in Python, supporting numerous
protocols. It contains a web server, numerous chat clients, chat servers,
mail servers, and more.
endef
define PyPackage/twisted/filespec
+|/usr/bin
-|/usr/bin/tkconch
+|$(PYTHON_PKG_DIR)
-|$(PYTHON_PKG_DIR)/twisted/conch/scripts/tkconch.py
endef
define Build/Compile
$(call Build/Compile/PyMod,, \
install --prefix="/usr" --root="$(PKG_INSTALL_DIR)" --no-compile, \
)
endef
$(eval $(call PyPackage,twisted))
$(eval $(call BuildPackage,twisted))
$(eval $(call BuildPackage,twisted-src))