From 65cd3132858a581fce2f5151d0ad939efdbec8f4 Mon Sep 17 00:00:00 2001 From: whelan Date: Fri, 16 Jan 2026 14:16:03 -0500 Subject: [PATCH] Update to v5.1.1.99 --- .SRCINFO | 6 +++--- PKGBUILD | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index d9ceee92de5f..28fb9e705019 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.1.98 - pkgrel = 28 + pkgver = 5.1.1.99 + pkgrel = 29 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.1.98.tar.gz::https://github.com/whelanh/scidCommunity/archive/afea0b3cd7ba9f0aadbedb4082adbcd862aa05fa.tar.gz + source = scidcommunity-5.1.1.99.tar.gz::https://github.com/whelanh/scidCommunity/archive/afd725f99d5a6cb4d9f72398f49569a39d262b5b.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 7818cf5fa5c2..374a25ea8be3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.1.98 -pkgrel=28 +pkgver=5.1.1.99 +pkgrel=29 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/afea0b3cd7ba9f0aadbedb4082adbcd862aa05fa.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/afd725f99d5a6cb4d9f72398f49569a39d262b5b.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-afea0b3cd7ba9f0aadbedb4082adbcd862aa05fa" + cd "${srcdir}/scidCommunity-afd725f99d5a6cb4d9f72398f49569a39d262b5b" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-afea0b3cd7ba9f0aadbedb4082adbcd862aa05fa" + cd "${srcdir}/scidCommunity-afd725f99d5a6cb4d9f72398f49569a39d262b5b" # 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" }