Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] hexchat: update to 2.16.2.
@ 2024-02-19 22:43 0x5c
  2024-03-01 14:53 ` [PR PATCH] [Merged]: " ahesford
  0 siblings, 1 reply; 4+ messages in thread
From: 0x5c @ 2024-02-19 22:43 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1239 bytes --]

There is a new pull request by 0x5c against master on the void-packages repository

https://github.com/0x5c/void-packages update/hexchat
https://github.com/void-linux/void-packages/pull/48840

hexchat: update to 2.16.2.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/48840.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-update/hexchat-48840.patch --]
[-- Type: text/x-diff, Size: 4204 bytes --]

From 6ba859b919dc3cff4d6a77a9c35c0882d8c867c6 Mon Sep 17 00:00:00 2001
From: 0x5c <dev@0x5c.io>
Date: Mon, 19 Feb 2024 17:41:13 -0500
Subject: [PATCH] hexchat: update to 2.16.2.

---
 srcpkgs/hexchat/patches/url_delim.patch  | 26 +++++++++++++++++++++
 srcpkgs/hexchat/patches/whox_colon.patch | 29 ++++++++++++++++++++++++
 srcpkgs/hexchat/template                 | 10 ++++----
 3 files changed, 60 insertions(+), 5 deletions(-)
 create mode 100644 srcpkgs/hexchat/patches/url_delim.patch
 create mode 100644 srcpkgs/hexchat/patches/whox_colon.patch

diff --git a/srcpkgs/hexchat/patches/url_delim.patch b/srcpkgs/hexchat/patches/url_delim.patch
new file mode 100644
index 00000000000000..fbb53da966d7a4
--- /dev/null
+++ b/srcpkgs/hexchat/patches/url_delim.patch
@@ -0,0 +1,26 @@
+    OFrom 2305a0b0fe3e66e1cd95683af2c6f02e7ff29220 Mon Sep 17 00:00:00 2001
+From: Antonio Prcela <antonio.prcela@gmail.com>
+Date: Fri, 12 Mar 2021 09:40:40 +0100
+Subject: [PATCH] Open links properly if ending with "
+
+---
+ src/fe-gtk/xtext.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)e
+
+--
+
+Modified by 0x5c: addded case for single quote character
+
+diff --git a/src/fe-gtk/xtext.c b/src/fe-gtk/xtext.c
+index 418bb4da5..fb4962e12 100644
+--- a/src/fe-gtk/xtext.c
++++ b/src/fe-gtk/xtext.c
+@@ -64,7 +64,7 @@
+ 
+ /* is delimiter */
+ #define is_del(c) \
+-	(c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0)
++	(c == ' ' || c == '\n' || c == '>' || c == '<' || c == 0 || c == '"' || c == '\'')
+ 
+ /* force scrolling off */
+ #define dontscroll(buf) (buf)->last_pixel_pos = 0x7fffffff
diff --git a/srcpkgs/hexchat/patches/whox_colon.patch b/srcpkgs/hexchat/patches/whox_colon.patch
new file mode 100644
index 00000000000000..89d35850ac173c
--- /dev/null
+++ b/srcpkgs/hexchat/patches/whox_colon.patch
@@ -0,0 +1,29 @@
+From e1bff829a01715c7c9053b3fb8cc5ecb9d041b43 Mon Sep 17 00:00:00 2001
+From: classabbyamp <5366828+classabbyamp@users.noreply.github.com>
+Date: Sun, 6 Aug 2023 10:44:27 -0400
+Subject: [PATCH] proto-irc.c: handle WHOX replies with realnames that aren't
+ :-prefixed
+
+the colon is not required if the last argument is a single word
+
+this was causing issues where the user info context menu was stripping
+the first character of single-word realnames when sending the WHOX
+command `WHO #channel %chtsunfra,152`. Discovered the issue by seeing that
+plain `WHO #channel` fixed the issue temporarily.
+---
+ src/common/proto-irc.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/common/proto-irc.c b/src/common/proto-irc.c
+index 5b8e02c48..9ef25730b 100644
+--- a/src/common/proto-irc.c
++++ b/src/common/proto-irc.c
+@@ -762,7 +762,7 @@ process_numeric (session * sess, int n,
+ 
+ 				/* :server 354 yournick 152 #channel ~ident host servname nick H account :realname */
+ 				inbound_user_info (sess, word[5], word[6], word[7], word[8],
+-										 word[9], word_eol[12]+1, word[11], away,
++										 word[9], word_eol[12][0] == ':' ? word_eol[12] + 1 : word_eol[12], word[11], away,
+ 										 tags_data);
+ 
+ 				/* try to show only user initiated whos */
diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index b894acbd74a974..b0f495a2b3ff2b 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
-version=2.16.1
-revision=7
+version=2.16.2
+revision=1
 build_style=meson
 configure_args="-Ddbus=enabled -Dtls=enabled
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3
@@ -17,7 +17,7 @@ license="GPL-2.0-or-later"
 homepage="https://hexchat.github.io/"
 changelog="https://hexchat.readthedocs.org/en/latest/changelog.html"
 distfiles="https://github.com/hexchat/hexchat/archive/v${version}.tar.gz"
-checksum=f15bc487312a96a902e042e8f197a8494a29bcf4a00bbfd276a5e8154263bfe5
+checksum=486d73cdb6a89fa91cfbe242107901d06e777bea25956a7786c4a831a2caa0e3
 build_options="LuaJIT"
 lib32disabled=yes
 
@@ -33,8 +33,8 @@ fi
 
 post_install() {
 	# Remove useless files.
-	rm -rf ${DESTDIR}/usr/include
-	rm -rf ${DESTDIR}/usr/lib/pkgconfig
+	rm -rf "${DESTDIR}/usr/include"
+	rm -rf "${DESTDIR}/usr/lib/pkgconfig"
 }
 
 hexchat-perl_package() {

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PR PATCH] [Merged]: hexchat: update to 2.16.2.
  2024-02-19 22:43 [PR PATCH] hexchat: update to 2.16.2 0x5c
@ 2024-03-01 14:53 ` ahesford
  0 siblings, 0 replies; 4+ messages in thread
From: ahesford @ 2024-03-01 14:53 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1087 bytes --]

There's a merged pull request on the void-packages repository

hexchat: update to 2.16.2.
https://github.com/void-linux/void-packages/pull/48840

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **YES**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PR PATCH] hexchat: update to 2.16.2
@ 2024-02-18 12:19 zlice
  0 siblings, 0 replies; 4+ messages in thread
From: zlice @ 2024-02-18 12:19 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 537 bytes --]

There is a new pull request by zlice against master on the void-packages repository

https://github.com/zlice/void-packages hexchat-2.16.2
https://github.com/void-linux/void-packages/pull/48814

hexchat: update to 2.16.2
#### Testing the changes
- I tested the changes in this PR: **YES**

#### Local build testing
- I built this PR locally for my native architecture, **x86_64**

Final release - https://hexchat.github.io/news/2.16.2.html

A patch file from https://github.com/void-linux/void-packages/pull/48814.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-hexchat-2.16.2-48814.patch --]
[-- Type: text/x-diff, Size: 1105 bytes --]

From 65be7c072a2caa16ec4b5cf0fd2d05fce17ea32e Mon Sep 17 00:00:00 2001
From: zlice <zlice555@gmail.com>
Date: Sun, 18 Feb 2024 07:18:03 -0500
Subject: [PATCH] hexchat: update to 2.16.2

---
 srcpkgs/hexchat/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index b894acbd74a97..fa3b8837a071e 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,7 +1,7 @@
 # Template file for 'hexchat'
 pkgname=hexchat
-version=2.16.1
-revision=7
+version=2.16.2
+revision=1
 build_style=meson
 configure_args="-Ddbus=enabled -Dtls=enabled
  -Dwith-perl=/usr/bin/perl -Dwith-python=python3
@@ -17,7 +17,7 @@ license="GPL-2.0-or-later"
 homepage="https://hexchat.github.io/"
 changelog="https://hexchat.readthedocs.org/en/latest/changelog.html"
 distfiles="https://github.com/hexchat/hexchat/archive/v${version}.tar.gz"
-checksum=f15bc487312a96a902e042e8f197a8494a29bcf4a00bbfd276a5e8154263bfe5
+checksum=486d73cdb6a89fa91cfbe242107901d06e777bea25956a7786c4a831a2caa0e3
 build_options="LuaJIT"
 lib32disabled=yes
 

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PR PATCH] hexchat: update to 2.16.2.
@ 2024-02-13 22:14 caughtquick
  0 siblings, 0 replies; 4+ messages in thread
From: caughtquick @ 2024-02-13 22:14 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1114 bytes --]

There is a new pull request by caughtquick against master on the void-packages repository

https://github.com/caughtquick/void-packages hexchat
https://github.com/void-linux/void-packages/pull/48709

hexchat: update to 2.16.2.
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, (x86_64-glibc)



A patch file from https://github.com/void-linux/void-packages/pull/48709.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-hexchat-48709.patch --]
[-- Type: text/x-diff, Size: 1053 bytes --]

From e35e4953021cb5515026bf06a200f4b758100ecc Mon Sep 17 00:00:00 2001
From: caughtquick <abhijit@sipahimalani.me>
Date: Tue, 13 Feb 2024 14:13:40 -0800
Subject: [PATCH] hexchat: update to 2.16.2.

---
 srcpkgs/hexchat/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hexchat/template b/srcpkgs/hexchat/template
index b894acbd74a97..dc07b4ffa949d 100644
--- a/srcpkgs/hexchat/template
+++ b/srcpkgs/hexchat/template
@@ -1,6 +1,6 @@
 # Template file for 'hexchat'
 pkgname=hexchat
-version=2.16.1
+version=2.16.2
 revision=7
 build_style=meson
 configure_args="-Ddbus=enabled -Dtls=enabled
@@ -17,7 +17,7 @@ license="GPL-2.0-or-later"
 homepage="https://hexchat.github.io/"
 changelog="https://hexchat.readthedocs.org/en/latest/changelog.html"
 distfiles="https://github.com/hexchat/hexchat/archive/v${version}.tar.gz"
-checksum=f15bc487312a96a902e042e8f197a8494a29bcf4a00bbfd276a5e8154263bfe5
+checksum=486d73cdb6a89fa91cfbe242107901d06e777bea25956a7786c4a831a2caa0e3
 build_options="LuaJIT"
 lib32disabled=yes
 

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2024-03-01 14:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-02-19 22:43 [PR PATCH] hexchat: update to 2.16.2 0x5c
2024-03-01 14:53 ` [PR PATCH] [Merged]: " ahesford
  -- strict thread matches above, loose matches on Subject: below --
2024-02-18 12:19 [PR PATCH] " zlice
2024-02-13 22:14 caughtquick

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).