mirror of
https://github.com/openwrt/packages.git
synced 2025-12-24 03:21:22 +00:00
treewide: Add PACKAGE_* conds to python packages
If a package builds python & python3 variants, then the respective PACKAGE-python* conditional DEPENDS were added, since circular dependencies should all be resolved now. Signed-off-by: Eneas U de Queiroz <cote2004-github@yahoo.com>
This commit is contained in:
@@ -28,13 +28,18 @@ endef
|
||||
|
||||
define Package/python-s3transfer
|
||||
$(call Package/python-s3transfer/Default)
|
||||
DEPENDS:=+python +python-botocore +python-futures
|
||||
DEPENDS:= \
|
||||
+PACKAGE_python-s3transfer:python \
|
||||
+PACKAGE_python-s3transfer:python-botocore \
|
||||
+PACKAGE_python-s3transfer:python-futures
|
||||
VARIANT:=python
|
||||
endef
|
||||
|
||||
define Package/python3-s3transfer
|
||||
$(call Package/python-s3transfer/Default)
|
||||
DEPENDS:=+python3 +python3-botocore
|
||||
DEPENDS:= \
|
||||
+PACKAGE_python3-s3transfer:python3 \
|
||||
+PACKAGE_python3-s3transfer:python3-botocore
|
||||
VARIANT:=python3
|
||||
endef
|
||||
|
||||
|
||||
Reference in New Issue
Block a user