Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] gcr: update to 3.41.2
@ 2024-04-19 12:25 chrysos349
  2024-04-19 12:42 ` [PR PATCH] [Updated] " chrysos349
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: chrysos349 @ 2024-04-19 12:25 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chrysos349/void-packages gcr
https://github.com/void-linux/void-packages/pull/49906

gcr: update to 3.41.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)

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

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

From 7a0de204fc493448a0519a7ca686ca8dc4d3aa58 Mon Sep 17 00:00:00 2001
From: chrysos349 <chrysostom349@gmail.com>
Date: Fri, 19 Apr 2024 15:24:52 +0300
Subject: [PATCH] gcr: update to 3.41.2

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

diff --git a/srcpkgs/gcr/template b/srcpkgs/gcr/template
index b43ee6b1b423ed..3f31269cc172a4 100644
--- a/srcpkgs/gcr/template
+++ b/srcpkgs/gcr/template
@@ -1,6 +1,6 @@
 # Template file for 'gcr'
 pkgname=gcr
-version=3.41.1
+version=3.41.2
 revision=1
 build_style=meson
 build_helper="gir"
@@ -14,10 +14,10 @@ short_desc="GNOME crypto package"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.0-or-later, LGPL-2.1-or-later, GPL-2.0-or-later"
 homepage="https://gitlab.gnome.org/GNOME/gcr"
+changelog="https://gitlab.gnome.org/GNOME/gcr/-/raw/3.41.2/NEWS"
 distfiles="${GNOME_SITE}/gcr/${version%.*}/gcr-${version}.tar.xz"
-checksum=bb7128a3c2febbfee9c03b90d77d498d0ceb237b0789802d60185c71c4bea24f
+checksum=bad10f3c553a0e1854649ab59c5b2434da22ca1a54ae6138f1f53961567e1ab7
 make_check_pre="dbus-run-session"
-make_check=no # Gcr:ERROR:../gcr/test-gnupg-collection.c:203:test_load: assertion failed: (record)
 
 # Package build options
 build_options="gir"

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

* Re: [PR PATCH] [Updated] gcr: update to 3.41.2
  2024-04-19 12:25 [PR PATCH] gcr: update to 3.41.2 chrysos349
@ 2024-04-19 12:42 ` chrysos349
  2024-04-19 12:46 ` [PR REVIEW] " oreo639
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: chrysos349 @ 2024-04-19 12:42 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chrysos349/void-packages gcr
https://github.com/void-linux/void-packages/pull/49906

gcr: update to 3.41.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)

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

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

From 491d348f5c937a61cb535b370715db704262d452 Mon Sep 17 00:00:00 2001
From: chrysos349 <chrysostom349@gmail.com>
Date: Fri, 19 Apr 2024 15:24:52 +0300
Subject: [PATCH] gcr: update to 3.41.2

---
 srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch | 41 ++++++++++++++++++++++
 srcpkgs/gcr/template                       |  5 +--
 2 files changed, 44 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch

diff --git a/srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch b/srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch
new file mode 100644
index 00000000000000..b8e99600a831db
--- /dev/null
+++ b/srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch
@@ -0,0 +1,41 @@
+From: Laurent Bigonville <bigon@debian.org>
+Date: Sun, 19 Mar 2023 12:15:50 +0100
+Subject: Fix FTBFS on x32
+
+This patch is inspired from Simon proposal on the upstream bug:
+https://gitlab.gnome.org/GNOME/gcr/-/issues/45
+---
+ egg/egg-asn1x.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/egg/egg-asn1x.c b/egg/egg-asn1x.c
+index b7d9d11..63e6b16 100644
+--- a/egg/egg-asn1x.c
++++ b/egg/egg-asn1x.c
+@@ -2213,7 +2213,7 @@ anode_read_time (GNode *node,
+ 		return anode_failure (node, "invalid time content");
+ 
+ 	/* In order to work with 32 bit time_t. */
+-	if (sizeof (time_t) <= 4 && when->tm_year >= 138) {
++	if ((sizeof (time_t) <= 4 || sizeof (glong) <= 4) && when->tm_year >= 138) {
+ 		*value = (time_t)2145914603;  /* 2037-12-31 23:23:23 */
+ 
+ 	/* Convert to seconds since epoch */
+@@ -4740,7 +4740,7 @@ egg_asn1x_parse_time_general (const gchar *time, gssize n_time)
+ 		return -1;
+ 
+ 	/* In order to work with 32 bit time_t. */
+-	if (sizeof (time_t) <= 4 && when.tm_year >= 138) {
++	if ((sizeof (time_t) <= 4 || sizeof (glong) <= 4) && when.tm_year >= 138) {
+ 		value = (time_t)2145914603;  /* 2037-12-31 23:23:23 */
+ 
+ 	/* Convert to seconds since epoch */
+@@ -4771,7 +4771,7 @@ egg_asn1x_parse_time_utc (const gchar *time, gssize n_time)
+ 		return -1;
+ 
+ 	/* In order to work with 32 bit time_t. */
+-	if (sizeof (time_t) <= 4 && when.tm_year >= 138) {
++	if ((sizeof (time_t) <= 4 || sizeof (glong) <= 4) && when.tm_year >= 138) {
+ 		value = (time_t)2145914603;  /* 2037-12-31 23:23:23 */
+ 
+ 	/* Convert to seconds since epoch */
diff --git a/srcpkgs/gcr/template b/srcpkgs/gcr/template
index b43ee6b1b423ed..865fb21ba88746 100644
--- a/srcpkgs/gcr/template
+++ b/srcpkgs/gcr/template
@@ -1,6 +1,6 @@
 # Template file for 'gcr'
 pkgname=gcr
-version=3.41.1
+version=3.41.2
 revision=1
 build_style=meson
 build_helper="gir"
@@ -14,8 +14,9 @@ short_desc="GNOME crypto package"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.0-or-later, LGPL-2.1-or-later, GPL-2.0-or-later"
 homepage="https://gitlab.gnome.org/GNOME/gcr"
+changelog="https://gitlab.gnome.org/GNOME/gcr/-/raw/3.41.2/NEWS"
 distfiles="${GNOME_SITE}/gcr/${version%.*}/gcr-${version}.tar.xz"
-checksum=bb7128a3c2febbfee9c03b90d77d498d0ceb237b0789802d60185c71c4bea24f
+checksum=bad10f3c553a0e1854649ab59c5b2434da22ca1a54ae6138f1f53961567e1ab7
 make_check_pre="dbus-run-session"
 make_check=no # Gcr:ERROR:../gcr/test-gnupg-collection.c:203:test_load: assertion failed: (record)
 

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

* Re: [PR REVIEW] gcr: update to 3.41.2
  2024-04-19 12:25 [PR PATCH] gcr: update to 3.41.2 chrysos349
  2024-04-19 12:42 ` [PR PATCH] [Updated] " chrysos349
@ 2024-04-19 12:46 ` oreo639
  2024-04-19 12:49 ` [PR PATCH] [Updated] " chrysos349
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: oreo639 @ 2024-04-19 12:46 UTC (permalink / raw)
  To: ml

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

New review comment by oreo639 on void-packages repository

https://github.com/void-linux/void-packages/pull/49906#discussion_r1572313600

Comment:
This should be https://gitlab.gnome.org/GNOME/gcr/-/raw/gcr-3-41/NEWS

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

* Re: [PR PATCH] [Updated] gcr: update to 3.41.2
  2024-04-19 12:25 [PR PATCH] gcr: update to 3.41.2 chrysos349
  2024-04-19 12:42 ` [PR PATCH] [Updated] " chrysos349
  2024-04-19 12:46 ` [PR REVIEW] " oreo639
@ 2024-04-19 12:49 ` chrysos349
  2024-04-19 12:49 ` [PR REVIEW] " chrysos349
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: chrysos349 @ 2024-04-19 12:49 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chrysos349/void-packages gcr
https://github.com/void-linux/void-packages/pull/49906

gcr: update to 3.41.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)

p.s. all tests pass locally.  tests below fail in ci

**x86_64, i686**
`22/47 gcr:gck / object                  FAIL            0.16s   killed by signal 11 SIGSEGV`
**x86_64-musl**
`43/47 gcr:gcr-base / gnupg-collection   FAIL            0.17s   killed by signal 6 SIGABRT`


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

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

From 03425ba0e95d553316dda11f99ae43992ca56d0d Mon Sep 17 00:00:00 2001
From: chrysos349 <chrysostom349@gmail.com>
Date: Fri, 19 Apr 2024 15:24:52 +0300
Subject: [PATCH] gcr: update to 3.41.2

---
 srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch | 41 ++++++++++++++++++++++
 srcpkgs/gcr/template                       |  5 +--
 2 files changed, 44 insertions(+), 2 deletions(-)
 create mode 100644 srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch

diff --git a/srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch b/srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch
new file mode 100644
index 00000000000000..b8e99600a831db
--- /dev/null
+++ b/srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch
@@ -0,0 +1,41 @@
+From: Laurent Bigonville <bigon@debian.org>
+Date: Sun, 19 Mar 2023 12:15:50 +0100
+Subject: Fix FTBFS on x32
+
+This patch is inspired from Simon proposal on the upstream bug:
+https://gitlab.gnome.org/GNOME/gcr/-/issues/45
+---
+ egg/egg-asn1x.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/egg/egg-asn1x.c b/egg/egg-asn1x.c
+index b7d9d11..63e6b16 100644
+--- a/egg/egg-asn1x.c
++++ b/egg/egg-asn1x.c
+@@ -2213,7 +2213,7 @@ anode_read_time (GNode *node,
+ 		return anode_failure (node, "invalid time content");
+ 
+ 	/* In order to work with 32 bit time_t. */
+-	if (sizeof (time_t) <= 4 && when->tm_year >= 138) {
++	if ((sizeof (time_t) <= 4 || sizeof (glong) <= 4) && when->tm_year >= 138) {
+ 		*value = (time_t)2145914603;  /* 2037-12-31 23:23:23 */
+ 
+ 	/* Convert to seconds since epoch */
+@@ -4740,7 +4740,7 @@ egg_asn1x_parse_time_general (const gchar *time, gssize n_time)
+ 		return -1;
+ 
+ 	/* In order to work with 32 bit time_t. */
+-	if (sizeof (time_t) <= 4 && when.tm_year >= 138) {
++	if ((sizeof (time_t) <= 4 || sizeof (glong) <= 4) && when.tm_year >= 138) {
+ 		value = (time_t)2145914603;  /* 2037-12-31 23:23:23 */
+ 
+ 	/* Convert to seconds since epoch */
+@@ -4771,7 +4771,7 @@ egg_asn1x_parse_time_utc (const gchar *time, gssize n_time)
+ 		return -1;
+ 
+ 	/* In order to work with 32 bit time_t. */
+-	if (sizeof (time_t) <= 4 && when.tm_year >= 138) {
++	if ((sizeof (time_t) <= 4 || sizeof (glong) <= 4) && when.tm_year >= 138) {
+ 		value = (time_t)2145914603;  /* 2037-12-31 23:23:23 */
+ 
+ 	/* Convert to seconds since epoch */
diff --git a/srcpkgs/gcr/template b/srcpkgs/gcr/template
index b43ee6b1b423ed..a5cdbffe164dff 100644
--- a/srcpkgs/gcr/template
+++ b/srcpkgs/gcr/template
@@ -1,6 +1,6 @@
 # Template file for 'gcr'
 pkgname=gcr
-version=3.41.1
+version=3.41.2
 revision=1
 build_style=meson
 build_helper="gir"
@@ -14,8 +14,9 @@ short_desc="GNOME crypto package"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.0-or-later, LGPL-2.1-or-later, GPL-2.0-or-later"
 homepage="https://gitlab.gnome.org/GNOME/gcr"
+changelog="https://gitlab.gnome.org/GNOME/gcr/-/raw/gcr-3-41/NEWS"
 distfiles="${GNOME_SITE}/gcr/${version%.*}/gcr-${version}.tar.xz"
-checksum=bb7128a3c2febbfee9c03b90d77d498d0ceb237b0789802d60185c71c4bea24f
+checksum=bad10f3c553a0e1854649ab59c5b2434da22ca1a54ae6138f1f53961567e1ab7
 make_check_pre="dbus-run-session"
 make_check=no # Gcr:ERROR:../gcr/test-gnupg-collection.c:203:test_load: assertion failed: (record)
 

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

* Re: [PR REVIEW] gcr: update to 3.41.2
  2024-04-19 12:25 [PR PATCH] gcr: update to 3.41.2 chrysos349
                   ` (2 preceding siblings ...)
  2024-04-19 12:49 ` [PR PATCH] [Updated] " chrysos349
@ 2024-04-19 12:49 ` chrysos349
  2024-04-19 23:42 ` oreo639
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: chrysos349 @ 2024-04-19 12:49 UTC (permalink / raw)
  To: ml

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

New review comment by chrysos349 on void-packages repository

https://github.com/void-linux/void-packages/pull/49906#discussion_r1572320251

Comment:
fixed

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

* Re: gcr: update to 3.41.2
  2024-04-19 12:25 [PR PATCH] gcr: update to 3.41.2 chrysos349
                   ` (3 preceding siblings ...)
  2024-04-19 12:49 ` [PR REVIEW] " chrysos349
@ 2024-04-19 23:42 ` oreo639
  2024-04-20  5:59 ` [PR PATCH] [Updated] " chrysos349
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: oreo639 @ 2024-04-19 23:42 UTC (permalink / raw)
  To: ml

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

New comment by oreo639 on void-packages repository

https://github.com/void-linux/void-packages/pull/49906#issuecomment-2067397401

Comment:
Add `-Dssh_agent=false` and pull https://github.com/void-linux/void-packages/pull/49907 in to this pr, with the `rm ${DESTDIR}/usr/libexec/gcr-ssh-agent` removed.

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

* Re: [PR PATCH] [Updated] gcr: update to 3.41.2
  2024-04-19 12:25 [PR PATCH] gcr: update to 3.41.2 chrysos349
                   ` (4 preceding siblings ...)
  2024-04-19 23:42 ` oreo639
@ 2024-04-20  5:59 ` chrysos349
  2024-04-20  6:00 ` gcr: update to 3.41.2, gcr4: update to 4.3.0 chrysos349
  2024-04-21  3:40 ` [PR PATCH] [Merged]: " oreo639
  7 siblings, 0 replies; 9+ messages in thread
From: chrysos349 @ 2024-04-20  5:59 UTC (permalink / raw)
  To: ml

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

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

https://github.com/chrysos349/void-packages gcr
https://github.com/void-linux/void-packages/pull/49906

gcr: update to 3.41.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)

p.s. all tests pass locally.  tests below fail in ci

**x86_64, i686**
`22/47 gcr:gck / object                  FAIL            0.16s   killed by signal 11 SIGSEGV`
**x86_64-musl**
`43/47 gcr:gcr-base / gnupg-collection   FAIL            0.17s   killed by signal 6 SIGABRT`


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

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

From 37045573f5b839df7412d1483069885668724380 Mon Sep 17 00:00:00 2001
From: chrysos349 <chrysostom349@gmail.com>
Date: Fri, 19 Apr 2024 15:24:52 +0300
Subject: [PATCH 1/2] gcr: update to 3.41.2

---
 srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch | 41 ++++++++++++++++++++++
 srcpkgs/gcr/template                       |  8 +++--
 2 files changed, 46 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch

diff --git a/srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch b/srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch
new file mode 100644
index 00000000000000..b8e99600a831db
--- /dev/null
+++ b/srcpkgs/gcr/patches/Fix-FTBFS-on-x32.patch
@@ -0,0 +1,41 @@
+From: Laurent Bigonville <bigon@debian.org>
+Date: Sun, 19 Mar 2023 12:15:50 +0100
+Subject: Fix FTBFS on x32
+
+This patch is inspired from Simon proposal on the upstream bug:
+https://gitlab.gnome.org/GNOME/gcr/-/issues/45
+---
+ egg/egg-asn1x.c | 6 +++---
+ 1 file changed, 3 insertions(+), 3 deletions(-)
+
+diff --git a/egg/egg-asn1x.c b/egg/egg-asn1x.c
+index b7d9d11..63e6b16 100644
+--- a/egg/egg-asn1x.c
++++ b/egg/egg-asn1x.c
+@@ -2213,7 +2213,7 @@ anode_read_time (GNode *node,
+ 		return anode_failure (node, "invalid time content");
+ 
+ 	/* In order to work with 32 bit time_t. */
+-	if (sizeof (time_t) <= 4 && when->tm_year >= 138) {
++	if ((sizeof (time_t) <= 4 || sizeof (glong) <= 4) && when->tm_year >= 138) {
+ 		*value = (time_t)2145914603;  /* 2037-12-31 23:23:23 */
+ 
+ 	/* Convert to seconds since epoch */
+@@ -4740,7 +4740,7 @@ egg_asn1x_parse_time_general (const gchar *time, gssize n_time)
+ 		return -1;
+ 
+ 	/* In order to work with 32 bit time_t. */
+-	if (sizeof (time_t) <= 4 && when.tm_year >= 138) {
++	if ((sizeof (time_t) <= 4 || sizeof (glong) <= 4) && when.tm_year >= 138) {
+ 		value = (time_t)2145914603;  /* 2037-12-31 23:23:23 */
+ 
+ 	/* Convert to seconds since epoch */
+@@ -4771,7 +4771,7 @@ egg_asn1x_parse_time_utc (const gchar *time, gssize n_time)
+ 		return -1;
+ 
+ 	/* In order to work with 32 bit time_t. */
+-	if (sizeof (time_t) <= 4 && when.tm_year >= 138) {
++	if ((sizeof (time_t) <= 4 || sizeof (glong) <= 4) && when.tm_year >= 138) {
+ 		value = (time_t)2145914603;  /* 2037-12-31 23:23:23 */
+ 
+ 	/* Convert to seconds since epoch */
diff --git a/srcpkgs/gcr/template b/srcpkgs/gcr/template
index b43ee6b1b423ed..fc3b9eaa80eb80 100644
--- a/srcpkgs/gcr/template
+++ b/srcpkgs/gcr/template
@@ -1,10 +1,11 @@
 # Template file for 'gcr'
 pkgname=gcr
-version=3.41.1
+version=3.41.2
 revision=1
 build_style=meson
 build_helper="gir"
-configure_args="$(vopt_bool gir introspection) $(vopt_bool gir gtk_doc)"
+configure_args="$(vopt_bool gir introspection) $(vopt_bool gir gtk_doc)
+ -Dssh_agent=false"
 hostmakedepends="gettext glib-devel gnupg gi-docgen gettext pkg-config openssh
  libxslt $(vopt_if gir vala)"
 makedepends="gtk+3-devel libgcrypt-devel libsecret-devel p11-kit-devel libxslt-devel"
@@ -14,8 +15,9 @@ short_desc="GNOME crypto package"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="LGPL-2.0-or-later, LGPL-2.1-or-later, GPL-2.0-or-later"
 homepage="https://gitlab.gnome.org/GNOME/gcr"
+changelog="https://gitlab.gnome.org/GNOME/gcr/-/raw/gcr-3-41/NEWS"
 distfiles="${GNOME_SITE}/gcr/${version%.*}/gcr-${version}.tar.xz"
-checksum=bb7128a3c2febbfee9c03b90d77d498d0ceb237b0789802d60185c71c4bea24f
+checksum=bad10f3c553a0e1854649ab59c5b2434da22ca1a54ae6138f1f53961567e1ab7
 make_check_pre="dbus-run-session"
 make_check=no # Gcr:ERROR:../gcr/test-gnupg-collection.c:203:test_load: assertion failed: (record)
 

From 2e38ed0a2bae09896134d6945762459ea42967b6 Mon Sep 17 00:00:00 2001
From: chrysos349 <chrysostom349@gmail.com>
Date: Sat, 20 Apr 2024 08:58:57 +0300
Subject: [PATCH 2/2] gcr4: update to 4.3.0

---
 srcpkgs/gcr4/template | 8 ++------
 1 file changed, 2 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/gcr4/template b/srcpkgs/gcr4/template
index b858642ef8a7f7..1ffd7c1601d3c3 100644
--- a/srcpkgs/gcr4/template
+++ b/srcpkgs/gcr4/template
@@ -1,6 +1,6 @@
 # Template file for 'gcr4'
 pkgname=gcr4
-version=4.2.1
+version=4.3.0
 revision=1
 build_style=meson
 build_helper="gir"
@@ -16,7 +16,7 @@ license="LGPL-2.0-or-later, LGPL-2.1-or-later, GPL-2.0-or-later"
 homepage="https://gitlab.gnome.org/GNOME/gcr"
 changelog="https://gitlab.gnome.org/GNOME/gcr/-/raw/master/NEWS"
 distfiles="${GNOME_SITE}/gcr/${version%.*}/gcr-${version}.tar.xz"
-checksum=ed783b5c80373cd058c02ea9e3e2a64e558599ca190a5abd598122e479967de5
+checksum=c3ee8728e4364b0397f435fa20f92f901ab139d2b264f4e059d67b3c0f43cd36
 make_check_pre="dbus-run-session"
 # secure memory tests fail
 make_check=no
@@ -25,10 +25,6 @@ make_check=no
 build_options="gir"
 build_options_default="gir"
 
-post_install() {
-	rm ${DESTDIR}/usr/libexec/gcr-ssh-agent
-}
-
 gcr4-devel_package() {
 	depends="${makedepends} ${sourcepkg}>=${version}_${revision}"
 	short_desc+=" - development files"

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

* Re: gcr: update to 3.41.2, gcr4: update to 4.3.0
  2024-04-19 12:25 [PR PATCH] gcr: update to 3.41.2 chrysos349
                   ` (5 preceding siblings ...)
  2024-04-20  5:59 ` [PR PATCH] [Updated] " chrysos349
@ 2024-04-20  6:00 ` chrysos349
  2024-04-21  3:40 ` [PR PATCH] [Merged]: " oreo639
  7 siblings, 0 replies; 9+ messages in thread
From: chrysos349 @ 2024-04-20  6:00 UTC (permalink / raw)
  To: ml

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

New comment by chrysos349 on void-packages repository

https://github.com/void-linux/void-packages/pull/49906#issuecomment-2067569235

Comment:
fixed

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

* Re: [PR PATCH] [Merged]: gcr: update to 3.41.2, gcr4: update to 4.3.0
  2024-04-19 12:25 [PR PATCH] gcr: update to 3.41.2 chrysos349
                   ` (6 preceding siblings ...)
  2024-04-20  6:00 ` gcr: update to 3.41.2, gcr4: update to 4.3.0 chrysos349
@ 2024-04-21  3:40 ` oreo639
  7 siblings, 0 replies; 9+ messages in thread
From: oreo639 @ 2024-04-21  3:40 UTC (permalink / raw)
  To: ml

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

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

gcr: update to 3.41.2, gcr4: update to 4.3.0
https://github.com/void-linux/void-packages/pull/49906

Description:
#### 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)

p.s. all tests pass locally.  tests below fail in ci

**x86_64, i686**
`22/47 gcr:gck / object                  FAIL            0.16s   killed by signal 11 SIGSEGV`
**x86_64-musl**
`43/47 gcr:gcr-base / gnupg-collection   FAIL            0.17s   killed by signal 6 SIGABRT`


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

end of thread, other threads:[~2024-04-21  3:40 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-19 12:25 [PR PATCH] gcr: update to 3.41.2 chrysos349
2024-04-19 12:42 ` [PR PATCH] [Updated] " chrysos349
2024-04-19 12:46 ` [PR REVIEW] " oreo639
2024-04-19 12:49 ` [PR PATCH] [Updated] " chrysos349
2024-04-19 12:49 ` [PR REVIEW] " chrysos349
2024-04-19 23:42 ` oreo639
2024-04-20  5:59 ` [PR PATCH] [Updated] " chrysos349
2024-04-20  6:00 ` gcr: update to 3.41.2, gcr4: update to 4.3.0 chrysos349
2024-04-21  3:40 ` [PR PATCH] [Merged]: " oreo639

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