neochat, bump to 25.04.0 (#12200)

This commit is contained in:
Schrijvers Luc
2025-04-18 15:51:34 +02:00
committed by GitHub
parent 31e90c4252
commit 07d7ba18c7
2 changed files with 9 additions and 27 deletions

View File

@@ -3,12 +3,11 @@ DESCRIPTION="Neochat is a client for Matrix, the decentralized communication pro
for instant messaging. It is a fork of Spectral, using KDE frameworks, \
most notably Kirigami, KConfig and KI18n."
HOMEPAGE="https://apps.kde.org/en/neochat"
COPYRIGHT="2024 KDE Organisation"
COPYRIGHT="2025 KDE Organisation"
LICENSE="GNU GPL v3"
REVISION="2"
REVISION="1"
SOURCE_URI="https://download.kde.org/stable/release-service/$portVersion/src/neochat-$portVersion.tar.xz"
CHECKSUM_SHA256="0da4ef87620647efca0198d420e897b97c56bcfcbcfdaa5a78aa50fd488301e0"
PATCHES="neochat-$portVersion.patchset"
CHECKSUM_SHA256="8f82f14eecf6b5cbb2054a957cb889fbc025fe368ca1fca1ab7a2319a7317202"
ADDITIONAL_FILES="neochat.rdef.in"
ARCHITECTURES="all !x86_gcc2"
@@ -121,6 +120,12 @@ BUILD_PREREQUIRES="
cmd:pkg_config$secondaryArchSuffix
"
PATCH()
{
# use Haiku's icon theme
sed -e 's,\ KIconTheme::initTheme();,\// KIconTheme::initTheme();,g' -i src/main.cpp
}
BUILD()
{
cmake -B build -S. -DCMAKE_BUILD_TYPE=Release \

View File

@@ -1,23 +0,0 @@
From 614d3e406dfd60498da26888c6e70869fec36ad4 Mon Sep 17 00:00:00 2001
From: Begasus <begasus@gmail.com>
Date: Sat, 8 Feb 2025 09:23:52 +0100
Subject: Use Haiku icon style
diff --git a/src/main.cpp b/src/main.cpp
index 143d466..29c3a5b 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -102,7 +102,9 @@ Q_DECL_EXPORT
#endif
int main(int argc, char *argv[])
{
+#if !defined(Q_OS_HAIKU)
KIconTheme::initTheme();
+#endif
QNetworkProxyFactory::setUseSystemConfiguration(true);
#ifdef HAVE_WEBVIEW
--
2.48.1