Orhun Parmaksız pushed to branch main at Arch Linux / Packaging / Packages /
skim
Commits:
85d88139 by Orhun Parmaksız at 2026-01-23T11:13:47+03:00
upgpkg: 1.5.3-1: upstream release
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,20 +1,20 @@
pkgbase = skim
- pkgdesc = Fuzzy Finder in Rust!
- pkgver = 0.20.5
+ pkgdesc = Fuzzy Finder in Rust
+ pkgver = 1.5.3
pkgrel = 1
- url = https://github.com/lotabout/skim
+ url = https://github.com/skim-rs/skim
arch = x86_64
license = MIT
makedepends = git
- makedepends = rust
+ makedepends = cargo
depends = ncurses
optdepends = bash: for resp. completions and key bindings, and for
sk-tmux script
optdepends = fish: for resp. key bindings
optdepends = tmux: for sk-tmux script
optdepends = vim-plugin-runtime: for N/Vim plugin
optdepends = zsh: for resp. completions and key bindings
- source = skim::git+https://github.com/lotabout/skim#tag=v0.20.5
- sha512sums =
ad5fd855b7ccff4314d9da7426fb2f1a6c0519df96bdc49304e454a2c7a1efa40bc55ee7a99fd546622524b710d0d17b5421ac0ed810fadb817999d558e4319a
- b2sums =
d9c8f4e7445a78c02db7e390d38fcd2789e3439e32a9092c72658ba7a610ea37476bd483944462f398e59a9445c1cbcb1154dc0dd1235a16c5f157a8c221e4c1
+ source = skim::git+https://github.com/skim-rs/skim#tag=v1.5.3
+ sha512sums =
7669bd7c39b0194b82892fb06b9f26db7ce1cf1a5ffaf7937d9183845e58a12777bcd8a03a5eb05e887f63851d5aec0f278edb2ccbc993139a1277f619a4af94
+ b2sums =
11b433c4df9450609277466bcc3e96c4e285b61c36a90a1783cd679c9b8b92f1259a0446966504860bb91f4abe080ac1dd3e6e0bbefe2b59308e7d4c013c15d6
pkgname = skim
=====================================
PKGBUILD
=====================================
@@ -1,16 +1,17 @@
# Maintainer: George Rawlinson <[email protected]>
# Maintainer: Daniel M. Capella <[email protected]>
+# Maintainer: Orhun Parmaksız <[email protected]>
# Contributor: fenuks
pkgname=skim
-pkgver=0.20.5
+pkgver=1.5.3
pkgrel=1
-pkgdesc='Fuzzy Finder in Rust!'
+pkgdesc='Fuzzy Finder in Rust'
arch=(x86_64)
url='https://github.com/skim-rs/skim'
license=(MIT)
depends=(ncurses)
-makedepends=(git rust)
+makedepends=(git cargo)
optdepends=(
'bash: for resp. completions and key bindings, and for sk-tmux script'
'fish: for resp. key bindings'
@@ -19,8 +20,8 @@ optdepends=(
'zsh: for resp. completions and key bindings'
)
source=("$pkgname::git+$url#tag=v$pkgver")
-sha512sums=('ad5fd855b7ccff4314d9da7426fb2f1a6c0519df96bdc49304e454a2c7a1efa40bc55ee7a99fd546622524b710d0d17b5421ac0ed810fadb817999d558e4319a')
-b2sums=('d9c8f4e7445a78c02db7e390d38fcd2789e3439e32a9092c72658ba7a610ea37476bd483944462f398e59a9445c1cbcb1154dc0dd1235a16c5f157a8c221e4c1')
+sha512sums=('7669bd7c39b0194b82892fb06b9f26db7ce1cf1a5ffaf7937d9183845e58a12777bcd8a03a5eb05e887f63851d5aec0f278edb2ccbc993139a1277f619a4af94')
+b2sums=('11b433c4df9450609277466bcc3e96c4e285b61c36a90a1783cd679c9b8b92f1259a0446966504860bb91f4abe080ac1dd3e6e0bbefe2b59308e7d4c013c15d6')
prepare() {
cd "$pkgname"
@@ -32,14 +33,18 @@ prepare() {
build() {
cd "$pkgname"
- cargo build --frozen --release --all-features
+ # https://github.com/skim-rs/skim/issues/905
+ cargo build --frozen --release \
+ --no-default-features --features cli
}
-check() {
- cd "$pkgname"
-
- cargo test --frozen --all-features
-}
+# test currently require tmux
+#check() {
+# cd "$pkgname"
+#
+# cargo test --frozen --no-default-features \
+# --features cli,test-utils
+#}
package() {
cd "$pkgname"
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/skim/-/commit/85d88139e17c73d1f11d2b6f8a2e3f2629b14f00
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/skim/-/commit/85d88139e17c73d1f11d2b6f8a2e3f2629b14f00
You're receiving this email because of your account on gitlab.archlinux.org.