mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
Update to 20051118
Update COMMENT and pkg-descr Add SHA256 PR: 89216 Submitted by: Nils M Holm <nmh@t3x.org> (maintainer)
This commit is contained in:
parent
d4490bc686
commit
47689f93f1
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=148724
@ -6,12 +6,12 @@
|
||||
#
|
||||
|
||||
PORTNAME= sketchy
|
||||
PORTVERSION= 20050807
|
||||
PORTVERSION= 20051118
|
||||
CATEGORIES= lang devel lisp
|
||||
MASTER_SITES= http://www.t3x.org/sketchy/
|
||||
|
||||
MAINTAINER= nmh@t3x.org
|
||||
COMMENT= An interpreter for a purely applicative dialect of Scheme
|
||||
COMMENT= An interpreter for purely applicative Scheme
|
||||
|
||||
MAN7= sketchy.7
|
||||
|
||||
|
@ -1,2 +1,3 @@
|
||||
MD5 (sketchy-20050807.tar.gz) = a4c9555a0e60432a1a5daea7701308a0
|
||||
SIZE (sketchy-20050807.tar.gz) = 131289
|
||||
MD5 (sketchy-20051118.tar.gz) = c3408a2ac6d9f4af7d24d724ff75aa95
|
||||
SHA256 (sketchy-20051118.tar.gz) = 5aae863abf8fbbc81e66f363d6ae3e1a1a7b7d7760776015482f29f612129be2
|
||||
SIZE (sketchy-20051118.tar.gz) = 128966
|
||||
|
@ -1,10 +1,10 @@
|
||||
SketchyLISP is an interpreter for a purely applicative dialect
|
||||
of Scheme. It may be considered an implementation of pure LISP
|
||||
plus global definitions (DEFINE) and first-class continuations
|
||||
(CALL/CC).
|
||||
Sketchy is an interpreter for a purely applicative dialect of
|
||||
Scheme. It may be considered an implementation of pure LISP
|
||||
plus global definitions (DEFINE), first-class continuations
|
||||
(CALL/CC) and input/output functions (READ, WRITE, etc).
|
||||
|
||||
This package contains the SketchyLISP interpreter and library,
|
||||
the reference manual, and example programs.
|
||||
This package contains the Sketchy interpreter and library, the
|
||||
manual, and example programs.
|
||||
|
||||
WWW: http://www.t3x.org/sketchy/
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
bin/Sk
|
||||
bin/sk
|
||||
bin/sketchy
|
||||
%%DATADIR%%/lib/abs.l
|
||||
%%DATADIR%%/lib/anyp.l
|
||||
@ -7,11 +7,9 @@ bin/sketchy
|
||||
%%DATADIR%%/lib/assq.l
|
||||
%%DATADIR%%/lib/booleanp.l
|
||||
%%DATADIR%%/lib/c-alphabeticp.l
|
||||
%%DATADIR%%/lib/c-cieqp.l
|
||||
%%DATADIR%%/lib/c-cigep.l
|
||||
%%DATADIR%%/lib/c-cigtp.l
|
||||
%%DATADIR%%/lib/c-cilep.l
|
||||
%%DATADIR%%/lib/c-ciltp.l
|
||||
%%DATADIR%%/lib/c-downcase.l
|
||||
%%DATADIR%%/lib/c-lower-casep.l
|
||||
%%DATADIR%%/lib/c-numericp.l
|
||||
@ -21,11 +19,9 @@ bin/sketchy
|
||||
%%DATADIR%%/lib/caaaar.l
|
||||
%%DATADIR%%/lib/caaar.l
|
||||
%%DATADIR%%/lib/caar.l
|
||||
%%DATADIR%%/lib/ceqp.l
|
||||
%%DATADIR%%/lib/cgep.l
|
||||
%%DATADIR%%/lib/cgtp.l
|
||||
%%DATADIR%%/lib/clep.l
|
||||
%%DATADIR%%/lib/cltp.l
|
||||
%%DATADIR%%/lib/count.l
|
||||
%%DATADIR%%/lib/depth.l
|
||||
%%DATADIR%%/lib/digits.l
|
||||
@ -81,17 +77,15 @@ bin/sketchy
|
||||
%%DATADIR%%/lib/neqp.l
|
||||
%%DATADIR%%/lib/negate.l
|
||||
%%DATADIR%%/lib/negativep.l
|
||||
%%DATADIR%%/lib/newline.l
|
||||
%%DATADIR%%/lib/nexpt.l
|
||||
%%DATADIR%%/lib/ngreater.l
|
||||
%%DATADIR%%/lib/ngteq.l
|
||||
%%DATADIR%%/lib/nless.l
|
||||
%%DATADIR%%/lib/nlteq.l
|
||||
%%DATADIR%%/lib/nminus.l
|
||||
%%DATADIR%%/lib/non-negativep.l
|
||||
%%DATADIR%%/lib/normalize.l
|
||||
%%DATADIR%%/lib/not-equalp.l
|
||||
%%DATADIR%%/lib/not.l
|
||||
%%DATADIR%%/lib/nplus.l
|
||||
%%DATADIR%%/lib/nquotient.l
|
||||
%%DATADIR%%/lib/nremainder.l
|
||||
%%DATADIR%%/lib/ntimes.l
|
||||
@ -106,6 +100,7 @@ bin/sketchy
|
||||
%%DATADIR%%/lib/product.l
|
||||
%%DATADIR%%/lib/quicksort.l
|
||||
%%DATADIR%%/lib/quotient.l
|
||||
%%DATADIR%%/lib/read-line.l
|
||||
%%DATADIR%%/lib/reduce.l
|
||||
%%DATADIR%%/lib/remainder.l
|
||||
%%DATADIR%%/lib/remove.l
|
||||
@ -144,6 +139,7 @@ bin/sketchy
|
||||
%%DATADIR%%/src/bubblesort.l
|
||||
%%DATADIR%%/src/date.l
|
||||
%%DATADIR%%/src/evaluate.l
|
||||
%%DATADIR%%/src/gen-bottles.l
|
||||
%%DATADIR%%/src/hanoi.l
|
||||
%%DATADIR%%/src/infix.l
|
||||
%%DATADIR%%/src/lvrename.l
|
||||
@ -152,6 +148,7 @@ bin/sketchy
|
||||
%%DATADIR%%/src/queens.l
|
||||
%%DATADIR%%/src/tree.l
|
||||
%%DATADIR%%/src/unlabel.l
|
||||
%%DATADIR%%/src/vqueens.l
|
||||
%%DATADIR%%/src/xeval.l
|
||||
%%DATADIR%%/sketchy.image
|
||||
%%DATADIR%%/LICENSE
|
||||
@ -162,11 +159,9 @@ bin/sketchy
|
||||
%%DOCSDIR%%/library/assq.html
|
||||
%%DOCSDIR%%/library/booleanp.html
|
||||
%%DOCSDIR%%/library/c-alphabeticp.html
|
||||
%%DOCSDIR%%/library/c-cieqp.html
|
||||
%%DOCSDIR%%/library/c-cigep.html
|
||||
%%DOCSDIR%%/library/c-cigtp.html
|
||||
%%DOCSDIR%%/library/c-cilep.html
|
||||
%%DOCSDIR%%/library/c-ciltp.html
|
||||
%%DOCSDIR%%/library/c-downcase.html
|
||||
%%DOCSDIR%%/library/c-lower-casep.html
|
||||
%%DOCSDIR%%/library/c-numericp.html
|
||||
@ -176,11 +171,9 @@ bin/sketchy
|
||||
%%DOCSDIR%%/library/caaaar.html
|
||||
%%DOCSDIR%%/library/caaar.html
|
||||
%%DOCSDIR%%/library/caar.html
|
||||
%%DOCSDIR%%/library/ceqp.html
|
||||
%%DOCSDIR%%/library/cgep.html
|
||||
%%DOCSDIR%%/library/cgtp.html
|
||||
%%DOCSDIR%%/library/clep.html
|
||||
%%DOCSDIR%%/library/cltp.html
|
||||
%%DOCSDIR%%/library/count.html
|
||||
%%DOCSDIR%%/library/depth.html
|
||||
%%DOCSDIR%%/library/digits.html
|
||||
@ -237,17 +230,15 @@ bin/sketchy
|
||||
%%DOCSDIR%%/library/negate.html
|
||||
%%DOCSDIR%%/library/negativep.html
|
||||
%%DOCSDIR%%/library/neqp.html
|
||||
%%DOCSDIR%%/library/newline.html
|
||||
%%DOCSDIR%%/library/nexpt.html
|
||||
%%DOCSDIR%%/library/ngreater.html
|
||||
%%DOCSDIR%%/library/ngteq.html
|
||||
%%DOCSDIR%%/library/nless.html
|
||||
%%DOCSDIR%%/library/nlteq.html
|
||||
%%DOCSDIR%%/library/nminus.html
|
||||
%%DOCSDIR%%/library/non-negativep.html
|
||||
%%DOCSDIR%%/library/normalize.html
|
||||
%%DOCSDIR%%/library/not-equalp.html
|
||||
%%DOCSDIR%%/library/not.html
|
||||
%%DOCSDIR%%/library/nplus.html
|
||||
%%DOCSDIR%%/library/nquotient.html
|
||||
%%DOCSDIR%%/library/nremainder.html
|
||||
%%DOCSDIR%%/library/ntimes.html
|
||||
@ -262,6 +253,7 @@ bin/sketchy
|
||||
%%DOCSDIR%%/library/product.html
|
||||
%%DOCSDIR%%/library/quicksort.html
|
||||
%%DOCSDIR%%/library/quotient.html
|
||||
%%DOCSDIR%%/library/read-line.html
|
||||
%%DOCSDIR%%/library/reduce.html
|
||||
%%DOCSDIR%%/library/remainder.html
|
||||
%%DOCSDIR%%/library/remove.html
|
||||
@ -308,8 +300,9 @@ bin/sketchy
|
||||
%%DOCSDIR%%/sk07.html
|
||||
%%DOCSDIR%%/sk08.html
|
||||
%%DOCSDIR%%/sk09.html
|
||||
%%DOCSDIR%%/toc-c.html
|
||||
%%DOCSDIR%%/toc.html
|
||||
%%DOCSDIR%%/retro.css
|
||||
%%DOCSDIR%%/sketchy.css
|
||||
@dirrm %%DATADIR%%/lib
|
||||
@dirrm %%DATADIR%%/src
|
||||
@dirrm %%DATADIR%%
|
||||
|
Loading…
Reference in New Issue
Block a user