From d044e1e555253b01886de109f87f4898392d82ed Mon Sep 17 00:00:00 2001 From: Alejandro Osornio <50227494+AOx0@users.noreply.github.com> Date: Sat, 16 Sep 2023 22:30:34 -0600 Subject: [PATCH] Update --- gitkraken-wayland/PKGBUILD | 4 ++-- helix-git/PKGBUILD | 20 +++++++++++++++++++- 2 files changed, 21 insertions(+), 3 deletions(-) diff --git a/gitkraken-wayland/PKGBUILD b/gitkraken-wayland/PKGBUILD index 4afdd8d..7583487 100644 --- a/gitkraken-wayland/PKGBUILD +++ b/gitkraken-wayland/PKGBUILD @@ -10,7 +10,7 @@ pkgname=gitkraken-wayland pkgrel=1 -pkgver=9.8.1 +pkgver=9.8.2 pkgdesc="The intuitive, fast, and beautiful cross-platform Git client." url="https://www.gitkraken.com/" provides=('gitkraken') @@ -29,7 +29,7 @@ source=( "eula.html" "gitkraken.sh" ) -sha256sums=('db26c9bf1b69bd640deb18bbe365026d40cbf6aec2a6535ceaa609386447761d' +sha256sums=('fb655494886d291fc2ba382930cb05184e237f50c075cb10b068045c7131f8cb' '5d6ec25e55c05e8a29de9468a169b4c4e5857ea8c88e53729f8494126c2d5316' '5b7b39b331bc32a606e1e79c695df4519c9b220225be00fb34ef368c3af319a6' '6e6c6ac37287e1ec5d5266689a49d18899488be901b21f5cb9749f545453626f') diff --git a/helix-git/PKGBUILD b/helix-git/PKGBUILD index 9f297c2..49454b8 100644 --- a/helix-git/PKGBUILD +++ b/helix-git/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Wojciech Kępka (wojciech@wkepka.dev) pkgname=helix-git _pkgname=helix -pkgver=23.05.397.g14401ff75 +pkgver=23.05.428.g8b076e385 pkgrel=1 pkgdesc="A text editor written in rust" url="https://helix-editor.com" @@ -39,6 +39,22 @@ EOF cp runtime/themes/fleet_dark.toml runtime/themes/tfleet_dark.toml sed -i 's/"ui.background" = { bg = "Gray 10" }/"ui.background" = { }/' runtime/themes/tfleet_dark.toml + cat >> languages.toml << EOF + +[[language]] +name = "flex" +scope = "source.flex" +injection-regex = "flex" +file-types = ["lex", "flex"] +roots = [] +auto-format = false +comment-token = "//" +language-servers = [ ] +indent = { tab-width = 4, unit = " " } +grammar = "c" + +EOF + rm rust-toolchain.toml } @@ -51,7 +67,9 @@ package() { cd "${_pkgname}" mkdir -p "${pkgdir}${_lib_path}" rm -r "runtime/grammars/sources" + cp -r runtime/queries/c runtime/queries/flex cp -r "runtime" "${pkgdir}${_lib_path}" + install -Dm 0755 "target/release/${_bin}" "${pkgdir}${_lib_path}/${_bin}" install -Dm 0644 "LICENSE" "${pkgdir}/usr/share/licenses/${_pkgname}/LICENSE" install -Dm 0777 "${srcdir}/${_bin}" "${pkgdir}/usr/bin/${_bin}"