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

Evangelos Foutras foutrelis at archlinux.org
Sun Jul 8 12:55:12 UTC 2018


    Date: Sunday, July 8, 2018 @ 12:55:12
  Author: foutrelis
Revision: 354837

archrelease: copy trunk to community-staging-any

Added:
  python-docker-pycreds/repos/community-staging-any/
  python-docker-pycreds/repos/community-staging-any/PKGBUILD
    (from rev 354835, python-docker-pycreds/trunk/PKGBUILD)

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

Copied: python-docker-pycreds/repos/community-staging-any/PKGBUILD (from rev 354835, python-docker-pycreds/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2018-07-08 12:55:12 UTC (rev 354837)
@@ -0,0 +1,56 @@
+# $Id$
+# Maintainer: Andrew Crerar <crerar at archlinux.org>
+# Contributor: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Hideaki Takahashi <mymelo+aur at gmail.com>
+# Contributor: Vincent Demeester <vincent at sbr.pm>
+
+pkgbase=python-docker-pycreds
+pkgname=(python-docker-pycreds python2-docker-pycreds)
+pkgver=0.3.0
+pkgrel=2
+pkgdesc="Python bindings for the docker credentials store API"
+arch=('any')
+license=('Apache')
+url="https://github.com/shin-/dockerpy-creds"
+makedepends=('python-setuptools' 'python2-setuptools' 'git')
+checkdepends=('python-pytest-runner' 'python2-pytest-runner' 'flake8' 'python2-flake8'
+              'python-pytest-cov' 'python2-pytest-cov')
+source=("$pkgbase-$pkgver.tar.gz::https://github.com/shin-/dockerpy-creds/archive/$pkgver.tar.gz")
+sha512sums=('daff736677f46c1aceb87090bd6a248b5e1537907dcf7afba735274ce100aaee35a39958aeb7d6d18d7de66d9e8f5bf168cd9d9dc14f4f59485c3c1bc0d9adbf')
+
+prepare() {
+  sed -i 's/==.*$//' dockerpy-creds-$pkgver/test-requirements.txt
+
+  cp -a dockerpy-creds-$pkgver{,-py2}
+}
+
+build() {
+  cd "$srcdir"/dockerpy-creds-$pkgver
+  python setup.py build
+
+  cd "$srcdir"/dockerpy-creds-$pkgver-py2
+  python2 setup.py build
+}
+
+# We don't have docker-credential-secretservice
+check_disabled() {
+  cd "$srcdir"/dockerpy-creds-$pkgver
+  python setup.py pytest
+
+  cd "$srcdir"/dockerpy-creds-$pkgver-py2
+  python2 setup.py pytest
+}
+
+package_python-docker-pycreds() {
+  depends=('python-six')
+
+  cd dockerpy-creds-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+}
+
+package_python2-docker-pycreds() {
+  depends=('python2-six')
+
+  cd dockerpy-creds-$pkgver-py2
+  python2 setup.py install --root="$pkgdir" --optimize=1
+}



More information about the arch-commits mailing list