From 64edf6113f19b18ff63bd12c8a1c5bcbaae292a0 Mon Sep 17 00:00:00 2001 From: whelan Date: Thu, 26 Feb 2026 08:40:14 -0500 Subject: [PATCH] Update to v5.1.2.32 --- .SRCINFO | 6 +++--- PKGBUILD | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index cccea4f357e6a..3979615421d8f 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.31 - pkgrel = 56 + pkgver = 5.1.2.32 + pkgrel = 57 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.31.tar.gz::https://github.com/whelanh/scidCommunity/archive/45f5e7a80b50c24e53e8f61d4ce5d24ec3db0809.tar.gz + source = scidcommunity-5.1.2.32.tar.gz::https://github.com/whelanh/scidCommunity/archive/fa099d624b86177bdf09a17eb220c6f33c7c00ed.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index e54bbaa1cf1d7..fed68394ab8d2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.31 -pkgrel=56 +pkgver=5.1.2.32 +pkgrel=57 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/45f5e7a80b50c24e53e8f61d4ce5d24ec3db0809.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/fa099d624b86177bdf09a17eb220c6f33c7c00ed.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-45f5e7a80b50c24e53e8f61d4ce5d24ec3db0809" + cd "${srcdir}/scidCommunity-fa099d624b86177bdf09a17eb220c6f33c7c00ed" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-45f5e7a80b50c24e53e8f61d4ce5d24ec3db0809" + cd "${srcdir}/scidCommunity-fa099d624b86177bdf09a17eb220c6f33c7c00ed" # 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" }