1
0
mirror of https://git.openwrt.org/feed/packages.git synced 2024-06-26 09:37:44 +02:00
openwrt-packages/utils/docker-compose/Makefile
Alberto Bursi 717fba218f docker-compose: move to Utilities in menuconfig
it makes no sense to show docker-compose sit in Languages -> Python
submenu in menuconfig, it is a tool and not a library.
Move it to Utilities section like docker-ce also is.

Signed-off-by: Alberto Bursi <bobafetthotmail@gmail.com>
2020-10-26 21:30:19 +01:00

51 lines
1.2 KiB
Makefile

include $(TOPDIR)/rules.mk
PKG_NAME:=docker-compose
PKG_VERSION:=1.27.4
PKG_RELEASE:=1
PYPI_NAME:=docker-compose
PKG_HASH:=5a5690f24c27d4b43dcbe6b3fae91ba680713208e99ee863352b3bae37bcaa83
PKG_MAINTAINER:=Javier Marcet <javier@marcet.info>
PKG_LICENSE:=Apache-2.0
PKG_LICENSE_FILES:=LICENSE
include ../../lang/python/pypi.mk
include $(INCLUDE_DIR)/package.mk
include ../../lang/python/python3-package.mk
PYTHON3_PKG_SETUP_ARGS:=
define Package/docker-compose
SECTION:=utils
CATEGORY:=Utilities
TITLE:=Docker Compose
URL:=https://github.com/docker/compose
DEPENDS+=+docker-ce \
+python3-light \
+python3-cached-property \
+python3-distro \
+python3-distutils \
+python3-docopt \
+python3-docker \
+python3-dockerpty \
+python3-dotenv \
+python3-jsonschema \
+python3-logging \
+python3-openssl \
+python3-pkg-resources \
+python3-requests \
+python3-texttable \
+python3-websocket-client \
+python3-yaml
endef
define Package/docker-compose/description
Multi-container orchestration for Docker
endef
$(eval $(call Py3Package,docker-compose))
$(eval $(call BuildPackage,docker-compose))
$(eval $(call BuildPackage,docker-compose-src))