Re: New Egg: SRFI-151

2020-08-08 Thread Sören Tempel
Mario Domenech Goulart wrote: > Hi Sören, Hello Mario, > My only remark would be regarding the license, which AFAIK should be > MIT. John Cowan would be able to clarify that. I went through the license comments in these files and bitwise-60.scm and bitwise-core.scm have a license which is

New Egg: SRFI-151

2020-08-08 Thread Sören Tempel
Hello, I created an egg for SRFI-151. This is my first egg, I tried to carefully follow the instruction on the wiki regarding the creation and publishing process. According to the wiki page on publishing eggs [1], the egg has to be added to the egg-locations file in subversion. I was hoping my

New Egg: posix-regex

2022-03-16 Thread Sören Tempel
Hello, I have written a small library to wrap the regcomp(3), regexec(3), and regerror(3) POSIX functions. This allows using strict POSIX Basic Regular Expressions (BREs) and Extended Regular Expressions (EREs) from CHICKEN code. My understanding is that irregex only supports EREs with PCRE

Re: New Egg: posix-regex

2022-03-16 Thread Sören Tempel
Mario Domenech Goulart wrote: > Hi Sören, Hi Mario, > Many thanks. Your egg has been added to the coop. Thanks a lot! > Regarding documentation: all fine. Some people create it in advance, > some after the egg gets added. Both are good as long as we eventually > have some documentation.

Re: New Egg: posix-regex

2022-03-17 Thread Sören Tempel
Chris Brannon wrote: > I've been working on something along those lines myself, in fits and > starts. I haven't gotten too far with it, but my basic idea is to make > a library of data structures and functions suitable for creating > ed-style interfaces where the basic metaphor is a buffer of

New egg: edward, an extensible ed(1) implementation

2023-07-11 Thread Sören Tempel
Hello, I have written a POSIX-compatible implementation of the standard Unix text editor ed(1) in R7RS CHICKEN Scheme. The editor consists of both a program and a library component (for extending the editor with custom commands) and hence I am interested in packaging it as CHICKEN Egg. The