GNU bug report logs - #69550
smithforth: missing source (?)

Previous Next

Package: guix;

Reported by: Christopher Howard <christopher <at> librehacker.com>

Date: Mon, 4 Mar 2024 19:09:02 UTC

Severity: normal

Done: Simon Tournier <zimon.toutoune <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 69550 in the body.
You can then email your comments to 69550 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to bug-guix <at> gnu.org:
bug#69550; Package guix. (Mon, 04 Mar 2024 19:09:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Christopher Howard <christopher <at> librehacker.com>:
New bug report received and forwarded. Copy sent to bug-guix <at> gnu.org. (Mon, 04 Mar 2024 19:09:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Christopher Howard <christopher <at> librehacker.com>
To: Bug Guix <bug-guix <at> gnu.org>
Subject: smithforth: missing source (?)
Date: Mon, 4 Mar 2024 10:07:41 -0900
Hi, I think the smithforth package is nice addition to Guix. However, if I run the command to get the source...

``` guix build -S smithforth
/gnu/store/4w4v7zv4vif2k55g9srmv57fg5icpl94-SForth220711dmp.txt
```

...I only get the annotated header/opcode file. However, the forth system provided in the binary includes also the words defined here:

{https://dacvs.neocities.org/SF/system220711fs.txt}

It seems to me that `guix build -S' should return both these files in some form. Maybe in a tar file...?

``` guix show smithforth
name: smithforth
version: 220711
outputs:
+ out: everything
systems: x86_64-linux
dependencies: xxd <at> 9.1.0146
location: gnu/packages/forth.scm:67:2
homepage: https://dacvs.neocities.org/SF/
license: Expat No Attribution
synopsis: Forth programming language for x86-64 desktop computers  
description: SmithForth is an implementation of the Forth programming language
+ for x86-64 desktop computers.  SmithForth is a text interpreter that runs in a
+ Linux text console.
```

``` guix describe
Generation 57	Mar 04 2024 06:56:57	(current)
  guix 9321cf7
    repository URL: https://git.savannah.gnu.org/git/guix.git
    branch: master
    commit: 9321cf7f51eb6dc3fe49d4302eed4e47a52284e2
```

-- 
📛 Christopher Howard
🚀 gemini://gem.librehacker.com
🌐 http://gem.librehacker.com

בראשית ברא אלהים את השמים ואת הארץ




Information forwarded to bug-guix <at> gnu.org:
bug#69550; Package guix. (Tue, 10 Sep 2024 16:20:03 GMT) Full text and rfc822 format available.

Message #8 received at 69550 <at> debbugs.gnu.org (full text, mbox):

From: Simon Tournier <zimon.toutoune <at> gmail.com>
To: Christopher Howard <christopher <at> librehacker.com>
Cc: 69550 <at> debbugs.gnu.org
Subject: Re: bug#69550: smithforth: missing source (?)
Date: Tue, 10 Sep 2024 15:52:45 +0200
Hi,

On Mon, 04 Mar 2024 at 10:07, Christopher Howard <christopher <at> librehacker.com> wrote:

> ``` guix build -S smithforth
> /gnu/store/4w4v7zv4vif2k55g9srmv57fg5icpl94-SForth220711dmp.txt
> ```
>
> ...I only get the annotated header/opcode file. However, the forth system provided in the binary includes also the words defined here:
>
> {https://dacvs.neocities.org/SF/system220711fs.txt}
>
> It seems to me that `guix build -S' should return both these files in some form. Maybe in a tar file...?

No, “guix build -S” returns the ’source’ of the package, i.e., only one
’origin’.  Here it reads:

    (source
      (origin
        (method url-fetch)
        (uri (string-append "https://dacvs.neocities.org/SF/SForth"
                            version "dmp.txt"))
        (sha256
          (base32 "0a39pv7529llsa3f48fmvwvlcp3f9v8qkn5ziw2l6kxf0qvli3lm"))))

The other is listed as inputs:

    (native-inputs (list xxd
                         (origin
                           (method url-fetch)
                           (uri (string-append
                                 "https://dacvs.neocities.org/SF/system"
                                 version "fs.txt"))
                           (sha256
                            (base32
                             "17v1pp64s6n8q8w3kg48nd7zdcx2208y4svr5fpfms5lkyzg7z1m")))))

Therefore, you can run:

--8<---------------cut here---------------start------------->8---
$ guix build smithforth --sources=all
/gnu/store/4w4v7zv4vif2k55g9srmv57fg5icpl94-SForth220711dmp.txt
/gnu/store/lvrkhx3yzjk58ma99vyp0blvr2whbvpr-system220711fs.txt
--8<---------------cut here---------------end--------------->8---

However, this does not work as-is yet; you need
<https://issues.guix.gnu.org/73073>.

Well, I think that’s not a bug.  WDYT?  Closing?

Cheers,
simon




Information forwarded to bug-guix <at> gnu.org:
bug#69550; Package guix. (Tue, 10 Sep 2024 17:39:01 GMT) Full text and rfc822 format available.

Message #11 received at 69550 <at> debbugs.gnu.org (full text, mbox):

From: Christopher Howard <christopher <at> librehacker.com>
To: Simon Tournier <zimon.toutoune <at> gmail.com>
Cc: 69550 <at> debbugs.gnu.org
Subject: Re: bug#69550: smithforth: missing source (?)
Date: Tue, 10 Sep 2024 09:37:43 -0800
Simon Tournier <zimon.toutoune <at> gmail.com> writes:

> Therefore, you can run:
>
> $ guix build smithforth --sources=all
> /gnu/store/4w4v7zv4vif2k55g9srmv57fg5icpl94-SForth220711dmp.txt
> /gnu/store/lvrkhx3yzjk58ma99vyp0blvr2whbvpr-system220711fs.txt
>
> However, this does not work as-is yet; you need
> <https://issues.guix.gnu.org/73073>.
>
> Well, I think that’s not a bug.  WDYT?  Closing?
>

My first thought would be to merge this bug into 73073, if that is possible, so folks looking at 73073 can see the connection to this report.

-- 
Christopher Howard




Reply sent to Simon Tournier <zimon.toutoune <at> gmail.com>:
You have taken responsibility. (Fri, 20 Sep 2024 17:14:05 GMT) Full text and rfc822 format available.

Notification sent to Christopher Howard <christopher <at> librehacker.com>:
bug acknowledged by developer. (Fri, 20 Sep 2024 17:14:05 GMT) Full text and rfc822 format available.

Message #16 received at 69550-done <at> debbugs.gnu.org (full text, mbox):

From: Simon Tournier <zimon.toutoune <at> gmail.com>
To: Christopher Howard <christopher <at> librehacker.com>
Cc: 69550-done <at> debbugs.gnu.org
Subject: Re: bug#69550: smithforth: missing source (?)
Date: Fri, 20 Sep 2024 18:26:33 +0200
Hi,

On mar., 10 sept. 2024 at 09:37, Christopher Howard <christopher <at> librehacker.com> wrote:
> Simon Tournier <zimon.toutoune <at> gmail.com> writes:
>
>> Therefore, you can run:
>>
>> $ guix build smithforth --sources=all
>> /gnu/store/4w4v7zv4vif2k55g9srmv57fg5icpl94-SForth220711dmp.txt
>> /gnu/store/lvrkhx3yzjk58ma99vyp0blvr2whbvpr-system220711fs.txt
>>
>> However, this does not work as-is yet; you need
>> <https://issues.guix.gnu.org/73073>.
>>
>> Well, I think that’s not a bug.  WDYT?  Closing?

Since it’s not a bug, closing.


> My first thought would be to merge this bug into 73073, if that is
> possible, so folks looking at 73073 can see the connection to this
> report. 

I would prefer to not add to the already long thread. :-)

For future cross-reference, here details:

        [bug#73073] [PATCH 0/6] Allow origin with label as inputs.
        Simon Tournier <zimon.toutoune <at> gmail.com>
        Fri, 06 Sep 2024 17:51:14 +0200
        id:cover.1725636992.git.zimon.toutoune <at> gmail.com
        https://issues.guix.gnu.org/73073
        https://issues.guix.gnu.org/msgid/cover.1725636992.git.zimon.toutoune <at> gmail.com
        https://yhetil.org/guix/cover.1725636992.git.zimon.toutoune <at> gmail.com

Cheers,
simon




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 19 Oct 2024 11:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 38 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.