[arch-commits] Commit in python-dockerpty/repos (2 files)
Evangelos Foutras
foutrelis at archlinux.org
Tue Nov 10 04:04:59 UTC 2020
Date: Tuesday, November 10, 2020 @ 04:04:59
Author: foutrelis
Revision: 748452
archrelease: copy trunk to community-staging-any
Added:
python-dockerpty/repos/community-staging-any/
python-dockerpty/repos/community-staging-any/PKGBUILD
(from rev 748451, python-dockerpty/trunk/PKGBUILD)
----------+
PKGBUILD | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
Copied: python-dockerpty/repos/community-staging-any/PKGBUILD (from rev 748451, python-dockerpty/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2020-11-10 04:04:59 UTC (rev 748452)
@@ -0,0 +1,32 @@
+# 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>
+
+pkgname=python-dockerpty
+pkgver=0.4.1
+pkgrel=7
+pkgdesc="Python library to use the pseudo-tty of a docker container"
+arch=('any')
+license=('Apache')
+url="https://github.com/d11wtq/dockerpty"
+depends=('python-docker-py' 'python-six')
+makedepends=('python-setuptools' 'python-docker-py' 'python-six' 'git')
+checkdepends=('python-pytest' 'python-expects')
+source=("git+https://github.com/d11wtq/dockerpty.git#tag=v$pkgver")
+sha512sums=('SKIP')
+
+build() {
+ cd "$srcdir/dockerpty"
+ python setup.py build
+}
+
+check() {
+ cd "$srcdir/dockerpty"
+ py.test
+}
+
+package() {
+ cd dockerpty
+ python setup.py install --root="${pkgdir}" --optimize=1
+}
More information about the arch-commits
mailing list