Antonio Rojas pushed to branch main at Arch Linux / Packaging / Packages / gap
Commits:
7129290f by Antonio Rojas at 2025-10-08T19:42:13+02:00
upgpkg: 4.15.0-3: Do not check for writeability of AtlasRep data dirs
We already ship all data locally, so there is no need for the dirs to be
writeable.
Fixes #2
- - - - -
3 changed files:
- .SRCINFO
- PKGBUILD
- atlasrep-no-remote-access.patch
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = gap
pkgdesc = Groups, Algorithms, Programming: a system for computational
discrete algebra
pkgver = 4.15.0
- pkgrel = 2
+ pkgrel = 3
url = https://www.gap-system.org/
arch = x86_64
license = GPL-2.0-or-later
@@ -34,7 +34,7 @@ pkgbase = gap
sha256sums =
93c7df97df1265c0f9ea6a9b5578b12289d5ab3aed2936cfd592710cfa73609e
sha256sums =
9f82d01bb682f24406f07a701dc2cae40dcba672c6ca91e77613b9096d6b49eb
sha256sums =
d2c7288670eeb6783fa4fe0f0a90071c21fa44e8b82554db980aa6da7124e17c
- sha256sums =
db8a38bc6c81a2ee3d5dc11d8317ee33c730fb5eea21f28660bb0933aa177b9d
+ sha256sums =
1ffbed921a6f289340a1e61179f7f88039fa6dcd0247ab6b9b9270192ff5d015
pkgname = gap
depends = glibc
=====================================
PKGBUILD
=====================================
@@ -6,7 +6,7 @@ pkgbase=gap
pkgname=(gap
gap-packages)
pkgver=4.15.0
-pkgrel=2
+pkgrel=3
pkgdesc='Groups, Algorithms, Programming: a system for computational discrete
algebra'
arch=(x86_64)
url='https://www.gap-system.org/'
@@ -20,7 +20,7 @@
sha256sums=('56ae1557aa0030a4501b2553277ace47992a8e9329879a8b16701e31279bbfab'
'93c7df97df1265c0f9ea6a9b5578b12289d5ab3aed2936cfd592710cfa73609e'
'9f82d01bb682f24406f07a701dc2cae40dcba672c6ca91e77613b9096d6b49eb'
'd2c7288670eeb6783fa4fe0f0a90071c21fa44e8b82554db980aa6da7124e17c'
- 'db8a38bc6c81a2ee3d5dc11d8317ee33c730fb5eea21f28660bb0933aa177b9d')
+ '1ffbed921a6f289340a1e61179f7f88039fa6dcd0247ab6b9b9270192ff5d015')
makedepends=(bliss
boost
c-xsc
=====================================
atlasrep-no-remote-access.patch
=====================================
@@ -22,6 +22,13 @@ index 067ddf1..75140b9 100644
values:= [ true, false ],
multi:= false,
package:= "AtlasRep",
---
-2.41.0
+@@ -108,7 +108,7 @@
+
+ dir:= DirectoriesPackageLibrary( "atlasrep", "" );
+ if ForAll( [ "dataext", "datagens", "dataword" ],
+- subdir -> IsWritableFile( Filename( dir, subdir ) ) ) then
++ subdir -> IsExistingFile( Filename( dir, subdir ) ) ) then
+ # The package directory is the first default.
+ return Filename( dir, "" );
+ elif IsPackageLoaded( "JuliaInterface" ) then
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/gap/-/commit/7129290f3de1a156b218c4624648e02832e99706
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/gap/-/commit/7129290f3de1a156b218c4624648e02832e99706
You're receiving this email because of your account on gitlab.archlinux.org.