Date: Monday, April 24, 2023 @ 17:38:29
Author: jelle
Revision: 1448552
archrelease: copy trunk to community-staging-any
Added:
pychess/repos/community-staging-any/
pychess/repos/community-staging-any/PKGBUILD
(from rev 1448551, pychess/trunk/PKGBUILD)
----------+
PKGBUILD | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
Copied: pychess/repos/community-staging-any/PKGBUILD (from rev 1448551,
pychess/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-24 17:38:29 UTC (rev 1448552)
@@ -0,0 +1,29 @@
+# Maintainer: Alexander F. Rødseth <[email protected]>
+# Contributor: Allan McRae <[email protected]>
+# Contributor: Alexander Fehr <[email protected]>
+
+pkgname=pychess
+pkgver=1.0.3
+pkgrel=4
+pkgdesc='Chess client'
+arch=(any)
+url='https://github.com/pychess/pychess'
+license=(GPL)
+depends=(gst-plugins-base gtksourceview3 python-cairo python-gobject
+ python-ptyprocess python-psutil python-sqlalchemy1.3 python-pexpect
+ python-websockets)
+# /usr/bin/spike is mistaken for a chess engine
+conflicts=(spike)
+makedepends=(git python-pexpect xorg-server-xvfb)
+source=("git+$url#commit=0faf9eb9fecc7f26bf92b3549bf17ed12e40fc2f") # tag:
1.0.3
+sha256sums=('SKIP')
+
+package() {
+ cd pychess
+
+ # Can only be packaged with X available...
+ xvfb-run python setup.py install --prefix=/usr --root="$pkgdir"
+
+ # FS#59882
+ find "$pkgdir" -wholename 'external/pexpect' -type d -delete
+}