Jakub Klinkovský pushed to branch main at Arch Linux / Packaging / Packages /
nsight-systems
Commits:
9f56f161 by Solskogen at 2026-02-01T11:03:14+01:00
add support for aarch64
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -4,6 +4,7 @@ pkgbase = nsight-systems
pkgrel = 2
url = https://developer.nvidia.com/nsight-systems
arch = x86_64
+ arch = aarch64
license = LicenseRef-NVIDIA-SLA
depends = dbus
depends = fontconfig
@@ -29,9 +30,11 @@ pkgbase = nsight-systems
optdepends = cuda: for GPU profiling on the local system
options = !debug
options = !strip
- source =
https://developer.download.nvidia.com/compute/cuda/redist/nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2025.5.2.266-archive.tar.xz
source = nsight-systems.desktop
- b2sums =
35bf45b3d07a8e3a3ac8b3ffea5a03e548cf8866368cc488ed1ae22e2baa8f4eb9b56b846a4e569522ddd8c831573418cee6943031354c6437893cd56121a563
b2sums =
d77257e4507ec44c729a314d6c264e1aa7359b5e1bb9576133731705ed5202c1ab588195c239a3a636021965408b284204e7d1d6082b7e3e89199cdc2c56fa4a
+ source_x86_64 =
https://developer.download.nvidia.com/compute/cuda/redist/nsight_systems/linux-x86_64/nsight_systems-linux-x86_64-2025.5.2.266-archive.tar.xz
+ b2sums_x86_64 =
35bf45b3d07a8e3a3ac8b3ffea5a03e548cf8866368cc488ed1ae22e2baa8f4eb9b56b846a4e569522ddd8c831573418cee6943031354c6437893cd56121a563
+ source_aarch64 =
https://developer.download.nvidia.com/compute/cuda/redist/nsight_systems/linux-sbsa/nsight_systems-linux-sbsa-2025.5.2.266-archive.tar.xz
+ b2sums_aarch64 =
f95ce5f9eb0da38650dbe749cbf65882e270d45a6e6e97e495cbc2697b4a188ccb9d2a3272cb7194debaed008c06344da44b50f74d5f71dd7509db6be3d486f6
pkgname = nsight-systems
=====================================
PKGBUILD
=====================================
@@ -4,7 +4,7 @@ pkgname=nsight-systems
pkgver=2025.5.2.266
pkgrel=2
pkgdesc="System-wide statistical sampling profiler with tracing features"
-arch=(x86_64)
+arch=(x86_64 aarch64)
url="https://developer.nvidia.com/nsight-systems"
license=(LicenseRef-NVIDIA-SLA)
depends=(
@@ -35,18 +35,19 @@ optdepends=(
'cuda: for GPU profiling on the local system'
)
options=(!debug !strip)
-source=(
-
https://developer.download.nvidia.com/compute/cuda/redist/${pkgname/-/_}/linux-x86_64/${pkgname/-/_}-linux-x86_64-$pkgver-archive.tar.xz
- nsight-systems.desktop
-)
-b2sums=('35bf45b3d07a8e3a3ac8b3ffea5a03e548cf8866368cc488ed1ae22e2baa8f4eb9b56b846a4e569522ddd8c831573418cee6943031354c6437893cd56121a563'
-
'd77257e4507ec44c729a314d6c264e1aa7359b5e1bb9576133731705ed5202c1ab588195c239a3a636021965408b284204e7d1d6082b7e3e89199cdc2c56fa4a')
+source_x86_64=(https://developer.download.nvidia.com/compute/cuda/redist/${pkgname/-/_}/linux-x86_64/${pkgname/-/_}-linux-x86_64-$pkgver-archive.tar.xz)
+source_aarch64=(https://developer.download.nvidia.com/compute/cuda/redist/${pkgname/-/_}/linux-sbsa/${pkgname/-/_}-linux-sbsa-$pkgver-archive.tar.xz)
+source=(nsight-systems.desktop)
+
+b2sums_x86_64=('35bf45b3d07a8e3a3ac8b3ffea5a03e548cf8866368cc488ed1ae22e2baa8f4eb9b56b846a4e569522ddd8c831573418cee6943031354c6437893cd56121a563')
+b2sums_aarch64=('f95ce5f9eb0da38650dbe749cbf65882e270d45a6e6e97e495cbc2697b4a188ccb9d2a3272cb7194debaed008c06344da44b50f74d5f71dd7509db6be3d486f6')
+b2sums=('d77257e4507ec44c729a314d6c264e1aa7359b5e1bb9576133731705ed5202c1ab588195c239a3a636021965408b284204e7d1d6082b7e3e89199cdc2c56fa4a')
package() {
- cd ${pkgname/-/_}-linux-x86_64-${pkgver}-archive
+ cd ${pkgname/-/_}-linux-*-${pkgver}-archive
install -vdm 755 "$pkgdir"/usr/lib/$pkgname/
- cp -arv bin host-linux-x64 target-linux-x64 "$pkgdir"/usr/lib/$pkgname/
+ cp -arv bin host-linux-* target-linux-* "$pkgdir"/usr/lib/$pkgname/
# create symlinks in /usr/bin/
install -vdm 755 "$pkgdir"/usr/bin
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/nsight-systems/-/commit/9f56f161a9eac900fdfc1f4a77e91a0135c39ce0
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/nsight-systems/-/commit/9f56f161a9eac900fdfc1f4a77e91a0135c39ce0
You're receiving this email because of your account on gitlab.archlinux.org.