From cedef800be93e0cdefbfb85fd3264c85b30946af Mon Sep 17 00:00:00 2001 From: whelanh Date: Tue, 16 Dec 2025 01:14:13 +0000 Subject: [PATCH] Limit variation length in auto-annotation --- .SRCINFO | 2 +- PKGBUILD | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 0b831dcaa520..ca2518b4e02b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -10,7 +10,7 @@ pkgbase = scidcommunity makedepends = git depends = tcl depends = tk - source = scidcommunity-5.1.1.tar.gz::https://github.com/whelanh/scidCommunity/archive/fca688e7d9d5fb61b270c864c7afe20b11e16b76.tar.gz + source = scidcommunity-5.1.1.tar.gz::https://github.com/whelanh/scidCommunity/archive/fd665719b5de90d77fe9f69b4c384256a93553d4.tar.gz sha256sums = SKIP pkgname = scidcommunity diff --git a/PKGBUILD b/PKGBUILD index 84e8e004b027..ac867e285b59 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -8,17 +8,17 @@ 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/fca688e7d9d5fb61b270c864c7afe20b11e16b76.tar.gz") +source=("${pkgname}-${pkgver}.tar.gz::https://github.com/whelanh/scidCommunity/archive/fd665719b5de90d77fe9f69b4c384256a93553d4.tar.gz") sha256sums=('SKIP') # Safe to skip: integrity verified by commit hash build() { - cd "${srcdir}/scidCommunity-fca688e7d9d5fb61b270c864c7afe20b11e16b76" + cd "${srcdir}/scidCommunity-fd665719b5de90d77fe9f69b4c384256a93553d4" ./configure --prefix=/usr make all } package() { - cd "${srcdir}/scidCommunity-fca688e7d9d5fb61b270c864c7afe20b11e16b76" + cd "${srcdir}/scidCommunity-fd665719b5de90d77fe9f69b4c384256a93553d4" # 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" }