From a8ae9ad0cc140f76d40a20ddb598d7c7e34ed3f7 Mon Sep 17 00:00:00 2001 From: zenobit Date: Thu, 19 Mar 2026 11:48:01 +0100 Subject: [PATCH 1/2] New package: gh-dash-4.23.2 --- srcpkgs/gh-dash/template | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 srcpkgs/gh-dash/template diff --git a/srcpkgs/gh-dash/template b/srcpkgs/gh-dash/template new file mode 100644 index 00000000000000..7580d74131e4ae --- /dev/null +++ b/srcpkgs/gh-dash/template @@ -0,0 +1,16 @@ +# Template file for 'gh-dash' +pkgname=gh-dash +version=4.23.2 +revision=1 +build_style=go +go_import_path="github.com/dlvhdr/gh-dash/v4" +short_desc="Rich terminal UI for GitHub that doesn't break your flow" +maintainer="zen0bit " +license="MIT" +homepage="https://github.com/dlvhdr/gh-dash" +distfiles="https://github.com/dlvhdr/gh-dash/archive/refs/tags/v${version}.tar.gz" +checksum=aef43a5998fa16447a832797484984ed8894b65c94acebc17f8210c2b3b4b687 + +post_install() { + vlicense LICENSE.txt +} From 8858c8502ba6889f810983b76265f0aaf2272728 Mon Sep 17 00:00:00 2001 From: zenobit Date: Thu, 19 Mar 2026 13:11:44 +0100 Subject: [PATCH 2/2] Skip one test on i686 build, if will be good will be rebased, build fine on my end --- srcpkgs/gh-dash/template | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/srcpkgs/gh-dash/template b/srcpkgs/gh-dash/template index 7580d74131e4ae..d945b4afc0224a 100644 --- a/srcpkgs/gh-dash/template +++ b/srcpkgs/gh-dash/template @@ -11,6 +11,10 @@ homepage="https://github.com/dlvhdr/gh-dash" distfiles="https://github.com/dlvhdr/gh-dash/archive/refs/tags/v${version}.tar.gz" checksum=aef43a5998fa16447a832797484984ed8894b65c94acebc17f8210c2b3b4b687 +case "$XBPS_TARGET_ARCH" in + i686) make_check_args="-run '!TestTabs/Should_show_overflow_symbol'" ;; +esac + post_install() { vlicense LICENSE.txt }