Sven-Hendrik Haase pushed to branch main at Arch Linux / Packaging / Packages /
glslang
Commits:
b3f1b0df by Sven-Hendrik Haase at 2023-12-14T02:38:48+01:00
upgpkg: 13.1.1-3: Fix wrong include path in cmake file (Fixes #1)
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,7 +1,7 @@
pkgbase = glslang
pkgdesc = OpenGL and OpenGL ES shader front end and validator
pkgver = 13.1.1
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/KhronosGroup/glslang
arch = x86_64
license = BSD
@@ -13,6 +13,8 @@ pkgbase = glslang
depends = spirv-tools
options = staticlibs
source =
glslang-13.1.1.tar.gz::https://github.com/KhronosGroup/glslang/archive/13.1.1.tar.gz
+ source =
glslang-3420.patch::https://github.com/KhronosGroup/glslang/pull/3420.patch
sha256sums =
1c4d0a5a38c8aaf89a2d7e6093be734320599f5a6775b2726beeb05b0c054e66
+ sha256sums =
8930d3829bae4e0cd911bf63728d4d49d736d261af1e2cef912b769e6fa8373f
pkgname = glslang
=====================================
PKGBUILD
=====================================
@@ -12,7 +12,7 @@
# spriv-tools system package and only then building glslang against that.
pkgname=glslang
pkgver=13.1.1
-pkgrel=2
+pkgrel=3
pkgdesc='OpenGL and OpenGL ES shader front end and validator'
arch=('x86_64')
url='https://github.com/KhronosGroup/glslang'
@@ -20,9 +20,15 @@ license=('BSD')
depends=('gcc-libs' 'spirv-tools')
makedepends=('cmake' 'ninja' 'spirv-headers' 'python')
options=('staticlibs')
-source=(${pkgname}-${pkgver}.tar.gz::https://github.com/KhronosGroup/glslang/archive/${pkgver}.tar.gz)
-sha256sums=('1c4d0a5a38c8aaf89a2d7e6093be734320599f5a6775b2726beeb05b0c054e66')
+source=(${pkgname}-${pkgver}.tar.gz::https://github.com/KhronosGroup/glslang/archive/${pkgver}.tar.gz
+
${pkgname}-3420.patch::https://github.com/KhronosGroup/glslang/pull/3420.patch)
+sha256sums=('1c4d0a5a38c8aaf89a2d7e6093be734320599f5a6775b2726beeb05b0c054e66'
+ '8930d3829bae4e0cd911bf63728d4d49d736d261af1e2cef912b769e6fa8373f')
+prepare() {
+ cd ${pkgname}-${pkgver}
+ patch -Np1 -i "${srcdir}"/${pkgname}-3420.patch
+}
build() {
cd ${pkgname}-${pkgver}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/glslang/-/commit/b3f1b0df0b3d278f018e6ce5e4d9b4aeded3f578
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/glslang/-/commit/b3f1b0df0b3d278f018e6ce5e4d9b4aeded3f578
You're receiving this email because of your account on gitlab.archlinux.org.