From 79072deb9e09645857018c8cbb802f200ac1e7d4 Mon Sep 17 00:00:00 2001 From: whelan Date: Tue, 3 Feb 2026 10:43:52 -0500 Subject: [PATCH] Update to v5.1.2.13 --- .SRCINFO | 6 +++--- PKGBUILD | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 29eadab4e5c2..5552edb53221 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.10 - pkgrel = 40 + pkgver = 5.1.2.13 + pkgrel = 43 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.10.tar.gz::https://github.com/whelanh/scidCommunity/archive/53c4092ff2d710169ff45a1bdac94efa9dee6f16.tar.gz + source = scidcommunity-5.1.2.13.tar.gz::https://github.com/whelanh/scidCommunity/archive/cb9b45de3b28953c1b3d6476138e8caa8d08d58a.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index fb8b207d796f..e6e388b05ef3 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,24 +1,24 @@ # Maintainer: Hugh Whelan pkgname=scidcommunity -pkgver=5.1.2.10 -pkgrel=40 +pkgver=5.1.2.13 +pkgrel=43 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/53c4092ff2d710169ff45a1bdac94efa9dee6f16.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/cb9b45de3b28953c1b3d6476138e8caa8d08d58a.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-53c4092ff2d710169ff45a1bdac94efa9dee6f16" + cd "${srcdir}/scidCommunity-cb9b45de3b28953c1b3d6476138e8caa8d08d58a" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-53c4092ff2d710169ff45a1bdac94efa9dee6f16" + cd "${srcdir}/scidCommunity-cb9b45de3b28953c1b3d6476138e8caa8d08d58a" # 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" }