mirror of
https://github.com/novatiq/packages.git
synced 2026-06-22 21:30:27 +01:00
1c9e835012
Bugs: - Fix SSH hostname parsing when it contains leading 's', 'h', and remove the quiet option that was hiding the error (via docker-py bump to 4.4.2) - Fix key error for --no-log-prefix option - Fix incorrect CLI environment variable name for service profiles: COMPOSE_PROFILES instead of COMPOSE_PROFILE - Fix fish completion Miscellaneous: - Bump cryptography to 3.3.2 - Remove log driver filter Signed-off-by: Javier Marcet <javier@marcet.info>
51 lines
1.2 KiB
Makefile
51 lines
1.2 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=docker-compose
|
|
PKG_VERSION:=1.28.3
|
|
PKG_RELEASE:=1
|
|
|
|
PYPI_NAME:=docker-compose
|
|
PKG_HASH:=78a48ef8ff4fed092261ecb1a60d9b28b7776e72ed6df591a900008039308b0f
|
|
|
|
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 \
|
|
+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))
|