Date: Thursday, April 6, 2023 @ 18:39:19
  Author: felixonmars
Revision: 1440304

archrelease: copy trunk to community-staging-any

Added:
  python-dockerpty/repos/community-staging-any/
  python-dockerpty/repos/community-staging-any/PKGBUILD
    (from rev 1440301, python-dockerpty/trunk/PKGBUILD)

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

Copied: python-dockerpty/repos/community-staging-any/PKGBUILD (from rev 
1440301, python-dockerpty/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD                              (rev 0)
+++ community-staging-any/PKGBUILD      2023-04-06 18:39:19 UTC (rev 1440304)
@@ -0,0 +1,32 @@
+# Maintainer: Andrew Crerar <[email protected]>
+# Contributor: Felix Yan <[email protected]>
+# Contributor: Hideaki Takahashi <[email protected]>
+# Contributor: Vincent Demeester <[email protected]>
+
+pkgname=python-dockerpty
+pkgver=0.4.1
+pkgrel=10
+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
+}

Reply via email to