From: ng0 <ngillmann@runbox.com>
To: Ricardo Wurmus <rekado@elephly.net>
Cc: guix-devel@gnu.org
Subject: Re: [PATCH 2/2] gnu: lispf4: Fix the searchpath for SYSATOMS.
Date: Wed, 05 Oct 2016 12:15:06 +0000 [thread overview]
Message-ID: <877f9n801h.fsf@we.make.ritual.n0.is> (raw)
In-Reply-To: <87r37vf3be.fsf@elephly.net>
Ricardo Wurmus <rekado@elephly.net> writes:
> ng0 <ngillmann@runbox.com> writes:
>
>> ng0 <ngillmann@runbox.com> writes:
>>
>>> Hi,
>>>
>>> thanks for trying to help with this.
>>>
>>> Ricardo Wurmus <rekado@elephly.net> writes:
>>>
>>>> ng0 <ngillmann@runbox.com> writes:
>>>>
>>>>> * gnu/packages/lisp.scm (lispf4)[arguments]: Fix the searchpath for SYSATOMS.
>>>>> ---
>>>>> gnu/packages/lisp.scm | 14 +++++++++++++-
>>>>> 1 file changed, 13 insertions(+), 1 deletion(-)
>>>>>
>>>>> diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm
>>>>> index 7836d48..d66fb8b 100644
>>>>> --- a/gnu/packages/lisp.scm
>>>>> +++ b/gnu/packages/lisp.scm
>>>>> @@ -474,8 +474,20 @@ interface.")
>>>>> #:phases
>>>>> (modify-phases %standard-phases
>>>>> (delete 'configure)
>>>>> + (add-before 'build 'fix-searchpath
>>>>> + (lambda _
>>>>> + (substitute* "Lispf42.f"
>>>>> + (("NAME='SYSATOMS'")
>>>>> + (string-append "NAME='" (assoc-ref %outputs "out")
>>>>> + "/bin/SYSATOMS'")))
>>>>> + (substitute* "lispf42.c"
>>>>> + (("SYSATOMS")
>>>>> + (string-append (assoc-ref %outputs "out") "/bin/SYSATOMS"))
>>>>> + ;;(("8+1") "72+8+1"))))
>>>>> + (("c_b98_st") "c_b98")
>>>>> + (("c_b98.val") ""))))
>>>>> (replace 'install
>>>>> - (lambda* (#:key outputs #:allow-other-keys)
>>>>> + (lambda* (#:key outputs #:allow-other-keys)
>>>>> (let* ((out (assoc-ref outputs "out"))
>>>>> (bin (string-append out "/bin"))
>>>>> (doc (string-append (assoc-ref outputs "doc")
>>>>
>>>>
>>>> Here’s an alternative:
>>>>
>>>> (add-before 'build 'fix-reference-to-SYSATOMS
>>>> (lambda* (#:key outputs #:allow-other-keys)
>>>> (substitute* "lispf42.c"
>>>> (("#define c_b98.*")
>>>> (string-append "#define c_b98 \""
>>>> (assoc-ref outputs "out")
>>>> "/bin/SYSATOMS\"\n")))
>>>> #t))
>>>
>>> Thanks, I'll try this in combination with the proposed move, but if I
>>> don't succeed with it today I will start working on my priority tasks
>>> and do this in november or whenever I get the chance.
>>>
>>>> This won’t work, however, because during the build phase the lispf4
>>>> executable is called to run a script. At that point SYSATOMS only
>>>> exists in the current directory. So with the above phase the build
>>>> would fail.
>>>>
>>>> A hack to solve this would be to first install “SYSATOMS” to the target
>>>> directory and then build.
>>
>> And this fixes at least running it :) New patch incoming soon. This
>> depends on the one which deletes the bundles, can you apply that when
>> you do the one which will I will send in later?
>
> Yes, but have you actually tried using it? I have and while useless
> stuff like “(LIST 1 2 3)” works, creating own definitions does not.
>
> Here’s an example from the manual:
>
> ~~~~~~~~~~~~~~~~~~~~~~~~~~
> _(DE KAR(X) ((SUBR . CAR) X]
> --- Undefined function
> APPLY
> DE
> --- Reset
> _
> ~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> Installing BASIC.IMG to $out/bin has no effect. The thing behaves the
> same when the image is not installed at all.
Hm. Okay, I will look into this as soon as I can dedicate time to it.
> Currently, this package cannot be used and I don’t want to have
> a continuous stream of patches to develop the package in master. Please
> test this thoroughly on your own and then submit a new patch to fix all
> the problems.
Ok
> Another thing I noticed is that this package comes with a full
> reference of Interlisp, which seems unrelated to this particular
> implementation. The reference is a whole book and it is not clear under
> what license it is released.
>
> I’m currently tempted to remove the package because in its current state
> it isn’t usable and there doesn’t seem to be anyone using it to have
> noticed that it’s broken. That’s somewhat unsatisfying.
>
> ~~ Ricardo
>
>
I fully agree, please remove it.
I will re-add it as soon as I have a working copy, stripped off the
bloat it currently carries and solving the non-functional state.
Maybe it's even easier to re-implement in Guile what SIEMENS-INTERLISP
did back then, and drop any work on this completely... For now I'll move
this back to my long work-in-progress bench.
next prev parent reply other threads:[~2016-10-05 12:15 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-04 22:33 [PATCH] gnu: lispf4 fixes ng0
2016-10-04 22:33 ` [PATCH 1/2] gnu: lispf4: Remove prebuilt binaries ng0
2016-10-04 22:33 ` [PATCH 2/2] gnu: lispf4: Fix the searchpath for SYSATOMS ng0
2016-10-05 7:08 ` Ricardo Wurmus
2016-10-05 8:54 ` ng0
2016-10-05 9:17 ` ng0
2016-10-05 11:22 ` Ricardo Wurmus
2016-10-05 12:15 ` ng0 [this message]
2016-10-05 9:27 ` [PATCH] gnu: lispf4 fixes ng0
2016-10-05 10:07 ` ng0
2016-10-05 10:18 ` ng0
2016-10-05 9:31 ` [PATCH] gnu: lispf4: Fix reference to SYSATOMS ng0
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=877f9n801h.fsf@we.make.ritual.n0.is \
--to=ngillmann@runbox.com \
--cc=guix-devel@gnu.org \
--cc=rekado@elephly.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).