[arch-commits] Commit in python-docker/repos (2 files)

Felix Yan felixonmars at archlinux.org
Thu Nov 9 09:14:46 UTC 2017


    Date: Thursday, November 9, 2017 @ 09:14:45
  Author: felixonmars
Revision: 265835

archrelease: copy trunk to community-testing-any

Added:
  python-docker/repos/community-testing-any/
  python-docker/repos/community-testing-any/PKGBUILD
    (from rev 265834, python-docker/trunk/PKGBUILD)

----------+
 PKGBUILD |   73 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 73 insertions(+)

Copied: python-docker/repos/community-testing-any/PKGBUILD (from rev 265834, python-docker/trunk/PKGBUILD)
===================================================================
--- community-testing-any/PKGBUILD	                        (rev 0)
+++ community-testing-any/PKGBUILD	2017-11-09 09:14:45 UTC (rev 265835)
@@ -0,0 +1,73 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Hideaki Takahashi <mymelo+aur at gmail.com>
+# Contributor: Vincent Demeester <vincent at sbr.io>
+# Contributor: Josh VanderLinden <arch at cloudlery.com>
+
+pkgbase=python-docker
+pkgname=(python-docker python2-docker)
+pkgver=2.6.1
+pkgrel=1
+pkgdesc="A Python library for the Docker Engine API"
+arch=('any')
+url="https://github.com/docker/docker-py"
+license=("Apache")
+makedepends=('python-pip' 'python2-pip' 'python-requests' 'python2-requests' 'python-six'
+             'python2-six' 'python-websocket-client' 'python2-websocket-client'
+             'python2-backports.ssl_match_hostname' 'python2-ipaddress' 'python-docker-pycreds'
+             'python2-docker-pycreds')
+checkdepends=('python-pytest-cov' 'python2-pytest-cov' 'python-mock' 'python2-mock'
+              'flake8' 'python2-flake8')
+checkdepends_x86_64=('docker')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/docker/docker-py/archive/$pkgver.tar.gz")
+sha512sums=('ee5e646e6b45ed9fafd8bd32c4cdeff565988ff77b21303b0c1b4b1ea56a9d51d04c4f8c9595159efff09cfd8962c1a7060c1910d48cbfb4a2024e90b662ae58')
+
+prepare() {
+  sed -i 's/==.*$//' docker-py-$pkgver/{,test-}requirements.txt
+
+  cp -a docker-py-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/docker-py-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/docker-py-$pkgver-py2
+  python2 setup.py build
+}
+
+check() {
+  # Skipping integration tests as docker needs root to run:
+  # docker daemon -H fd:// -p "$srcdir/docker.pid"
+
+  cd "$srcdir"/docker-py-$pkgver
+  py.test --cov=docker tests/unit
+
+  cd "$srcdir"/docker-py-$pkgver-py2
+  py.test2 --cov=docker tests/unit
+
+  # kill $(<"$srcdir/docker.pid")
+}
+
+package_python-docker() {
+  depends=('python-requests' 'python-six' 'python-websocket-client' 'python-docker-pycreds')
+  provides=('python-docker-py')
+  conflicts=('python-docker-py')
+  replaces=('python-docker-py')
+
+  cd docker-py-$pkgver
+  python setup.py install -O1 --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}
+
+package_python2-docker() {
+  depends=('python2-requests' 'python2-six' 'python2-websocket-client' 'python2-docker-pycreds'
+           'python2-backports.ssl_match_hostname' 'python2-ipaddress')
+  provides=('python2-docker-py')
+  conflicts=('python2-docker-py')
+  replaces=('python2-docker-py')
+
+  cd docker-py-$pkgver-py2
+  python2 setup.py install -O1 --root="$pkgdir"
+  install -Dm644 LICENSE "$pkgdir"/usr/share/licenses/$pkgname/LICENSE
+}



More information about the arch-commits mailing list