* bug#50697: [core-updates-frozen] ca-certificate-bundle generation is broken.
@ 2021-09-20 10:32 Mathieu Othacehe
2021-09-20 12:36 ` Guillaume Le Vaillant
0 siblings, 1 reply; 3+ messages in thread
From: Mathieu Othacehe @ 2021-09-20 10:32 UTC (permalink / raw)
To: 50697; +Cc: maxim.cournoyer
[-- Attachment #1: Type: text/plain, Size: 266 bytes --]
Hello,
On core-updates-frozen, the ca-certificate-bundle derivation produces an
empty output. That's because nss-certs only contains .crt files that are
ignored by ca-certificate-bundle procedure.
The following patches should fix the situation.
Thanks,
Mathieu
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-gnu-certdata2pem-Produce-pem-files.patch --]
[-- Type: text/x-patch, Size: 1117 bytes --]
From 18248cc817952c690694707cc965283dad1933c2 Mon Sep 17 00:00:00 2001
From: Mathieu Othacehe <othacehe@gnu.org>
Date: Mon, 20 Sep 2021 10:26:30 +0000
Subject: [PATCH 1/2] gnu: certdata2pem: Produce pem files.
Create files with pem extension instead of crt.
* gnu/packages/certs.scm (certdata2pem)[arguments]<#:phases>{fix-extension}:
New phase.
---
gnu/packages/certs.scm | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/gnu/packages/certs.scm b/gnu/packages/certs.scm
index 37e3fa6786..c9d8e7b76c 100644
--- a/gnu/packages/certs.scm
+++ b/gnu/packages/certs.scm
@@ -104,6 +104,11 @@ port forwarding to your local machine.")
(arguments
`(#:phases (modify-phases %standard-phases
(delete 'configure)
+ (add-before 'build 'fix-extension
+ (lambda _
+ (substitute* "certdata2pem.c"
+ (("\\.crt")
+ ".pem"))))
(replace 'build
(lambda _
(invoke ,(cc-for-target) "certdata2pem.c"
--
2.33.0
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #3: 0002-gnu-nss-certs-Copy-pem-files.patch --]
[-- Type: text/x-patch, Size: 1221 bytes --]
From 751a89919aa7a7bdf963a85112346153bfd03407 Mon Sep 17 00:00:00 2001
From: Mathieu Othacehe <othacehe@gnu.org>
Date: Mon, 20 Sep 2021 10:27:55 +0000
Subject: [PATCH 2/2] gnu: nss-certs: Copy pem files.
* gnu/packages/certs.scm (nss-certs)[arguments]<#:phases>{install}: Copy pem
files instead of crt files.
---
gnu/packages/certs.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/certs.scm b/gnu/packages/certs.scm
index c9d8e7b76c..39c3ebd128 100644
--- a/gnu/packages/certs.scm
+++ b/gnu/packages/certs.scm
@@ -164,9 +164,9 @@ that was originally contributed to Debian.")
(call-with-output-file "blacklist.txt" (const #t)))
;; Extract selected single certificates from blob.
(invoke "certdata2pem")
- ;; Copy .crt files into the output.
+ ;; Copy .pem files into the output.
(for-each (cut install-file <> certsdir)
- (find-files "." ".*\\.crt$")))
+ (find-files "." ".*\\.pem$")))
(invoke "openssl" "rehash" certsdir)))))))
(synopsis "CA certificates from Mozilla")
(description
--
2.33.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#50697: [core-updates-frozen] ca-certificate-bundle generation is broken.
2021-09-20 10:32 bug#50697: [core-updates-frozen] ca-certificate-bundle generation is broken Mathieu Othacehe
@ 2021-09-20 12:36 ` Guillaume Le Vaillant
2021-09-21 7:44 ` Mathieu Othacehe
0 siblings, 1 reply; 3+ messages in thread
From: Guillaume Le Vaillant @ 2021-09-20 12:36 UTC (permalink / raw)
To: Mathieu Othacehe; +Cc: 50697, maxim.cournoyer
[-- Attachment #1: Type: text/plain, Size: 771 bytes --]
Mathieu Othacehe <othacehe@gnu.org> skribis:
> Hello,
>
> On core-updates-frozen, the ca-certificate-bundle derivation produces an
> empty output. That's because nss-certs only contains .crt files that are
> ignored by ca-certificate-bundle procedure.
>
> The following patches should fix the situation.
>
> Thanks,
>
> Mathieu
>
> From 18248cc817952c690694707cc965283dad1933c2 Mon Sep 17 00:00:00 2001
> From: Mathieu Othacehe <othacehe@gnu.org>
> Date: Mon, 20 Sep 2021 10:26:30 +0000
> Subject: [PATCH 1/2] gnu: certdata2pem: Produce pem files.
>
> Create files with pem extension instead of crt.
>
> [...]
Hi,
With this patch I think the 'install-keystore' phase of icedtea-7 will
also have to be updated to search for the ".pem" files instead of the
".crt" ones.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 247 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* bug#50697: [core-updates-frozen] ca-certificate-bundle generation is broken.
2021-09-20 12:36 ` Guillaume Le Vaillant
@ 2021-09-21 7:44 ` Mathieu Othacehe
0 siblings, 0 replies; 3+ messages in thread
From: Mathieu Othacehe @ 2021-09-21 7:44 UTC (permalink / raw)
To: Guillaume Le Vaillant; +Cc: 50697-done, maxim.cournoyer
Hey,
> With this patch I think the 'install-keystore' phase of icedtea-7 will
> also have to be updated to search for the ".pem" files instead of the
> ".crt" ones.
Right, thanks for the heads up. I pushed the original two patches plus a
new one to fix icedtea-7.
Thanks,
Mathieu
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-09-21 7:45 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-20 10:32 bug#50697: [core-updates-frozen] ca-certificate-bundle generation is broken Mathieu Othacehe
2021-09-20 12:36 ` Guillaume Le Vaillant
2021-09-21 7:44 ` Mathieu Othacehe
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
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).