Caleb Maclennan pushed to branch main at Arch Linux / Packaging / Packages /
sshx
Commits:
4a372e98 by Caleb Maclennan at 2026-02-15T01:29:05+03:00
Simplify host tuple detection, avoids wasted subshell
- - - - -
cfce8caa by Caleb Maclennan at 2026-02-15T01:30:37+03:00
upgpkg: 0.4.1-2: Deprecate gcc-libs, identify specific sodepends
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,15 +1,16 @@
pkgbase = sshx
pkgdesc = A secure web-based, collaborative terminal
pkgver = 0.4.1
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/ekzhang/sshx
arch = x86_64
arch = aarch64
license = MIT
makedepends = cargo
makedepends = protobuf
- depends = gcc-libs
depends = glibc
+ depends = libgcc
+ depends = libgcc_s.so
options = !lto
source =
https://github.com/ekzhang/sshx/archive/v0.4.1/sshx-0.4.1.tar.gz
sha256sums =
ab6de41546b849726faa3b964466c1f8bb558bd27ee2452a9758405ff013108f
=====================================
PKGBUILD
=====================================
@@ -4,13 +4,13 @@
pkgname=sshx
pkgver=0.4.1
-pkgrel=1
+pkgrel=2
pkgdesc='A secure web-based, collaborative terminal'
url="https://github.com/ekzhang/$pkgname"
license=(MIT)
arch=(x86_64 aarch64)
-depends=(gcc-libs
- glibc)
+depends=(glibc # libc.so libm.so
+ libgcc libgcc_s.so)
makedepends=(cargo
protobuf)
options=(!lto) # https://github.com/briansmith/ring/issues/1444
@@ -22,7 +22,7 @@
sha256sums=('ab6de41546b849726faa3b964466c1f8bb558bd27ee2452a9758405ff013108f')
prepare() {
cd "$_archive"
- cargo fetch --locked --target "$(rustc --print host-tuple)"
+ cargo fetch --locked --target host-tuple
}
build() {
@@ -32,7 +32,7 @@ build() {
check() {
cd "$_archive"
- cargo test --frozen
+ cargo test --frozen --release
}
package() {
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/sshx/-/compare/7b9849c1a8b644a64087be988378a5eade4d3cc7...cfce8caa1fce96d69e54dfcb9f1404c7679eacc7
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/sshx/-/compare/7b9849c1a8b644a64087be988378a5eade4d3cc7...cfce8caa1fce96d69e54dfcb9f1404c7679eacc7
You're receiving this email because of your account on gitlab.archlinux.org.