public inbox for cygwin-apps@cygwin.com
 help / color / mirror / Atom feed
* cygport upgrade to use gnupg2/gpg2 if available
@ 2023-11-21  4:51 Brian Inglis
  2023-11-21  6:20 ` Brian Inglis
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Brian Inglis @ 2023-11-21  4:51 UTC (permalink / raw)
  To: Cygwin Apps

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

Hi folks,

The attached log first chunk shows that new downloads especially GnuPG and GNU 
packages may be signed with keys not recognized by old gnupg/gpg.

After applying the attached patches, which add support for the newer gpg2 from 
gnupg2 if installed, the attached log second chunk shows the new keys verified 
by gpg2 added to lib/src_prep.cygpart ___gpg_verify().

Similar code has been added to lib/pkg_pkg.cygpart __pkg_srcpkg() for check and 
definition and __gpg_sign() for use in gpg signing of Cygwin patches and files.

-- 
Take care. Thanks, Brian Inglis              Calgary, Alberta, Canada

La perfection est atteinte                   Perfection is achieved
non pas lorsqu'il n'y a plus rien à ajouter  not when there is no more to add
mais lorsqu'il n'y a plus rien à retirer     but when there is no more to cut
                                 -- Antoine de Saint-Exupéry

[-- Attachment #2: cygport-gpg,2-prep-get-verify.log --]
[-- Type: text/plain, Size: 1232 bytes --]

>>> Preparing gpgme-1.23.1-1.x86_64
*** Info: SOURCE 1 signature follows:
gpg: Signature made 2023 Oct 27 Fri 06:41:07 MDT using ? key ID 26403ADA
gpg: Can't check signature: unknown pubkey algorithm
gpg: Signature made 2023 Nov 14 Tue 17:50:43 MST using ? key ID 19C6C8BD
gpg: Can't check signature: unknown pubkey algorithm

>>> Preparing gpgme-1.23.1-1.x86_64
*** Info: SOURCE 1 signature follows:
gpg: Signature made 2023 Oct 27 Fri 06:41:07 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2023 Nov 14 Tue 17:50:43 MST
gpg:                using EDDSA key AC8E115BF73E2D8D47FA9908E98E9B2D19C6C8BD
gpg: Good signature from "Niibe Yutaka (GnuPG Release Key)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: AC8E 115B F73E 2D8D 47FA  9908 E98E 9B2D 19C6 C8BD

[-- Attachment #3: cygport-lib-pkg_pkg-cygpart-gpg2.patch --]
[-- Type: text/plain, Size: 1223 bytes --]

--- /usr/share/cygport/lib/pkg_pkg.cygpart.orig	2023-03-08 06:07:57.000000000 -0700
+++ /usr/share/cygport/lib/pkg_pkg.cygpart	2023-11-19 21:13:16.879391200 -0700
@@ -505,7 +505,7 @@ __gpg_sign() {
 	echo "${2} signature needs to be updated";
 	rm -f ${1}.sig;
 	# we 'check_prog gpg' in __pkg_srcpkg()
-	gpg --detach-sign ${1};
+	$GPG --detach-sign ${1};
 }
 
 __squeeze_whitespace() {
@@ -563,7 +563,9 @@ __pkg_srcpkg() {
 
 	if __arg_bool SIG
 	then
-		if check_prog gpg
+		if check_prog gpg2; then GPG=gpg2; else GPG=gpg; fi
+
+		if check_prog $GPG
 		then
 			__gpg_sign ${spkgdir}/${cygportfile} "CYGPORT SCRIPT";
 
@@ -583,14 +585,15 @@ __pkg_srcpkg() {
 				__gpg_sign ${spkgdir}/${src_patchfile} "SOURCE PATCH";
 			fi
 		else
-			inform "gnupg must be installed in order to make signatures.";
+			inform "gnupg2 or gnupg must be installed in order to make signatures.";
 		fi
 	fi
 
 	cd ${spkgdir%/*};
 
 	mkdir -p ${distdir}/${PN};
-	__tar ${distdir}/${PN}/${PF}-src.tar.${TAR_COMPRESSION_EXT} ${spkgdir##*/}/ || error "Source package creation failed"
+	__tar ${distdir}/${PN}/${PF}-src.tar.${TAR_COMPRESSION_EXT} ${spkgdir##*/}/ \
+		|| error "Source package creation failed"
 	echo;
 
 	# source package hint

[-- Attachment #4: cygport-lib-src_prep-cygpart-gpg2.patch --]
[-- Type: text/plain, Size: 874 bytes --]

--- /usr/share/cygport/lib/src_prep.cygpart.orig	2023-11-19 18:51:13.284177300 -0700
+++ /usr/share/cygport/lib/src_prep.cygpart	2023-11-19 21:00:35.754036900 -0700
@@ -181,12 +181,14 @@ __gpg_verify() {
 	local _filetype=${2};
 	local _sigext=${3:-sig};
 
-	if ! check_prog gpg && ! check_prog gpg2
+	if check_prog gpg2; then GPG=gpg2; else GPG=gpg; fi
+
+	if ! check_prog $GPG
 	then
 		# display notice only once
 		if ! defined _gpg_not_found_
 		then
-			inform "gnupg or gnupg2 must be installed in order to check signatures.";
+			inform "gnupg2 or gnupg must be installed in order to check signatures.";
 			_gpg_not_found_=1
 		fi
 
@@ -195,7 +197,6 @@ __gpg_verify() {
 
 	if [ -f ${_file}.${_sigext} ]
 	then
-	    [ check_prog gpg2 ] && GPG=gpg2 || GPG=gpg
 		inform "${_filetype} signature follows:";
 		$GPG --verify ${_file}.${_sigext} ${_file} || true;
 	fi

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

* Re: cygport upgrade to use gnupg2/gpg2 if available
  2023-11-21  4:51 cygport upgrade to use gnupg2/gpg2 if available Brian Inglis
@ 2023-11-21  6:20 ` Brian Inglis
  2023-11-21  6:58 ` ASSI
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 10+ messages in thread
From: Brian Inglis @ 2023-11-21  6:20 UTC (permalink / raw)
  To: cygwin-apps

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

On 2023-11-20 21:51, Brian Inglis via Cygwin-apps wrote:
> The attached log first chunk shows that new downloads especially GnuPG and GNU 
> packages may be signed with keys not recognized by old gnupg/gpg.
> After applying the attached patches, which add support for the newer gpg2 from 
> gnupg2 if installed, the attached log second chunk shows the new keys verified 
> by gpg2 added to lib/src_prep.cygpart ___gpg_verify().
> Similar code has been added to lib/pkg_pkg.cygpart __pkg_srcpkg() for check and 
> definition and __gpg_sign() for use in gpg signing of Cygwin patches and files.

Not sure what previous lib/src_prep.cygpart patch was generated from, but patch 
from correct sources is attached.

-- 
Take care. Thanks, Brian Inglis              Calgary, Alberta, Canada

La perfection est atteinte                   Perfection is achieved
non pas lorsqu'il n'y a plus rien à ajouter  not when there is no more to add
mais lorsqu'il n'y a plus rien à retirer     but when there is no more to cut
                                 -- Antoine de Saint-Exupéry

[-- Attachment #2: cygport-lib-src_prep-cygpart-gpg2.patch --]
[-- Type: text/plain, Size: 851 bytes --]

--- /usr/share/cygport/lib/src_prep.cygpart.orig	2023-08-07 09:46:31.000000000 -0600
+++ /usr/share/cygport/lib/src_prep.cygpart	2023-11-20 23:15:36.349253300 -0700
@@ -181,12 +181,14 @@ __gpg_verify() {
 	local _filetype=${2};
 	local _sigext=${3:-sig};
 
-	if ! check_prog gpg
+	if check_prog gpg2; then GPG=gpg2; else GPG=gpg; fi
+
+	if ! check_prog $GPG
 	then
 		# display notice only once
 		if ! defined _gpg_not_found_
 		then
-			inform "gnupg must be installed in order to check signatures.";
+			inform "gnupg2 or gnupg must be installed in order to check signatures.";
 			_gpg_not_found_=1
 		fi
 
@@ -196,7 +198,7 @@ __gpg_verify() {
 	if [ -f ${_file}.${_sigext} ]
 	then
 		inform "${_filetype} signature follows:";
-		gpg --verify ${_file}.${_sigext} ${_file} || true;
+		$GPG --verify ${_file}.${_sigext} ${_file} || true;
 	fi
 }
 

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

* Re: cygport upgrade to use gnupg2/gpg2 if available
  2023-11-21  4:51 cygport upgrade to use gnupg2/gpg2 if available Brian Inglis
  2023-11-21  6:20 ` Brian Inglis
@ 2023-11-21  6:58 ` ASSI
       [not found] ` <655c551b.0c0a0220.6dce4.7613SMTPIN_ADDED_BROKEN@mx.google.com>
       [not found] ` <38451.4474005968$1700549918@news.gmane.org>
  3 siblings, 0 replies; 10+ messages in thread
From: ASSI @ 2023-11-21  6:58 UTC (permalink / raw)
  To: cygwin-apps

Brian Inglis via Cygwin-apps writes:
> After applying the attached patches, which add support for the newer
> gpg2 from gnupg2 if installed, the attached log second chunk shows the
> new keys verified by gpg2 added to lib/src_prep.cygpart
> ___gpg_verify().
>
> Similar code has been added to lib/pkg_pkg.cygpart __pkg_srcpkg() for
> check and definition and __gpg_sign() for use in gpg signing of Cygwin
> patches and files.


We should just switch to gpg2 an require that, there is no point in
trying to use GPG 1.x anymore.

https://repo.or.cz/cygport/rpm-style.git/commitdiff/84279e484726a68cc8f08e7c9126bef13d9510d7


Regards,
Achim.
-- 
+<[Q+ Matrix-12 WAVE#46+305 Neuron microQkb Andromeda XTk Blofeld]>+

SD adaptations for Waldorf Q V3.00R3 and Q+ V3.54R2:
http://Synth.Stromeko.net/Downloads.html#WaldorfSDada

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

* Re: cygport upgrade to use gnupg2/gpg2 if available
       [not found] ` <655c551b.0c0a0220.6dce4.7613SMTPIN_ADDED_BROKEN@mx.google.com>
@ 2023-11-24 21:29   ` Marco Atzeri
  2023-11-24 22:01     ` Brian Inglis
  0 siblings, 1 reply; 10+ messages in thread
From: Marco Atzeri @ 2023-11-24 21:29 UTC (permalink / raw)
  To: cygwin-apps

On 21.11.2023 07:58, ASSI via Cygwin-apps wrote:
> Brian Inglis via Cygwin-apps writes:
>> After applying the attached patches, which add support for the newer
>> gpg2 from gnupg2 if installed, the attached log second chunk shows the
>> new keys verified by gpg2 added to lib/src_prep.cygpart
>> ___gpg_verify().
>>
>> Similar code has been added to lib/pkg_pkg.cygpart __pkg_srcpkg() for
>> check and definition and __gpg_sign() for use in gpg signing of Cygwin
>> patches and files.
> 
> 
> We should just switch to gpg2 an require that, there is no point in
> trying to use GPG 1.x anymore.
> 
> https://repo.or.cz/cygport/rpm-style.git/commitdiff/84279e484726a68cc8f08e7c9126bef13d9510d7
> 
> 
> Regards,
> Achim.

should I just retire gpg 1.x and stop having gpg2 as different binary name ?


$ for i in /usr/bin/gpg* ; do echo -n $i " : " ; cygcheck -f $i ; done
/usr/bin/gpg.exe  : gnupg-1.4.23-1
/usr/bin/gpg2.exe  : gnupg2-2.2.35-2
/usr/bin/gpg-agent.exe  : gnupg2-2.2.35-2
/usr/bin/gpgconf.exe  : gnupg2-2.2.35-2
/usr/bin/gpg-connect-agent.exe  : gnupg2-2.2.35-2
/usr/bin/gpg-error.exe  : libgpg-error-devel-1.47-1
/usr/bin/gpgme-config  : libgpgme-devel-1.9.0-1
/usr/bin/gpgme-tool.exe  : libgpgme-devel-1.9.0-1
/usr/bin/gpgparsemail.exe  : gnupg2-2.2.35-2
/usr/bin/gpgrt-config  : libgpg-error-devel-1.47-1
/usr/bin/gpgscm.exe  : gnupg2-2.2.35-2
/usr/bin/gpgsm.exe  : gnupg2-2.2.35-2
/usr/bin/gpgsplit.exe  : gnupg-1.4.23-1
gnupg2-2.2.35-2
/usr/bin/gpgtar.exe  : gnupg2-2.2.35-2
/usr/bin/gpgv.exe  : gnupg-1.4.23-1
/usr/bin/gpgv2.exe  : gnupg2-2.2.35-2
/usr/bin/gpg-wks-server.exe  : gnupg2-2.2.35-2
/usr/bin/gpg-zip  : gnupg-1.4.23-1


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

* Re: cygport upgrade to use gnupg2/gpg2 if available
  2023-11-24 21:29   ` Marco Atzeri
@ 2023-11-24 22:01     ` Brian Inglis
  0 siblings, 0 replies; 10+ messages in thread
From: Brian Inglis @ 2023-11-24 22:01 UTC (permalink / raw)
  To: cygwin-apps

On 2023-11-24 14:29, Marco Atzeri via Cygwin-apps wrote:
> On 21.11.2023 07:58, ASSI via Cygwin-apps wrote:
>> Brian Inglis via Cygwin-apps writes:
>>> After applying the attached patches, which add support for the newer
>>> gpg2 from gnupg2 if installed, the attached log second chunk shows the
>>> new keys verified by gpg2 added to lib/src_prep.cygpart
>>> ___gpg_verify().
>>> Similar code has been added to lib/pkg_pkg.cygpart __pkg_srcpkg() for
>>> check and definition and __gpg_sign() for use in gpg signing of Cygwin
>>> patches and files.
>> We should just switch to gpg2 an require that, there is no point in
>> trying to use GPG 1.x anymore.
>> https://repo.or.cz/cygport/rpm-style.git/commitdiff/84279e484726a68cc8f08e7c9126bef13d9510d7

++1?

> should I just retire gpg 1.x and stop having gpg2 as different binary name ?

Or obsolete 1 with 2 and add compatibility symlinks or scripts?

Keep names separate so easy to check.

> $ for i in /usr/bin/gpg* ; do echo -n $i " : " ; cygcheck -f $i ; done
> /usr/bin/gpg.exe  : gnupg-1.4.23-1
> /usr/bin/gpg2.exe  : gnupg2-2.2.35-2
> /usr/bin/gpg-agent.exe  : gnupg2-2.2.35-2
> /usr/bin/gpgconf.exe  : gnupg2-2.2.35-2
> /usr/bin/gpg-connect-agent.exe  : gnupg2-2.2.35-2
> /usr/bin/gpg-error.exe  : libgpg-error-devel-1.47-1
> /usr/bin/gpgme-config  : libgpgme-devel-1.9.0-1
> /usr/bin/gpgme-tool.exe  : libgpgme-devel-1.9.0-1
> /usr/bin/gpgparsemail.exe  : gnupg2-2.2.35-2
> /usr/bin/gpgrt-config  : libgpg-error-devel-1.47-1
> /usr/bin/gpgscm.exe  : gnupg2-2.2.35-2
> /usr/bin/gpgsm.exe  : gnupg2-2.2.35-2
> /usr/bin/gpgsplit.exe  : gnupg-1.4.23-1
> gnupg2-2.2.35-2
> /usr/bin/gpgtar.exe  : gnupg2-2.2.35-2
> /usr/bin/gpgv.exe  : gnupg-1.4.23-1
> /usr/bin/gpgv2.exe  : gnupg2-2.2.35-2
> /usr/bin/gpg-wks-server.exe  : gnupg2-2.2.35-2
> /usr/bin/gpg-zip  : gnupg-1.4.23-1

gpg-zip is only in 1, gpgsplit is in 1 *AND* 2, but likely 2 is installed over 
1, and a lot of new stuff is in 2:

$ cygcheck -l gnupg | grep bin/
/usr/bin/gpg-zip
/usr/bin/gpg.exe
/usr/bin/gpgsplit.exe
/usr/bin/gpgv.exe
$ cygcheck -l gnupg2 | grep bin/
/usr/bin/dirmngr-client.exe
/usr/bin/dirmngr.exe
/usr/bin/gpg-agent.exe
/usr/bin/gpg-connect-agent.exe
/usr/bin/gpg-wks-server.exe
/usr/bin/gpg2.exe
/usr/bin/gpgconf.exe
/usr/bin/gpgparsemail.exe
/usr/bin/gpgscm.exe
/usr/bin/gpgsm.exe
/usr/bin/gpgsplit.exe
/usr/bin/gpgtar.exe
/usr/bin/gpgv2.exe
/usr/bin/kbxutil.exe
/usr/bin/watchgnupg.exe
/usr/sbin/addgnupghome
/usr/sbin/applygnupgdefaults

-- 
Take care. Thanks, Brian Inglis              Calgary, Alberta, Canada

La perfection est atteinte                   Perfection is achieved
non pas lorsqu'il n'y a plus rien à ajouter  not when there is no more to add
mais lorsqu'il n'y a plus rien à retirer     but when there is no more to cut
                                 -- Antoine de Saint-Exupéry

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

* Re: cygport upgrade to use gnupg2/gpg2 if available
       [not found] ` <38451.4474005968$1700549918@news.gmane.org>
@ 2023-11-26 14:40   ` Jon Turney
  2024-06-24 22:23     ` Marco Atzeri
  0 siblings, 1 reply; 10+ messages in thread
From: Jon Turney @ 2023-11-26 14:40 UTC (permalink / raw)
  To: cygwin-apps

On 21/11/2023 06:58, ASSI via Cygwin-apps wrote:
> Brian Inglis via Cygwin-apps writes:
>> After applying the attached patches, which add support for the newer
>> gpg2 from gnupg2 if installed, the attached log second chunk shows the
>> new keys verified by gpg2 added to lib/src_prep.cygpart
>> ___gpg_verify().
>>
>> Similar code has been added to lib/pkg_pkg.cygpart __pkg_srcpkg() for
>> check and definition and __gpg_sign() for use in gpg signing of Cygwin
>> patches and files.
> 
> 
> We should just switch to gpg2 an require that, there is no point in
> trying to use GPG 1.x anymore.
> 
> https://repo.or.cz/cygport/rpm-style.git/commitdiff/84279e484726a68cc8f08e7c9126bef13d9510d7

I think this is the correct patch, so I'll probably apply this.

But yeah, I think gpg2 obsoleting gpg, with compatibility symlinks is 
probably the right thing to do.


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

* Re: cygport upgrade to use gnupg2/gpg2 if available
  2023-11-26 14:40   ` Jon Turney
@ 2024-06-24 22:23     ` Marco Atzeri
  2024-06-24 23:09       ` Brian Inglis
  0 siblings, 1 reply; 10+ messages in thread
From: Marco Atzeri @ 2024-06-24 22:23 UTC (permalink / raw)
  To: Jon Turney, cygwin-apps

On 26/11/2023 15:40, Jon Turney via Cygwin-apps wrote:
> On 21/11/2023 06:58, ASSI via Cygwin-apps wrote:
>> Brian Inglis via Cygwin-apps writes:
>>> After applying the attached patches, which add support for the newer
>>> gpg2 from gnupg2 if installed, the attached log second chunk shows the
>>> new keys verified by gpg2 added to lib/src_prep.cygpart
>>> ___gpg_verify().
>>>
>>> Similar code has been added to lib/pkg_pkg.cygpart __pkg_srcpkg() for
>>> check and definition and __gpg_sign() for use in gpg signing of Cygwin
>>> patches and files.
>>
>>
>> We should just switch to gpg2 an require that, there is no point in
>> trying to use GPG 1.x anymore.
>>
>> https://repo.or.cz/cygport/rpm-style.git/commitdiff/84279e484726a68cc8f08e7c9126bef13d9510d7
> 
> I think this is the correct patch, so I'll probably apply this.
> 
> But yeah, I think gpg2 obsoleting gpg, with compatibility symlinks is 
> probably the right thing to do.
> 


I will implement this in the next 2.4.5

the current test version seems also able to correctly contact 
keyservers. That was a problem on latest gpg2 package

Regards
Marco

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

* Re: cygport upgrade to use gnupg2/gpg2 if available
  2024-06-24 22:23     ` Marco Atzeri
@ 2024-06-24 23:09       ` Brian Inglis
  2024-06-24 23:16         ` Marco Atzeri
  0 siblings, 1 reply; 10+ messages in thread
From: Brian Inglis @ 2024-06-24 23:09 UTC (permalink / raw)
  To: cygwin-apps

On 2024-06-24 16:23, Marco Atzeri via Cygwin-apps wrote:
> On 26/11/2023 15:40, Jon Turney via Cygwin-apps wrote:
>> On 21/11/2023 06:58, ASSI via Cygwin-apps wrote:
>>> Brian Inglis via Cygwin-apps writes:
>>>> After applying the attached patches, which add support for the newer
>>>> gpg2 from gnupg2 if installed, the attached log second chunk shows the
>>>> new keys verified by gpg2 added to lib/src_prep.cygpart
>>>> ___gpg_verify().
>>>>
>>>> Similar code has been added to lib/pkg_pkg.cygpart __pkg_srcpkg() for
>>>> check and definition and __gpg_sign() for use in gpg signing of Cygwin
>>>> patches and files.
>>>
>>>
>>> We should just switch to gpg2 an require that, there is no point in
>>> trying to use GPG 1.x anymore.
>>>
>>> https://repo.or.cz/cygport/rpm-style.git/commitdiff/84279e484726a68cc8f08e7c9126bef13d9510d7
>>
>> I think this is the correct patch, so I'll probably apply this.
>>
>> But yeah, I think gpg2 obsoleting gpg, with compatibility symlinks is probably 
>> the right thing to do.

> I will implement this in the next 2.4.5
> 
> the current test version seems also able to correctly contact keyservers. That 
> was a problem on latest gpg2 package

Yay! At last.
That has been frustrating as I have been tweaking my keyserver configs in the 
hopes of getting the latest keys accepted for my package sources, other 
downloads, and scripts.

I might be able to update and willing to adopt libxslt if all our gpg updates 
hang together.

-- 
Take care. Thanks, Brian Inglis              Calgary, Alberta, Canada

La perfection est atteinte                   Perfection is achieved
non pas lorsqu'il n'y a plus rien à ajouter  not when there is no more to add
mais lorsqu'il n'y a plus rien à retirer     but when there is no more to cut
                                 -- Antoine de Saint-Exupéry

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

* Re: cygport upgrade to use gnupg2/gpg2 if available
  2024-06-24 23:09       ` Brian Inglis
@ 2024-06-24 23:16         ` Marco Atzeri
  2024-06-25  5:38           ` Brian Inglis
  0 siblings, 1 reply; 10+ messages in thread
From: Marco Atzeri @ 2024-06-24 23:16 UTC (permalink / raw)
  To: cygwin-apps

On 25/06/2024 01:09, Brian Inglis via Cygwin-apps wrote:
> On 2024-06-24 16:23, Marco Atzeri via Cygwin-apps wrote:
>> On 26/11/2023 15:40, Jon Turney via Cygwin-apps wrote:
>>> On 21/11/2023 06:58, ASSI via Cygwin-apps wrote:
>>>> Brian Inglis via Cygwin-apps writes:

>>> But yeah, I think gpg2 obsoleting gpg, with compatibility symlinks is 
>>> probably the right thing to do.
> 
>> I will implement this in the next 2.4.5
>>
>> the current test version seems also able to correctly contact 
>> keyservers. That was a problem on latest gpg2 package
> 
> Yay! At last.
> That has been frustrating as I have been tweaking my keyserver configs 
> in the hopes of getting the latest keys accepted for my package sources, 
> other downloads, and scripts.
> 
> I might be able to update and willing to adopt libxslt if all our gpg 
> updates hang together.
> 

test version for

gnupg2-2.4.5-1
libksba-1.6.7-1

are also up.

If you can also test

Regards
Marco


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

* Re: cygport upgrade to use gnupg2/gpg2 if available
  2024-06-24 23:16         ` Marco Atzeri
@ 2024-06-25  5:38           ` Brian Inglis
  0 siblings, 0 replies; 10+ messages in thread
From: Brian Inglis @ 2024-06-25  5:38 UTC (permalink / raw)
  To: cygwin-apps

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

On 2024-06-24 17:16, Marco Atzeri via Cygwin-apps wrote:
> On 25/06/2024 01:09, Brian Inglis via Cygwin-apps wrote:
>> On 2024-06-24 16:23, Marco Atzeri via Cygwin-apps wrote:
>>> On 26/11/2023 15:40, Jon Turney via Cygwin-apps wrote:
>>>> On 21/11/2023 06:58, ASSI via Cygwin-apps wrote:
>>>>> Brian Inglis via Cygwin-apps writes:
> 
>>>> But yeah, I think gpg2 obsoleting gpg, with compatibility symlinks is 
>>>> probably the right thing to do.
>>
>>> I will implement this in the next 2.4.5
>>>
>>> the current test version seems also able to correctly contact keyservers. 
>>> That was a problem on latest gpg2 package
>>
>> Yay! At last.
>> That has been frustrating as I have been tweaking my keyserver configs in the 
>> hopes of getting the latest keys accepted for my package sources, other 
>> downloads, and scripts.
>>
>> I might be able to update and willing to adopt libxslt if all our gpg updates 
>> hang together.
>>
> 
> test version for
> 
> gnupg2-2.4.5-1
> libksba-1.6.7-1
> 
> are also up.
> 
> If you can also test

Thanks Marco,

Installed test packages and ran scripts using gpg/v/2, then ran against signed 
Cygwin package download cache archives and signed cygport package upstream cache 
archives - logs attached - ran on each detached sig:

	gpg2 --verify det.sig
	gpg2 --verify --batch det.sig det
	gpgv2 det.sig det	# batch built in and datafile always required
				# despite what gpgv/gpgv2 docs say

some data files did not exist or not in required format e.g. .tar instead of 
.t?z or .tar.?z!

All look good to me.

-- 
Take care. Thanks, Brian Inglis              Calgary, Alberta, Canada

La perfection est atteinte                   Perfection is achieved
non pas lorsqu'il n'y a plus rien à ajouter  not when there is no more to add
mais lorsqu'il n'y a plus rien à retirer     but when there is no more to cut
                                 -- Antoine de Saint-Exupéry

[-- Attachment #2: gnupg2-packages.log --]
[-- Type: text/plain, Size: 6997 bytes --]

gpg: verify signatures failed: Unexpected error
gpgv: verify signatures failed: Unexpected error
gpg: assuming signed data in '/var/cache/setup/packages/mirror/i686/setup-x86.exe'
gpg: Signature made 2022 Jun 24 Fri 06:41:47 MDT
gpg:                using DSA key 1169DF9F22734F743AA59232A9A262FF676041BA
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 1169 DF9F 2273 4F74 3AA5  9232 A9A2 62FF 6760 41BA
gpg: Signature made 2022 Jun 24 Fri 06:41:47 MDT
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpg: Signature made 2022 Jun 24 Fri 06:41:47 MDT
gpg:                using DSA key 1169DF9F22734F743AA59232A9A262FF676041BA
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 1169 DF9F 2273 4F74 3AA5  9232 A9A2 62FF 6760 41BA
gpg: Signature made 2022 Jun 24 Fri 06:41:47 MDT
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpgv: Signature made 2022 Jun 24 Fri 06:41:47 MDT
gpgv:                using DSA key 1169DF9F22734F743AA59232A9A262FF676041BA
gpgv: Good signature from "Cygwin <cygwin@cygwin.com>"
gpgv: Signature made 2022 Jun 24 Fri 06:41:47 MDT
gpgv:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpgv: Good signature from "Cygwin <cygwin@cygwin.com>"
gpg: assuming signed data in '/var/cache/setup/packages/mirror/i686/setup.ini'
gpg: Signature made 2022 Nov 20 Sun 11:11:54 MST
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: BAD signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: Signature made 2022 Nov 20 Sun 11:11:54 MST
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: BAD signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpgv: Signature made 2022 Nov 20 Sun 11:11:54 MST
gpgv:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpgv: BAD signature from "Cygwin <cygwin@cygwin.com>"
gpg: assuming signed data in '/var/cache/setup/packages/mirror/i686/setup.xz'
gpg: Signature made 2022 Nov 20 Sun 11:12:07 MST
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpg: Signature made 2022 Nov 20 Sun 11:12:07 MST
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpgv: Signature made 2022 Nov 20 Sun 11:12:07 MST
gpgv:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpgv: Good signature from "Cygwin <cygwin@cygwin.com>"
gpg: verify signatures failed: Unexpected error
gpgv: verify signatures failed: Unexpected error
gpg: assuming signed data in '/var/cache/setup/packages/mirror/x86_64/setup-x86_64.exe'
gpg: Signature made 2024 Apr 16 Tue 12:39:28 MDT
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpg: Signature made 2024 Apr 16 Tue 12:39:28 MDT
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpgv: Signature made 2024 Apr 16 Tue 12:39:28 MDT
gpgv:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpgv: Good signature from "Cygwin <cygwin@cygwin.com>"
gpg: assuming signed data in '/var/cache/setup/packages/mirror/x86_64/setup.ini'
gpg: Signature made 2024 Jun 24 Mon 16:35:51 MDT
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpg: Signature made 2024 Jun 24 Mon 16:35:51 MDT
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpgv: Signature made 2024 Jun 24 Mon 16:35:51 MDT
gpgv:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpgv: Good signature from "Cygwin <cygwin@cygwin.com>"
gpg: assuming signed data in '/var/cache/setup/packages/mirror/x86_64/setup.xz'
gpg: Signature made 2024 Jun 24 Mon 16:36:05 MDT
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpg: Signature made 2024 Jun 24 Mon 16:36:05 MDT
gpg:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpg: Good signature from "Cygwin <cygwin@cygwin.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 5640 5CF6 FCC8 1574 682A  5D56 1A69 8DE9 E2E5 6300
gpgv: Signature made 2024 Jun 24 Mon 16:36:05 MDT
gpgv:                using RSA key 56405CF6FCC81574682A5D561A698DE9E2E56300
gpgv: Good signature from "Cygwin <cygwin@cygwin.com>"

[-- Attachment #3: gnupg2-upstreams.log --]
[-- Type: text/plain, Size: 267282 bytes --]

gpg: assuming signed data in 'bind-9.16.48.tar.xz'
gpg: Signature made 2024 Feb 11 Sun 08:19:54 MST
gpg:                using RSA key 706B6C28620E76F91D11F7DF510A642A06C52CEC
gpg: Good signature from "Michał Kępień (Code-Signing Key) <michal@isc.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 706B 6C28 620E 76F9 1D11  F7DF 510A 642A 06C5 2CEC
gpg: Signature made 2024 Feb 11 Sun 08:19:54 MST
gpg:                using RSA key 706B6C28620E76F91D11F7DF510A642A06C52CEC
gpg: Good signature from "Michał Kępień (Code-Signing Key) <michal@isc.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 706B 6C28 620E 76F9 1D11  F7DF 510A 642A 06C5 2CEC
gpgv: Signature made 2024 Feb 11 Sun 08:19:54 MST
gpgv:                using RSA key 706B6C28620E76F91D11F7DF510A642A06C52CEC
gpgv: Good signature from "Michał Kępień (Code-Signing Key) <michal@isc.org>"
gpg: assuming signed data in 'c-ares-1.14.0.tar.gz'
gpg: Signature made 2018 Feb 16 Fri 06:51:01 MST
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2018 Feb 16 Fri 06:51:01 MST
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2018 Feb 16 Fri 06:51:01 MST
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'c-ares-1.16.1.tar.gz'
gpg: Signature made 2020 May 11 Mon 11:53:30 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2020 May 11 Mon 11:53:30 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2020 May 11 Mon 11:53:30 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'c-ares-1.17.2.tar.gz'
gpg: Signature made 2021 Aug 10 Tue 00:13:00 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2021 Aug 10 Tue 00:13:00 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2021 Aug 10 Tue 00:13:00 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'c-ares-1.18.1.tar.gz'
gpg: Signature made 2021 Oct 27 Wed 00:07:30 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2021 Oct 27 Wed 00:07:30 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2021 Oct 27 Wed 00:07:30 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'c-ares-1.20.1.tar.gz'
gpg: Signature made 2023 Oct 08 Sun 15:24:41 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 Oct 08 Sun 15:24:41 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 Oct 08 Sun 15:24:41 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'c-ares-1.26.0.tar.gz'
gpg: Signature made 2024 Jan 26 Fri 09:16:48 MST
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2024 Jan 26 Fri 09:16:48 MST
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2024 Jan 26 Fri 09:16:48 MST
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.0.0.tar.xz'
gpg: Signature made 2023 Mar 20 Mon 01:07:35 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 Mar 20 Mon 01:07:35 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 Mar 20 Mon 01:07:35 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.0.1.tar.xz'
gpg: Signature made 2023 Mar 20 Mon 07:54:58 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 Mar 20 Mon 07:54:58 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 Mar 20 Mon 07:54:58 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.1.0.tar.xz'
gpg: Signature made 2023 May 17 Wed 00:08:38 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 May 17 Wed 00:08:38 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 May 17 Wed 00:08:38 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.1.1.tar.xz'
gpg: Signature made 2023 May 23 Tue 00:13:57 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 May 23 Tue 00:13:57 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 May 23 Tue 00:13:57 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.1.2.tar.xz'
gpg: Signature made 2023 May 30 Tue 00:17:27 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 May 30 Tue 00:17:27 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 May 30 Tue 00:17:27 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.2.0.tar.xz'
gpg: Signature made 2023 Jul 19 Wed 00:15:43 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 Jul 19 Wed 00:15:43 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 Jul 19 Wed 00:15:43 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.2.1.tar.xz'
gpg: Signature made 2023 Jul 26 Wed 00:12:09 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 Jul 26 Wed 00:12:09 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 Jul 26 Wed 00:12:09 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.3.0.tar.xz'
gpg: Signature made 2023 Sep 13 Wed 00:20:59 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 Sep 13 Wed 00:20:59 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 Sep 13 Wed 00:20:59 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.4.0.tar.xz'
gpg: Signature made 2023 Oct 10 Tue 23:40:25 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 Oct 10 Tue 23:40:25 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 Oct 10 Tue 23:40:25 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.5.0.tar.xz'
gpg: Signature made 2023 Dec 06 Wed 00:16:14 MST
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 Dec 06 Wed 00:16:14 MST
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 Dec 06 Wed 00:16:14 MST
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.6.0.tar.xz'
gpg: Signature made 2024 Jan 31 Wed 00:04:55 MST
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2024 Jan 31 Wed 00:04:55 MST
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2024 Jan 31 Wed 00:04:55 MST
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.7.1.tar.xz'
gpg: Signature made 2024 Mar 27 Wed 02:03:59 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2024 Mar 27 Wed 02:03:59 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2024 Mar 27 Wed 02:03:59 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'curl-8.8.0.tar.xz'
gpg: Signature made 2024 May 21 Tue 23:56:23 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2024 May 21 Tue 23:56:23 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2024 May 21 Tue 23:56:23 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: can't open signed data 'dateutils-0.4.10.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'dateutils-0.4.10.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'dateutils-0.4.11.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'dateutils-0.4.11.tar'
gpgv: can't hash datafile: No such file or directory
gpg: assuming signed data in 'dialog-1.3-20221229.tgz'
gpg: Signature made 2022 Dec 29 Thu 13:44:28 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2022 Dec 29 Thu 13:44:28 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2022 Dec 29 Thu 13:44:28 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'dialog-1.3-20230209.tgz'
gpg: Signature made 2023 Feb 09 Thu 18:21:26 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Feb 09 Thu 18:21:26 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Feb 09 Thu 18:21:26 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'dialog-1.3-20231002.tgz'
gpg: Signature made 2023 Oct 03 Tue 02:16:18 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Oct 03 Tue 02:16:18 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Oct 03 Tue 02:16:18 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'dialog-1.3-20240101.tgz'
gpg: Signature made 2024 Jan 01 Mon 05:46:17 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Jan 01 Mon 05:46:17 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Jan 01 Mon 05:46:17 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'dialog-1.3-20240307.tgz'
gpg: Signature made 2024 Mar 10 Sun 18:05:19 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Mar 10 Sun 18:05:19 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Mar 10 Sun 18:05:19 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'dialog-1.3-20240619.tgz'
gpg: Signature made 2024 Jun 20 Thu 17:30:29 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Jun 20 Thu 17:30:29 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Jun 20 Thu 17:30:29 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'diffstat-1.64.tgz'
gpg: Signature made 2021 Jan 12 Tue 18:16:34 MST
gpg:                using DSA key C52048C0C0748FEE227D47A2702353E0F7E48EDB
gpg: Good signature from "Thomas Dickey <dickey@invisible-island.net>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: C520 48C0 C074 8FEE 227D  47A2 7023 53E0 F7E4 8EDB
gpg: Signature made 2021 Jan 12 Tue 18:16:34 MST
gpg:                using DSA key C52048C0C0748FEE227D47A2702353E0F7E48EDB
gpg: Good signature from "Thomas Dickey <dickey@invisible-island.net>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: C520 48C0 C074 8FEE 227D  47A2 7023 53E0 F7E4 8EDB
gpgv: Signature made 2021 Jan 12 Tue 18:16:34 MST
gpgv:                using DSA key C52048C0C0748FEE227D47A2702353E0F7E48EDB
gpgv: Good signature from "Thomas Dickey <dickey@invisible-island.net>"
gpg: assuming signed data in 'diffstat-1.65.tgz'
gpg: Signature made 2022 Oct 09 Sun 18:14:16 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2022 Oct 09 Sun 18:14:16 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2022 Oct 09 Sun 18:14:16 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'diffstat-1.66.tgz'
gpg: Signature made 2024 Jan 28 Sun 16:27:52 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Jan 28 Sun 16:27:52 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Jan 28 Sun 16:27:52 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'expat-2.4.5.tar.xz'
gpg: Signature made 2022 Feb 18 Fri 15:44:35 MST
gpg:                using RSA key CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6
gpg: Good signature from "Sebastian Pipping <sping@gentoo.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 3176 EF7D B236 7F1F CA4F  306B 1F9B 0E90 9AF3 7285
     Subkey fingerprint: CB8D E70A 90CF BF6C 3BF5  CC56 9626 2ACF FBD3 AEC6
gpg: Signature made 2022 Feb 18 Fri 15:44:35 MST
gpg:                using RSA key CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6
gpg: Good signature from "Sebastian Pipping <sping@gentoo.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 3176 EF7D B236 7F1F CA4F  306B 1F9B 0E90 9AF3 7285
     Subkey fingerprint: CB8D E70A 90CF BF6C 3BF5  CC56 9626 2ACF FBD3 AEC6
gpgv: Signature made 2022 Feb 18 Fri 15:44:35 MST
gpgv:                using RSA key CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6
gpgv: Good signature from "Sebastian Pipping <sping@gentoo.org>"
gpg: assuming signed data in 'expat-2.4.9.tar.xz'
gpg: Signature made 2022 Sep 20 Tue 09:06:41 MDT
gpg:                using RSA key CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6
gpg: Good signature from "Sebastian Pipping <sping@gentoo.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 3176 EF7D B236 7F1F CA4F  306B 1F9B 0E90 9AF3 7285
     Subkey fingerprint: CB8D E70A 90CF BF6C 3BF5  CC56 9626 2ACF FBD3 AEC6
gpg: Signature made 2022 Sep 20 Tue 09:06:41 MDT
gpg:                using RSA key CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6
gpg: Good signature from "Sebastian Pipping <sping@gentoo.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 3176 EF7D B236 7F1F CA4F  306B 1F9B 0E90 9AF3 7285
     Subkey fingerprint: CB8D E70A 90CF BF6C 3BF5  CC56 9626 2ACF FBD3 AEC6
gpgv: Signature made 2022 Sep 20 Tue 09:06:41 MDT
gpgv:                using RSA key CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6
gpgv: Good signature from "Sebastian Pipping <sping@gentoo.org>"
gpg: assuming signed data in 'expat-2.5.0.tar.xz'
gpg: Signature made 2022 Oct 25 Tue 09:35:44 MDT
gpg:                using RSA key CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6
gpg: Good signature from "Sebastian Pipping <sping@gentoo.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 3176 EF7D B236 7F1F CA4F  306B 1F9B 0E90 9AF3 7285
     Subkey fingerprint: CB8D E70A 90CF BF6C 3BF5  CC56 9626 2ACF FBD3 AEC6
gpg: Signature made 2022 Oct 25 Tue 09:35:44 MDT
gpg:                using RSA key CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6
gpg: Good signature from "Sebastian Pipping <sping@gentoo.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 3176 EF7D B236 7F1F CA4F  306B 1F9B 0E90 9AF3 7285
     Subkey fingerprint: CB8D E70A 90CF BF6C 3BF5  CC56 9626 2ACF FBD3 AEC6
gpgv: Signature made 2022 Oct 25 Tue 09:35:44 MDT
gpgv:                using RSA key CB8DE70A90CFBF6C3BF5CC5696262ACFFBD3AEC6
gpgv: Good signature from "Sebastian Pipping <sping@gentoo.org>"
gpg: assuming signed data in 'funny-manpages_2.3.orig.tar.gz'
gpg: Signature made 2018 Mar 03 Sat 06:01:12 MST
gpg:                using RSA key 42748B9E76D899799E1FBE14B3A7CF0C801886CF
gpg: Good signature from "Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli <ltworf@opensolaris.org>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli <ltworf@galileo.dmi.unict.it>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli <salvo.g.tomaselli@gmail.com>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli <salvatore.tomaselli@galileo.dmi.unict.it>" [unknown]
gpg:                 aka "Salvo Tomaselli (chalmers student account) <saltom@student.chalmers.se>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli (Personal address) <salvo.g.tomaselli@gmail.com>" [unknown]
gpg:                 aka "[jpeg image of size 2097]" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 4274 8B9E 76D8 9979 9E1F  BE14 B3A7 CF0C 8018 86CF
gpg: Signature made 2018 Mar 03 Sat 06:01:12 MST
gpg:                using RSA key 42748B9E76D899799E1FBE14B3A7CF0C801886CF
gpg: Good signature from "Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli <ltworf@opensolaris.org>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli <ltworf@galileo.dmi.unict.it>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli <salvo.g.tomaselli@gmail.com>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli <salvatore.tomaselli@galileo.dmi.unict.it>" [unknown]
gpg:                 aka "Salvo Tomaselli (chalmers student account) <saltom@student.chalmers.se>" [unknown]
gpg:                 aka "Salvo 'LtWorf' Tomaselli (Personal address) <salvo.g.tomaselli@gmail.com>" [unknown]
gpg:                 aka "[jpeg image of size 2097]" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 4274 8B9E 76D8 9979 9E1F  BE14 B3A7 CF0C 8018 86CF
gpgv: Signature made 2018 Mar 03 Sat 06:01:12 MST
gpgv:                using RSA key 42748B9E76D899799E1FBE14B3A7CF0C801886CF
gpgv: Good signature from "Salvo 'LtWorf' Tomaselli <tiposchi@tiscali.it>"
gpgv:                 aka "Salvo 'LtWorf' Tomaselli <ltworf@opensolaris.org>"
gpgv:                 aka "Salvo 'LtWorf' Tomaselli <ltworf@galileo.dmi.unict.it>"
gpgv:                 aka "Salvo 'LtWorf' Tomaselli <salvo.g.tomaselli@gmail.com>"
gpgv:                 aka "Salvo 'LtWorf' Tomaselli <salvatore.tomaselli@galileo.dmi.unict.it>"
gpgv:                 aka "Salvo Tomaselli (chalmers student account) <saltom@student.chalmers.se>"
gpgv:                 aka "Salvo 'LtWorf' Tomaselli (Personal address) <salvo.g.tomaselli@gmail.com>"
gpgv:                 aka "[invalid image]"
gpg: assuming signed data in 'libevent-2.0.22-stable.tar.gz'
gpg: Signature made 2015 Jan 05 Mon 08:16:20 MST
gpg:                using RSA key 910397D88D29319A
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: Can't check signature: No public key
gpg: Signature made 2015 Jan 05 Mon 08:16:20 MST
gpg:                using RSA key 910397D88D29319A
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: Can't check signature: No public key
gpgv: Signature made 2015 Jan 05 Mon 08:16:20 MST
gpgv:                using RSA key 910397D88D29319A
gpgv: Can't check signature: No public key
gpg: assuming signed data in 'libevent-2.1.12-stable.tar.gz'
gpg: Signature made 2020 Jul 05 Sun 06:10:30 MDT
gpg:                using RSA key 9E3AC83A27974B84D1B3401DB86086848EF8686D
gpg: Good signature from "Azat Khuzhin <a3at.mail@gmail.com>" [unknown]
gpg:                 aka "Azat Khuzhin <bin@azat.sh>" [unknown]
gpg:                 aka "Azat Khuzhin <azat@libevent.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9E3A C83A 2797 4B84 D1B3  401D B860 8684 8EF8 686D
gpg: Signature made 2020 Jul 05 Sun 06:10:30 MDT
gpg:                using RSA key 9E3AC83A27974B84D1B3401DB86086848EF8686D
gpg: Good signature from "Azat Khuzhin <a3at.mail@gmail.com>" [unknown]
gpg:                 aka "Azat Khuzhin <bin@azat.sh>" [unknown]
gpg:                 aka "Azat Khuzhin <azat@libevent.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9E3A C83A 2797 4B84 D1B3  401D B860 8684 8EF8 686D
gpgv: Signature made 2020 Jul 05 Sun 06:10:30 MDT
gpgv:                using RSA key 9E3AC83A27974B84D1B3401DB86086848EF8686D
gpgv: Good signature from "Azat Khuzhin <a3at.mail@gmail.com>"
gpgv:                 aka "Azat Khuzhin <bin@azat.sh>"
gpgv:                 aka "Azat Khuzhin <azat@libevent.org>"
gpg: assuming signed data in 'libssh2-1.10.0.tar.gz'
gpg: Signature made 2021 Aug 29 Sun 14:38:17 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2021 Aug 29 Sun 14:38:17 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2021 Aug 29 Sun 14:38:17 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'libssh2-1.11.0.tar.gz'
gpg: Signature made 2023 May 30 Tue 09:59:26 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 May 30 Tue 09:59:26 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 May 30 Tue 09:59:26 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'libssh2-1.9.0.tar.gz'
gpg: Signature made 2019 Jun 20 Thu 00:19:47 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2019 Jun 20 Thu 00:19:47 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2019 Jun 20 Thu 00:19:47 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'libxslt-1.1.34.tar.gz'
gpg: Signature made 2019 Oct 30 Wed 14:02:48 MDT
gpg:                using RSA key DB46681BB91ADCEA170FA2D415588B26596BEA5D
gpg: Good signature from "Daniel Veillard (Red Hat work email) <veillard@redhat.com>" [unknown]
gpg:                 aka "Daniel Veillard <Daniel.Veillard@w3.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: C744 15BA 7C9C 7F78 F02E  1DC3 4606 B8A5 DE95 BC1F
     Subkey fingerprint: DB46 681B B91A DCEA 170F  A2D4 1558 8B26 596B EA5D
gpg: Signature made 2019 Oct 30 Wed 14:02:48 MDT
gpg:                using RSA key DB46681BB91ADCEA170FA2D415588B26596BEA5D
gpg: Good signature from "Daniel Veillard (Red Hat work email) <veillard@redhat.com>" [unknown]
gpg:                 aka "Daniel Veillard <Daniel.Veillard@w3.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: C744 15BA 7C9C 7F78 F02E  1DC3 4606 B8A5 DE95 BC1F
     Subkey fingerprint: DB46 681B B91A DCEA 170F  A2D4 1558 8B26 596B EA5D
gpgv: Signature made 2019 Oct 30 Wed 14:02:48 MDT
gpgv:                using RSA key DB46681BB91ADCEA170FA2D415588B26596BEA5D
gpgv: Good signature from "Daniel Veillard (Red Hat work email) <veillard@redhat.com>"
gpgv:                 aka "Daniel Veillard <Daniel.Veillard@w3.org>"
gpg: assuming signed data in 'lynx2.8.9rel.1.tar.bz2'
gpg: Signature made 2018 Jul 08 Sun 16:38:24 MDT
gpg:                using DSA key 702353E0F7E48EDB
gpg: Good signature from "Thomas Dickey <dickey@invisible-island.net>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: C520 48C0 C074 8FEE 227D  47A2 7023 53E0 F7E4 8EDB
gpg: Signature made 2018 Jul 08 Sun 16:38:24 MDT
gpg:                using DSA key 702353E0F7E48EDB
gpg: Good signature from "Thomas Dickey <dickey@invisible-island.net>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: C520 48C0 C074 8FEE 227D  47A2 7023 53E0 F7E4 8EDB
gpgv: Signature made 2018 Jul 08 Sun 16:38:24 MDT
gpgv:                using DSA key 702353E0F7E48EDB
gpgv: Good signature from "Thomas Dickey <dickey@invisible-island.net>"
gpg: not a detached signature
gpgv: not a detached signature
gpg: not a detached signature
gpgv: not a detached signature
gpg: not a detached signature
gpgv: not a detached signature
gpg: not a detached signature
gpgv: not a detached signature
gpg: assuming signed data in 'ncurses-6.4-20221231.tgz'
gpg: Signature made 2022 Dec 31 Sat 16:49:59 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2022 Dec 31 Sat 16:49:59 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2022 Dec 31 Sat 16:49:59 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230107.tgz'
gpg: Signature made 2023 Jan 07 Sat 19:20:11 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jan 07 Sat 19:20:11 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jan 07 Sat 19:20:11 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230114.tgz'
gpg: Signature made 2023 Jan 14 Sat 18:35:57 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jan 14 Sat 18:35:57 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jan 14 Sat 18:35:57 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230429.tgz'
gpg: Signature made 2023 Apr 29 Sat 17:32:16 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Apr 29 Sat 17:32:16 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Apr 29 Sat 17:32:16 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230514.tgz'
gpg: Signature made 2023 May 14 Sun 17:39:22 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 May 14 Sun 17:39:22 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 May 14 Sun 17:39:22 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230520.tgz'
gpg: Signature made 2023 May 20 Sat 14:02:36 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 May 20 Sat 14:02:36 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 May 20 Sat 14:02:36 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230603.tgz'
gpg: Signature made 2023 Jun 03 Sat 16:04:36 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jun 03 Sat 16:04:36 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jun 03 Sat 16:04:36 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230615.tgz'
gpg: Signature made 2023 Jun 15 Thu 15:24:43 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jun 15 Thu 15:24:43 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jun 15 Thu 15:24:43 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230617.tgz'
gpg: Signature made 2023 Jun 17 Sat 15:20:10 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jun 17 Sat 15:20:10 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jun 17 Sat 15:20:10 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230625.tgz'
gpg: Signature made 2023 Jun 25 Sun 17:46:50 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jun 25 Sun 17:46:50 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jun 25 Sun 17:46:50 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230701.tgz'
gpg: Signature made 2023 Jul 01 Sat 18:04:46 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jul 01 Sat 18:04:46 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jul 01 Sat 18:04:46 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230708.tgz'
gpg: Signature made 2023 Jul 08 Sat 18:33:50 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jul 08 Sat 18:33:50 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jul 08 Sat 18:33:50 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230715.tgz'
gpg: Signature made 2023 Jul 15 Sat 15:01:27 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jul 15 Sat 15:01:27 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jul 15 Sat 15:01:27 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20230729.tgz'
gpg: Signature made 2023 Jul 29 Sat 11:21:20 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jul 29 Sat 11:21:20 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jul 29 Sat 11:21:20 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20231001.tgz'
gpg: Signature made 2023 Oct 01 Sun 18:24:18 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Oct 01 Sun 18:24:18 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Oct 01 Sun 18:24:18 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20231016.tgz'
gpg: Signature made 2023 Oct 16 Mon 17:56:29 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Oct 16 Mon 17:56:29 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Oct 16 Mon 17:56:29 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20231104.tgz'
gpg: Signature made 2023 Nov 04 Sat 18:25:08 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Nov 04 Sat 18:25:08 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Nov 04 Sat 18:25:08 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20231111.tgz'
gpg: Signature made 2023 Nov 11 Sat 16:53:32 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Nov 11 Sat 16:53:32 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Nov 11 Sat 16:53:32 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20231230.tgz'
gpg: Signature made 2023 Dec 30 Sat 18:40:16 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Dec 30 Sat 18:40:16 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Dec 30 Sat 18:40:16 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20240113.tgz'
gpg: Signature made 2024 Jan 13 Sat 18:19:17 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Jan 13 Sat 18:19:17 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Jan 13 Sat 18:19:17 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20240120.tgz'
gpg: Signature made 2024 Jan 20 Sat 15:06:31 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Jan 20 Sat 15:06:31 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Jan 20 Sat 15:06:31 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20240127.tgz'
gpg: Signature made 2024 Jan 27 Sat 17:33:10 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Jan 27 Sat 17:33:10 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Jan 27 Sat 17:33:10 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.4-20240330.tgz'
gpg: Signature made 2024 Mar 30 Sat 17:48:12 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Mar 30 Sat 17:48:12 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Mar 30 Sat 17:48:12 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'ncurses-6.5-20240427.tgz'
gpg: Signature made 2024 Apr 27 Sat 14:27:29 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Apr 27 Sat 14:27:29 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Apr 27 Sat 14:27:29 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'nghttp2-1.62.0.tar.xz'
gpg: Signature made 2024 May 13 Mon 02:49:31 MDT
gpg:                using RSA key 516B622918D15C478AB1EA3A5339A2BE82E07DEC
gpg: Good signature from "Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: F4F3 B914 74D1 EB29 889B  D0EF 7E84 03D5 D673 C366
     Subkey fingerprint: 516B 6229 18D1 5C47 8AB1  EA3A 5339 A2BE 82E0 7DEC
gpg: Signature made 2024 May 13 Mon 02:49:31 MDT
gpg:                using RSA key 516B622918D15C478AB1EA3A5339A2BE82E07DEC
gpg: Good signature from "Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: F4F3 B914 74D1 EB29 889B  D0EF 7E84 03D5 D673 C366
     Subkey fingerprint: 516B 6229 18D1 5C47 8AB1  EA3A 5339 A2BE 82E0 7DEC
gpgv: Signature made 2024 May 13 Mon 02:49:31 MDT
gpgv:                using RSA key 516B622918D15C478AB1EA3A5339A2BE82E07DEC
gpgv: Good signature from "Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>"
gpg: assuming signed data in 'nghttp2-1.62.1.tar.xz'
gpg: Signature made 2024 May 19 Sun 00:26:23 MDT
gpg:                using RSA key 516B622918D15C478AB1EA3A5339A2BE82E07DEC
gpg: Good signature from "Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: F4F3 B914 74D1 EB29 889B  D0EF 7E84 03D5 D673 C366
     Subkey fingerprint: 516B 6229 18D1 5C47 8AB1  EA3A 5339 A2BE 82E0 7DEC
gpg: Signature made 2024 May 19 Sun 00:26:23 MDT
gpg:                using RSA key 516B622918D15C478AB1EA3A5339A2BE82E07DEC
gpg: Good signature from "Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: F4F3 B914 74D1 EB29 889B  D0EF 7E84 03D5 D673 C366
     Subkey fingerprint: 516B 6229 18D1 5C47 8AB1  EA3A 5339 A2BE 82E0 7DEC
gpgv: Signature made 2024 May 19 Sun 00:26:23 MDT
gpgv:                using RSA key 516B622918D15C478AB1EA3A5339A2BE82E07DEC
gpgv: Good signature from "Tatsuhiro Tsujikawa <tatsuhiro.t@gmail.com>"
gpg: assuming signed data in 'openssl-3.0.2.tar.gz'
gpg: Signature made 2022 Mar 15 Tue 08:30:27 MDT
gpg:                using RSA key 8657ABB260F056B1E5190839D9C4D26D0E604491
gpg: Good signature from "Matt Caswell <matt@openssl.org>" [unknown]
gpg:                 aka "Matt Caswell <frodo@baggins.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 8657 ABB2 60F0 56B1 E519  0839 D9C4 D26D 0E60 4491
gpg: Signature made 2022 Mar 15 Tue 08:30:27 MDT
gpg:                using RSA key 8657ABB260F056B1E5190839D9C4D26D0E604491
gpg: Good signature from "Matt Caswell <matt@openssl.org>" [unknown]
gpg:                 aka "Matt Caswell <frodo@baggins.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 8657 ABB2 60F0 56B1 E519  0839 D9C4 D26D 0E60 4491
gpgv: Signature made 2022 Mar 15 Tue 08:30:27 MDT
gpgv:                using RSA key 8657ABB260F056B1E5190839D9C4D26D0E604491
gpgv: Good signature from "Matt Caswell <matt@openssl.org>"
gpgv:                 aka "Matt Caswell <frodo@baggins.org>"
gpg: Signature made 2024 May 19 Sun 06:20:02 MDT
gpg:                using RSA key 632D3A06589DA6B1
gpg: Good signature from "Kernel.org checksum autosigner <autosigner@kernel.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: B886 8C80 BA62 A1FF FAF5  FDA9 632D 3A06 589D A6B1
gpg: WARNING: not a detached signature; file 'sha256sums' was NOT verified!
gpg: not a detached signature
gpgv: not a detached signature
gpg: assuming signed data in 'tack-1.09-20221229.tgz'
gpg: Signature made 2022 Dec 29 Thu 07:11:28 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2022 Dec 29 Thu 07:11:28 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2022 Dec 29 Thu 07:11:28 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'tack-1.09-20230201.tgz'
gpg: Signature made 2023 Feb 05 Sun 07:01:54 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Feb 05 Sun 07:01:54 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Feb 05 Sun 07:01:54 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'tack-1.10-20240501.tgz'
gpg: Signature made 2024 May 01 Wed 17:07:56 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 May 01 Wed 17:07:56 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 May 01 Wed 17:07:56 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'tiny-curl-8.4.0.tar.gz'
gpg: Signature made 2023 Oct 30 Mon 02:45:56 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpg: Signature made 2023 Oct 30 Mon 02:45:56 MDT
gpg:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpg: Good signature from "Daniel Stenberg <daniel@haxx.se>" [full]
gpgv: Signature made 2023 Oct 30 Mon 02:45:56 MDT
gpgv:                using RSA key 27EDEAF22F3ABCEB50DB9A125CC908FDB71E12C2
gpgv: Good signature from "Daniel Stenberg <daniel@haxx.se>"
gpg: assuming signed data in 'tzcode-2023a.tar.gz'
gpg: Signature made 2023 Mar 22 Wed 13:50:39 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2023 Mar 22 Wed 13:50:39 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2023 Mar 22 Wed 13:50:39 MDT
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'tzcode-2023b.tar.gz'
gpg: Signature made 2023 Mar 23 Thu 20:53:42 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2023 Mar 23 Thu 20:53:42 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2023 Mar 23 Thu 20:53:42 MDT
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'tzcode-2023c.tar.gz'
gpg: Signature made 2023 Mar 28 Tue 13:45:07 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2023 Mar 28 Tue 13:45:07 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2023 Mar 28 Tue 13:45:07 MDT
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'tzcode-2023d.tar.gz'
gpg: Signature made 2023 Dec 21 Thu 21:05:44 MST
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2023 Dec 21 Thu 21:05:44 MST
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2023 Dec 21 Thu 21:05:44 MST
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'tzcode-2024a.tar.gz'
gpg: Signature made 2024 Feb 01 Thu 10:40:59 MST
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2024 Feb 01 Thu 10:40:59 MST
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2024 Feb 01 Thu 10:40:59 MST
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'tzdata-2023a.tar.gz'
gpg: Signature made 2023 Mar 22 Wed 13:50:39 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2023 Mar 22 Wed 13:50:39 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2023 Mar 22 Wed 13:50:39 MDT
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'tzdata-2023b.tar.gz'
gpg: Signature made 2023 Mar 23 Thu 20:53:42 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2023 Mar 23 Thu 20:53:42 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2023 Mar 23 Thu 20:53:42 MDT
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'tzdata-2023c.tar.gz'
gpg: Signature made 2023 Mar 28 Tue 13:45:07 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2023 Mar 28 Tue 13:45:07 MDT
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2023 Mar 28 Tue 13:45:07 MDT
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'tzdata-2023d.tar.gz'
gpg: Signature made 2023 Dec 21 Thu 21:05:45 MST
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2023 Dec 21 Thu 21:05:45 MST
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2023 Dec 21 Thu 21:05:45 MST
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'tzdata-2024a.tar.gz'
gpg: Signature made 2024 Feb 01 Thu 10:40:59 MST
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpg: Signature made 2024 Feb 01 Thu 10:40:59 MST
gpg:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpg: Good signature from "Paul Eggert <eggert@cs.ucla.edu>" [ultimate]
gpgv: Signature made 2024 Feb 01 Thu 10:40:59 MST
gpgv:                using RSA key 7E3792A9D8ACF7D633BC1588ED97E90E62AA7E34
gpgv: Good signature from "Paul Eggert <eggert@cs.ucla.edu>"
gpg: assuming signed data in 'vttest-20220827.tgz'
gpg: Signature made 2022 Aug 27 Sat 17:51:42 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2022 Aug 27 Sat 17:51:42 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2022 Aug 27 Sat 17:51:42 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'vttest-20221111.tgz'
gpg: Signature made 2022 Nov 11 Fri 17:42:26 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2022 Nov 11 Fri 17:42:26 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2022 Nov 11 Fri 17:42:26 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'vttest-20221229.tgz'
gpg: Signature made 2023 Jan 02 Mon 15:31:52 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Jan 02 Mon 15:31:52 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Jan 02 Mon 15:31:52 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'vttest-20230201.tgz'
gpg: Signature made 2023 Feb 05 Sun 06:50:24 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Feb 05 Sun 06:50:24 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Feb 05 Sun 06:50:24 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'vttest-20230924.tgz'
gpg: Signature made 2023 Sep 24 Sun 15:02:11 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Sep 24 Sun 15:02:11 MDT
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Sep 24 Sun 15:02:11 MDT
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'vttest-20231230.tgz'
gpg: Signature made 2023 Dec 30 Sat 11:08:08 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2023 Dec 30 Sat 11:08:08 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2023 Dec 30 Sat 11:08:08 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'vttest-20240218.tgz'
gpg: Signature made 2024 Feb 18 Sun 18:04:45 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpg: Signature made 2024 Feb 18 Sun 18:04:45 MST
gpg:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpg: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>" [unknown]
gpg:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1988 2D92 DDA4 C400 C22C  0D56 CC2A F447 2167 BE03
gpgv: Signature made 2024 Feb 18 Sun 18:04:45 MST
gpgv:                using RSA key 19882D92DDA4C400C22C0D56CC2AF4472167BE03
gpgv: Good signature from "Thomas E. Dickey (use for email) <dickey@his.com>"
gpgv:                 aka "Thomas E. Dickey (self-signed w/o SHA1) <dickey@invisible-island.net>"
gpg: assuming signed data in 'a2ps-4.15.1.tar.gz'
gpg: Signature made 2023 Mar 12 Sun 09:02:13 MDT
gpg:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpg: Good signature from "Reuben Thomas <rrt@sc3d.org>" [unknown]
gpg:                 aka "keybase.io/rrt <rrt@keybase.io>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2409 3F01 6FFE 8602 EF44  9BB8 4C8E F3DA 3FD3 7230
gpg: Signature made 2023 Mar 12 Sun 09:02:13 MDT
gpg:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpg: Good signature from "Reuben Thomas <rrt@sc3d.org>" [unknown]
gpg:                 aka "keybase.io/rrt <rrt@keybase.io>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2409 3F01 6FFE 8602 EF44  9BB8 4C8E F3DA 3FD3 7230
gpgv: Signature made 2023 Mar 12 Sun 09:02:13 MDT
gpgv:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpgv: Good signature from "Reuben Thomas <rrt@sc3d.org>"
gpgv:                 aka "keybase.io/rrt <rrt@keybase.io>"
gpg: assuming signed data in 'a2ps-4.15.2.tar.gz'
gpg: Signature made 2023 Mar 19 Sun 11:45:57 MDT
gpg:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpg: Good signature from "Reuben Thomas <rrt@sc3d.org>" [unknown]
gpg:                 aka "keybase.io/rrt <rrt@keybase.io>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2409 3F01 6FFE 8602 EF44  9BB8 4C8E F3DA 3FD3 7230
gpg: Signature made 2023 Mar 19 Sun 11:45:57 MDT
gpg:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpg: Good signature from "Reuben Thomas <rrt@sc3d.org>" [unknown]
gpg:                 aka "keybase.io/rrt <rrt@keybase.io>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2409 3F01 6FFE 8602 EF44  9BB8 4C8E F3DA 3FD3 7230
gpgv: Signature made 2023 Mar 19 Sun 11:45:57 MDT
gpgv:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpgv: Good signature from "Reuben Thomas <rrt@sc3d.org>"
gpgv:                 aka "keybase.io/rrt <rrt@keybase.io>"
gpg: assuming signed data in 'a2ps-4.15.4.tar.gz'
gpg: Signature made 2023 Apr 13 Thu 08:17:26 MDT
gpg:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpg: Good signature from "Reuben Thomas <rrt@sc3d.org>" [unknown]
gpg:                 aka "keybase.io/rrt <rrt@keybase.io>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2409 3F01 6FFE 8602 EF44  9BB8 4C8E F3DA 3FD3 7230
gpg: Signature made 2023 Apr 13 Thu 08:17:26 MDT
gpg:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpg: Good signature from "Reuben Thomas <rrt@sc3d.org>" [unknown]
gpg:                 aka "keybase.io/rrt <rrt@keybase.io>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2409 3F01 6FFE 8602 EF44  9BB8 4C8E F3DA 3FD3 7230
gpgv: Signature made 2023 Apr 13 Thu 08:17:26 MDT
gpgv:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpgv: Good signature from "Reuben Thomas <rrt@sc3d.org>"
gpgv:                 aka "keybase.io/rrt <rrt@keybase.io>"
gpg: assuming signed data in 'a2ps-4.15.tar.gz'
gpg: Signature made 2023 Mar 07 Tue 11:12:51 MST
gpg:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpg: Good signature from "Reuben Thomas <rrt@sc3d.org>" [unknown]
gpg:                 aka "keybase.io/rrt <rrt@keybase.io>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2409 3F01 6FFE 8602 EF44  9BB8 4C8E F3DA 3FD3 7230
gpg: Signature made 2023 Mar 07 Tue 11:12:51 MST
gpg:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpg: Good signature from "Reuben Thomas <rrt@sc3d.org>" [unknown]
gpg:                 aka "keybase.io/rrt <rrt@keybase.io>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2409 3F01 6FFE 8602 EF44  9BB8 4C8E F3DA 3FD3 7230
gpgv: Signature made 2023 Mar 07 Tue 11:12:51 MST
gpgv:                using RSA key 24093F016FFE8602EF449BB84C8EF3DA3FD37230
gpgv: Good signature from "Reuben Thomas <rrt@sc3d.org>"
gpgv:                 aka "keybase.io/rrt <rrt@keybase.io>"
gpg: assuming signed data in 'bison-3.7.6.tar.xz'
gpg: Signature made 2021 Mar 09 Tue 00:23:12 MST
gpg:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpg: Good signature from "Akim Demaille <akim.demaille@gmail.com>" [unknown]
gpg:                 aka "Akim Demaille <akim@gnu.org>" [unknown]
gpg:                 aka "Akim Demaille <akim@epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <demaille@enst.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@lrde.epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@freefriends.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7DF8 4374 B1EE 1F97 64BB  E25D 0DDC AA32 78D5 264E
gpg: Signature made 2021 Mar 09 Tue 00:23:12 MST
gpg:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpg: Good signature from "Akim Demaille <akim.demaille@gmail.com>" [unknown]
gpg:                 aka "Akim Demaille <akim@gnu.org>" [unknown]
gpg:                 aka "Akim Demaille <akim@epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <demaille@enst.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@lrde.epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@freefriends.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7DF8 4374 B1EE 1F97 64BB  E25D 0DDC AA32 78D5 264E
gpgv: Signature made 2021 Mar 09 Tue 00:23:12 MST
gpgv:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpgv: Good signature from "Akim Demaille <akim.demaille@gmail.com>"
gpgv:                 aka "Akim Demaille <akim@gnu.org>"
gpgv:                 aka "Akim Demaille <akim@epita.fr>"
gpgv:                 aka "Akim Demaille <demaille@enst.fr>"
gpgv:                 aka "Akim Demaille <akim@lrde.epita.fr>"
gpgv:                 aka "Akim Demaille <akim@freefriends.org>"
gpg: assuming signed data in 'bison-3.8.1.tar.xz'
gpg: Signature made 2021 Sep 11 Sat 01:02:06 MDT
gpg:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpg: Good signature from "Akim Demaille <akim.demaille@gmail.com>" [unknown]
gpg:                 aka "Akim Demaille <akim@gnu.org>" [unknown]
gpg:                 aka "Akim Demaille <akim@epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <demaille@enst.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@lrde.epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@freefriends.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7DF8 4374 B1EE 1F97 64BB  E25D 0DDC AA32 78D5 264E
gpg: Signature made 2021 Sep 11 Sat 01:02:06 MDT
gpg:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpg: Good signature from "Akim Demaille <akim.demaille@gmail.com>" [unknown]
gpg:                 aka "Akim Demaille <akim@gnu.org>" [unknown]
gpg:                 aka "Akim Demaille <akim@epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <demaille@enst.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@lrde.epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@freefriends.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7DF8 4374 B1EE 1F97 64BB  E25D 0DDC AA32 78D5 264E
gpgv: Signature made 2021 Sep 11 Sat 01:02:06 MDT
gpgv:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpgv: Good signature from "Akim Demaille <akim.demaille@gmail.com>"
gpgv:                 aka "Akim Demaille <akim@gnu.org>"
gpgv:                 aka "Akim Demaille <akim@epita.fr>"
gpgv:                 aka "Akim Demaille <demaille@enst.fr>"
gpgv:                 aka "Akim Demaille <akim@lrde.epita.fr>"
gpgv:                 aka "Akim Demaille <akim@freefriends.org>"
gpg: assuming signed data in 'bison-3.8.2.tar.xz'
gpg: Signature made 2021 Sep 25 Sat 03:30:33 MDT
gpg:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpg: Good signature from "Akim Demaille <akim.demaille@gmail.com>" [unknown]
gpg:                 aka "Akim Demaille <akim@gnu.org>" [unknown]
gpg:                 aka "Akim Demaille <akim@epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <demaille@enst.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@lrde.epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@freefriends.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7DF8 4374 B1EE 1F97 64BB  E25D 0DDC AA32 78D5 264E
gpg: Signature made 2021 Sep 25 Sat 03:30:33 MDT
gpg:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpg: Good signature from "Akim Demaille <akim.demaille@gmail.com>" [unknown]
gpg:                 aka "Akim Demaille <akim@gnu.org>" [unknown]
gpg:                 aka "Akim Demaille <akim@epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <demaille@enst.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@lrde.epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@freefriends.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7DF8 4374 B1EE 1F97 64BB  E25D 0DDC AA32 78D5 264E
gpgv: Signature made 2021 Sep 25 Sat 03:30:33 MDT
gpgv:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpgv: Good signature from "Akim Demaille <akim.demaille@gmail.com>"
gpgv:                 aka "Akim Demaille <akim@gnu.org>"
gpgv:                 aka "Akim Demaille <akim@epita.fr>"
gpgv:                 aka "Akim Demaille <demaille@enst.fr>"
gpgv:                 aka "Akim Demaille <akim@lrde.epita.fr>"
gpgv:                 aka "Akim Demaille <akim@freefriends.org>"
gpg: assuming signed data in 'bison-3.8.tar.xz'
gpg: Signature made 2021 Sep 07 Tue 13:47:16 MDT
gpg:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpg: Good signature from "Akim Demaille <akim.demaille@gmail.com>" [unknown]
gpg:                 aka "Akim Demaille <akim@gnu.org>" [unknown]
gpg:                 aka "Akim Demaille <akim@epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <demaille@enst.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@lrde.epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@freefriends.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7DF8 4374 B1EE 1F97 64BB  E25D 0DDC AA32 78D5 264E
gpg: Signature made 2021 Sep 07 Tue 13:47:16 MDT
gpg:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpg: Good signature from "Akim Demaille <akim.demaille@gmail.com>" [unknown]
gpg:                 aka "Akim Demaille <akim@gnu.org>" [unknown]
gpg:                 aka "Akim Demaille <akim@epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <demaille@enst.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@lrde.epita.fr>" [unknown]
gpg:                 aka "Akim Demaille <akim@freefriends.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7DF8 4374 B1EE 1F97 64BB  E25D 0DDC AA32 78D5 264E
gpgv: Signature made 2021 Sep 07 Tue 13:47:16 MDT
gpgv:                using DSA key 7DF84374B1EE1F9764BBE25D0DDCAA3278D5264E
gpgv: Good signature from "Akim Demaille <akim.demaille@gmail.com>"
gpgv:                 aka "Akim Demaille <akim@gnu.org>"
gpgv:                 aka "Akim Demaille <akim@epita.fr>"
gpgv:                 aka "Akim Demaille <demaille@enst.fr>"
gpgv:                 aka "Akim Demaille <akim@lrde.epita.fr>"
gpgv:                 aka "Akim Demaille <akim@freefriends.org>"
gpg: assuming signed data in 'coreutils-8.26.tar.xz'
gpg: Signature made 2016 Nov 30 Wed 12:11:37 MST
gpg:                using RSA key DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2016 Nov 30 Wed 12:11:37 MST
gpg:                using RSA key DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2016 Nov 30 Wed 12:11:37 MST
gpgv:                using RSA key DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'coreutils-8.27.tar.xz'
gpg: Signature made 2017 Mar 08 Wed 22:46:02 MST
gpg:                using RSA key DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2017 Mar 08 Wed 22:46:02 MST
gpg:                using RSA key DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2017 Mar 08 Wed 22:46:02 MST
gpgv:                using RSA key DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'coreutils-8.31.tar.xz'
gpg: Signature made 2019 Mar 10 Sun 18:24:04 MDT
gpg:                using RSA key DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2019 Mar 10 Sun 18:24:04 MDT
gpg:                using RSA key DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2019 Mar 10 Sun 18:24:04 MDT
gpgv:                using RSA key DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'coreutils-8.32.tar.xz'
gpg: Signature made 2020 Mar 05 Thu 07:24:19 MST
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2020 Mar 05 Thu 07:24:19 MST
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2020 Mar 05 Thu 07:24:19 MST
gpgv:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'coreutils-9.0.tar.xz'
gpg: Signature made 2021 Sep 24 Fri 07:42:38 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2021 Sep 24 Fri 07:42:38 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2021 Sep 24 Fri 07:42:38 MDT
gpgv:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'coreutils-9.1.tar.xz'
gpg: Signature made 2022 Apr 15 Fri 16:16:04 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2022 Apr 15 Fri 16:16:04 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2022 Apr 15 Fri 16:16:04 MDT
gpgv:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'coreutils-9.2.tar.xz'
gpg: Signature made 2023 Mar 20 Mon 09:08:24 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2023 Mar 20 Mon 09:08:24 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2023 Mar 20 Mon 09:08:24 MDT
gpgv:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'coreutils-9.3.tar.xz'
gpg: Signature made 2023 Apr 18 Tue 08:55:34 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2023 Apr 18 Tue 08:55:34 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2023 Apr 18 Tue 08:55:34 MDT
gpgv:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'coreutils-9.4.tar.xz'
gpg: Signature made 2023 Aug 29 Tue 09:09:20 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2023 Aug 29 Tue 09:09:20 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2023 Aug 29 Tue 09:09:20 MDT
gpgv:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'coreutils-9.5.tar.xz'
gpg: Signature made 2024 Mar 28 Thu 09:20:24 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpg: Signature made 2024 Mar 28 Thu 09:20:24 MDT
gpg:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpg: Good signature from "Pádraig Brady <P@draigBrady.com>" [unknown]
gpg:                 aka "Pádraig Brady <pixelbeat@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6C37 DC12 121A 5006 BC1D  B804 DF6F D971 3060 37D9
gpgv: Signature made 2024 Mar 28 Thu 09:20:24 MDT
gpgv:                using RSA key 6C37DC12121A5006BC1DB804DF6FD971306037D9
gpgv: Good signature from "Pádraig Brady <P@draigBrady.com>"
gpgv:                 aka "Pádraig Brady <pixelbeat@gnu.org>"
gpg: assuming signed data in 'dejagnu-1.5.tar.gz'
gpg: Signature made 2011 Mar 08 Tue 22:04:35 MST
gpg:                using DSA key 496D9068D6D7300D
gpg: Good signature from "Ben Elliston <b.elliston@student.unsw.edu.au>" [expired]
gpg:                 aka "Ben Elliston <bje@air.net.au>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: A5F2 018B 8C88 4027 53C2  CC13 496D 9068 D6D7 300D
gpg: Signature made 2011 Mar 08 Tue 22:04:35 MST
gpg:                using DSA key 496D9068D6D7300D
gpg: Good signature from "Ben Elliston <b.elliston@student.unsw.edu.au>" [expired]
gpg:                 aka "Ben Elliston <bje@air.net.au>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: A5F2 018B 8C88 4027 53C2  CC13 496D 9068 D6D7 300D
gpgv: Signature made 2011 Mar 08 Tue 22:04:35 MST
gpgv:                using DSA key 496D9068D6D7300D
gpgv: Good signature from "Ben Elliston <b.elliston@student.unsw.edu.au>"
gpgv:                 aka "Ben Elliston <bje@air.net.au>"
gpg: assuming signed data in 'dejagnu-1.6.3.tar.gz'
gpg: Signature made 2021 Jun 16 Wed 21:04:30 MDT
gpg:                using RSA key CE9D6843AABACC90
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: Can't check signature: No public key
gpg: Signature made 2021 Jun 16 Wed 21:04:30 MDT
gpg:                using RSA key CE9D6843AABACC90
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: Can't check signature: No public key
gpgv: Signature made 2021 Jun 16 Wed 21:04:30 MDT
gpgv:                using RSA key CE9D6843AABACC90
gpgv: Can't check signature: No public key
gpg: assuming signed data in 'diffutils-3.10.tar.xz'
gpg: Signature made 2023 May 21 Sun 02:55:17 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2023 May 21 Sun 02:55:17 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2023 May 21 Sun 02:55:17 MDT
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'diffutils-3.8.tar.xz'
gpg: Signature made 2021 Aug 01 Sun 19:59:27 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2021 Aug 01 Sun 19:59:27 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2021 Aug 01 Sun 19:59:27 MDT
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'diffutils-3.9.tar.xz'
gpg: Signature made 2023 Jan 15 Sun 16:59:54 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2023 Jan 15 Sun 16:59:54 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2023 Jan 15 Sun 16:59:54 MST
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'findutils-4.10.0.tar.xz'
gpg: Signature made 2024 Jun 01 Sat 10:32:27 MDT
gpg:                using RSA key A5189DB69C1164D33002936646502EF796917195
gpg: Good signature from "Bernhard Voelker <mail@bernhard-voelker.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A518 9DB6 9C11 64D3 3002  9366 4650 2EF7 9691 7195
gpg: Signature made 2024 Jun 01 Sat 10:32:27 MDT
gpg:                using RSA key A5189DB69C1164D33002936646502EF796917195
gpg: Good signature from "Bernhard Voelker <mail@bernhard-voelker.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A518 9DB6 9C11 64D3 3002  9366 4650 2EF7 9691 7195
gpgv: Signature made 2024 Jun 01 Sat 10:32:27 MDT
gpgv:                using RSA key A5189DB69C1164D33002936646502EF796917195
gpgv: Good signature from "Bernhard Voelker <mail@bernhard-voelker.de>"
gpg: assuming signed data in 'findutils-4.8.0.tar.xz'
gpg: Signature made 2021 Jan 09 Sat 09:49:51 MST
gpg:                using RSA key A5189DB69C1164D33002936646502EF796917195
gpg: Good signature from "Bernhard Voelker <mail@bernhard-voelker.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A518 9DB6 9C11 64D3 3002  9366 4650 2EF7 9691 7195
gpg: Signature made 2021 Jan 09 Sat 09:49:51 MST
gpg:                using RSA key A5189DB69C1164D33002936646502EF796917195
gpg: Good signature from "Bernhard Voelker <mail@bernhard-voelker.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A518 9DB6 9C11 64D3 3002  9366 4650 2EF7 9691 7195
gpgv: Signature made 2021 Jan 09 Sat 09:49:51 MST
gpgv:                using RSA key A5189DB69C1164D33002936646502EF796917195
gpgv: Good signature from "Bernhard Voelker <mail@bernhard-voelker.de>"
gpg: assuming signed data in 'findutils-4.9.0.tar.xz'
gpg: Signature made 2022 Feb 01 Tue 17:27:51 MST
gpg:                using RSA key A5189DB69C1164D33002936646502EF796917195
gpg: Good signature from "Bernhard Voelker <mail@bernhard-voelker.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A518 9DB6 9C11 64D3 3002  9366 4650 2EF7 9691 7195
gpg: Signature made 2022 Feb 01 Tue 17:27:51 MST
gpg:                using RSA key A5189DB69C1164D33002936646502EF796917195
gpg: Good signature from "Bernhard Voelker <mail@bernhard-voelker.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A518 9DB6 9C11 64D3 3002  9366 4650 2EF7 9691 7195
gpgv: Signature made 2022 Feb 01 Tue 17:27:51 MST
gpgv:                using RSA key A5189DB69C1164D33002936646502EF796917195
gpgv: Good signature from "Bernhard Voelker <mail@bernhard-voelker.de>"
gpg: assuming signed data in 'gcl-2.6.13.tar.gz'
gpg: Signature made 2023 Jan 11 Wed 19:04:02 MST
gpg:                using EDDSA key 6A74659F1F23191E97F9B65E1AF29494BE512BAE
gpg:                issuer "camm@maguirefamily.org"
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: requesting key 1AF29494BE512BAE from hkps://pgp.surf.nl
gpg: Can't check signature: No public key
gpg: Signature made 2023 Jan 11 Wed 19:04:02 MST
gpg:                using EDDSA key 6A74659F1F23191E97F9B65E1AF29494BE512BAE
gpg:                issuer "camm@maguirefamily.org"
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: requesting key 1AF29494BE512BAE from hkps://pgp.surf.nl
gpg: Can't check signature: No public key
gpgv: Signature made 2023 Jan 11 Wed 19:04:02 MST
gpgv:                using EDDSA key 6A74659F1F23191E97F9B65E1AF29494BE512BAE
gpgv:                issuer "camm@maguirefamily.org"
gpgv: Can't check signature: No public key
gpg: assuming signed data in 'gettext-0.21.1.tar.xz'
gpg: Signature made 2022 Oct 09 Sun 17:05:09 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpg: Signature made 2022 Oct 09 Sun 17:05:09 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpgv: Signature made 2022 Oct 09 Sun 17:05:09 MDT
gpgv:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpgv: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>"
gpg: assuming signed data in 'gettext-0.21.tar.xz'
gpg: Signature made 2020 Jul 26 Sun 18:27:18 MDT
gpg:                using RSA key F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpg: Signature made 2020 Jul 26 Sun 18:27:18 MDT
gpg:                using RSA key F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpgv: Signature made 2020 Jul 26 Sun 18:27:18 MDT
gpgv:                using RSA key F5BE8B267C6A406D
gpgv: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>"
gpg: assuming signed data in 'gettext-0.22.2.tar.lz'
gpg: Signature made 2023 Sep 19 Tue 16:06:37 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpg: Signature made 2023 Sep 19 Tue 16:06:37 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpgv: Signature made 2023 Sep 19 Tue 16:06:37 MDT
gpgv:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpgv: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>"
gpg: assuming signed data in 'gettext-0.22.3.tar.lz'
gpg: Signature made 2023 Oct 04 Wed 09:27:48 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpg: Signature made 2023 Oct 04 Wed 09:27:48 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpgv: Signature made 2023 Oct 04 Wed 09:27:48 MDT
gpgv:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpgv: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>"
gpg: assuming signed data in 'gettext-0.22.4.tar.lz'
gpg: Signature made 2023 Nov 19 Sun 13:56:11 MST
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpg: Signature made 2023 Nov 19 Sun 13:56:11 MST
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpgv: Signature made 2023 Nov 19 Sun 13:56:11 MST
gpgv:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpgv: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>"
gpg: assuming signed data in 'gettext-0.22.5.tar.lz'
gpg: Signature made 2024 Feb 21 Wed 18:15:07 MST
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpg: Signature made 2024 Feb 21 Wed 18:15:07 MST
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpgv: Signature made 2024 Feb 21 Wed 18:15:07 MST
gpgv:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpgv: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>"
gpg: assuming signed data in 'gettext-0.22.tar.xz'
gpg: Signature made 2023 Jun 17 Sat 07:13:48 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpg: Signature made 2023 Jun 17 Sat 07:13:48 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpgv: Signature made 2023 Jun 17 Sat 07:13:48 MDT
gpgv:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpgv: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>"
gpg: assuming signed data in 'gnutls-3.8.2.tar.xz'
gpg: Signature made 2023 Nov 15 Wed 03:26:19 MST
gpg:                using EDDSA key 5D46CB0F763405A7053556F47A75A648B3F9220C
gpg: Good signature from "Zoltan Fridrich <zfridric@redhat.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 5D46 CB0F 7634 05A7 0535  56F4 7A75 A648 B3F9 220C
gpg: Signature made 2023 Nov 15 Wed 04:34:59 MST
gpg:                using RSA key 462225C3B46F34879FC8496CD605848ED7E69871
gpg: Good signature from "Daiki Ueno <ueno@unixuser.org>" [expired]
gpg:                 aka "Daiki Ueno <ueno@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 4622 25C3 B46F 3487 9FC8  496C D605 848E D7E6 9871
gpg: Signature made 2023 Nov 15 Wed 03:26:19 MST
gpg:                using EDDSA key 5D46CB0F763405A7053556F47A75A648B3F9220C
gpg: Good signature from "Zoltan Fridrich <zfridric@redhat.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 5D46 CB0F 7634 05A7 0535  56F4 7A75 A648 B3F9 220C
gpg: Signature made 2023 Nov 15 Wed 04:34:59 MST
gpg:                using RSA key 462225C3B46F34879FC8496CD605848ED7E69871
gpg: Good signature from "Daiki Ueno <ueno@unixuser.org>" [expired]
gpg:                 aka "Daiki Ueno <ueno@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 4622 25C3 B46F 3487 9FC8  496C D605 848E D7E6 9871
gpgv: Signature made 2023 Nov 15 Wed 03:26:19 MST
gpgv:                using EDDSA key 5D46CB0F763405A7053556F47A75A648B3F9220C
gpgv: Good signature from "Zoltan Fridrich <zfridric@redhat.com>"
gpgv: Signature made 2023 Nov 15 Wed 04:34:59 MST
gpgv:                using RSA key 462225C3B46F34879FC8496CD605848ED7E69871
gpgv: Good signature from "Daiki Ueno <ueno@unixuser.org>"
gpgv:                 aka "Daiki Ueno <ueno@gnu.org>"
gpg: assuming signed data in 'gpgme-1.23.1.tar.bz2'
gpg: Signature made 2023 Oct 27 Fri 06:41:07 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2023 Nov 14 Tue 17:50:43 MST
gpg:                using EDDSA key AC8E115BF73E2D8D47FA9908E98E9B2D19C6C8BD
gpg: Good signature from "Niibe Yutaka (GnuPG Release Key)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: AC8E 115B F73E 2D8D 47FA  9908 E98E 9B2D 19C6 C8BD
gpg: Signature made 2023 Oct 27 Fri 06:41:07 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2023 Nov 14 Tue 17:50:43 MST
gpg:                using EDDSA key AC8E115BF73E2D8D47FA9908E98E9B2D19C6C8BD
gpg: Good signature from "Niibe Yutaka (GnuPG Release Key)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: AC8E 115B F73E 2D8D 47FA  9908 E98E 9B2D 19C6 C8BD
gpgv: Signature made 2023 Oct 27 Fri 06:41:07 MDT
gpgv:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpgv: Good signature from "Werner Koch (dist signing 2020)"
gpgv: Signature made 2023 Nov 14 Tue 17:50:43 MST
gpgv:                using EDDSA key AC8E115BF73E2D8D47FA9908E98E9B2D19C6C8BD
gpgv: Good signature from "Niibe Yutaka (GnuPG Release Key)"
gpg: assuming signed data in 'grep-3.10.tar.xz'
gpg: Signature made 2023 Mar 22 Wed 19:04:34 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2023 Mar 22 Wed 19:04:34 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2023 Mar 22 Wed 19:04:34 MDT
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'grep-3.11.tar.xz'
gpg: Signature made 2023 May 13 Sat 02:39:08 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2023 May 13 Sat 02:39:08 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2023 May 13 Sat 02:39:08 MDT
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'grep-3.6.tar.xz'
gpg: Signature made 2020 Nov 08 Sun 21:40:03 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2020 Nov 08 Sun 21:40:03 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2020 Nov 08 Sun 21:40:03 MST
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'grep-3.7.tar.xz'
gpg: Signature made 2021 Aug 14 Sat 13:56:29 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2021 Aug 14 Sat 13:56:29 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2021 Aug 14 Sat 13:56:29 MDT
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'grep-3.8.tar.xz'
gpg: Signature made 2022 Sep 03 Sat 01:23:17 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2022 Sep 03 Sat 01:23:17 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2022 Sep 03 Sat 01:23:17 MDT
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'grep-3.9.tar.xz'
gpg: Signature made 2023 Mar 05 Sun 08:34:07 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2023 Mar 05 Sun 08:34:07 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2023 Mar 05 Sun 08:34:07 MST
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'groff-1.23.0.rc2.tar.gz'
gpg: Signature made 2023 Feb 04 Sat 11:08:46 MST
gpg:                using RSA key 2D0C08D2B0AD0D3D8626670272D23FBAC99D4E75
gpg: Good signature from "Bertrand Garrigues <bertrand.garrigues@laposte.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2D0C 08D2 B0AD 0D3D 8626  6702 72D2 3FBA C99D 4E75
gpg: Signature made 2023 Feb 04 Sat 11:08:46 MST
gpg:                using RSA key 2D0C08D2B0AD0D3D8626670272D23FBAC99D4E75
gpg: Good signature from "Bertrand Garrigues <bertrand.garrigues@laposte.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2D0C 08D2 B0AD 0D3D 8626  6702 72D2 3FBA C99D 4E75
gpgv: Signature made 2023 Feb 04 Sat 11:08:46 MST
gpgv:                using RSA key 2D0C08D2B0AD0D3D8626670272D23FBAC99D4E75
gpgv: Good signature from "Bertrand Garrigues <bertrand.garrigues@laposte.net>"
gpg: assuming signed data in 'groff-1.23.0.rc3.tar.gz'
gpg: Signature made 2023 Feb 20 Mon 15:06:20 MST
gpg:                using RSA key 2D0C08D2B0AD0D3D8626670272D23FBAC99D4E75
gpg: Good signature from "Bertrand Garrigues <bertrand.garrigues@laposte.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2D0C 08D2 B0AD 0D3D 8626  6702 72D2 3FBA C99D 4E75
gpg: Signature made 2023 Feb 20 Mon 15:06:20 MST
gpg:                using RSA key 2D0C08D2B0AD0D3D8626670272D23FBAC99D4E75
gpg: Good signature from "Bertrand Garrigues <bertrand.garrigues@laposte.net>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 2D0C 08D2 B0AD 0D3D 8626  6702 72D2 3FBA C99D 4E75
gpgv: Signature made 2023 Feb 20 Mon 15:06:20 MST
gpgv:                using RSA key 2D0C08D2B0AD0D3D8626670272D23FBAC99D4E75
gpgv: Good signature from "Bertrand Garrigues <bertrand.garrigues@laposte.net>"
gpg: assuming signed data in 'gzip-1.10.tar.xz'
gpg: Signature made 2018 Dec 29 Sat 22:35:35 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2018 Dec 29 Sat 22:35:35 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2018 Dec 29 Sat 22:35:35 MST
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'gzip-1.11.tar.xz'
gpg: Signature made 2021 Sep 03 Fri 08:39:08 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2021 Sep 03 Fri 08:39:08 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2021 Sep 03 Fri 08:39:08 MDT
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'gzip-1.12.tar.xz'
gpg: Signature made 2022 Apr 07 Thu 10:59:54 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2022 Apr 07 Thu 10:59:54 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2022 Apr 07 Thu 10:59:54 MDT
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'gzip-1.13.tar.xz'
gpg: Signature made 2023 Aug 19 Sat 18:20:51 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2023 Aug 19 Sat 18:20:51 MDT
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2023 Aug 19 Sat 18:20:51 MDT
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'help2man-1.47.4.tar.xz'
gpg: Signature made 2016 May 09 Mon 02:03:53 MDT
gpg:                using DSA key F0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpg: Signature made 2016 May 09 Mon 02:03:53 MDT
gpg:                using DSA key F0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpgv: Signature made 2016 May 09 Mon 02:03:53 MDT
gpgv:                using DSA key F0DC8E00B28C5995
gpgv: Good signature from "Brendan O'Dea <bod@debian.org>"
gpg: assuming signed data in 'help2man-1.48.5.tar.xz'
gpg: Signature made 2021 Aug 22 Sun 06:37:16 MDT
gpg:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpg: Signature made 2021 Aug 22 Sun 06:37:16 MDT
gpg:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpgv: Signature made 2021 Aug 22 Sun 06:37:16 MDT
gpgv:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpgv: Good signature from "Brendan O'Dea <bod@debian.org>"
gpg: assuming signed data in 'help2man-1.49.1.tar.xz'
gpg: Signature made 2022 Feb 14 Mon 19:07:34 MST
gpg:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpg: Signature made 2022 Feb 14 Mon 19:07:34 MST
gpg:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpgv: Signature made 2022 Feb 14 Mon 19:07:34 MST
gpgv:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpgv: Good signature from "Brendan O'Dea <bod@debian.org>"
gpg: assuming signed data in 'help2man-1.49.2.tar.xz'
gpg: Signature made 2022 Apr 11 Mon 03:57:53 MDT
gpg:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpg: Signature made 2022 Apr 11 Mon 03:57:53 MDT
gpg:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpgv: Signature made 2022 Apr 11 Mon 03:57:53 MDT
gpgv:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpgv: Good signature from "Brendan O'Dea <bod@debian.org>"
gpg: assuming signed data in 'help2man-1.49.3.tar.xz'
gpg: Signature made 2022 Dec 15 Thu 03:41:10 MST
gpg:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpg: Signature made 2022 Dec 15 Thu 03:41:10 MST
gpg:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpg: Good signature from "Brendan O'Dea <bod@debian.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 87EA 44D1 50D8 9615 E39A  3FEE F0DC 8E00 B28C 5995
gpgv: Signature made 2022 Dec 15 Thu 03:41:10 MST
gpgv:                using DSA key 87EA44D150D89615E39A3FEEF0DC8E00B28C5995
gpgv: Good signature from "Brendan O'Dea <bod@debian.org>"
gpg: assuming signed data in 'htmldoc-1.9.12-source.tar.gz'
gpg: Signature made 2021 May 17 Mon 18:51:41 MDT
gpg:                using RSA key 845464660B686AAB36540B6F999559A027815955
gpg: Good signature from "Michael R Sweet <michael.r.sweet@gmail.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 8454 6466 0B68 6AAB 3654  0B6F 9995 59A0 2781 5955
gpg: Signature made 2021 May 17 Mon 18:51:41 MDT
gpg:                using RSA key 845464660B686AAB36540B6F999559A027815955
gpg: Good signature from "Michael R Sweet <michael.r.sweet@gmail.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 8454 6466 0B68 6AAB 3654  0B6F 9995 59A0 2781 5955
gpgv: Signature made 2021 May 17 Mon 18:51:41 MDT
gpgv:                using RSA key 845464660B686AAB36540B6F999559A027815955
gpgv: Good signature from "Michael R Sweet <michael.r.sweet@gmail.com>"
gpg: assuming signed data in 'htmldoc-1.9.13-source.tar.gz'
gpg: Signature made 2021 Nov 05 Fri 13:03:29 MDT
gpg:                using RSA key 845464660B686AAB36540B6F999559A027815955
gpg: Good signature from "Michael R Sweet <michael.r.sweet@gmail.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 8454 6466 0B68 6AAB 3654  0B6F 9995 59A0 2781 5955
gpg: Signature made 2021 Nov 05 Fri 13:03:29 MDT
gpg:                using RSA key 845464660B686AAB36540B6F999559A027815955
gpg: Good signature from "Michael R Sweet <michael.r.sweet@gmail.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 8454 6466 0B68 6AAB 3654  0B6F 9995 59A0 2781 5955
gpgv: Signature made 2021 Nov 05 Fri 13:03:29 MDT
gpgv:                using RSA key 845464660B686AAB36540B6F999559A027815955
gpgv: Good signature from "Michael R Sweet <michael.r.sweet@gmail.com>"
gpg: assuming signed data in 'htmldoc-1.9.14-source.tar.gz'
gpg: Signature made 2021 Dec 22 Wed 18:19:06 MST
gpg:                using RSA key 9086C3CDC66C3F563CF8F405BE67C75EC81F3244
gpg: Good signature from "Michael R Sweet <msweet@msweet.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9086 C3CD C66C 3F56 3CF8  F405 BE67 C75E C81F 3244
gpg: Signature made 2021 Dec 22 Wed 18:19:06 MST
gpg:                using RSA key 9086C3CDC66C3F563CF8F405BE67C75EC81F3244
gpg: Good signature from "Michael R Sweet <msweet@msweet.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9086 C3CD C66C 3F56 3CF8  F405 BE67 C75E C81F 3244
gpgv: Signature made 2021 Dec 22 Wed 18:19:06 MST
gpgv:                using RSA key 9086C3CDC66C3F563CF8F405BE67C75EC81F3244
gpgv: Good signature from "Michael R Sweet <msweet@msweet.org>"
gpg: assuming signed data in 'htmldoc-1.9.15-source.tar.gz'
gpg: Signature made 2022 Feb 05 Sat 10:43:28 MST
gpg:                using RSA key 9086C3CDC66C3F563CF8F405BE67C75EC81F3244
gpg: Good signature from "Michael R Sweet <msweet@msweet.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9086 C3CD C66C 3F56 3CF8  F405 BE67 C75E C81F 3244
gpg: Signature made 2022 Feb 05 Sat 10:43:28 MST
gpg:                using RSA key 9086C3CDC66C3F563CF8F405BE67C75EC81F3244
gpg: Good signature from "Michael R Sweet <msweet@msweet.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9086 C3CD C66C 3F56 3CF8  F405 BE67 C75E C81F 3244
gpgv: Signature made 2022 Feb 05 Sat 10:43:28 MST
gpgv:                using RSA key 9086C3CDC66C3F563CF8F405BE67C75EC81F3244
gpgv: Good signature from "Michael R Sweet <msweet@msweet.org>"
gpg: assuming signed data in 'htmldoc-1.9.16-source.tar.gz'
gpg: Signature made 2022 May 19 Thu 13:33:59 MDT
gpg:                using RSA key 9086C3CDC66C3F563CF8F405BE67C75EC81F3244
gpg: Good signature from "Michael R Sweet <msweet@msweet.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9086 C3CD C66C 3F56 3CF8  F405 BE67 C75E C81F 3244
gpg: Signature made 2022 May 19 Thu 13:33:59 MDT
gpg:                using RSA key 9086C3CDC66C3F563CF8F405BE67C75EC81F3244
gpg: Good signature from "Michael R Sweet <msweet@msweet.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9086 C3CD C66C 3F56 3CF8  F405 BE67 C75E C81F 3244
gpgv: Signature made 2022 May 19 Thu 13:33:59 MDT
gpgv:                using RSA key 9086C3CDC66C3F563CF8F405BE67C75EC81F3244
gpgv: Good signature from "Michael R Sweet <msweet@msweet.org>"
gpg: assuming signed data in 'htmldoc-1.9.17-source.tar.gz'
gpg: Signature made 2023 Sep 17 Sun 19:34:17 MDT
gpg:                using RSA key 845464660B686AAB36540B6F999559A027815955
gpg: Good signature from "Michael R Sweet <michael.r.sweet@gmail.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 8454 6466 0B68 6AAB 3654  0B6F 9995 59A0 2781 5955
gpg: Signature made 2023 Sep 17 Sun 19:34:17 MDT
gpg:                using RSA key 845464660B686AAB36540B6F999559A027815955
gpg: Good signature from "Michael R Sweet <michael.r.sweet@gmail.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 8454 6466 0B68 6AAB 3654  0B6F 9995 59A0 2781 5955
gpgv: Signature made 2023 Sep 17 Sun 19:34:17 MDT
gpgv:                using RSA key 845464660B686AAB36540B6F999559A027815955
gpgv: Good signature from "Michael R Sweet <michael.r.sweet@gmail.com>"
gpg: no valid OpenPGP data found.
gpg: the signature could not be verified.
Please remember that the signature file (.sig or .asc)
should be the first file given on the command line.
gpg: no valid OpenPGP data found.
gpg: the signature could not be verified.
Please remember that the signature file (.sig or .asc)
should be the first file given on the command line.
gpgv: no valid OpenPGP data found.
gpgv: the signature could not be verified.
Please remember that the signature file (.sig or .asc)
should be the first file given on the command line.
gpg: assuming signed data in 'libgcrypt-1.10.1.tar.bz2'
gpg: Signature made 2022 Mar 28 Mon 08:02:08 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2022 Mar 28 Mon 08:02:08 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpgv: Signature made 2022 Mar 28 Mon 08:02:08 MDT
gpgv:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpgv: Good signature from "Werner Koch (dist signing 2020)"
gpg: assuming signed data in 'libgcrypt-1.10.2.tar.bz2'
gpg: Signature made 2023 Apr 06 Thu 13:10:36 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2023 Apr 06 Thu 13:10:36 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpgv: Signature made 2023 Apr 06 Thu 13:10:36 MDT
gpgv:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpgv: Good signature from "Werner Koch (dist signing 2020)"
gpg: assuming signed data in 'libgcrypt-1.10.3.tar.bz2'
gpg: Signature made 2023 Nov 14 Tue 05:06:05 MST
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2023 Nov 14 Tue 17:51:05 MST
gpg:                using EDDSA key AC8E115BF73E2D8D47FA9908E98E9B2D19C6C8BD
gpg: Good signature from "Niibe Yutaka (GnuPG Release Key)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: AC8E 115B F73E 2D8D 47FA  9908 E98E 9B2D 19C6 C8BD
gpg: Signature made 2023 Nov 14 Tue 05:06:05 MST
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2023 Nov 14 Tue 17:51:05 MST
gpg:                using EDDSA key AC8E115BF73E2D8D47FA9908E98E9B2D19C6C8BD
gpg: Good signature from "Niibe Yutaka (GnuPG Release Key)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: AC8E 115B F73E 2D8D 47FA  9908 E98E 9B2D 19C6 C8BD
gpgv: Signature made 2023 Nov 14 Tue 05:06:05 MST
gpgv:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpgv: Good signature from "Werner Koch (dist signing 2020)"
gpgv: Signature made 2023 Nov 14 Tue 17:51:05 MST
gpgv:                using EDDSA key AC8E115BF73E2D8D47FA9908E98E9B2D19C6C8BD
gpgv: Good signature from "Niibe Yutaka (GnuPG Release Key)"
gpg: assuming signed data in 'libgcrypt-1.11.0.tar.bz2'
gpg: Signature made 2024 Jun 19 Wed 03:31:18 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2024 Jun 19 Wed 03:31:18 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpgv: Signature made 2024 Jun 19 Wed 03:31:18 MDT
gpgv:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpgv: Good signature from "Werner Koch (dist signing 2020)"
gpg: assuming signed data in 'libgpg-error-1.47.tar.bz2'
gpg: Signature made 2023 Apr 06 Thu 02:31:22 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2023 Apr 06 Thu 02:31:22 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpgv: Signature made 2023 Apr 06 Thu 02:31:22 MDT
gpgv:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpgv: Good signature from "Werner Koch (dist signing 2020)"
gpg: assuming signed data in 'libgpg-error-1.50.tar.bz2'
gpg: Signature made 2024 Jun 19 Wed 02:51:53 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpg: Signature made 2024 Jun 19 Wed 02:51:53 MDT
gpg:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpg: Good signature from "Werner Koch (dist signing 2020)" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6DAA 6E64 A76D 2840 571B  4902 5288 97B8 2640 3ADA
gpgv: Signature made 2024 Jun 19 Wed 02:51:53 MDT
gpgv:                using EDDSA key 6DAA6E64A76D2840571B4902528897B826403ADA
gpgv: Good signature from "Werner Koch (dist signing 2020)"
gpg: assuming signed data in 'libidn-1.37.tar.gz'
gpg: Signature made 2021 May 15 Sat 13:30:50 MDT
gpg:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg:                 aka "Simon Josefsson <simon@yubico.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 9AA9 BDB1 1BB1 B99A 2128  5A33 0664 A769 5426 5E8C
     Subkey fingerprint: 9941 5CE1 905D 0E55 A9F8  8026 860B 7FBB 32F8 119D
gpg: Signature made 2021 May 15 Sat 13:30:50 MDT
gpg:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg:                 aka "Simon Josefsson <simon@yubico.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 9AA9 BDB1 1BB1 B99A 2128  5A33 0664 A769 5426 5E8C
     Subkey fingerprint: 9941 5CE1 905D 0E55 A9F8  8026 860B 7FBB 32F8 119D
gpgv: Signature made 2021 May 15 Sat 13:30:50 MDT
gpgv:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpgv:                 aka "Simon Josefsson <simon@yubico.com>"
gpg: assuming signed data in 'libidn-1.38.tar.gz'
gpg: Signature made 2021 Jul 22 Thu 08:11:12 MDT
gpg:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg:                 aka "Simon Josefsson <simon@yubico.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 9AA9 BDB1 1BB1 B99A 2128  5A33 0664 A769 5426 5E8C
     Subkey fingerprint: 9941 5CE1 905D 0E55 A9F8  8026 860B 7FBB 32F8 119D
gpg: Signature made 2021 Jul 22 Thu 08:11:12 MDT
gpg:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg:                 aka "Simon Josefsson <simon@yubico.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 9AA9 BDB1 1BB1 B99A 2128  5A33 0664 A769 5426 5E8C
     Subkey fingerprint: 9941 5CE1 905D 0E55 A9F8  8026 860B 7FBB 32F8 119D
gpgv: Signature made 2021 Jul 22 Thu 08:11:12 MDT
gpgv:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpgv:                 aka "Simon Josefsson <simon@yubico.com>"
gpg: assuming signed data in 'libidn-1.39.tar.gz'
gpg: Signature made 2022 Jun 20 Mon 14:09:59 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpg: Signature made 2022 Jun 20 Mon 14:09:59 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpgv: Signature made 2022 Jun 20 Mon 14:09:59 MDT
gpgv:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpg: assuming signed data in 'libidn-1.40.tar.gz'
gpg: Signature made 2022 Jun 20 Mon 14:44:06 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpg: Signature made 2022 Jun 20 Mon 14:44:06 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpgv: Signature made 2022 Jun 20 Mon 14:44:06 MDT
gpgv:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpg: assuming signed data in 'libidn-1.41.tar.gz'
gpg: Signature made 2022 Jun 25 Sat 13:09:11 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpg: Signature made 2022 Jun 25 Sat 13:09:11 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpgv: Signature made 2022 Jun 25 Sat 13:09:11 MDT
gpgv:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpg: assuming signed data in 'libidn-1.42.tar.gz'
gpg: Signature made 2024 Jan 13 Sat 12:33:43 MST
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpg: Signature made 2024 Jan 13 Sat 12:33:43 MST
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpgv: Signature made 2024 Jan 13 Sat 12:33:43 MST
gpgv:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpg: assuming signed data in 'libidn2-2.3.1.tar.gz'
gpg: Signature made 2021 May 12 Wed 12:32:58 MDT
gpg:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg:                 aka "Simon Josefsson <simon@yubico.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 9AA9 BDB1 1BB1 B99A 2128  5A33 0664 A769 5426 5E8C
     Subkey fingerprint: 9941 5CE1 905D 0E55 A9F8  8026 860B 7FBB 32F8 119D
gpg: Signature made 2021 May 12 Wed 12:32:58 MDT
gpg:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg:                 aka "Simon Josefsson <simon@yubico.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 9AA9 BDB1 1BB1 B99A 2128  5A33 0664 A769 5426 5E8C
     Subkey fingerprint: 9941 5CE1 905D 0E55 A9F8  8026 860B 7FBB 32F8 119D
gpgv: Signature made 2021 May 12 Wed 12:32:58 MDT
gpgv:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpgv:                 aka "Simon Josefsson <simon@yubico.com>"
gpg: assuming signed data in 'libidn2-2.3.2.tar.gz'
gpg: Signature made 2021 Jul 20 Tue 00:32:10 MDT
gpg:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg:                 aka "Simon Josefsson <simon@yubico.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 9AA9 BDB1 1BB1 B99A 2128  5A33 0664 A769 5426 5E8C
     Subkey fingerprint: 9941 5CE1 905D 0E55 A9F8  8026 860B 7FBB 32F8 119D
gpg: Signature made 2021 Jul 20 Tue 00:32:10 MDT
gpg:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg:                 aka "Simon Josefsson <simon@yubico.com>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 9AA9 BDB1 1BB1 B99A 2128  5A33 0664 A769 5426 5E8C
     Subkey fingerprint: 9941 5CE1 905D 0E55 A9F8  8026 860B 7FBB 32F8 119D
gpgv: Signature made 2021 Jul 20 Tue 00:32:10 MDT
gpgv:                using RSA key 99415CE1905D0E55A9F88026860B7FBB32F8119D
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpgv:                 aka "Simon Josefsson <simon@yubico.com>"
gpg: assuming signed data in 'libidn2-2.3.3.tar.gz'
gpg: Signature made 2022 Jul 11 Mon 13:57:03 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpg: Signature made 2022 Jul 11 Mon 13:57:03 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpgv: Signature made 2022 Jul 11 Mon 13:57:03 MDT
gpgv:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpg: assuming signed data in 'libidn2-2.3.4.tar.gz'
gpg: Signature made 2022 Oct 23 Sun 07:50:13 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpg: Signature made 2022 Oct 23 Sun 07:50:13 MDT
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpgv: Signature made 2022 Oct 23 Sun 07:50:13 MDT
gpgv:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpg: assuming signed data in 'libidn2-2.3.7.tar.gz'
gpg: Signature made 2024 Jan 27 Sat 04:31:20 MST
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpg: Signature made 2024 Jan 27 Sat 04:31:20 MST
gpg:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpg: Good signature from "Simon Josefsson <simon@josefsson.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: B1D2 BD13 75BE CB78 4CF4  F8C4 D73C F638 C53C 06BE
     Subkey fingerprint: A3CC 9C87 0B9D 310A BAD4  CF2F 5172 2B08 FE47 45A2
gpgv: Signature made 2024 Jan 27 Sat 04:31:20 MST
gpgv:                using EDDSA key A3CC9C870B9D310ABAD4CF2F51722B08FE4745A2
gpgv: Good signature from "Simon Josefsson <simon@josefsson.org>"
gpg: assuming signed data in 'libpsl-0.21.5.tar.lz'
gpg: Signature made 2024 Jan 13 Sat 14:46:15 MST
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpg: Signature made 2024 Jan 13 Sat 14:46:15 MST
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpgv: Signature made 2024 Jan 13 Sat 14:46:15 MST
gpgv:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpgv: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>"
gpg: assuming signed data in 'libtool-2.4.6.tar.xz'
gpg: Signature made 2015 Feb 16 Mon 03:15:48 MST
gpg:                using DSA key 151308092983D606
gpg: Good signature from "Gary Vaughan (Free Software Developer) <gary@vaughan.pe>" [unknown]
gpg:                 aka "Gary V. Vaughan <gary@gnu.org>" [unknown]
gpg:                 aka "[jpeg image of size 9845]" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: CFE2 BE70 7B53 8E8B 2675  7D84 1513 0809 2983 D606
gpg: Signature made 2015 Feb 16 Mon 03:15:48 MST
gpg:                using DSA key 151308092983D606
gpg: Good signature from "Gary Vaughan (Free Software Developer) <gary@vaughan.pe>" [unknown]
gpg:                 aka "Gary V. Vaughan <gary@gnu.org>" [unknown]
gpg:                 aka "[jpeg image of size 9845]" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: CFE2 BE70 7B53 8E8B 2675  7D84 1513 0809 2983 D606
gpgv: Signature made 2015 Feb 16 Mon 03:15:48 MST
gpgv:                using DSA key 151308092983D606
gpgv: Good signature from "Gary Vaughan (Free Software Developer) <gary@vaughan.pe>"
gpgv:                 aka "Gary V. Vaughan <gary@gnu.org>"
gpgv:                 aka "[invalid image]"
gpg: assuming signed data in 'libunistring-1.0.tar.gz'
gpg: Signature made 2022 Jan 04 Tue 13:39:43 MST
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpg: Signature made 2022 Jan 04 Tue 13:39:43 MST
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpgv: Signature made 2022 Jan 04 Tue 13:39:43 MST
gpgv:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpgv: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>"
gpg: assuming signed data in 'libunistring-1.1.tar.gz'
gpg: Signature made 2022 Oct 16 Sun 14:49:25 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpg: Signature made 2022 Oct 16 Sun 14:49:25 MDT
gpg:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpg: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 9001 B85A F9E1 B83D F1BD  A942 F5BE 8B26 7C6A 406D
gpgv: Signature made 2022 Oct 16 Sun 14:49:25 MDT
gpgv:                using RSA key 9001B85AF9E1B83DF1BDA942F5BE8B267C6A406D
gpgv: Good signature from "Bruno Haible (Open Source Development) <bruno@clisp.org>"
gpg: assuming signed data in 'linuxinfo-4.1.0.tar.xz'
gpg: Signature made 2022 Jun 17 Fri 07:04:41 MDT
gpg:                using RSA key 6D965FB5E316D20354CA7BB041BAA526682AE670
gpg: Good signature from "Helge Kreutzmann <browser@helgefjell.de>" [unknown]
gpg:                 aka "Helge Kreutzmann <helge@helgefjell.de>" [unknown]
gpg:                 aka "Helge Kreutzmann <debian@helgefjell.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6D96 5FB5 E316 D203 54CA  7BB0 41BA A526 682A E670
gpg: Signature made 2022 Jun 17 Fri 07:04:41 MDT
gpg:                using RSA key 6D965FB5E316D20354CA7BB041BAA526682AE670
gpg: Good signature from "Helge Kreutzmann <browser@helgefjell.de>" [unknown]
gpg:                 aka "Helge Kreutzmann <helge@helgefjell.de>" [unknown]
gpg:                 aka "Helge Kreutzmann <debian@helgefjell.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 6D96 5FB5 E316 D203 54CA  7BB0 41BA A526 682A E670
gpgv: Signature made 2022 Jun 17 Fri 07:04:41 MDT
gpgv:                using RSA key 6D965FB5E316D20354CA7BB041BAA526682AE670
gpgv: Good signature from "Helge Kreutzmann <browser@helgefjell.de>"
gpgv:                 aka "Helge Kreutzmann <helge@helgefjell.de>"
gpgv:                 aka "Helge Kreutzmann <debian@helgefjell.de>"
gpg: assuming signed data in 'lzlib-1.12.tar.lz'
gpg: Signature made 2021 Jan 04 Mon 15:01:32 MST
gpg:                using DSA key 8FE99503132D7742
gpg: Good signature from "Antonio Diaz Diaz <antonio@gnu.org>" [unknown]
gpg:                 aka "Antonio Diaz <ant_diaz@teleline.es>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1D41 C14B 272A 2219 A739  FA4F 8FE9 9503 132D 7742
gpg: Signature made 2021 Jan 04 Mon 15:01:32 MST
gpg:                using DSA key 8FE99503132D7742
gpg: Good signature from "Antonio Diaz Diaz <antonio@gnu.org>" [unknown]
gpg:                 aka "Antonio Diaz <ant_diaz@teleline.es>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1D41 C14B 272A 2219 A739  FA4F 8FE9 9503 132D 7742
gpgv: Signature made 2021 Jan 04 Mon 15:01:32 MST
gpgv:                using DSA key 8FE99503132D7742
gpgv: Good signature from "Antonio Diaz Diaz <antonio@gnu.org>"
gpgv:                 aka "Antonio Diaz <ant_diaz@teleline.es>"
gpg: assuming signed data in 'lzlib-1.13.tar.lz'
gpg: Signature made 2022 Jan 26 Wed 10:16:56 MST
gpg:                using DSA key 8FE99503132D7742
gpg: Good signature from "Antonio Diaz Diaz <antonio@gnu.org>" [unknown]
gpg:                 aka "Antonio Diaz <ant_diaz@teleline.es>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1D41 C14B 272A 2219 A739  FA4F 8FE9 9503 132D 7742
gpg: Signature made 2022 Jan 26 Wed 10:16:56 MST
gpg:                using DSA key 8FE99503132D7742
gpg: Good signature from "Antonio Diaz Diaz <antonio@gnu.org>" [unknown]
gpg:                 aka "Antonio Diaz <ant_diaz@teleline.es>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1D41 C14B 272A 2219 A739  FA4F 8FE9 9503 132D 7742
gpgv: Signature made 2022 Jan 26 Wed 10:16:56 MST
gpgv:                using DSA key 8FE99503132D7742
gpgv: Good signature from "Antonio Diaz Diaz <antonio@gnu.org>"
gpgv:                 aka "Antonio Diaz <ant_diaz@teleline.es>"
gpg: assuming signed data in 'm4-1.4.19.tar.xz'
gpg: Signature made 2021 May 28 Fri 15:55:07 MDT
gpg:                using RSA key 71C2CC22B1C4602927D2F3AAA7A16B4A2527436A
gpg: Good signature from "Eric Blake <eblake@redhat.com>" [unknown]
gpg:                 aka "Eric Blake (Free Software Programmer) <ebb9@byu.net>" [unknown]
gpg:                 aka "[jpeg image of size 6874]" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 71C2 CC22 B1C4 6029 27D2  F3AA A7A1 6B4A 2527 436A
gpg: Signature made 2021 May 28 Fri 15:55:07 MDT
gpg:                using RSA key 71C2CC22B1C4602927D2F3AAA7A16B4A2527436A
gpg: Good signature from "Eric Blake <eblake@redhat.com>" [unknown]
gpg:                 aka "Eric Blake (Free Software Programmer) <ebb9@byu.net>" [unknown]
gpg:                 aka "[jpeg image of size 6874]" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 71C2 CC22 B1C4 6029 27D2  F3AA A7A1 6B4A 2527 436A
gpgv: Signature made 2021 May 28 Fri 15:55:07 MDT
gpgv:                using RSA key 71C2CC22B1C4602927D2F3AAA7A16B4A2527436A
gpgv: Good signature from "Eric Blake <eblake@redhat.com>"
gpgv:                 aka "Eric Blake (Free Software Programmer) <ebb9@byu.net>"
gpgv:                 aka "[invalid image]"
gpg: can't open signed data 'man-pages-5.05.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-5.05.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-5.06.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-5.06.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-5.07.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-5.07.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-5.08.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-5.08.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-5.09.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-5.09.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-5.10.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-5.10.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-5.11.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-5.11.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-5.12.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-5.12.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-5.13.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-5.13.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-6.00.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.00.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-6.01.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.01.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-6.02.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.02.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-6.03.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.03.tar'
gpgv: can't hash datafile: No such file or directory
gpg: can't open signed data 'man-pages-6.04.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.04.tar'
gpgv: can't hash datafile: No such file or directory
gpg: assuming signed data in 'man-pages-6.05.01.pdf'
gpg: Signature made 2023 Aug 07 Mon 03:30:06 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpg: Signature made 2023 Aug 07 Mon 03:30:06 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpgv: Signature made 2023 Aug 07 Mon 03:30:06 MDT
gpgv:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpgv: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>"
gpg: can't open signed data 'man-pages-6.05.01.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.05.01.tar'
gpgv: can't hash datafile: No such file or directory
gpg: assuming signed data in 'man-pages-6.06.pdf'
gpg: Signature made 2024 Feb 11 Sun 18:35:46 MST
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpg: Signature made 2024 Feb 11 Sun 18:35:46 MST
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpgv: Signature made 2024 Feb 11 Sun 18:35:46 MST
gpgv:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpgv: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>"
gpg: can't open signed data 'man-pages-6.06.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.06.tar'
gpgv: can't hash datafile: No such file or directory
gpg: assuming signed data in 'man-pages-6.7.pdf'
gpg: Signature made 2024 Mar 19 Tue 12:15:27 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpg: Signature made 2024 Mar 19 Tue 12:15:27 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpgv: Signature made 2024 Mar 19 Tue 12:15:27 MDT
gpgv:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpgv: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>"
gpg: can't open signed data 'man-pages-6.7.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.7.tar'
gpgv: can't hash datafile: No such file or directory
gpg: assuming signed data in 'man-pages-6.8.pdf'
gpg: Signature made 2024 May 19 Sun 07:15:59 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpg: Signature made 2024 May 19 Sun 07:15:59 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpgv: Signature made 2024 May 19 Sun 07:15:59 MDT
gpgv:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpgv: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>"
gpg: can't open signed data 'man-pages-6.8.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.8.tar'
gpgv: can't hash datafile: No such file or directory
gpg: assuming signed data in 'man-pages-6.9.1.pdf'
gpg: Signature made 2024 Jun 17 Mon 05:30:49 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpg: Signature made 2024 Jun 17 Mon 05:30:49 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpgv: Signature made 2024 Jun 17 Mon 05:30:49 MDT
gpgv:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpgv: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>"
gpg: can't open signed data 'man-pages-6.9.1.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.9.1.tar'
gpgv: can't hash datafile: No such file or directory
gpg: assuming signed data in 'man-pages-6.9.pdf'
gpg: Signature made 2024 Jun 14 Fri 13:52:56 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpg: Signature made 2024 Jun 14 Fri 13:52:56 MDT
gpg:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpg: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: A934 8594 CE31 283A 826F  BDD8 D576 33D4 41E2 5BB5
     Subkey fingerprint: EA3A 87F0 A4EB A030 E45D  F240 9E8C 1AFB BEFF DB32
gpgv: Signature made 2024 Jun 14 Fri 13:52:56 MDT
gpgv:                using RSA key EA3A87F0A4EBA030E45DF2409E8C1AFBBEFFDB32
gpgv: Good signature from "Alejandro Colomar Andres <alx.manpages@gmail.com>"
gpg: can't open signed data 'man-pages-6.9.tar'
gpg: can't hash datafile: No such file or directory
gpgv: can't open signed data 'man-pages-6.9.tar'
gpgv: can't hash datafile: No such file or directory
gpg: assuming signed data in 'patch-2.7.4.tar.xz'
gpg: Signature made 2015 Jan 31 Sat 14:20:44 MST
gpg:                using RSA key C4C927CD5D1B36D7
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: Can't check signature: No public key
gpg: Signature made 2015 Jan 31 Sat 14:20:44 MST
gpg:                using RSA key C4C927CD5D1B36D7
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: Can't check signature: No public key
gpgv: Signature made 2015 Jan 31 Sat 14:20:44 MST
gpgv:                using RSA key C4C927CD5D1B36D7
gpgv: Can't check signature: No public key
gpg: assuming signed data in 'patch-2.7.6.tar.xz'
gpg: Signature made 2018 Feb 06 Tue 09:51:41 MST
gpg:                using RSA key D5BF9FEB0313653A
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: Can't check signature: No public key
gpg: Signature made 2018 Feb 06 Tue 09:51:41 MST
gpg:                using RSA key D5BF9FEB0313653A
gpg: WARNING: server 'dirmngr' is older than us (2.2.35-unknown < 2.4.5-unknown)
gpg: Note: Outdated servers may lack important security fixes.
gpg: Note: Use the command "gpgconf --kill all" to restart them.
gpg: Can't check signature: No public key
gpgv: Signature made 2018 Feb 06 Tue 09:51:41 MST
gpgv:                using RSA key D5BF9FEB0313653A
gpgv: Can't check signature: No public key
gpg: assuming signed data in 'patchutils-0.3.4.tar.xz'
gpg: Signature made 2015 Apr 20 Mon 13:37:03 MDT
gpg:                using RSA key B7C20D079491EA63
gpg: Good signature from "Tim Waugh <tim@cyberelk.net>" [unknown]
gpg:                 aka "Tim Waugh <twaugh@redhat.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 4629 AFE9 60EC 20BE C12E  3104 B7C2 0D07 9491 EA63
gpg: Signature made 2015 Apr 20 Mon 13:37:03 MDT
gpg:                using RSA key B7C20D079491EA63
gpg: Good signature from "Tim Waugh <tim@cyberelk.net>" [unknown]
gpg:                 aka "Tim Waugh <twaugh@redhat.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 4629 AFE9 60EC 20BE C12E  3104 B7C2 0D07 9491 EA63
gpgv: Signature made 2015 Apr 20 Mon 13:37:03 MDT
gpgv:                using RSA key B7C20D079491EA63
gpgv: Good signature from "Tim Waugh <tim@cyberelk.net>"
gpgv:                 aka "Tim Waugh <twaugh@redhat.com>"
gpg: assuming signed data in 'patchutils-0.4.2.tar.xz'
gpg: Signature made 2020 Jul 17 Fri 03:13:43 MDT
gpg:                using RSA key 4629AFE960EC20BEC12E3104B7C20D079491EA63
gpg: Good signature from "Tim Waugh <tim@cyberelk.net>" [unknown]
gpg:                 aka "Tim Waugh <twaugh@redhat.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 4629 AFE9 60EC 20BE C12E  3104 B7C2 0D07 9491 EA63
gpg: Signature made 2020 Jul 17 Fri 03:13:43 MDT
gpg:                using RSA key 4629AFE960EC20BEC12E3104B7C20D079491EA63
gpg: Good signature from "Tim Waugh <tim@cyberelk.net>" [unknown]
gpg:                 aka "Tim Waugh <twaugh@redhat.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 4629 AFE9 60EC 20BE C12E  3104 B7C2 0D07 9491 EA63
gpgv: Signature made 2020 Jul 17 Fri 03:13:43 MDT
gpgv:                using RSA key 4629AFE960EC20BEC12E3104B7C20D079491EA63
gpgv: Good signature from "Tim Waugh <tim@cyberelk.net>"
gpgv:                 aka "Tim Waugh <twaugh@redhat.com>"
gpg: assuming signed data in 'readline-8.1.tar.gz'
gpg: Signature made 2020 Dec 05 Sat 11:35:18 MST
gpg:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpg: Good signature from "Chet Ramey <chet@cwru.edu>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7C01 35FB 088A AF6C 66C6  50B9 BB58 69F0 64EA 74AB
gpg: Signature made 2020 Dec 05 Sat 11:35:18 MST
gpg:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpg: Good signature from "Chet Ramey <chet@cwru.edu>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7C01 35FB 088A AF6C 66C6  50B9 BB58 69F0 64EA 74AB
gpgv: Signature made 2020 Dec 05 Sat 11:35:18 MST
gpgv:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpgv: Good signature from "Chet Ramey <chet@cwru.edu>"
gpg: assuming signed data in 'readline-8.2.tar.gz'
gpg: Signature made 2022 Sep 26 Mon 06:59:40 MDT
gpg:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpg: Good signature from "Chet Ramey <chet@cwru.edu>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7C01 35FB 088A AF6C 66C6  50B9 BB58 69F0 64EA 74AB
gpg: Signature made 2022 Sep 26 Mon 06:59:40 MDT
gpg:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpg: Good signature from "Chet Ramey <chet@cwru.edu>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7C01 35FB 088A AF6C 66C6  50B9 BB58 69F0 64EA 74AB
gpgv: Signature made 2022 Sep 26 Mon 06:59:40 MDT
gpgv:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpgv: Good signature from "Chet Ramey <chet@cwru.edu>"
gpg: assuming signed data in 'readline81-001'
gpg: Signature made 2021 May 03 Mon 14:45:14 MDT
gpg:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpg: Good signature from "Chet Ramey <chet@cwru.edu>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7C01 35FB 088A AF6C 66C6  50B9 BB58 69F0 64EA 74AB
gpg: Signature made 2021 May 03 Mon 14:45:14 MDT
gpg:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpg: Good signature from "Chet Ramey <chet@cwru.edu>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7C01 35FB 088A AF6C 66C6  50B9 BB58 69F0 64EA 74AB
gpgv: Signature made 2021 May 03 Mon 14:45:14 MDT
gpgv:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpgv: Good signature from "Chet Ramey <chet@cwru.edu>"
gpg: assuming signed data in 'readline82-001'
gpg: Signature made 2022 Oct 05 Wed 07:44:21 MDT
gpg:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpg: Good signature from "Chet Ramey <chet@cwru.edu>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7C01 35FB 088A AF6C 66C6  50B9 BB58 69F0 64EA 74AB
gpg: Signature made 2022 Oct 05 Wed 07:44:21 MDT
gpg:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpg: Good signature from "Chet Ramey <chet@cwru.edu>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 7C01 35FB 088A AF6C 66C6  50B9 BB58 69F0 64EA 74AB
gpgv: Signature made 2022 Oct 05 Wed 07:44:21 MDT
gpgv:                using DSA key 7C0135FB088AAF6C66C650B9BB5869F064EA74AB
gpgv: Good signature from "Chet Ramey <chet@cwru.edu>"
gpg: assuming signed data in 'sed-4.8.tar.xz'
gpg: Signature made 2020 Jan 14 Tue 21:12:10 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2020 Jan 14 Tue 21:12:10 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2020 Jan 14 Tue 21:12:10 MST
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'sed-4.9.tar.xz'
gpg: Signature made 2022 Nov 06 Sun 14:52:06 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpg: Signature made 2022 Nov 06 Sun 14:52:06 MST
gpg:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpg: Good signature from "Jim Meyering <jim@meyering.net>" [unknown]
gpg:                 aka "Jim Meyering <meyering@fb.com>" [unknown]
gpg:                 aka "Jim Meyering <meyering@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 155D 3FC5 00C8 3448 6D1E  EA67 7FD9 FCCB 000B EEEE
gpgv: Signature made 2022 Nov 06 Sun 14:52:06 MST
gpgv:                using RSA key 155D3FC500C834486D1EEA677FD9FCCB000BEEEE
gpgv: Good signature from "Jim Meyering <jim@meyering.net>"
gpgv:                 aka "Jim Meyering <meyering@fb.com>"
gpgv:                 aka "Jim Meyering <meyering@gnu.org>"
gpg: assuming signed data in 'sharutils-4.15.2.tar.xz'
gpg: Signature made 2015 May 30 Sat 09:39:10 MDT
gpg:                using DSA key D9204CB5BFBF0221
gpg: Good signature from "Bruce Korb <bkorb@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1F96 7B15 DEB2 349C ACDF  3D71 D920 4CB5 BFBF 0221
gpg: Signature made 2015 May 30 Sat 09:39:10 MDT
gpg:                using DSA key D9204CB5BFBF0221
gpg: Good signature from "Bruce Korb <bkorb@gnu.org>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1F96 7B15 DEB2 349C ACDF  3D71 D920 4CB5 BFBF 0221
gpgv: Signature made 2015 May 30 Sat 09:39:10 MDT
gpgv:                using DSA key D9204CB5BFBF0221
gpgv: Good signature from "Bruce Korb <bkorb@gnu.org>"
gpg: assuming signed data in 'unifont-14.0.02.tar.gz'
gpg: Signature made 2022 Mar 06 Sun 16:03:20 MST
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2022 Mar 06 Sun 16:03:20 MST
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2022 Mar 06 Sun 16:03:20 MST
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-14.0.03.tar.gz'
gpg: Signature made 2022 Apr 17 Sun 08:31:26 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2022 Apr 17 Sun 08:31:26 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2022 Apr 17 Sun 08:31:26 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-14.0.04.tar.gz'
gpg: Signature made 2022 Jun 04 Sat 16:20:46 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2022 Jun 04 Sat 16:20:46 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2022 Jun 04 Sat 16:20:46 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.0.01.tar.gz'
gpg: Signature made 2022 Sep 13 Tue 09:17:27 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2022 Sep 13 Tue 09:17:27 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2022 Sep 13 Tue 09:17:27 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.0.02.tar.gz'
gpg: Signature made 2023 May 20 Sat 17:12:32 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2023 May 20 Sat 17:12:32 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2023 May 20 Sat 17:12:32 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.0.03.tar.gz'
gpg: Signature made 2023 May 21 Sun 16:00:46 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2023 May 21 Sun 16:00:46 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2023 May 21 Sun 16:00:46 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.0.04.tar.gz'
gpg: Signature made 2023 May 28 Sun 08:17:57 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2023 May 28 Sun 08:17:57 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2023 May 28 Sun 08:17:57 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.0.05.tar.gz'
gpg: Signature made 2023 Jun 03 Sat 20:04:23 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2023 Jun 03 Sat 20:04:23 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2023 Jun 03 Sat 20:04:23 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.0.06.tar.gz'
gpg: Signature made 2023 Jun 04 Sun 14:08:27 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2023 Jun 04 Sun 14:08:27 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2023 Jun 04 Sun 14:08:27 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.1.01.tar.gz'
gpg: Signature made 2023 Sep 12 Tue 08:49:47 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2023 Sep 12 Tue 08:49:47 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2023 Sep 12 Tue 08:49:47 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.1.02.tar.gz'
gpg: Signature made 2023 Sep 21 Thu 21:37:12 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2023 Sep 21 Thu 21:37:12 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2023 Sep 21 Thu 21:37:12 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.1.03.tar.gz'
gpg: Signature made 2023 Oct 21 Sat 16:22:54 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2023 Oct 21 Sat 16:22:54 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2023 Oct 21 Sat 16:22:54 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.1.04.tar.gz'
gpg: Signature made 2023 Oct 29 Sun 15:14:26 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2023 Oct 29 Sun 15:14:26 MDT
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2023 Oct 29 Sun 15:14:26 MDT
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-15.1.05.tar.gz'
gpg: Signature made 2024 Feb 24 Sat 18:16:03 MST
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2024 Feb 24 Sat 18:16:03 MST
gpg:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2024 Feb 24 Sat 18:16:03 MST
gpgv:                using RSA key 95D2E9AB8740D8046387FD151A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'unifont-8.0.01.tar.gz'
gpg: Signature made 2015 Jun 28 Sun 21:01:12 MDT
gpg:                using RSA key 1A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpg: Signature made 2015 Jun 28 Sun 21:01:12 MDT
gpg:                using RSA key 1A09227B1F435A33
gpg: Good signature from "Paul Hardy <unifoundry@unifoundry.com>" [unknown]
gpg:                 aka "Paul Hardy <unifoundry@gmail.com>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 95D2 E9AB 8740 D804 6387  FD15 1A09 227B 1F43 5A33
gpgv: Signature made 2015 Jun 28 Sun 21:01:12 MDT
gpgv:                using RSA key 1A09227B1F435A33
gpgv: Good signature from "Paul Hardy <unifoundry@unifoundry.com>"
gpgv:                 aka "Paul Hardy <unifoundry@gmail.com>"
gpg: assuming signed data in 'units-2.12.tar.gz'
gpg: Signature made 2015 Oct 14 Wed 20:37:55 MDT
gpg:                using DSA key 1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpg: Signature made 2015 Oct 14 Wed 20:37:55 MDT
gpg:                using DSA key 1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpgv: Signature made 2015 Oct 14 Wed 20:37:55 MDT
gpgv:                using DSA key 1889D5F0E0636F49
gpgv: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>"
gpg: assuming signed data in 'units-2.21.tar.gz'
gpg: Signature made 2020 Nov 15 Sun 20:26:00 MST
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpg: Signature made 2020 Nov 15 Sun 20:26:00 MST
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpgv: Signature made 2020 Nov 15 Sun 20:26:00 MST
gpgv:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpgv: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>"
gpg: assuming signed data in 'units-2.21b.tar.gz'
gpg: Signature made 2022 Jul 24 Sun 15:30:01 MDT
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpg: Signature made 2022 Jul 24 Sun 15:30:01 MDT
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpgv: Signature made 2022 Jul 24 Sun 15:30:01 MDT
gpgv:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpgv: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>"
gpg: assuming signed data in 'units-2.21d.tar.gz'
gpg: Signature made 2022 Aug 25 Thu 16:27:25 MDT
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpg: Signature made 2022 Aug 25 Thu 16:27:25 MDT
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpgv: Signature made 2022 Aug 25 Thu 16:27:25 MDT
gpgv:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpgv: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>"
gpg: assuming signed data in 'units-2.22.tar.gz'
gpg: Signature made 2022 Sep 05 Mon 16:29:28 MDT
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpg: Signature made 2022 Sep 05 Mon 16:29:28 MDT
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpgv: Signature made 2022 Sep 05 Mon 16:29:28 MDT
gpgv:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpgv: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>"
gpg: assuming signed data in 'units-2.23.tar.gz'
gpg: Signature made 2024 Feb 18 Sun 20:44:45 MST
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpg: Signature made 2024 Feb 18 Sun 20:44:45 MST
gpg:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpg: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>" [ultimate]
gpgv: Signature made 2024 Feb 18 Sun 20:44:45 MST
gpgv:                using DSA key 9AD8FC4162D7937CF64F972E1889D5F0E0636F49
gpgv: Good signature from "Adrian Mariano <adrian@cam.cornell.edu>"
gpg: assuming signed data in 'wget-1.20.3.tar.gz'
gpg: Signature made 2019 Apr 05 Fri 04:12:34 MDT
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpg: Signature made 2019 Apr 05 Fri 04:12:34 MDT
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpgv: Signature made 2019 Apr 05 Fri 04:12:34 MDT
gpgv:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpgv: Good signature from "Darshit Shah <gpg@darnir.net>"
gpgv:                 aka "Darshit Shah <darnir@gnu.org>"
gpg: assuming signed data in 'wget-1.20.3.tar.lz'
gpg: Signature made 2019 Apr 05 Fri 04:12:41 MDT
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpg: Signature made 2019 Apr 05 Fri 04:12:41 MDT
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpgv: Signature made 2019 Apr 05 Fri 04:12:41 MDT
gpgv:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpgv: Good signature from "Darshit Shah <gpg@darnir.net>"
gpgv:                 aka "Darshit Shah <darnir@gnu.org>"
gpg: assuming signed data in 'wget-1.21.1.tar.gz'
gpg: Signature made 2021 Jan 09 Sat 03:02:44 MST
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "darnir@gnu.org"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpg: Signature made 2021 Jan 09 Sat 03:02:44 MST
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "darnir@gnu.org"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpgv: Signature made 2021 Jan 09 Sat 03:02:44 MST
gpgv:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpgv:                issuer "darnir@gnu.org"
gpgv: Good signature from "Darshit Shah <gpg@darnir.net>"
gpgv:                 aka "Darshit Shah <darnir@gnu.org>"
gpg: assuming signed data in 'wget-1.21.1.tar.lz'
gpg: Signature made 2021 Jan 09 Sat 03:02:44 MST
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "darnir@gnu.org"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpg: Signature made 2021 Jan 09 Sat 03:02:44 MST
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "darnir@gnu.org"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpgv: Signature made 2021 Jan 09 Sat 03:02:44 MST
gpgv:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpgv:                issuer "darnir@gnu.org"
gpgv: Good signature from "Darshit Shah <gpg@darnir.net>"
gpgv:                 aka "Darshit Shah <darnir@gnu.org>"
gpg: assuming signed data in 'wget-1.21.2.tar.lz'
gpg: Signature made 2021 Sep 07 Tue 13:05:46 MDT
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpg: Signature made 2021 Sep 07 Tue 13:05:46 MDT
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpgv: Signature made 2021 Sep 07 Tue 13:05:46 MDT
gpgv:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpgv: Good signature from "Darshit Shah <gpg@darnir.net>"
gpgv:                 aka "Darshit Shah <darnir@gnu.org>"
gpg: assuming signed data in 'wget-1.21.3.tar.lz'
gpg: Signature made 2022 Feb 26 Sat 09:28:22 MST
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "darnir@gnu.org"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpg: Signature made 2022 Feb 26 Sat 09:28:22 MST
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "darnir@gnu.org"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpgv: Signature made 2022 Feb 26 Sat 09:28:22 MST
gpgv:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpgv:                issuer "darnir@gnu.org"
gpgv: Good signature from "Darshit Shah <gpg@darnir.net>"
gpgv:                 aka "Darshit Shah <darnir@gnu.org>"
gpg: assuming signed data in 'wget-1.21.tar.gz'
gpg: Signature made 2020 Dec 31 Thu 09:55:10 MST
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "darnir@gnu.org"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpg: Signature made 2020 Dec 31 Thu 09:55:10 MST
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "darnir@gnu.org"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpgv: Signature made 2020 Dec 31 Thu 09:55:10 MST
gpgv:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpgv:                issuer "darnir@gnu.org"
gpgv: Good signature from "Darshit Shah <gpg@darnir.net>"
gpgv:                 aka "Darshit Shah <darnir@gnu.org>"
gpg: assuming signed data in 'wget-1.24.5.tar.lz'
gpg: Signature made 2024 Mar 10 Sun 08:12:05 MDT
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "gpg@darnir.net"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpg: Signature made 2024 Mar 10 Sun 08:12:05 MDT
gpg:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpg:                issuer "gpg@darnir.net"
gpg: Good signature from "Darshit Shah <gpg@darnir.net>" [expired]
gpg:                 aka "Darshit Shah <darnir@gnu.org>" [expired]
gpg: Note: This key has expired!
Primary key fingerprint: 7845 120B 07CB D8D6 ECE5  FF2B 2A17 43ED A91A 35B6
     Subkey fingerprint: 6B98 F637 D879 C523 6E27  7C5C 64FF 90AA E8C7 0AF9
gpgv: Signature made 2024 Mar 10 Sun 08:12:05 MDT
gpgv:                using RSA key 6B98F637D879C5236E277C5C64FF90AAE8C70AF9
gpgv:                issuer "gpg@darnir.net"
gpgv: Good signature from "Darshit Shah <gpg@darnir.net>"
gpgv:                 aka "Darshit Shah <darnir@gnu.org>"
gpg: assuming signed data in 'wget2-1.99.2.tar.lz'
gpg: Signature made 2019 Aug 30 Fri 07:17:37 MDT
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpg: Signature made 2019 Aug 30 Fri 07:17:37 MDT
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpgv: Signature made 2019 Aug 30 Fri 07:17:37 MDT
gpgv:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpgv: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>"
gpg: assuming signed data in 'wget2-2.0.0.tar.lz'
gpg: Signature made 2021 Sep 12 Sun 05:45:33 MDT
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpg: Signature made 2021 Sep 12 Sun 05:45:33 MDT
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpgv: Signature made 2021 Sep 12 Sun 05:45:33 MDT
gpgv:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpgv: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>"
gpg: assuming signed data in 'wget2-2.0.1.tar.lz'
gpg: Signature made 2022 May 27 Fri 04:13:58 MDT
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpg: Signature made 2022 May 27 Fri 04:13:58 MDT
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpgv: Signature made 2022 May 27 Fri 04:13:58 MDT
gpgv:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpgv: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>"
gpg: assuming signed data in 'wget2-2.1.0.tar.lz'
gpg: Signature made 2023 Aug 31 Thu 06:54:31 MDT
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpg: Signature made 2023 Aug 31 Thu 06:54:31 MDT
gpg:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpg: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>" [unknown]
gpg: WARNING: This key is not certified with a trusted signature!
gpg:          There is no indication that the signature belongs to the owner.
Primary key fingerprint: 1CB2 7DBC 9861 4B2D 5841  646D 0830 2DB6 A267 0428
gpgv: Signature made 2023 Aug 31 Thu 06:54:31 MDT
gpgv:                using RSA key 1CB27DBC98614B2D5841646D08302DB6A2670428
gpgv: Good signature from "Tim Rühsen <tim.ruehsen@gmx.de>"
/home/BWI/mirror/x86_64

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

end of thread, other threads:[~2024-06-25  5:38 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-11-21  4:51 cygport upgrade to use gnupg2/gpg2 if available Brian Inglis
2023-11-21  6:20 ` Brian Inglis
2023-11-21  6:58 ` ASSI
     [not found] ` <655c551b.0c0a0220.6dce4.7613SMTPIN_ADDED_BROKEN@mx.google.com>
2023-11-24 21:29   ` Marco Atzeri
2023-11-24 22:01     ` Brian Inglis
     [not found] ` <38451.4474005968$1700549918@news.gmane.org>
2023-11-26 14:40   ` Jon Turney
2024-06-24 22:23     ` Marco Atzeri
2024-06-24 23:09       ` Brian Inglis
2024-06-24 23:16         ` Marco Atzeri
2024-06-25  5:38           ` Brian Inglis

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 read-only IMAP folder(s) and NNTP newsgroup(s).