Date: Friday, April 7, 2023 @ 07:11:26
Author: felixonmars
Revision: 1440786
archrelease: copy trunk to community-staging-any
Added:
python-pexpect/repos/community-staging-any/
python-pexpect/repos/community-staging-any/PKGBUILD
(from rev 1440783, python-pexpect/trunk/PKGBUILD)
----------+
PKGBUILD | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
Copied: python-pexpect/repos/community-staging-any/PKGBUILD (from rev 1440783,
python-pexpect/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-07 07:11:26 UTC (rev 1440786)
@@ -0,0 +1,23 @@
+# Maintainer: Alexander F. Rødseth <[email protected]>
+# Contributor: Aaron Schaefer <[email protected]>
+
+pkgname=python-pexpect
+pkgver=4.8.0
+pkgrel=7
+pkgdesc='For controlling and automating applications'
+arch=(any)
+url='https://pexpect.readthedocs.org/en/stable/'
+license=(MIT)
+depends=(python python-ptyprocess)
+makedepends=(git python)
+source=("git+https://github.com/pexpect/pexpect#commit=5eed1a31a2853a09b7367c59fbd1a4a0b53341df")
# 4.8.0
+sha512sums=('SKIP')
+
+package() {
+ cd pexpect
+ python setup.py install --root="$pkgdir"
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
+
+# getver: pypi.python.org/pypi/pexpect
+# vim: ts=2 sw=2 et: