Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] profanity: update to 0.13.1.
@ 2022-11-12 15:23 dataCobra
  2022-11-13 10:10 ` [PR PATCH] [Updated] " dataCobra
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: dataCobra @ 2022-11-12 15:23 UTC (permalink / raw)
  To: ml

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

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

https://github.com/dataCobra/void-packages profanity
https://github.com/void-linux/void-packages/pull/40488

profanity: update to 0.13.1.
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl (crossbuild)


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

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

From 4c153d4d98b133cf0c8af1d813a52262c5e3364c Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Sat, 12 Nov 2022 16:15:51 +0100
Subject: [PATCH] profanity: update to 0.13.1.

---
 srcpkgs/profanity/patches/python-3.11.patch | 21 ---------------------
 srcpkgs/profanity/template                  |  6 +++---
 2 files changed, 3 insertions(+), 24 deletions(-)
 delete mode 100644 srcpkgs/profanity/patches/python-3.11.patch

diff --git a/srcpkgs/profanity/patches/python-3.11.patch b/srcpkgs/profanity/patches/python-3.11.patch
deleted file mode 100644
index 56e9762ad5dc..000000000000
--- a/srcpkgs/profanity/patches/python-3.11.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/src/plugins/python_api.c b/src/plugins/python_api.c
-index 0b91cf70..091b3b4a 100644
---- a/src/plugins/python_api.c
-+++ b/src/plugins/python_api.c
-@@ -1619,8 +1619,16 @@ static char*
- _python_plugin_name(void)
- {
-     PyThreadState* ts = PyThreadState_Get();
-+#if PY_VERSION_HEX >= 0x030B0000
-+    PyFrameObject* frame = PyThreadState_GetFrame(ts);
-+    PyCodeObject* code = PyFrame_GetCode(frame);
-+    char* filename = python_str_or_unicode_to_string(code->co_filename);
-+    Py_DECREF(code);
-+    Py_DECREF(frame);
-+#else
-     PyFrameObject* frame = ts->frame;
-     char* filename = python_str_or_unicode_to_string(frame->f_code->co_filename);
-+#endif
-     gchar** split = g_strsplit(filename, "/", 0);
-     free(filename);
-     char* plugin_name = strdup(split[g_strv_length(split) - 1]);
diff --git a/srcpkgs/profanity/template b/srcpkgs/profanity/template
index 96b1db6b3f1b..da07a0fe4672 100644
--- a/srcpkgs/profanity/template
+++ b/srcpkgs/profanity/template
@@ -1,7 +1,7 @@
 # Template file for 'profanity'
 pkgname=profanity
-version=0.12.1
-revision=2
+version=0.13.1
+revision=1
 build_style=gnu-configure
 configure_args="$(vopt_enable notify notifications) $(vopt_enable otr)
  $(vopt_enable pgp) $(vopt_enable python python-plugins) $(vopt_enable plugins)
@@ -20,7 +20,7 @@ license="GPL-3.0-or-later"
 homepage="https://profanity-im.github.io/"
 changelog="https://raw.githubusercontent.com/profanity-im/profanity/master/CHANGELOG"
 distfiles="https://github.com/boothj5/profanity/releases/download/${version}/profanity-${version}.tar.gz"
-checksum=e344481e7bf3b16baf58a169d321b809c4700becffb70db6f1c39adc3fad306e
+checksum=2b5075272e7ec9d9c991542e592b1d474fff88c61c66e7e23096ad306ed2c84a
 
 case "$XBPS_TARGET_MACHINE" in
 	arm*)

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

* Re: [PR PATCH] [Updated] profanity: update to 0.13.1.
  2022-11-12 15:23 [PR PATCH] profanity: update to 0.13.1 dataCobra
@ 2022-11-13 10:10 ` dataCobra
  2022-11-16 12:22 ` dataCobra
  2022-11-17 12:37 ` [PR PATCH] [Merged]: " paper42
  2 siblings, 0 replies; 4+ messages in thread
From: dataCobra @ 2022-11-13 10:10 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by dataCobra against master on the void-packages repository

https://github.com/dataCobra/void-packages profanity
https://github.com/void-linux/void-packages/pull/40488

profanity: update to 0.13.1.
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl (crossbuild)


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

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

From 758cb1f4a0dae27f7d214a16b813741c5e55918d Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Sun, 13 Nov 2022 11:08:44 +0100
Subject: [PATCH] profanity: update to 0.13.1.

---
 srcpkgs/profanity/patches/python-3.11.patch | 21 ---------------------
 srcpkgs/profanity/template                  |  6 +++---
 2 files changed, 3 insertions(+), 24 deletions(-)
 delete mode 100644 srcpkgs/profanity/patches/python-3.11.patch

diff --git a/srcpkgs/profanity/patches/python-3.11.patch b/srcpkgs/profanity/patches/python-3.11.patch
deleted file mode 100644
index 56e9762ad5dc..000000000000
--- a/srcpkgs/profanity/patches/python-3.11.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/src/plugins/python_api.c b/src/plugins/python_api.c
-index 0b91cf70..091b3b4a 100644
---- a/src/plugins/python_api.c
-+++ b/src/plugins/python_api.c
-@@ -1619,8 +1619,16 @@ static char*
- _python_plugin_name(void)
- {
-     PyThreadState* ts = PyThreadState_Get();
-+#if PY_VERSION_HEX >= 0x030B0000
-+    PyFrameObject* frame = PyThreadState_GetFrame(ts);
-+    PyCodeObject* code = PyFrame_GetCode(frame);
-+    char* filename = python_str_or_unicode_to_string(code->co_filename);
-+    Py_DECREF(code);
-+    Py_DECREF(frame);
-+#else
-     PyFrameObject* frame = ts->frame;
-     char* filename = python_str_or_unicode_to_string(frame->f_code->co_filename);
-+#endif
-     gchar** split = g_strsplit(filename, "/", 0);
-     free(filename);
-     char* plugin_name = strdup(split[g_strv_length(split) - 1]);
diff --git a/srcpkgs/profanity/template b/srcpkgs/profanity/template
index 96b1db6b3f1b..da07a0fe4672 100644
--- a/srcpkgs/profanity/template
+++ b/srcpkgs/profanity/template
@@ -1,7 +1,7 @@
 # Template file for 'profanity'
 pkgname=profanity
-version=0.12.1
-revision=2
+version=0.13.1
+revision=1
 build_style=gnu-configure
 configure_args="$(vopt_enable notify notifications) $(vopt_enable otr)
  $(vopt_enable pgp) $(vopt_enable python python-plugins) $(vopt_enable plugins)
@@ -20,7 +20,7 @@ license="GPL-3.0-or-later"
 homepage="https://profanity-im.github.io/"
 changelog="https://raw.githubusercontent.com/profanity-im/profanity/master/CHANGELOG"
 distfiles="https://github.com/boothj5/profanity/releases/download/${version}/profanity-${version}.tar.gz"
-checksum=e344481e7bf3b16baf58a169d321b809c4700becffb70db6f1c39adc3fad306e
+checksum=2b5075272e7ec9d9c991542e592b1d474fff88c61c66e7e23096ad306ed2c84a
 
 case "$XBPS_TARGET_MACHINE" in
 	arm*)

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

* Re: [PR PATCH] [Updated] profanity: update to 0.13.1.
  2022-11-12 15:23 [PR PATCH] profanity: update to 0.13.1 dataCobra
  2022-11-13 10:10 ` [PR PATCH] [Updated] " dataCobra
@ 2022-11-16 12:22 ` dataCobra
  2022-11-17 12:37 ` [PR PATCH] [Merged]: " paper42
  2 siblings, 0 replies; 4+ messages in thread
From: dataCobra @ 2022-11-16 12:22 UTC (permalink / raw)
  To: ml

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

There is an updated pull request by dataCobra against master on the void-packages repository

https://github.com/dataCobra/void-packages profanity
https://github.com/void-linux/void-packages/pull/40488

profanity: update to 0.13.1.
#### Testing the changes
- I tested the changes in this PR: **briefly**

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl (crossbuild)


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

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

From 733a0de53f39887c95698a2a1c35d105c4294a7d Mon Sep 17 00:00:00 2001
From: dataCobra <datacobra@thinkbot.de>
Date: Sun, 13 Nov 2022 11:08:44 +0100
Subject: [PATCH] profanity: update to 0.13.1.

---
 srcpkgs/profanity/patches/python-3.11.patch | 21 ---------------------
 srcpkgs/profanity/template                  |  6 +++---
 2 files changed, 3 insertions(+), 24 deletions(-)
 delete mode 100644 srcpkgs/profanity/patches/python-3.11.patch

diff --git a/srcpkgs/profanity/patches/python-3.11.patch b/srcpkgs/profanity/patches/python-3.11.patch
deleted file mode 100644
index 56e9762ad5dc..000000000000
--- a/srcpkgs/profanity/patches/python-3.11.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/src/plugins/python_api.c b/src/plugins/python_api.c
-index 0b91cf70..091b3b4a 100644
---- a/src/plugins/python_api.c
-+++ b/src/plugins/python_api.c
-@@ -1619,8 +1619,16 @@ static char*
- _python_plugin_name(void)
- {
-     PyThreadState* ts = PyThreadState_Get();
-+#if PY_VERSION_HEX >= 0x030B0000
-+    PyFrameObject* frame = PyThreadState_GetFrame(ts);
-+    PyCodeObject* code = PyFrame_GetCode(frame);
-+    char* filename = python_str_or_unicode_to_string(code->co_filename);
-+    Py_DECREF(code);
-+    Py_DECREF(frame);
-+#else
-     PyFrameObject* frame = ts->frame;
-     char* filename = python_str_or_unicode_to_string(frame->f_code->co_filename);
-+#endif
-     gchar** split = g_strsplit(filename, "/", 0);
-     free(filename);
-     char* plugin_name = strdup(split[g_strv_length(split) - 1]);
diff --git a/srcpkgs/profanity/template b/srcpkgs/profanity/template
index 96b1db6b3f1b..da07a0fe4672 100644
--- a/srcpkgs/profanity/template
+++ b/srcpkgs/profanity/template
@@ -1,7 +1,7 @@
 # Template file for 'profanity'
 pkgname=profanity
-version=0.12.1
-revision=2
+version=0.13.1
+revision=1
 build_style=gnu-configure
 configure_args="$(vopt_enable notify notifications) $(vopt_enable otr)
  $(vopt_enable pgp) $(vopt_enable python python-plugins) $(vopt_enable plugins)
@@ -20,7 +20,7 @@ license="GPL-3.0-or-later"
 homepage="https://profanity-im.github.io/"
 changelog="https://raw.githubusercontent.com/profanity-im/profanity/master/CHANGELOG"
 distfiles="https://github.com/boothj5/profanity/releases/download/${version}/profanity-${version}.tar.gz"
-checksum=e344481e7bf3b16baf58a169d321b809c4700becffb70db6f1c39adc3fad306e
+checksum=2b5075272e7ec9d9c991542e592b1d474fff88c61c66e7e23096ad306ed2c84a
 
 case "$XBPS_TARGET_MACHINE" in
 	arm*)

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

* Re: [PR PATCH] [Merged]: profanity: update to 0.13.1.
  2022-11-12 15:23 [PR PATCH] profanity: update to 0.13.1 dataCobra
  2022-11-13 10:10 ` [PR PATCH] [Updated] " dataCobra
  2022-11-16 12:22 ` dataCobra
@ 2022-11-17 12:37 ` paper42
  2 siblings, 0 replies; 4+ messages in thread
From: paper42 @ 2022-11-17 12:37 UTC (permalink / raw)
  To: ml

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

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

profanity: update to 0.13.1.
https://github.com/void-linux/void-packages/pull/40488

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

#### Local build testing
- I built this PR locally for my native architecture, (x86_64)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl (crossbuild)


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

end of thread, other threads:[~2022-11-17 12:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-12 15:23 [PR PATCH] profanity: update to 0.13.1 dataCobra
2022-11-13 10:10 ` [PR PATCH] [Updated] " dataCobra
2022-11-16 12:22 ` dataCobra
2022-11-17 12:37 ` [PR PATCH] [Merged]: " paper42

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).