Date: Friday, February 5, 2016 @ 03:58:15 Author: fyan Revision: 160366
upgpkg: docker-compose 1.6.0-1 Modified: docker-compose/trunk/PKGBUILD docker-compose/trunk/remove-requires-upper-bound.patch -----------------------------------+ PKGBUILD | 10 +++++----- remove-requires-upper-bound.patch | 10 ++++++---- 2 files changed, 11 insertions(+), 9 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2016-02-05 02:54:14 UTC (rev 160365) +++ PKGBUILD 2016-02-05 02:58:15 UTC (rev 160366) @@ -5,19 +5,19 @@ # Contributor: Josh VanderLinden <[email protected]> pkgname=docker-compose -pkgver=1.5.2 -pkgrel=2 +pkgver=1.6.0 +pkgrel=1 pkgdesc="Fast, isolated development environments using Docker" arch=('i686' 'x86_64') url="https://www.docker.com/" depends=('python-docopt' 'python-yaml' 'python-requests' 'python-six' 'python-texttable' 'python-websocket-client' 'python-docker-py' 'python-dockerpty' 'python-setuptools' - 'python-jsonschema') + 'python-jsonschema' 'python-cached-property') source=("$pkgname-$pkgver.tar.gz::https://github.com/docker/compose/archive/$pkgver.tar.gz" "remove-requires-upper-bound.patch") license=("BSD") -sha256sums=('8f0851b417d89bc5023e72918233449a0fa72d9952ac66494c1b37434516583d' - '06bd229e1d62632dc199d3b2de82571dff73631865fe6108e3a62c8441c281bf') +sha256sums=('7616e561cc986073c0ac163e6d64cdf63b0817052560beaa737e1c8fb3886528' + '2c36ce2f440f31bd0d2c560f97557b3b57036aa377c3423e87df6647b31faebe') [[ "$CARCH" == "x86_64" ]] && depends+=('docker') Modified: remove-requires-upper-bound.patch =================================================================== --- remove-requires-upper-bound.patch 2016-02-05 02:54:14 UTC (rev 160365) +++ remove-requires-upper-bound.patch 2016-02-05 02:58:15 UTC (rev 160366) @@ -4,22 +4,24 @@ install_requires = [ +- 'cached-property >= 1.2.0, < 2', - 'docopt >= 0.6.1, < 0.7', - 'PyYAML >= 3.10, < 4', - 'requests >= 2.6.1, < 2.8', - 'texttable >= 0.8.1, < 0.9', - 'websocket-client >= 0.32.0, < 1.0', -- 'docker-py >= 1.5.0, < 2', -- 'dockerpty >= 0.3.4, < 0.4', +- 'docker-py >= 1.7.0, < 2', +- 'dockerpty >= 0.4.1, < 0.5', - 'six >= 1.3.0, < 2', - 'jsonschema >= 2.5.1, < 3', ++ 'cached-property >= 1.2.0', + 'docopt >= 0.6.1', + 'PyYAML >= 3.10', + 'requests >= 2.6.1', + 'texttable >= 0.8.1', + 'websocket-client >= 0.32.0', -+ 'docker-py >= 1.3.1', -+ 'dockerpty >= 0.3.4', ++ 'docker-py >= 1.7.0', ++ 'dockerpty >= 0.4.1', + 'six >= 1.3.0', + 'jsonschema >= 2.5.1', ]
