From 514499f217faa5e4a01bf01507235f5d22cd4be1 Mon Sep 17 00:00:00 2001 From: whelan Date: Thu, 5 Mar 2026 11:15:44 -0500 Subject: [PATCH] Update to v5.1.2.37 --- .SRCINFO | 6 +++--- PKGBUILD | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 7f9f2908d7cf0..54fde7cf26fbc 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.36 - pkgrel = 60 + pkgver = 5.1.2.37 + pkgrel = 61 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.36.tar.gz::https://github.com/whelanh/scidCommunity/archive/29b36e89e56e51a51f84a16331ebd154b53a0871.tar.gz + source = scidcommunity-5.1.2.37.tar.gz::https://github.com/whelanh/scidCommunity/archive/47a5a8e01dbe92cb93cc7b17ce1de4c0a3569447.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index a196bb4fe653d..1d107d32e56d3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.36 -pkgrel=60 +pkgver=5.1.2.37 +pkgrel=61 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/29b36e89e56e51a51f84a16331ebd154b53a0871.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/47a5a8e01dbe92cb93cc7b17ce1de4c0a3569447.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-29b36e89e56e51a51f84a16331ebd154b53a0871" + cd "${srcdir}/scidCommunity-47a5a8e01dbe92cb93cc7b17ce1de4c0a3569447" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-29b36e89e56e51a51f84a16331ebd154b53a0871" + cd "${srcdir}/scidCommunity-47a5a8e01dbe92cb93cc7b17ce1de4c0a3569447" # 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" }