Date: Wednesday, May 17, 2023 @ 22:00:41
Author: antiz
Revision: 1463009
archrelease: copy trunk to community-any
Added:
pychess/repos/community-any/PKGBUILD
(from rev 1463008, pychess/trunk/PKGBUILD)
Deleted:
pychess/repos/community-any/PKGBUILD
----------+
PKGBUILD | 66 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 33 insertions(+), 33 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2023-05-17 22:00:16 UTC (rev 1463008)
+++ PKGBUILD 2023-05-17 22:00:41 UTC (rev 1463009)
@@ -1,33 +0,0 @@
-# Maintainer: Alexander F. Rødseth <[email protected]>
-# Contributor: Allan McRae <[email protected]>
-# Contributor: Alexander Fehr <[email protected]>
-
-pkgname=pychess
-pkgver=1.0.4
-pkgrel=1
-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=(python-build python-installer python-setuptools python-wheel)
-source=(https://github.com/pychess/pychess/releases/download/$pkgver/pychess-$pkgver.tar.gz)
-sha256sums=('f563a89404746b037f7b3145100a024b7cad83fe1383ad41f55b216c1d09bc5c')
-
-build() {
- cd pychess-$pkgver
- python -m build --wheel --no-isolation
-}
-
-package() {
- cd pychess-$pkgver
-
- python -m installer --destdir="$pkgdir" dist/*.whl
-
- # FS#59882
- find "$pkgdir" -wholename 'external/pexpect' -type d -delete
-}
Copied: pychess/repos/community-any/PKGBUILD (from rev 1463008,
pychess/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2023-05-17 22:00:41 UTC (rev 1463009)
@@ -0,0 +1,33 @@
+# Maintainer: Robin Candau <[email protected]>
+# Contributor: Alexander F. Rødseth <[email protected]>
+# Contributor: Allan McRae <[email protected]>
+# Contributor: Alexander Fehr <[email protected]>
+
+pkgname=pychess
+pkgver=1.0.4
+pkgrel=2
+pkgdesc='Chess client'
+arch=(any)
+url='https://pychess.github.io/'
+license=(GPL3)
+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=(python-build python-installer python-setuptools python-wheel)
+source=("https://github.com/pychess/pychess/releases/download/${pkgver}/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('f563a89404746b037f7b3145100a024b7cad83fe1383ad41f55b216c1d09bc5c')
+
+build() {
+ cd "${pkgname}-${pkgver}"
+ python -m build --wheel --no-isolation
+}
+
+package() {
+ cd "${pkgname}-${pkgver}"
+ python -m installer --destdir="${pkgdir}" dist/*.whl
+
+ # FS#59882
+ find "${pkgdir}" -wholename 'external/pexpect' -type d -delete
+}