community/starship: upgrade to 1.19.0

This commit is contained in:
ptrcnull 2024-07-20 22:34:05 +02:00 committed by Jakub Jirutka
parent 5a1a5dc321
commit 73a5ebed98
2 changed files with 7 additions and 7 deletions

View File

@ -1,7 +1,7 @@
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=starship
pkgver=1.18.2
pkgver=1.19.0
pkgrel=0
pkgdesc="Minimal, blazing-fast and infinitely customizable prompt for any shell"
url="https://starship.rs"
@ -86,8 +86,8 @@ _zsh_plugin() {
}
sha512sums="
77bdebf9fe3bad485ef99562a4c90574f0201c7c3e9ae25665fea85da3a9b038ebc68806ca639f127f2c4f2f974e699e271481e0d945ff294b212449b1ebd70f starship-1.18.2.tar.gz
c8376bda747180fced9e76379e5290b474c252c2c5f7d1dcea889c119e35a93183e0209b993cbc55bf4088372f3c211be8618cbae775bc64b366b77e25b9e209 use-libdbus.patch
12347b7db82425ea6656eaccb2c1e9f3c62416b1c4d1c2937cdea2aae724dfc1d6a5a93319178c9844d3f1cc2d6ae15d3e34adbe3ead7df695df87efe5d1b827 starship-1.19.0.tar.gz
bf959be577037f9b68925ed3e1640edc87ccbf9a487a61d667d05baab8e726e8337e1d816a0ff40cb8cc4ab2593db9f363147554d1e79aace839ed7eec4b632a use-libdbus.patch
384a3b84b103005d347ef76c9a61f8c5e21cc97f17f195cff157f71f42dbd76fd6f54f93715cbebbee2eab70a275e39917334721fa21d130bd715a7b6334418b starship.plugin.zsh
715bb5e811e4aaa2c0289d1cbcef10d54ddd7767810b8f5fcd90380e370b0ef7d845cfbcdb2f42e95769eba81e449d07e4fc180973f28fd0d22da3ff1e868f85 bump-libc.patch
"

View File

@ -1,15 +1,15 @@
Link with system libdbus instead of zbus-rs (Rust implementation).
diff --git a/Cargo.toml b/Cargo.toml
index ff0769e..44f0ed9 100644
index ea36bc0..0f115a8 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -55,7 +55,7 @@ indexmap = { version = "2.2.5", features = ["serde"] }
@@ -55,7 +55,7 @@ indexmap = { version = "2.2.6", features = ["serde"] }
log = { version = "0.4.21", features = ["std"] }
# notify-rust is optional (on by default) because the crate doesn't currently build for darwin with nix
# see: https://github.com/NixOS/nixpkgs/issues/160876
-notify-rust = { version = "4.10.0", optional = true }
+notify-rust = { version = "4.10.0", default-features = false, features = ["d"], optional = true }
-notify-rust = { version = "4.11.0", optional = true }
+notify-rust = { version = "4.11.0", default-features = false, features = ["d"], optional = true }
nu-ansi-term = "0.50.0"
once_cell = "1.19.0"
open = "5.1.2"