From 3b1d59671be79bee0d23043129bf892323d33288 Mon Sep 17 00:00:00 2001 From: whelan Date: Wed, 11 Feb 2026 17:21:47 -0500 Subject: [PATCH] Update to v5.1.2.22 --- .SRCINFO | 6 +++--- PKGBUILD | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 856ff1e75ad4c..3ff9360c4de94 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,7 +1,7 @@ pkgbase = scidcommunity pkgdesc = Enhanced fork of Scid chess database with Chess.com/Lichess integration, tablebase lookup, improved search, and additional training features - pkgver = 5.1.2.21 - pkgrel = 51 + pkgver = 5.1.2.22 + pkgrel = 52 url = https://github.com/whelanh/scidCommunity arch = x86_64 license = GPL2 @@ -10,7 +10,7 @@ pkgbase = scidcommunity makedepends = git depends = tcl depends = tk - source = scidcommunity-5.1.2.21.tar.gz::https://github.com/whelanh/scidCommunity/archive/8aaf64dcc68a15d4386e2f8f4d00f27a51c1f8ef.tar.gz + source = scidcommunity-5.1.2.22.tar.gz::https://github.com/whelanh/scidCommunity/archive/7027002ce543d8cb0f7c376de5be3f2b733daf03.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 245dfd8619f07..f3e9fd023e51e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.21 -pkgrel=51 +pkgver=5.1.2.22 +pkgrel=52 pkgdesc="Enhanced fork of Scid chess database with Chess.com/Lichess integration, tablebase lookup, improved search, and additional training features" arch=('x86_64') url="https://github.com/whelanh/scidCommunity" license=('GPL2') depends=('tcl' 'tk') makedepends=('gcc' 'make' 'git') -source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/8aaf64dcc68a15d4386e2f8f4d00f27a51c1f8ef.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/7027002ce543d8cb0f7c376de5be3f2b733daf03.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-8aaf64dcc68a15d4386e2f8f4d00f27a51c1f8ef" + cd "${srcdir}/scidCommunity-7027002ce543d8cb0f7c376de5be3f2b733daf03" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-8aaf64dcc68a15d4386e2f8f4d00f27a51c1f8ef" + cd "${srcdir}/scidCommunity-7027002ce543d8cb0f7c376de5be3f2b733daf03" # Install under /usr so desktop/icon files land in standard system paths make install DESTDIR="${pkgdir}" SHAREDIR="${pkgdir}/usr/share/scid" BINDIR="${pkgdir}/usr/bin" }