From f85e7fef6d9b2e419bcdb732426852c190e7ea1d Mon Sep 17 00:00:00 2001 From: whelan Date: Thu, 22 Jan 2026 13:11:02 -0500 Subject: [PATCH] Update to v5.1.2.03 --- .SRCINFO | 6 +++--- PKGBUILD | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 46a603161e65..abf1490f5158 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.02 - pkgrel = 32 + pkgver = 5.1.2.03 + pkgrel = 33 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.02.tar.gz::https://github.com/whelanh/scidCommunity/archive/a41b670192fd111c74e3fe852851387fef0c8e5e.tar.gz + source = scidcommunity-5.1.2.03.tar.gz::https://github.com/whelanh/scidCommunity/archive/4911c57297bc798e3b9d8a192c9337093f0a2122.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 95b7f11999f1..c6c2caddf09e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.02 -pkgrel=32 +pkgver=5.1.2.03 +pkgrel=33 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/a41b670192fd111c74e3fe852851387fef0c8e5e.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/4911c57297bc798e3b9d8a192c9337093f0a2122.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-a41b670192fd111c74e3fe852851387fef0c8e5e" + cd "${srcdir}/scidCommunity-4911c57297bc798e3b9d8a192c9337093f0a2122" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-a41b670192fd111c74e3fe852851387fef0c8e5e" + cd "${srcdir}/scidCommunity-4911c57297bc798e3b9d8a192c9337093f0a2122" # 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" }