Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions srcpkgs/halloy/patches/reqwest-use-openssl.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
diff --git a/Cargo.toml b/Cargo.toml
index 32020be..5d69318 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -40,7 +40,7 @@ palette = "0.7.4"
log = { version = "0.4.26", features = ['std'] }
uptime_lib = "0.3.1"
nucleo-matcher = "0.3.1"
-reqwest = { version = "0.13", features = ["json", "socks"] }
+reqwest = { version = "0.13", default-features = false, features = ["json", "socks", "charset", "http2", "system-proxy", "native-tls"] }

[dependencies]
tokio = { workspace = true, features = ["rt", "fs", "process"] }
9 changes: 7 additions & 2 deletions srcpkgs/halloy/template
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Template file for 'halloy'
pkgname=halloy
version=2026.4
version=2026.5
revision=1
build_style=cargo
hostmakedepends="pkg-config"
Expand All @@ -11,7 +11,12 @@ license="GPL-3.0-or-later"
homepage="https://github.com/squidowl/halloy"
changelog="https://raw.githubusercontent.com/squidowl/halloy/main/CHANGELOG.md"
distfiles="https://github.com/squidowl/halloy/archive/refs/tags/${version}.tar.gz"
checksum=fa9a95668717677de7f30c98b019b74451fdd2e5b0287a56574d7e953ef5c800
checksum=479834e3516dd1243ff4114c76d9934d033f18d563e7bfa1ecae99f6eb917b73

post_patch() {
# apply patched Cargo.toml changes to lockfile
cargo metadata > /dev/null
}

post_install() {
vinstall assets/linux/org.squidowl.halloy.appdata.xml 644 usr/share/metainfo
Expand Down