diff options
author | Erich Eckner <git@eckner.net> | 2023-01-15 20:05:07 +0100 |
---|---|---|
committer | Erich Eckner <erich.eckner.ext@bestsecret.com> | 2023-01-18 10:15:05 +0100 |
commit | 482311a2ba2c9fe274a11752b16c7a5c553599f2 (patch) | |
tree | 2424457f8d5728a80c53ac13ac2b83f12cb9080d /arcus | |
parent | d13f90ac07d924b6c6f6dcf69fb30ff93851707c (diff) | |
download | archlinuxewe-482311a2ba2c9fe274a11752b16c7a5c553599f2.tar.xz |
arcus: fix _pinned_dependencies
Diffstat (limited to 'arcus')
-rw-r--r-- | arcus/PKGBUILD | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/arcus/PKGBUILD b/arcus/PKGBUILD index b0adadeb6..4ec448135 100644 --- a/arcus/PKGBUILD +++ b/arcus/PKGBUILD @@ -7,7 +7,7 @@ # upstreamed renamed to libarcus pkgname=arcus pkgver=5.0.0 -pkgrel=3 +pkgrel=1 pkgdesc="Communication library between internal components for Ultimaker software" url="https://github.com/Ultimaker/libArcus" arch=('x86_64') @@ -15,7 +15,13 @@ license=('LGPL') provides=('libarcus') conflicts=('libarcus') makedepends=('cmake' 'git' 'ninja') -depends=('python' 'protobuf') +_pinned_dependencies=( + 'gcc-libs=12.2.0' + 'glibc>=2.36' + 'libprotobuf.so=32' + 'python=3.10.9' +) +depends=('python' 'protobuf' "${_pinned_dependencies[@]}") options=('debug') source=("$pkgname-$pkgver.tar.gz::https://github.com/Ultimaker/libArcus/archive/${pkgver}.tar.gz" protobuf-3.18.patch) |