unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64
@ 2018-12-16 12:49 Vagrant Cascadian
  2018-12-16 15:01 ` Danny Milosavljevic
  2018-12-16 20:12 ` Danny Milosavljevic
  0 siblings, 2 replies; 9+ messages in thread
From: Vagrant Cascadian @ 2018-12-16 12:49 UTC (permalink / raw)
  To: 33768


[-- Attachment #1.1: Type: text/plain, Size: 413 bytes --]

I've been unable to successfully build guix on aarch64 for a while, as
it fails several tests. This prevents "guix system reconfigure" from
working. It also fails with "guix build guix" as well as trying to build
from a local git checkout.

FAIL: tests/graph.scm
FAIL: tests/guix-package.sh
FAIL: tests/graph
FAIL: tests/guix-package

More details in the attached build log.

live well,
  vagrant


[-- Attachment #1.2: jpykx3cm276bbfzak5g8g42k7d3lch-guix-0.16.0-4.60b0402.drv.bz2 --]
[-- Type: application/octet-stream, Size: 79817 bytes --]

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

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

* bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64
  2018-12-16 12:49 bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64 Vagrant Cascadian
@ 2018-12-16 15:01 ` Danny Milosavljevic
  2018-12-16 20:12 ` Danny Milosavljevic
  1 sibling, 0 replies; 9+ messages in thread
From: Danny Milosavljevic @ 2018-12-16 15:01 UTC (permalink / raw)
  To: Vagrant Cascadian; +Cc: 33768

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

Possible workaround (not that mit-scheme works on aarch64 then, but at least guix does):

diff --git a/gnu/packages/scheme.scm b/gnu/packages/scheme.scm
index c7ab00380..25852d2af 100644
--- a/gnu/packages/scheme.scm
+++ b/gnu/packages/scheme.scm
@@ -70,12 +70,7 @@
   #:use-module (ice-9 match))
 
 (define (mit-scheme-source-directory system version)
-  (string-append "mit-scheme-"
-                 (if (or (string-prefix? "x86_64" system)
-                         (string-prefix? "i686" system))
-                     ""
-                     "c-")
-                 version))
+  (string-append "mit-scheme-" version))
 
 (define-public mit-scheme
   (package
@@ -173,7 +168,7 @@
                                 ("i686-linux"
                                  (string-append version "-i386"))
                                 (_
-                                 (string-append "c-" version)))
+                                 version))
                               ".tar.gz"))
           (sha256
            (match (%current-system)
@@ -182,7 +177,10 @@
                "03m7cc035w3avs91j2pcz9f15ssgvgp3rm045d1vbydqrkzfyw8k"))
              ("i686-linux"
               (base32
-               "05sjyz90xxfnmi87qv8x0yx0fcallnzl1dciygdafp317pn489is"))))))))
+               "05sjyz90xxfnmi87qv8x0yx0fcallnzl1dciygdafp317pn489is"))
+             (_
+              (base32
+               "18kllckm3iky59wk3nvx41kfn56lpp468savvrk41agjza2hqqhy"))))))))
 
     ;; Fails to build on MIPS, see <http://bugs.gnu.org/18221>.
     ;; Also, the portable C version of MIT/GNU Scheme did not work in time for

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64
  2018-12-16 12:49 bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64 Vagrant Cascadian
  2018-12-16 15:01 ` Danny Milosavljevic
@ 2018-12-16 20:12 ` Danny Milosavljevic
  2018-12-17  7:31   ` Efraim Flashner
  1 sibling, 1 reply; 9+ messages in thread
From: Danny Milosavljevic @ 2018-12-16 20:12 UTC (permalink / raw)
  To: Vagrant Cascadian; +Cc: 33768

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

Should be fixed on master.  Can you confirm?

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

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

* bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64
  2018-12-16 20:12 ` Danny Milosavljevic
@ 2018-12-17  7:31   ` Efraim Flashner
  2018-12-18 15:50     ` Vagrant Cascadian
  0 siblings, 1 reply; 9+ messages in thread
From: Efraim Flashner @ 2018-12-17  7:31 UTC (permalink / raw)
  To: Danny Milosavljevic; +Cc: Vagrant Cascadian, 33768

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

On Sun, Dec 16, 2018 at 09:12:08PM +0100, Danny Milosavljevic wrote:
> Should be fixed on master.  Can you confirm?

Vagrant confirmed on IRC that it is fixed on master.

As suggested in the armhf bug about the same issue, now that it's
working we should tag a new commit.


-- 
Efraim Flashner   <efraim@flashner.co.il>   אפרים פלשנר
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64
  2018-12-17  7:31   ` Efraim Flashner
@ 2018-12-18 15:50     ` Vagrant Cascadian
  2018-12-18 22:05       ` Mark H Weaver
  0 siblings, 1 reply; 9+ messages in thread
From: Vagrant Cascadian @ 2018-12-18 15:50 UTC (permalink / raw)
  To: Efraim Flashner, Danny Milosavljevic; +Cc: 33768

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

On 2018-12-17, Efraim Flashner wrote:
> On Sun, Dec 16, 2018 at 09:12:08PM +0100, Danny Milosavljevic wrote:
>> Should be fixed on master.  Can you confirm?
>
> Vagrant confirmed on IRC that it is fixed on master.

I think that was a different bug.

As of 2119cd3a350cb5544418a0e8ac6c7fb6dcbf0a13 it still wasn't fixed; I
haven't checked more recently.

live well,
  vagrant

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

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

* bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64
  2018-12-18 15:50     ` Vagrant Cascadian
@ 2018-12-18 22:05       ` Mark H Weaver
  2018-12-19 14:08         ` Ludovic Courtès
  0 siblings, 1 reply; 9+ messages in thread
From: Mark H Weaver @ 2018-12-18 22:05 UTC (permalink / raw)
  To: Vagrant Cascadian; +Cc: 33768

Vagrant Cascadian <vagrant@debian.org> writes:

> On 2018-12-17, Efraim Flashner wrote:
>> On Sun, Dec 16, 2018 at 09:12:08PM +0100, Danny Milosavljevic wrote:
>>> Should be fixed on master.  Can you confirm?
>>
>> Vagrant confirmed on IRC that it is fixed on master.
>
> I think that was a different bug.
>
> As of 2119cd3a350cb5544418a0e8ac6c7fb6dcbf0a13 it still wasn't fixed; I
> haven't checked more recently.

If I'm not mistaken, although the bug is fixed on our 'master' branch,
the problem is that our 'guix' package still uses an older commit from
before the bug was fixed.  Now we need to update our 'guix' package.
See also <https://bugs.gnu.org/33754>.

      Mark

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

* bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64
  2018-12-18 22:05       ` Mark H Weaver
@ 2018-12-19 14:08         ` Ludovic Courtès
  2018-12-19 18:03           ` Vagrant Cascadian
  0 siblings, 1 reply; 9+ messages in thread
From: Ludovic Courtès @ 2018-12-19 14:08 UTC (permalink / raw)
  To: Mark H Weaver; +Cc: Vagrant Cascadian, 33768

Mark H Weaver <mhw@netris.org> skribis:

> Vagrant Cascadian <vagrant@debian.org> writes:
>
>> On 2018-12-17, Efraim Flashner wrote:
>>> On Sun, Dec 16, 2018 at 09:12:08PM +0100, Danny Milosavljevic wrote:
>>>> Should be fixed on master.  Can you confirm?
>>>
>>> Vagrant confirmed on IRC that it is fixed on master.
>>
>> I think that was a different bug.
>>
>> As of 2119cd3a350cb5544418a0e8ac6c7fb6dcbf0a13 it still wasn't fixed; I
>> haven't checked more recently.
>
> If I'm not mistaken, although the bug is fixed on our 'master' branch,
> the problem is that our 'guix' package still uses an older commit from
> before the bug was fixed.  Now we need to update our 'guix' package.
> See also <https://bugs.gnu.org/33754>.

I’ve done it a few hours ago.  Please close the bug if we’re all set!

Ludo’.

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

* bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64
  2018-12-19 14:08         ` Ludovic Courtès
@ 2018-12-19 18:03           ` Vagrant Cascadian
  2018-12-19 21:10             ` Ludovic Courtès
  0 siblings, 1 reply; 9+ messages in thread
From: Vagrant Cascadian @ 2018-12-19 18:03 UTC (permalink / raw)
  To: Ludovic Courtès, Mark H Weaver; +Cc: 33768

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

On 2018-12-19, Ludovic Courtès wrote:
> Mark H Weaver <mhw@netris.org> skribis:
>
>> Vagrant Cascadian <vagrant@debian.org> writes:
>>
>>> On 2018-12-17, Efraim Flashner wrote:
>>>> On Sun, Dec 16, 2018 at 09:12:08PM +0100, Danny Milosavljevic wrote:
>>>>> Should be fixed on master.  Can you confirm?
>>>>
>>>> Vagrant confirmed on IRC that it is fixed on master.
>>>
>>> I think that was a different bug.
>>>
>>> As of 2119cd3a350cb5544418a0e8ac6c7fb6dcbf0a13 it still wasn't fixed; I
>>> haven't checked more recently.
>>
>> If I'm not mistaken, although the bug is fixed on our 'master' branch,
>> the problem is that our 'guix' package still uses an older commit from
>> before the bug was fixed.  Now we need to update our 'guix' package.
>> See also <https://bugs.gnu.org/33754>.
>
> I’ve done it a few hours ago.  Please close the bug if we’re all set!

It built for me on aarch64-linux as of
af8c90e86230e1bae93b5ba9b6f77a76f302e203.

Thanks everyone!

live well,
  vagrant

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 227 bytes --]

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

* bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64
  2018-12-19 18:03           ` Vagrant Cascadian
@ 2018-12-19 21:10             ` Ludovic Courtès
  0 siblings, 0 replies; 9+ messages in thread
From: Ludovic Courtès @ 2018-12-19 21:10 UTC (permalink / raw)
  To: Vagrant Cascadian; +Cc: 33768-done

Vagrant Cascadian <vagrant@debian.org> skribis:

> On 2018-12-19, Ludovic Courtès wrote:
>> Mark H Weaver <mhw@netris.org> skribis:
>>
>>> Vagrant Cascadian <vagrant@debian.org> writes:
>>>
>>>> On 2018-12-17, Efraim Flashner wrote:
>>>>> On Sun, Dec 16, 2018 at 09:12:08PM +0100, Danny Milosavljevic wrote:
>>>>>> Should be fixed on master.  Can you confirm?
>>>>>
>>>>> Vagrant confirmed on IRC that it is fixed on master.
>>>>
>>>> I think that was a different bug.
>>>>
>>>> As of 2119cd3a350cb5544418a0e8ac6c7fb6dcbf0a13 it still wasn't fixed; I
>>>> haven't checked more recently.
>>>
>>> If I'm not mistaken, although the bug is fixed on our 'master' branch,
>>> the problem is that our 'guix' package still uses an older commit from
>>> before the bug was fixed.  Now we need to update our 'guix' package.
>>> See also <https://bugs.gnu.org/33754>.
>>
>> I’ve done it a few hours ago.  Please close the bug if we’re all set!
>
> It built for me on aarch64-linux as of
> af8c90e86230e1bae93b5ba9b6f77a76f302e203.

Awesome, closing!

Ludo’.

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

end of thread, other threads:[~2018-12-19 21:11 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-16 12:49 bug#33768: guix 0.16.0-4.60b0402 fails tests on aarch64 Vagrant Cascadian
2018-12-16 15:01 ` Danny Milosavljevic
2018-12-16 20:12 ` Danny Milosavljevic
2018-12-17  7:31   ` Efraim Flashner
2018-12-18 15:50     ` Vagrant Cascadian
2018-12-18 22:05       ` Mark H Weaver
2018-12-19 14:08         ` Ludovic Courtès
2018-12-19 18:03           ` Vagrant Cascadian
2018-12-19 21:10             ` Ludovic Courtès

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).