emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#37722: closed ([PATCH] python-build-system: Fix bu


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#37722: closed ([PATCH] python-build-system: Fix build of packages without sbin directory.)
Date: Sat, 12 Oct 2019 23:00:02 +0000

Your message dated Sat, 12 Oct 2019 18:59:35 -0400
with message-id <address@hidden>
and subject line Re: bug#37722: Acknowledgement ([PATCH] python-build-system: 
Fix build of packages without sbin directory.)
has caused the debbugs.gnu.org bug report #37722,
regarding [PATCH] python-build-system: Fix build of packages without sbin 
directory.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden.)


-- 
37722: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=37722
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] python-build-system: Fix build of packages without sbin directory. Date: Sat, 12 Oct 2019 18:54:04 -0400
Prior to this change, some packages (at least Ansible for example) would fail
to build with an error like:

starting phase `wrap'
find-files: /gnu/store/va1qkgv1qwv1hy6iynzjafqshakqkjs7-ansible-2.8.1/sbin: No
such file or directory

That directory in the store contained a 'bin' directory, but not an 'sbin
directory, and 'find-files' throws an error in that case.

* guix/build/python-build-system.scm (list-of-files): Handle case in which
  directory passed as argument does not exist.
---
 guix/build/python-build-system.scm | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/guix/build/python-build-system.scm 
b/guix/build/python-build-system.scm
index 09bd8465c8..15c7d2e613 100644
--- a/guix/build/python-build-system.scm
+++ b/guix/build/python-build-system.scm
@@ -188,9 +188,11 @@ when running checks after installing the package."
 
 (define* (wrap #:key inputs outputs #:allow-other-keys)
   (define (list-of-files dir)
-    (find-files dir (lambda (file stat)
-                      (and (eq? 'regular (stat:type stat))
-                           (not (wrapper? file))))))
+    (if (not (directory-exists? dir))
+        '()
+        (find-files dir (lambda (file stat)
+                          (and (eq? 'regular (stat:type stat))
+                               (not (wrapper? file)))))))
 
   (define bindirs
     (append-map (match-lambda
-- 
2.23.0




--- End Message ---
--- Begin Message --- Subject: Re: bug#37722: Acknowledgement ([PATCH] python-build-system: Fix build of packages without sbin directory.) Date: Sat, 12 Oct 2019 18:59:35 -0400 User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.9.0
On 10/12/19 6:55 PM, GNU bug Tracking System wrote:

> Thank you for filing a new bug report with debbugs.gnu.org.
>
> This is an automatically generated reply to let you know your message
> has been received.
>
> Your message is being forwarded to the package maintainers and other
> interested parties for their attention; they will reply in due course.
>
> Your message has been sent to the package maintainer(s):
>  address@hidden
>
> If you wish to submit further information on this problem, please
> send it to address@hidden.
>
> Please do not send mail to address@hidden unless you wish
> to report a problem with the Bug-tracking system.
>
Ah, my apologies, I seem to have been a bit too trigger-happy with this
patch - it doesn't entirely solve the issue I was running into. The
'wrap' phase succeeds at this point but the 'fix-symlinks' phase still
fails. I'm not sure what the underlying issue here is yet, but
*something* changed recently as Ansible builds succeeded not too long
ago... closing this one out though.

Attachment: signature.asc
Description: OpenPGP digital signature


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]