GNU bug report logs -
#73030
git send-email missing perl packages
Previous Next
Full log
Message #8 received at 73030 <at> debbugs.gnu.org (full text, mbox):
Hi,
Using the fix <https://issues.guix.gnu.org/73034>, I get this error:
--8<---------------cut here---------------start------------->8---
Need MIME::Base64 and Authen::SASL todo auth at /gnu/store/imnyk8h2s6qfwd602n5vqxax8h33j2k5-git-2.45.2-send-email/libexec/git-core/.git-send-email-real line 1655.
--8<---------------cut here---------------end--------------->8---
My bad!
The issue is that ’package-transitive-propagated-inputs’ does not return
the package itself but only the dependent ones. Hence the explicit
dependents packages themselves are therefore missing.
Here, the snippet that fixes.
--8<---------------cut here---------------start------------->8---
scheme@(guix-user)> ,pp (delete-duplicates
(let ((these-inputs
(list (this-package-input "perl-authen-sasl")
(this-package-input "perl-net-smtp-ssl")
(this-package-input "perl-io-socket-ssl"))))
(append
these-inputs
(map last
(append-map
package-transitive-propagated-inputs
these-inputs)))))
$4 = (#<package perl-authen-sasl <at> 2.16 gnu/packages/web.scm:2476 72f60a906f20>
#<package perl-net-smtp-ssl <at> 1.04 gnu/packages/web.scm:4512 72f60a9169a0>
#<package perl-io-socket-ssl <at> 2.081 gnu/packages/web.scm:4206 72f60a90f160>
#<package perl-digest-hmac <at> 1.04 gnu/packages/perl.scm:4029 72f60df5e420>
#<package perl-gssapi <at> 0.28 gnu/packages/web.scm:3527 72f60a90c580>
#<package perl-uri <at> 5.05 gnu/packages/web.scm:4819 72f60a916160>
#<package perl-net-ssleay <at> 1.92 gnu/packages/tls.scm:819 72f60a7f3e70>)
--8<---------------cut here---------------end--------------->8---
compared to:
(assoc-ref inputs "perl-authen-sasl")
(assoc-ref inputs "perl-net-smtp-ssl")
(assoc-ref inputs "perl-io-socket-ssl")
(assoc-ref inputs "perl-gssapi")
(assoc-ref inputs "perl-digest-hmac")
(assoc-ref inputs "perl-uri")
(assoc-ref inputs "perl-net-ssleay")
Therefore, see v2.
Cheers,
simon
This bug report was last modified 313 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.