dino: update to 0.3.1.

* use libsoup3
* remove unused common/shlibs
This commit is contained in:
Michal Vasilek 2023-01-07 12:28:31 +01:00
parent 716c96090f
commit 2ae00891eb
3 changed files with 6 additions and 31 deletions

View File

@ -3889,9 +3889,6 @@ libraft.so.2 raft-0.13.0_1
libmdnsd.so.1 libmdnsd-0.9_1
libosdGPU.so.3.4.3 OpenSubdiv-3.4.3_1
libosdCPU.so.3.4.3 OpenSubdiv-3.4.3_1
libdino.so.0 dino-0.1.0_1
libxmpp-vala.so.0 dino-0.1.0_1
libqlite.so.0 dino-0.1.0_1
libmpir.so.23 mpir-3.0.0_1
libmpirxx.so.8 mpir-3.0.0_1
libcaribou.so.0 libcaribou-0.4.21_3

View File

@ -1,22 +0,0 @@
From 1309d7e2e42a1fdced3127c641f108fb72cc2fdd Mon Sep 17 00:00:00 2001
From: fiaxh <git@lightrise.org>
Date: Mon, 14 Feb 2022 23:49:45 +0100
Subject: [PATCH] Fix quote formating to not (partially) expect a space after >
---
main/src/ui/util/helper.vala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/main/src/ui/util/helper.vala b/main/src/ui/util/helper.vala
index 51f0cc9c1..427c2d3a2 100644
--- a/main/src/ui/util/helper.vala
+++ b/main/src/ui/util/helper.vala
@@ -259,7 +259,7 @@ public static string parse_add_markup_theme(string s_, string? highlight_word, b
theme_dependent = true;
quote_match_info.fetch_pos(0, out start, out end);
return parse_add_markup_theme(s[0:start], highlight_word, parse_links, parse_text_markup, parse_quotes, dark_theme, ref theme_dependent, already_escaped) +
- @"<span color='$dim_color'>$gt " + parse_add_markup_theme(s[start + gt.length + 1:end], highlight_word, parse_links, parse_text_markup, false, dark_theme, ref theme_dependent, already_escaped) + "</span>" +
+ @"<span color='$dim_color'>$gt" + parse_add_markup_theme(s[start + gt.length:end], highlight_word, parse_links, parse_text_markup, false, dark_theme, ref theme_dependent, already_escaped) + "</span>" +
parse_add_markup_theme(s[end:s.length], highlight_word, parse_links, parse_text_markup, parse_quotes, dark_theme, ref theme_dependent, already_escaped);
}
}

View File

@ -1,12 +1,12 @@
# Template file for 'dino'
pkgname=dino
version=0.3.0
revision=3
version=0.3.1
revision=1
build_style=cmake
configure_args="-DDINO_PLUGIN_ENABLED_notification-sound=ON"
configure_args="-DDINO_PLUGIN_ENABLED_notification-sound=ON -DUSE_SOUP3=ON"
hostmakedepends="cmake ninja gettext unzip pkg-config vala glib-devel"
makedepends="glib-devel qrencode-devel gtk+3-devel gpgme-devel libgee08-devel
libgcrypt-devel libsoup-devel libsignal-protocol-c-devel sqlite-devel
makedepends="glib-devel qrencode-devel gtk+3-devel gpgme-devel libgee-devel
libgcrypt-devel libsoup3-devel libsignal-protocol-c-devel sqlite-devel
libcanberra-devel gspell-devel libsrtp-devel libnice-devel gnutls-devel
gst-plugins-base1-devel"
short_desc='Modern XMPP ("Jabber") Chat Client using GTK+/Vala'
@ -14,7 +14,7 @@ maintainer="Anjandev Momi <anjan@momi.ca>"
license="GPL-3.0-or-later"
homepage="https://github.com/dino/dino"
distfiles="https://github.com/dino/dino/archive/v${version}.tar.gz"
checksum=110faee764bc9acbee0f5f4133e21eb25e6757ce81eb4b8d22dd113c7e4b5326
checksum=7178fc6b5efcea4e4ab49a7cae58224b5236660816e247a23124466984a9fbf9
if [ "${XBPS_CHECK_PKGS}" ]; then
configure_args+=" -DBUILD_TESTS=ON"