Merge pull request #8407 from cotequeiroz/python_circular
misc python packages: fix circular dependencies
This commit is contained in:
commit
78c755c4be
5 changed files with 11 additions and 11 deletions
|
@ -23,7 +23,7 @@ define Package/python3-click-log
|
||||||
SUBMENU:=Python
|
SUBMENU:=Python
|
||||||
URL:=http://github.com/mitsuhiko/click
|
URL:=http://github.com/mitsuhiko/click
|
||||||
TITLE:=python3-click-log
|
TITLE:=python3-click-log
|
||||||
DEPENDS:=+PACKAGE_python3-click-log:python3-click
|
DEPENDS:=+python3-click
|
||||||
VARIANT:=python3
|
VARIANT:=python3
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
|
@ -23,7 +23,7 @@ include ../python3-package.mk
|
||||||
|
|
||||||
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
|
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
|
||||||
|
|
||||||
define Package/python-chardet/Defaults
|
define Package/python-chardet/Default
|
||||||
SUBMENU:=Python
|
SUBMENU:=Python
|
||||||
SECTION:=lang
|
SECTION:=lang
|
||||||
CATEGORY:=Languages
|
CATEGORY:=Languages
|
||||||
|
|
|
@ -44,7 +44,7 @@ endef
|
||||||
|
|
||||||
define Package/python3-ply
|
define Package/python3-ply
|
||||||
$(call Package/python-ply/Default)
|
$(call Package/python-ply/Default)
|
||||||
DEPENDS:=+PACKAGE_python3-ply:python3-light
|
DEPENDS:=+python3-light
|
||||||
VARIANT:=python3
|
VARIANT:=python3
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
|
@ -25,11 +25,11 @@ include ../python3-package.mk
|
||||||
|
|
||||||
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
|
PKG_UNPACK:=$(HOST_TAR) -C $(PKG_BUILD_DIR) --strip-components=1 -xzf $(DL_DIR)/$(PKG_SOURCE)
|
||||||
|
|
||||||
define Package/python-requests/Defaults
|
define Package/python-requests/Default
|
||||||
SUBMENU:=Python
|
SUBMENU:=Python
|
||||||
SECTION:=lang
|
SECTION:=lang
|
||||||
CATEGORY:=Languages
|
CATEGORY:=Languages
|
||||||
PKG_MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>, Alexandru Ardelean <ardeleanalex@gmail.com>
|
MAINTAINER:=Josef Schlehofer <josef.schlehofer@nic.cz>, Alexandru Ardelean <ardeleanalex@gmail.com>
|
||||||
URL:=http://python-requests.org/
|
URL:=http://python-requests.org/
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -49,11 +49,11 @@ define Package/python3-requests
|
||||||
$(call Package/python-requests/Default)
|
$(call Package/python-requests/Default)
|
||||||
TITLE:=HTTP library for Python3
|
TITLE:=HTTP library for Python3
|
||||||
DEPENDS:= \
|
DEPENDS:= \
|
||||||
+PACKAGE_python3-requests:python3-light \
|
+python3-light \
|
||||||
+PACKAGE_python3-requests:python3-chardet \
|
+python3-chardet \
|
||||||
+PACKAGE_python3-requests:python3-idna \
|
+python3-idna \
|
||||||
+PACKAGE_python3-requests:python3-urllib3 \
|
+python3-urllib3 \
|
||||||
+PACKAGE_python3-requests:python3-certifi
|
+python3-certifi
|
||||||
VARIANT:=python3
|
VARIANT:=python3
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
|
@ -34,7 +34,7 @@ endef
|
||||||
define Package/python-simplejson
|
define Package/python-simplejson
|
||||||
$(call Package/python-simplejson/Default)
|
$(call Package/python-simplejson/Default)
|
||||||
TITLE:=Simple, fast, extensible JSON encoder/decoder for Python 2
|
TITLE:=Simple, fast, extensible JSON encoder/decoder for Python 2
|
||||||
DEPENDS:=+PACKAGE_python-simplejson:python-light
|
DEPENDS:=+python-light
|
||||||
VARIANT:=python
|
VARIANT:=python
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue