diff options
author | Simon Frankenberger <simon@fraho.eu> | 2019-05-03 07:35:29 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-05-15 08:59:15 +0000 |
commit | a45380d9ce16e62c4958d71babc90c24566e07a8 (patch) | |
tree | 1ea53643a1c4d4c56df8a7c33fed7dcae881ffc2 | |
parent | 87085110f47fbd974fbb627a50c989935aff2aac (diff) | |
download | aports-a45380d9ce16e62c4958d71babc90c24566e07a8.tar.bz2 aports-a45380d9ce16e62c4958d71babc90c24566e07a8.tar.xz |
testing/docker-compose: Upgrade to 1.24.0
py-paramiko is required as dependency.
Closes GH-7115
-rw-r--r-- | testing/docker-compose/APKBUILD | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/testing/docker-compose/APKBUILD b/testing/docker-compose/APKBUILD index 562fe4b2bf..32a4a9c933 100644 --- a/testing/docker-compose/APKBUILD +++ b/testing/docker-compose/APKBUILD @@ -1,11 +1,12 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=docker-compose -pkgver=1.23.2 -pkgrel=1 +pkgver=1.24.0 +pkgrel=0 pkgdesc="Define and run multi-container applications with Docker" url="https://docs.docker.com/compose/" -arch="all" -license="apache-2.0" +arch="noarch" +license="Apache-2.0" +options="!check" # test suite does not work depends="python3 py3-setuptools docker-py>=3.4.1 @@ -18,6 +19,7 @@ depends="python3 py3-idna>=2.5 py3-ipaddress>=1.0.18 py3-jsonschema>=2.6.0 + py3-paramiko py3-pysocks>=1.6.7 py3-requests>=2.19.1 py3-six>=1.10.0 @@ -29,7 +31,6 @@ depends="python3 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" @@ -40,6 +41,7 @@ build() { check() { cd "$builddir" + # many of the tests fail. need more investigation python3 setup.py test } @@ -48,4 +50,4 @@ package() { python3 setup.py install --prefix=/usr --root="$pkgdir" } -sha512sums="baa233c84ac770798ba3d8d256687630b331d774a8d60f3c0d5046aa0a74c8c3b8b0b8bc4431f3bc7d5b7a54f0646f5e2fd14d5af31db37cb546e86c96c8c1db docker-compose-1.23.2.tar.gz" +sha512sums="318c6bf9877147de09526b4d49c3fd86012d85626e7a9a15863ca55a60e10fa85b27429605045d0aaa993dddd3bc2e5f23cbb76856276a874e84793b878a3e86 docker-compose-1.24.0.tar.gz" |