mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-19 23:51:58 +01:00
52 lines
1.3 KiB
Plaintext
52 lines
1.3 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=docker-compose
|
|
pkgver=1.23.2
|
|
pkgrel=0
|
|
pkgdesc="Define and run multi-container applications with Docker"
|
|
url="https://docs.docker.com/compose/"
|
|
arch="all"
|
|
license="apache-2.0"
|
|
depends="python3
|
|
py3-setuptools
|
|
docker-py>=3.4.1
|
|
dockerpy-creds>=0.3.0
|
|
py3-cached-property>=1.3.0
|
|
py3-certifi>=2017.4.17
|
|
py3-chardet>=3.0.4
|
|
py3-dockerpty>=0.4.1
|
|
py3-docopt>=0.6.2
|
|
py3-idna>=2.5
|
|
py3-ipaddress>=1.0.18
|
|
py3-jsonschema>=2.6.0
|
|
py3-pysocks>=1.6.7
|
|
py3-requests>=2.19.1
|
|
py3-six>=1.10.0
|
|
py3-texttable>=0.9.1
|
|
py3-urllib3>=1.21.1
|
|
py3-websocket-client>=0.32.0
|
|
py3-yaml>=3.12
|
|
"
|
|
checkdepends="py3-pytest py3-nose py3-mock py3-flake8 py3-coverage"
|
|
source="docker-compose-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz"
|
|
builddir="$srcdir/compose-$pkgver"
|
|
options="!check" # many of the tests fail. need more investigation
|
|
|
|
build() {
|
|
cd "$builddir"
|
|
# allow newer version of dependencies
|
|
sed -e 's/, < [0-9.]\+//' -i setup.py
|
|
python3 setup.py build
|
|
}
|
|
|
|
check() {
|
|
cd "$builddir"
|
|
python3 setup.py test
|
|
}
|
|
|
|
package() {
|
|
cd "$builddir"
|
|
python3 setup.py install --prefix=/usr --root="$pkgdir"
|
|
}
|
|
|
|
sha512sums="baa233c84ac770798ba3d8d256687630b331d774a8d60f3c0d5046aa0a74c8c3b8b0b8bc4431f3bc7d5b7a54f0646f5e2fd14d5af31db37cb546e86c96c8c1db docker-compose-1.23.2.tar.gz"
|