git: ac63024aa486 - main - net/jose: Update to v12

From: Fernando Apesteguía <fernape_at_FreeBSD.org>
Date: Sun, 04 Feb 2024 17:42:52 UTC
The branch main has been updated by fernape:

URL: https://cgit.FreeBSD.org/ports/commit/?id=ac63024aa486625dda95d09052a530e5c1edb172

commit ac63024aa486625dda95d09052a530e5c1edb172
Author:     Howard Holm <hdholm@alumni.iastate.edu>
AuthorDate: 2024-02-03 12:06:52 +0000
Commit:     Fernando Apesteguía <fernape@FreeBSD.org>
CommitDate: 2024-02-04 17:42:30 +0000

    net/jose: Update to v12
    
    ChangeLog: https://github.com/latchset/jose/releases/tag/v12
    
     * Clean up some FreeBSD conditions
     * Add ES256K support
     * Meson changes
     * lib/openssl/rsaes.c: Fix issue where jose_hook_alg_find failed to find the …
       …existance of RSA_OAEP algorithm
     * Increase test program/scripts timeout values
     * Fix test compilation warnings
     * Adapt alg_comp test to different zlib
     * lib/openssl/hmac.c: rename hmac function to jhmac
     * jose: build library only as shared
     * meson: add option to disable building manpages
     * Add a more descriptive error when jwk gen fails
     * Use "command -v" instead of "which"
     * Test for jq existing
     * Correct jose_jws.3 man page example
     * lib/hsh.c: rename hsh local variable
     * Avoid master word when possible
     * Fix format of jose-jwe-enc man page
     * Meson Fixes
    
    PR:             276790
    Reported by:    hdholm@alumni.iastate.edu (maintainer)
---
 net/jose/Makefile                |  5 ++---
 net/jose/distinfo                |  6 +++---
 net/jose/files/patch-meson.build | 12 ------------
 3 files changed, 5 insertions(+), 18 deletions(-)

diff --git a/net/jose/Makefile b/net/jose/Makefile
index 0004dead461b..634bbe49647e 100644
--- a/net/jose/Makefile
+++ b/net/jose/Makefile
@@ -1,6 +1,5 @@
 PORTNAME=	jose
-DISTVERSION=	11
-PORTREVISION=	1
+DISTVERSION=	12
 CATEGORIES=	net
 
 MAINTAINER=	hdholm@alumni.iastate.edu
@@ -17,7 +16,7 @@ LIB_DEPENDS=	libjansson.so:devel/jansson
 USES=		compiler:c11 meson ninja pkgconfig ssl
 USE_GITHUB=	yes
 GH_ACCOUNT=	latchset
-GH_TAGNAME=	v11
+GH_TAGNAME=	v12
 USE_LDCONFIG=	yes
 
 INSTALL_TARGET=	install-strip
diff --git a/net/jose/distinfo b/net/jose/distinfo
index 66f34df027b4..85d56ca70094 100644
--- a/net/jose/distinfo
+++ b/net/jose/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1620421971
-SHA256 (latchset-jose-11-v11_GH0.tar.gz) = 020b28ba22f8448bd8eb659dad5723d59bea4d27a36731e33c102ca2a4fe5822
-SIZE (latchset-jose-11-v11_GH0.tar.gz) = 841374
+TIMESTAMP = 1706927070
+SHA256 (latchset-jose-12-v12_GH0.tar.gz) = 011965b89d74d8432d0c085be1b4e0358fc0eff30211d3598f27c2ecd72d6cee
+SIZE (latchset-jose-12-v12_GH0.tar.gz) = 841206
diff --git a/net/jose/files/patch-meson.build b/net/jose/files/patch-meson.build
deleted file mode 100644
index 052b892890a9..000000000000
--- a/net/jose/files/patch-meson.build
+++ /dev/null
@@ -1,12 +0,0 @@
---- meson.build.orig	2021-05-07 13:04:06 UTC
-+++ meson.build
-@@ -60,7 +60,7 @@ pkg.generate(
-   filebase: meson.project_name(),
-   name: 'José Library',
- 
--  requires_private: [ 'zlib', 'libcrypto' ],
-+  libraries_private: [ zlib, libcrypto ],
-   libraries: libjose,
--   requires: 'jansson',
-+   requires: jansson,
- )