From cc91dd93b85914f1b194afee9e0e6c4868aba996 Mon Sep 17 00:00:00 2001 From: tranzystorekk Date: Tue, 19 Nov 2024 13:36:28 +0100 Subject: [PATCH] zellij: update to 0.41.2 --- srcpkgs/zellij/patches/use-system-libcurl.patch | 13 ------------- srcpkgs/zellij/template | 10 ++++------ 2 files changed, 4 insertions(+), 19 deletions(-) delete mode 100644 srcpkgs/zellij/patches/use-system-libcurl.patch diff --git a/srcpkgs/zellij/patches/use-system-libcurl.patch b/srcpkgs/zellij/patches/use-system-libcurl.patch deleted file mode 100644 index 615978879b8d61..00000000000000 --- a/srcpkgs/zellij/patches/use-system-libcurl.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml -index a5aca05..9e77f09 100644 ---- a/zellij-utils/Cargo.toml -+++ b/zellij-utils/Cargo.toml -@@ -57,7 +57,7 @@ notify-debouncer-full = "0.1.0" - humantime = "2.1.0" - futures = "0.3.28" - openssl-sys = { version = "0.9.93", features = ["vendored"] } --isahc = "1.7.2" -+isahc = { version = "1.7.2", default-features = false, features = ["http2", "text-decoding"] } - curl-sys = { version = "0.4", features = ["force-system-lib-on-osx"] } - - [dev-dependencies] diff --git a/srcpkgs/zellij/template b/srcpkgs/zellij/template index b0150e875515d1..bbaee7a83241a0 100644 --- a/srcpkgs/zellij/template +++ b/srcpkgs/zellij/template @@ -1,13 +1,14 @@ # Template file for 'zellij' pkgname=zellij -version=0.41.1 +version=0.41.2 revision=1 # Wasmtime runtime only supports the following archs: x86_64, arm64 # https://docs.wasmtime.dev/stability-tiers.html#unsupported-features-and-platforms archs="x86_64* aarch64*" build_style=cargo build_helper=qemu -hostmakedepends="mandown pkg-config" +configure_args="--no-default-features --features=plugins_from_target" +hostmakedepends="pkg-config" makedepends="libcurl-devel libzstd-devel" checkdepends="libssh2-devel" short_desc="Terminal workspace with batteries included" @@ -16,7 +17,7 @@ license="MIT" homepage="https://zellij.dev" changelog="https://raw.githubusercontent.com/zellij-org/zellij/main/CHANGELOG.md" distfiles="https://github.com/zellij-org/zellij/archive/refs/tags/v${version}.tar.gz" -checksum=72db7eb7257db08f338f37f0294791ea815140f739fbcb7059ccb0c8165a99d3 +checksum=12e7f0f80c1e39deed5638c4662fc070855cee0250a7eb1d76cefbeef8c2f376 make_check_pre="env LIBSSH2_SYS_USE_PKG_CONFIG=1" post_install() { @@ -28,7 +29,4 @@ post_install() { vtargetrun "${DESTDIR}/usr/bin/zellij" setup --generate-completion ${shell} > zellij.${shell} vcompletion zellij.${shell} ${shell} done - - mandown docs/MANPAGE.md > zellij.1 - vman zellij.1 }