Re: [Chicken-users] need help with chicken-install

2015-11-03 Thread Mario Domenech Goulart
Hello Jörg, On Tue, 03 Nov 2015 12:40:15 +0100 "Jörg F. Wittenberger" wrote: > Following the instructions on http://wiki.call-cc.org/releasing-your-egg > I posted two release-info files. But those fail to work with > chicken-install. > > Unfortunately the

Re: [Chicken-users] need help with chicken-install

2015-11-03 Thread Jörg F. Wittenberger
Am 03.11.2015 um 13:12 schrieb Mario Domenech Goulart: > Hello Jörg, > > On Tue, 03 Nov 2015 12:40:15 +0100 "Jörg F. Wittenberger" > wrote: > >> Following the instructions on http://wiki.call-cc.org/releasing-your-egg >> I posted two release-info files. But

[Chicken-users] need help with chicken-install

2015-11-03 Thread Jörg F. Wittenberger
Hi, Following the instructions on http://wiki.call-cc.org/releasing-your-egg I posted two release-info files. But those fail to work with chicken-install. Unfortunately the error message does not tell me much. And the files look pretty much as in the examples given at the wiki page above.

[Chicken-users] one more egg - need advice how wrt. exports

2015-11-03 Thread Jörg F. Wittenberger
Here is one more egg: http://ball.askemos.org/Aad0f198cd7fcfc96ea59bcbeec340556/srfi-101.release-info This simply slaps a module/egg around srfi-101 "Purely Functional Random-Access Pairs and Lists". However I'm not yet confident that the way I'm handling exports is the right thing to do.

Re: [Chicken-users] one more egg - need advice how wrt. exports

2015-11-03 Thread Evan Hanson
On 2015-11-03 21:29, "J??rg F. Wittenberger" wrote: > Firstly I have not found a way to rename identifiers on export (as in > r6rs libraries). Is there really no way or did I miss it? There is really no way. Except for the obvious way of simply using `define` within your module. But, I doubt

Re: [Chicken-users] one more egg - need advice how wrt. exports

2015-11-03 Thread John Cowan
"Jörg F. Wittenberger" scripsit: > Firstly I have not found a way to rename identifiers on export (as in > r6rs libraries). Is there really no way or did I miss it? That's a limitation of Chicken that I hope will eventually be lifted. In the meantime, you have to import the conflicting names

Re: [Chicken-users] one more egg - need advice how wrt. exports

2015-11-03 Thread John Cowan
"Jörg F. Wittenberger" scripsit: > Firstly I have not found a way to rename identifiers on export (as in > r6rs libraries). Is there really no way or did I miss it? That's a Chicken limitation I hope will one day be lifted. I'd just go with fixing the code so that it uses rcar, rcdr, rcons