Date: Tue, 02 Jun 2026 08:35:08 +0000 From: Jason E. Hale <jhale@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: ed728dff680e - main - security/gpa: Update to 0.11.1 Message-ID: <6a1e95bc.31763.372423c8@gitrepo.freebsd.org>
index | next in thread | raw e-mail
The branch main has been updated by jhale: URL: https://cgit.FreeBSD.org/ports/commit/?id=ed728dff680efcb1a33a243dc4c8de2970ef9689 commit ed728dff680efcb1a33a243dc4c8de2970ef9689 Author: Jason E. Hale <jhale@FreeBSD.org> AuthorDate: 2026-06-02 06:37:17 +0000 Commit: Jason E. Hale <jhale@FreeBSD.org> CommitDate: 2026-06-02 07:33:37 +0000 security/gpa: Update to 0.11.1 Remove patches applied upstream. https://dev.gnupg.org/T7449 --- security/gpa/Makefile | 3 +- security/gpa/distinfo | 6 +-- security/gpa/files/patch-src_gpacontext.c | 70 ------------------------------- security/gpa/files/patch-src_gpacontext.h | 13 ------ 4 files changed, 4 insertions(+), 88 deletions(-) diff --git a/security/gpa/Makefile b/security/gpa/Makefile index 8be53eac84c7..fd1568b8d389 100644 --- a/security/gpa/Makefile +++ b/security/gpa/Makefile @@ -1,6 +1,5 @@ PORTNAME= gpa -PORTVERSION= 0.11.0 -PORTREVISION= 1 +PORTVERSION= 0.11.1 CATEGORIES= security MASTER_SITES= GNUPG/gpa diff --git a/security/gpa/distinfo b/security/gpa/distinfo index 74246871a911..44e6b3bf7d6f 100644 --- a/security/gpa/distinfo +++ b/security/gpa/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1735157724 -SHA256 (gpa-0.11.0.tar.bz2) = 26a8fa5bf70541cb741f0c71b7cfe291b1ea56eab68eeb07aa962cef5cdf33cc -SIZE (gpa-0.11.0.tar.bz2) = 827217 +TIMESTAMP = 1780380273 +SHA256 (gpa-0.11.1.tar.bz2) = 0bc5b2cd3e0641d07a2d8af372a09659decd918bee22fdfbefd2133d7c4d5d0b +SIZE (gpa-0.11.1.tar.bz2) = 828833 diff --git a/security/gpa/files/patch-src_gpacontext.c b/security/gpa/files/patch-src_gpacontext.c deleted file mode 100644 index 6b41a8f4cc80..000000000000 --- a/security/gpa/files/patch-src_gpacontext.c +++ /dev/null @@ -1,70 +0,0 @@ -The trustlist feature, which only worked for a short period in 2003, was -removed in GpgME 2.0.0. - ---- src/gpacontext.c.orig 2022-11-14 07:04:19 UTC -+++ src/gpacontext.c -@@ -38,8 +38,6 @@ static void gpa_context_next_key (GpaContext *context, - static void gpa_context_start (GpaContext *context); - static void gpa_context_done (GpaContext *context, gpg_error_t err); - static void gpa_context_next_key (GpaContext *context, gpgme_key_t key); --static void gpa_context_next_trust_item (GpaContext *context, -- gpgme_trust_item_t item); - static void gpa_context_progress (GpaContext *context, int current, int total); - - /* The GPGME I/O callbacks */ -@@ -65,7 +63,6 @@ enum - START, - DONE, - NEXT_KEY, -- NEXT_TRUST_ITEM, - PROGRESS, - LAST_SIGNAL - }; -@@ -113,7 +110,6 @@ gpa_context_class_init (GpaContextClass *klass) - klass->start = gpa_context_start; - klass->done = gpa_context_done; - klass->next_key = gpa_context_next_key; -- klass->next_trust_item = gpa_context_next_trust_item; - klass->progress = gpa_context_progress; - - /* Signals */ -@@ -143,15 +139,6 @@ gpa_context_class_init (GpaContextClass *klass) - g_cclosure_marshal_VOID__POINTER, - G_TYPE_NONE, 1, - G_TYPE_POINTER); -- signals[NEXT_TRUST_ITEM] = -- g_signal_new ("next_trust_item", -- G_TYPE_FROM_CLASS (object_class), -- G_SIGNAL_RUN_FIRST, -- G_STRUCT_OFFSET (GpaContextClass, next_trust_item), -- NULL, NULL, -- g_cclosure_marshal_VOID__POINTER, -- G_TYPE_NONE, 1, -- G_TYPE_POINTER); - signals[PROGRESS] = - g_signal_new ("progress", - G_TYPE_FROM_CLASS (object_class), -@@ -496,10 +483,6 @@ gpa_context_event_cb (void *data, gpgme_event_io_t typ - case GPGME_EVENT_NEXT_KEY: - g_signal_emit (context, signals[NEXT_KEY], 0, type_data); - break; -- case GPGME_EVENT_NEXT_TRUSTITEM: -- g_signal_emit (context, signals[NEXT_TRUST_ITEM], 0, -- type_data); -- break; - default: - /* Ignore unsupported event types */ - break; -@@ -527,12 +510,6 @@ gpa_context_next_key (GpaContext *context, gpgme_key_t - - static void - gpa_context_next_key (GpaContext *context, gpgme_key_t key) --{ -- /* Do nothing yet */ --} -- --static void --gpa_context_next_trust_item (GpaContext *context, gpgme_trust_item_t item) - { - /* Do nothing yet */ - } diff --git a/security/gpa/files/patch-src_gpacontext.h b/security/gpa/files/patch-src_gpacontext.h deleted file mode 100644 index 7b7d6eba5dc6..000000000000 --- a/security/gpa/files/patch-src_gpacontext.h +++ /dev/null @@ -1,13 +0,0 @@ -The trustlist feature, which only worked for a short period in 2003, was -removed in GpgME 2.0.0. - ---- src/gpacontext.h.orig 2018-10-16 19:58:08 UTC -+++ src/gpacontext.h -@@ -63,7 +63,6 @@ struct _GpaContextClass { - void (*start) (GpaContext *context); - void (*done) (GpaContext *context, gpg_error_t err); - void (*next_key) (GpaContext *context, gpgme_key_t key); -- void (*next_trust_item) (GpaContext *context, gpgme_trust_item_t item); - void (*progress) (GpaContext *context, int current, int total); - }; -home | help
Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?6a1e95bc.31763.372423c8>
