Update to 0.6.1; submitted by David Simas <davids@idiom.com>.
This commit is contained in:
parent
a9cfa2ddaa
commit
359283cc1d
@ -1,28 +1,33 @@
|
||||
# $OpenBSD: Makefile,v 1.15 2002/01/18 17:21:14 brad Exp $
|
||||
# $OpenBSD: Makefile,v 1.16 2002/03/04 00:24:58 naddy Exp $
|
||||
|
||||
COMMENT= "Unix shell embedded into Scheme"
|
||||
COMMENT= "Unix shell embedded in Scheme"
|
||||
|
||||
DISTNAME= scsh-0.5.3
|
||||
CATEGORIES= shells lang
|
||||
NEED_VERSION= 1.500
|
||||
MASTER_SITES= ftp://ftp-swiss.ai.mit.edu/pub/su/scsh/
|
||||
DISTNAME= scsh-0.6.1
|
||||
CATEGORIES= lang shell
|
||||
NEED_VERSION= 1.506
|
||||
|
||||
PERMIT_PACKAGE_CDROM= "required to notify authors"
|
||||
HOMEPAGE= http://www.scsh.net/
|
||||
|
||||
MAINTAINER= David Simas <davids@idiom.com>
|
||||
|
||||
# BSD
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= "required to notify authors"
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MASTER_SITES= ftp://ftp.scsh.net/pub/scsh/0.6/ \
|
||||
${MASTER_SITE_SOURCEFORGE}
|
||||
MASTER_SITE_SUBDIR= scsh
|
||||
|
||||
CONFIGURE_STYLE= gnu dest
|
||||
CONFIGURE_ENV= TMPDIR="/var/tmp"
|
||||
|
||||
ALL_TARGET= enough
|
||||
|
||||
DOCS= README RELEASE NEWS COPYING
|
||||
|
||||
post-install:
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/scsh
|
||||
@mv ${PREFIX}/lib/scsh/doc/* ${PREFIX}/share/doc/scsh
|
||||
@rm -rf ${PREFIX}/lib/scsh/doc
|
||||
cd ${WRKSRC} && ${INSTALL_DATA} ${DOCS} ${PREFIX}/share/doc/scsh
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/scsh/emacs
|
||||
${INSTALL_DATA} ${WRKSRC}/emacs/* ${PREFIX}/share/scsh/emacs
|
||||
${INSTALL_DATA} ${WRKSRC}/COPYING ${WRKSRC}/RELEASE ${WRKSRC}/README \
|
||||
${PREFIX}/share/doc/scsh
|
||||
|
||||
.include <bsd.port.mk>
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (scsh-0.5.3.tar.gz) = f7b525d0ccb62da0f5e97ae008b7d087
|
||||
RMD160 (scsh-0.5.3.tar.gz) = 5033bf66b4fa7f0b2279a512f0e27e0019a2c7e1
|
||||
SHA1 (scsh-0.5.3.tar.gz) = 05d1177dfa74fb560a29920768045b4f6fe9c188
|
||||
MD5 (scsh-0.6.1.tar.gz) = 8ac186061f0fd9679d86b2aa3d7826ba
|
||||
RMD160 (scsh-0.6.1.tar.gz) = 736203241f06b3c55d91ea32422a5aa3ce1d9009
|
||||
SHA1 (scsh-0.6.1.tar.gz) = fce45933c47511adc9e333bd9766673061ca6d52
|
||||
|
@ -1,50 +1,88 @@
|
||||
$OpenBSD: patch-Makefile_in,v 1.1 2001/09/04 23:26:31 lebel Exp $
|
||||
--- Makefile.in.orig Mon Jun 4 01:18:29 2001
|
||||
+++ Makefile.in Mon Sep 3 22:28:07 2001
|
||||
@@ -148,7 +148,7 @@ CONFIG_FILES = interfaces.scm low-packag
|
||||
$OpenBSD: patch-Makefile_in,v 1.2 2002/03/04 00:24:59 naddy Exp $
|
||||
--- Makefile.in.orig Sun Mar 3 09:39:21 2002
|
||||
+++ Makefile.in Sun Mar 3 09:39:25 2002
|
||||
@@ -31,7 +31,9 @@ manext = 1
|
||||
mandir = @mandir@/man$(manext)
|
||||
### End of `configure' section###
|
||||
|
||||
# The following is the first rule and therefore the "make" command's
|
||||
# default target.
|
||||
-enough: $(VM) $(IMAGE) script $(LIBCIG) scsh $(LIBSCSH) $(MANPAGE) .notify
|
||||
+enough: $(VM) $(IMAGE) script $(LIBCIG) scsh $(LIBSCSH) $(MANPAGE)
|
||||
-htmldir = $(libdir)/scsh/doc/scsh-manual/html
|
||||
+sharedir = @datadir@/scsh
|
||||
+docdir = @datadir@/doc/scsh
|
||||
+htmldir = $(docdir)/scsh-manual/html
|
||||
|
||||
# The developers are curious to know. Don't be concerned if this fails.
|
||||
# You may comment these lines out if you wish to be discourteous.
|
||||
@@ -286,6 +286,7 @@ install-dirs:
|
||||
$(RM) -r $(LIB).old
|
||||
if [ -d $(LIB) ] ; then mv $(LIB) $(LIB).old ; fi
|
||||
mkdir $(LIB)
|
||||
+ mkdir $(LIB)/emacs
|
||||
mkdir $(LIB)/big
|
||||
mkdir $(LIB)/cig
|
||||
mkdir $(LIB)/doc
|
||||
@@ -313,8 +314,8 @@ install-inc: scheme48.h
|
||||
$(INSTALL_DATA) $(srcdir)/scheme48.h $(incdir)/
|
||||
# HP 9000 series, if you don't have gcc
|
||||
# CC = cc
|
||||
@@ -344,29 +346,29 @@ install-cig: cig
|
||||
inst-misc:
|
||||
for stub in env big opt misc link; do \
|
||||
for f in scheme/$$stub/*.scm; do \
|
||||
- $(INSTALL_DATA) $$f $(LIB)/$$stub || exit 1; \
|
||||
+ $(INSTALL_DATA) $$f $(sharedir)/$$stub || exit 1; \
|
||||
done; \
|
||||
done && \
|
||||
for f in scheme/rts/*num.scm scheme/rts/jar-defrecord.scm; do \
|
||||
- $(INSTALL_DATA) $$f $(LIB)/rts || exit 1; \
|
||||
+ $(INSTALL_DATA) $$f $(sharedir)/rts || exit 1; \
|
||||
done
|
||||
|
||||
install-cig: cig
|
||||
- $(INSTALL_PROGRAM) $(srcdir)/$(CIG) $(LIB)/cig
|
||||
- $(INSTALL_PROGRAM) $(srcdir)/$(CIG).image $(LIB)/cig
|
||||
+ $(INSTALL_DATA) $(srcdir)/$(CIG) $(LIB)/cig
|
||||
+ $(INSTALL_DATA) $(srcdir)/$(CIG).image $(LIB)/cig
|
||||
$(INSTALL_DATA) $(srcdir)/$(LIBCIG) $(LIB)/cig
|
||||
$(INSTALL_DATA) $(srcdir)/cig/libcig.h $(LIB)/cig
|
||||
inst-doc:
|
||||
for f in $(srcdir)/doc/*.txt $(srcdir)/doc/*.ps; do \
|
||||
- $(INSTALL_DATA) $$f $(LIB)/doc/; \
|
||||
+ $(INSTALL_DATA) $$f $(docdir)/; \
|
||||
done && \
|
||||
for f in $(srcdir)/doc/src/*.tex \
|
||||
$(srcdir)/doc/src/*.dvi \
|
||||
$(srcdir)/doc/src/*.ps; \
|
||||
- do $(INSTALL_DATA) $$f $(LIB)/doc/s48-manual/; \
|
||||
+ do $(INSTALL_DATA) $$f $(docdir)/s48-manual/; \
|
||||
done && \
|
||||
for f in $(srcdir)/doc/src/manual/*.html; \
|
||||
- do $(INSTALL_DATA) $$f $(LIB)/doc/s48-manual/html/; \
|
||||
+ do $(INSTALL_DATA) $$f $(docdir)/s48-manual/html/; \
|
||||
done && \
|
||||
for f in $(srcdir)/doc/scsh-manual/*.tex \
|
||||
$(srcdir)/doc/scsh-manual/*.dvi \
|
||||
$(srcdir)/doc/scsh-manual/*.ps; \
|
||||
- do $(INSTALL_DATA) $$f $(LIB)/doc/scsh-manual/; \
|
||||
+ do $(INSTALL_DATA) $$f $(docdir)/scsh-manual/; \
|
||||
done && \
|
||||
for f in $(srcdir)/doc/scsh-manual/html/*.html \
|
||||
$(srcdir)/doc/scsh-manual/html/*.gif \
|
||||
@@ -393,17 +395,22 @@ go:
|
||||
chmod +x $@
|
||||
|
||||
@@ -322,6 +323,7 @@ install-misc: $(LIB)/rts $(LIB)/env $(LI
|
||||
$(LIB)/misc $(LIB)/link $(LIB)/vm $(LIB)/doc
|
||||
for f in $(srcdir)/rts/*num.scm; \
|
||||
do $(INSTALL_DATA) $$f $(LIB)/rts/; done
|
||||
+ for f in $(srcdir)/emacs/*; do $(INSTALL_DATA) $$f $(LIB)/emacs/; done
|
||||
for f in $(srcdir)/env/*.scm; do $(INSTALL_DATA) $$f $(LIB)/env/; done
|
||||
for f in $(srcdir)/big/*.scm; do $(INSTALL_DATA) $$f $(LIB)/big/; done
|
||||
for f in $(srcdir)/opt/*.scm; do $(INSTALL_DATA) $$f $(LIB)/opt/; done
|
||||
@@ -729,8 +731,8 @@ install-scsh: scsh
|
||||
$(RM) $(bindir)/$(RUNNABLE)$(EXEEXT)
|
||||
$(INSTALL_PROGRAM) $(srcdir)/scsh/scsh$(EXEEXT) \
|
||||
$(bindir)/$(RUNNABLE)$(EXEEXT)
|
||||
- $(INSTALL_PROGRAM) $(srcdir)/scsh/scsh.image $(LIB)/scsh.image
|
||||
- $(INSTALL_PROGRAM) $(srcdir)/$(LIBSCSH) $(libdir)/$(LIBSCSH)
|
||||
+ $(INSTALL_DATA) $(srcdir)/scsh/scsh.image $(LIB)/scsh.image
|
||||
+ $(INSTALL_DATA) $(srcdir)/$(LIBSCSH) $(libdir)/$(LIBSCSH)
|
||||
dirs:
|
||||
- for dir in $(libdir) $(bindir) $(incdir) $(LIB) $(mandir) $(htmldir); do\
|
||||
+ for dir in $(libdir) $(bindir) $(incdir) $(LIB) $(mandir) \
|
||||
+ $(sharedir) $(docdir) $(htmldir) $(LIB)/cig; do \
|
||||
{ mkdir -p $$dir && [ -w $$dir ]; } || { \
|
||||
echo "$$dir not a writable directory" >&2; \
|
||||
exit 1; \
|
||||
} \
|
||||
done && \
|
||||
- for dir in \
|
||||
- rts env big opt misc link scsh doc/scsh-manual \
|
||||
- doc/s48-manual/html cig; do \
|
||||
- { mkdir -p $(LIB)/$$dir && [ -w $(LIB)/$$dir ]; } || { \
|
||||
- echo "$(LIB)/$$dir not a writable directory" >&2; \
|
||||
+ for dir in scsh-manual s48-manual/html; do \
|
||||
+ { mkdir -p $(docdir)/$$dir && [ -w $(docdir)/$$dir ]; } || { \
|
||||
+ echo "$(docdir)/$$dir not a writable directory" >&2; \
|
||||
+ exit 1; \
|
||||
+ } \
|
||||
+ done && \
|
||||
+ for dir in rts env big opt misc link scsh; do \
|
||||
+ { mkdir -p $(sharedir)/$$dir && [ -w $(sharedir)/$$dir ]; } || {\
|
||||
+ echo "$(sharedir)/$$dir not a writable directory" >&2; \
|
||||
exit 1; \
|
||||
}; \
|
||||
done
|
||||
@@ -878,7 +885,7 @@ install-scsh: scsh install-scsh-image
|
||||
$(INSTALL_PROGRAM) $(srcdir)/$(LIBSCSH) $(libdir)/$(LIBSCSH)
|
||||
$(RANLIB) $(libdir)/$(LIBSCSH)
|
||||
for f in $(srcdir)/scsh/*.scm; \
|
||||
do $(INSTALL_DATA) $$f $(LIB)/scsh/; done
|
||||
for f in $(srcdir)/scsh/*.scm $(srcdir)/scsh/*/*.scm; \
|
||||
- do $(INSTALL_DATA) $$f $(LIB)/scsh/; done
|
||||
+ do $(INSTALL_DATA) $$f $(sharedir)/scsh/; done
|
||||
|
||||
install-scsh-image: $(VM) scsh/scsh.image
|
||||
( echo ',translate =scheme48 $(LIB)'; \
|
||||
|
12
shells/scsh/patches/patch-c_sysdep_h_in
Normal file
12
shells/scsh/patches/patch-c_sysdep_h_in
Normal file
@ -0,0 +1,12 @@
|
||||
$OpenBSD: patch-c_sysdep_h_in,v 1.1 2002/03/04 00:24:59 naddy Exp $
|
||||
--- c/sysdep.h.in.orig Mon Mar 4 01:03:09 2002
|
||||
+++ c/sysdep.h.in Mon Mar 4 01:03:20 2002
|
||||
@@ -78,7 +78,7 @@
|
||||
|
||||
#undef HAVE_SETREUID
|
||||
|
||||
-#undef socklen_t
|
||||
+/* #undef socklen_t */
|
||||
|
||||
#undef HAVE_HARRIS
|
||||
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-configure_in,v 1.1 2001/09/04 23:26:31 lebel Exp $
|
||||
--- configure.in.orig Sun May 27 19:55:01 2001
|
||||
+++ configure.in Mon Sep 3 22:29:29 2001
|
||||
@@ -238,7 +238,7 @@ else
|
||||
fi
|
||||
|
||||
AR=${AR-"ar cq"}
|
||||
-TMPDIR=${TMPDIR-"/usr/tmp"}
|
||||
+TMPDIR=${TMPDIR-"/var/tmp"}
|
||||
|
||||
case "$host" in
|
||||
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-dynload_c,v 1.1 2001/09/04 23:26:31 lebel Exp $
|
||||
--- dynload.c.orig Wed Jul 14 21:23:43 1999
|
||||
+++ dynload.c Mon Sep 3 22:36:30 2001
|
||||
@@ -36,7 +36,7 @@
|
||||
#include <dlfcn.h>
|
||||
#endif
|
||||
|
||||
-#if defined(HAVE_LIBGEN) && defined(HAVE_LIBGEN_H)
|
||||
+#if defined(HAVE_LIBGEN) && defined(HAVE_LIBGEN_H) && !defined(__OpenBSD__)
|
||||
#include <libgen.h>
|
||||
/* if we have pathfind, get the file name with $LD_LIBRARY_PATH or $S48_EXTERN_PATH */
|
||||
static char *shared_object_name(char *name)
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-env_command_scm,v 1.1 2001/09/04 23:26:31 lebel Exp $
|
||||
--- env/command.scm.orig Tue Aug 10 14:17:37 1999
|
||||
+++ env/command.scm Mon Sep 3 22:28:58 2001
|
||||
@@ -546,7 +546,7 @@
|
||||
((char=? (string-ref line 0) #\n) #f)
|
||||
(else (loop count)))))))
|
||||
|
||||
-(define *y-or-n-eof-count* 100)
|
||||
+(define *y-or-n-eof-count* 0)
|
||||
|
||||
(define (read-line port)
|
||||
(let loop ((l '()))
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-scsh_scsh_scm,v 1.1 2001/09/04 23:26:31 lebel Exp $
|
||||
--- scsh/scsh.scm.orig Sat Jun 2 13:42:50 2001
|
||||
+++ scsh/scsh.scm Mon Sep 3 22:31:17 2001
|
||||
@@ -301,7 +301,7 @@
|
||||
".~a"))))))
|
||||
|
||||
(define *temp-file-template*
|
||||
- (make-fluid (string-append "/usr/tmp/" (number->string (pid)) ".~a")))
|
||||
+ (make-fluid (string-append "/var/tmp/" (number->string (pid)) ".~a")))
|
||||
|
||||
|
||||
(define (temp-file-iterate maker . maybe-template)
|
@ -1,22 +0,0 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: DEINSTALL,v 1.2 2000/07/19 09:31:24 brad Exp $
|
||||
#
|
||||
# scsh de-installation
|
||||
|
||||
set -e
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
|
||||
if grep -q ${PREFIX}/bin/scsh /etc/shells; then
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| To completely deinstall the $1 package you need to edit"
|
||||
echo "| /etc/shells and remove this line:"
|
||||
echo "|"
|
||||
echo "| ${PREFIX}/bin/scsh"
|
||||
echo "|"
|
||||
echo "+---------------"
|
||||
echo
|
||||
fi
|
||||
|
||||
exit 0
|
@ -1,43 +1,11 @@
|
||||
Scsh is a Unix shell in that is has significant syntax extensions to
|
||||
make writing Unix shell scripts easy (constructing pipelines, setting
|
||||
I/O redirection, conditional execution etc.). It also offers access to
|
||||
lower-level functionality like all Posix system calls, TCP/IP sockets
|
||||
and a full-featured regular expression library. This is embedded into
|
||||
a general-purpose programming language with real data types,
|
||||
extensive, syntactically clean control constructs and "real" quoting
|
||||
rules.
|
||||
Scsh is a Unix shell embedded in Scheme. It provides full access to
|
||||
POSIX as well as extensions common to most Unix implementations. Scsh
|
||||
also features many abstractions to ease system programming: process
|
||||
abstraction, event-based interrupt handling, sophisticated I/O support
|
||||
and enables concurrent system programming.
|
||||
|
||||
Scsh is also a full implementation of R4RS Scheme with some
|
||||
non-standard behavior (required for scripting). As a result, a wide
|
||||
varity of exiting Scheme code can be used.
|
||||
Scsh is built on top of Scheme 48, a portable R5RS-compliant Scheme
|
||||
implementation with byte-code compilation, user-level threads, and
|
||||
many useful extensions.
|
||||
|
||||
The underlying Scheme implementation is a virtual machine for compact
|
||||
byte code.
|
||||
|
||||
To load slib, install slib into ${PREFIX}/lib/slib and run (load
|
||||
"slib-init.scm") in scsh. It requires no additional setup (paths or
|
||||
such).
|
||||
|
||||
The emacs interface is in the original distribution in emacs/. For
|
||||
documentation see doc/user-guide.txt.
|
||||
|
||||
Differences between OpenBSD port and generic scsh release:
|
||||
----------------------------------------------------------
|
||||
|
||||
1) When hitting C-d (end-of-file), scsh asks 100 times for
|
||||
confirmation. I changed the default to do this just once. See constant
|
||||
*y-or-n-eof-count* in scsh/rw.scm to change it.
|
||||
|
||||
2) The original scsh sends a mail to the scsh authors every time you
|
||||
make the package. The OpenBSD port doesn't. The authors of scsh would
|
||||
appreciate it if you do a `(cd work/scsh-0.4.4 && make .notify)` after
|
||||
you build this package.
|
||||
|
||||
3) A symbolic link ${PREFIX}/share/doc/scsh to the documentation is
|
||||
created.
|
||||
|
||||
4) Some basic description text files from the distribution base dir
|
||||
are copied to lib/doc. The emacs directory is copied into
|
||||
lib/scsh/emacs. scsh's default is not to install these files.
|
||||
|
||||
5) Some /usr/tmp -> /var/tmp
|
||||
WWW: ${HOMEPAGE}
|
||||
|
@ -1,52 +0,0 @@
|
||||
#!/bin/sh
|
||||
# $OpenBSD: INSTALL,v 1.1 2000/03/26 01:10:39 espie Exp $
|
||||
#
|
||||
# Pre/post-installation setup of es
|
||||
|
||||
# Function: tell the user what s/he needs to do to use the port just installed
|
||||
#
|
||||
do_notice()
|
||||
{
|
||||
echo
|
||||
echo "+---------------"
|
||||
echo "| For proper use of $1 you should notify the system"
|
||||
echo "| that ${PREFIX}/bin/scsh is a valid shell by adding it to the"
|
||||
echo "| the file /etc/shells. If you are unfamiliar with this file"
|
||||
echo "| consult the shells(5) manual page"
|
||||
echo "+---------------"
|
||||
echo
|
||||
}
|
||||
|
||||
# exit on errors, use a sane path and install prefix
|
||||
#
|
||||
set -e
|
||||
PATH=/bin:/usr/bin:/sbin:/usr/sbin
|
||||
PREFIX=${PKG_PREFIX:-/usr/local}
|
||||
|
||||
# verify proper execution
|
||||
#
|
||||
if [ $# -ne 2 ]; then
|
||||
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Verify/process the command
|
||||
#
|
||||
case $2 in
|
||||
PRE-INSTALL)
|
||||
: nothing to pre-install for this port
|
||||
;;
|
||||
POST-INSTALL)
|
||||
if grep -q ${PREFIX}/bin/scsh /etc/shells; then
|
||||
:
|
||||
else
|
||||
do_notice $1
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
echo "usage: $0 distname { PRE-INSTALL | POST-INSTALL }" >&2
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
exit 0
|
@ -1,211 +1,132 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2001/09/04 23:26:31 lebel Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.4 2002/03/04 00:24:59 naddy Exp $
|
||||
bin/scsh
|
||||
include/scheme48.h
|
||||
lib/scsh/big/array.scm
|
||||
lib/scsh/big/big-util.scm
|
||||
lib/scsh/big/bigbit.scm
|
||||
lib/scsh/big/compose-cont.scm
|
||||
lib/scsh/big/defrecord.scm
|
||||
lib/scsh/big/destructure.scm
|
||||
lib/scsh/big/dump.scm
|
||||
lib/scsh/big/external.scm
|
||||
lib/scsh/big/filename.scm
|
||||
lib/scsh/big/format.scm
|
||||
lib/scsh/big/general-table.scm
|
||||
lib/scsh/big/lu-decomp.scm
|
||||
lib/scsh/big/new-ports.scm
|
||||
lib/scsh/big/pp.scm
|
||||
lib/scsh/big/queue.scm
|
||||
lib/scsh/big/random.scm
|
||||
lib/scsh/big/receive.scm
|
||||
lib/scsh/big/search-tree.scm
|
||||
lib/scsh/big/sleep.scm
|
||||
lib/scsh/big/sort.scm
|
||||
lib/scsh/big/thread.scm
|
||||
lib/scsh/big/xport.scm
|
||||
lib/scsh/cig/cig
|
||||
lib/scsh/cig/cig.image
|
||||
lib/scsh/cig/libcig.h
|
||||
lib/scsh/cig/libscshvm.a
|
||||
lib/scsh/emacs/README
|
||||
lib/scsh/emacs/cmulisp.el
|
||||
lib/scsh/emacs/cmuscheme.el
|
||||
lib/scsh/emacs/cmuscheme48.el
|
||||
lib/scsh/emacs/cmushell.el
|
||||
lib/scsh/emacs/comint.el
|
||||
lib/scsh/emacs/jar-hacks.el
|
||||
lib/scsh/env/assem.scm
|
||||
lib/scsh/env/basic-command.scm
|
||||
lib/scsh/env/build.scm
|
||||
lib/scsh/env/command.scm
|
||||
lib/scsh/env/debug.scm
|
||||
lib/scsh/env/debuginfo.scm
|
||||
lib/scsh/env/disasm.scm
|
||||
lib/scsh/env/disclosers.scm
|
||||
lib/scsh/env/dispcond.scm
|
||||
lib/scsh/env/flatload.scm
|
||||
lib/scsh/env/init-defpackage.scm
|
||||
lib/scsh/env/inspect.scm
|
||||
lib/scsh/env/jar-assem.scm
|
||||
lib/scsh/env/list-interface.scm
|
||||
lib/scsh/env/load-package.scm
|
||||
lib/scsh/env/more-thread.scm
|
||||
lib/scsh/env/pacman.scm
|
||||
lib/scsh/env/pedit.scm
|
||||
lib/scsh/env/read-command.scm
|
||||
lib/scsh/env/shadow.scm
|
||||
lib/scsh/env/space.scm
|
||||
lib/scsh/env/start.scm
|
||||
lib/scsh/env/traverse.scm
|
||||
lib/scsh/env/version-info.scm
|
||||
include/write-barrier.h
|
||||
lib/scsh/libscsh.a
|
||||
lib/scsh/libscshvm.a
|
||||
lib/scsh/link/data.scm
|
||||
lib/scsh/link/generate-c-header.scm
|
||||
lib/scsh/link/link.scm
|
||||
lib/scsh/link/loadc.scm
|
||||
lib/scsh/link/reify.scm
|
||||
lib/scsh/link/transport.scm
|
||||
lib/scsh/link/write-image.scm
|
||||
lib/scsh/misc/annotate.scm
|
||||
lib/scsh/misc/argument.scm
|
||||
lib/scsh/misc/doodl.scm
|
||||
lib/scsh/misc/either.scm
|
||||
lib/scsh/misc/getenv.scm
|
||||
lib/scsh/misc/hilbert.scm
|
||||
lib/scsh/misc/ilength.scm
|
||||
lib/scsh/misc/integertostring.scm
|
||||
lib/scsh/misc/load-static.scm
|
||||
lib/scsh/misc/mail.scm
|
||||
lib/scsh/misc/packages.scm
|
||||
lib/scsh/misc/psd-s48.scm
|
||||
lib/scsh/misc/remote.scm
|
||||
lib/scsh/misc/require.scm
|
||||
lib/scsh/misc/separate.scm
|
||||
lib/scsh/misc/shift-reset.scm
|
||||
lib/scsh/misc/sicp.scm
|
||||
lib/scsh/misc/slib-init.scm
|
||||
lib/scsh/misc/socket.scm
|
||||
lib/scsh/misc/static.scm
|
||||
lib/scsh/misc/test-doodl.scm
|
||||
lib/scsh/opt/analyze.scm
|
||||
lib/scsh/opt/expand.scm
|
||||
lib/scsh/opt/inline.scm
|
||||
lib/scsh/opt/tst.scm
|
||||
lib/scsh/rts/bignum.scm
|
||||
lib/scsh/rts/defenum.scm
|
||||
lib/scsh/rts/enum.scm
|
||||
lib/scsh/rts/floatnum.scm
|
||||
lib/scsh/rts/innum.scm
|
||||
lib/scsh/rts/jar-defrecord.scm
|
||||
lib/scsh/rts/ratnum.scm
|
||||
lib/scsh/rts/recnum.scm
|
||||
lib/scsh/rts/xnum.scm
|
||||
lib/scsh/scsh.image
|
||||
lib/scsh/scsh/awk.scm
|
||||
lib/scsh/scsh/char-set.scm
|
||||
lib/scsh/scsh/db.scm
|
||||
lib/scsh/scsh/dbm.scm
|
||||
lib/scsh/scsh/defrec.scm
|
||||
lib/scsh/scsh/ekko.scm
|
||||
lib/scsh/scsh/endian.scm
|
||||
lib/scsh/scsh/enumconst.scm
|
||||
lib/scsh/scsh/fdports.scm
|
||||
lib/scsh/scsh/fileinfo.scm
|
||||
lib/scsh/scsh/filemtch.scm
|
||||
lib/scsh/scsh/filesys.scm
|
||||
lib/scsh/scsh/flock.scm
|
||||
lib/scsh/scsh/fname.scm
|
||||
lib/scsh/scsh/fr.scm
|
||||
lib/scsh/scsh/glob.scm
|
||||
lib/scsh/scsh/here.scm
|
||||
lib/scsh/scsh/jcontrol.scm
|
||||
lib/scsh/scsh/jcontrol2.scm
|
||||
lib/scsh/scsh/let-opt.scm
|
||||
lib/scsh/scsh/meta-arg.scm
|
||||
lib/scsh/scsh/ndbm.scm
|
||||
lib/scsh/scsh/network.scm
|
||||
lib/scsh/scsh/newports.scm
|
||||
lib/scsh/scsh/old-static.scm
|
||||
lib/scsh/scsh/oldtop.scm
|
||||
lib/scsh/scsh/procobj.scm
|
||||
lib/scsh/scsh/pty.scm
|
||||
lib/scsh/scsh/rdelim.scm
|
||||
lib/scsh/scsh/rw.scm
|
||||
lib/scsh/scsh/scsh-condition.scm
|
||||
lib/scsh/scsh/scsh-interfaces.scm
|
||||
lib/scsh/scsh/scsh-package.scm
|
||||
lib/scsh/scsh/scsh-read.scm
|
||||
lib/scsh/scsh/scsh-version.scm
|
||||
lib/scsh/scsh/scsh.scm
|
||||
lib/scsh/scsh/select.scm
|
||||
lib/scsh/scsh/sighandlers.scm
|
||||
lib/scsh/scsh/startup.scm
|
||||
lib/scsh/scsh/static-heap.scm
|
||||
lib/scsh/scsh/static.scm
|
||||
lib/scsh/scsh/static1.scm
|
||||
lib/scsh/scsh/stringcoll.scm
|
||||
lib/scsh/scsh/syntax-helpers.scm
|
||||
lib/scsh/scsh/syntax.scm
|
||||
lib/scsh/scsh/syscalls.scm
|
||||
lib/scsh/scsh/time.scm
|
||||
lib/scsh/scsh/top.scm
|
||||
lib/scsh/scsh/tty.scm
|
||||
lib/scsh/scsh/utilities.scm
|
||||
lib/scsh/scshvm
|
||||
lib/scsh/vm/arch.scm
|
||||
lib/scsh/vm/arith.scm
|
||||
lib/scsh/vm/data.scm
|
||||
lib/scsh/vm/defenum.scm
|
||||
lib/scsh/vm/define-primitive.scm
|
||||
lib/scsh/vm/disasm.scm
|
||||
lib/scsh/vm/env.scm
|
||||
lib/scsh/vm/external.scm
|
||||
lib/scsh/vm/gc.scm
|
||||
lib/scsh/vm/heap.scm
|
||||
lib/scsh/vm/interfaces.scm
|
||||
lib/scsh/vm/interp.scm
|
||||
lib/scsh/vm/macro-package-defs.scm
|
||||
lib/scsh/vm/memory.scm
|
||||
lib/scsh/vm/package-defs.scm
|
||||
lib/scsh/vm/prescheme.scm
|
||||
lib/scsh/vm/prim.scm
|
||||
lib/scsh/vm/ps-interface.scm
|
||||
lib/scsh/vm/ps-memory.scm
|
||||
lib/scsh/vm/ps-package-defs.scm
|
||||
lib/scsh/vm/ps-package.scm
|
||||
lib/scsh/vm/resume.scm
|
||||
lib/scsh/vm/s48-package-defs.scm
|
||||
lib/scsh/vm/stack.scm
|
||||
lib/scsh/vm/stob.scm
|
||||
lib/scsh/vm/struct.scm
|
||||
lib/scsh/vm/vm-utilities.scm
|
||||
lib/scsh/vm/vmio.scm
|
||||
man/man1/scsh.1
|
||||
share/doc/scsh/COPYING
|
||||
share/doc/scsh/NEWS
|
||||
share/doc/scsh/README
|
||||
share/doc/scsh/RELEASE
|
||||
share/doc/scsh/big-scheme.txt
|
||||
share/doc/scsh/call-back.txt
|
||||
share/doc/scsh/cheat.txt
|
||||
share/doc/scsh/code.tex
|
||||
share/doc/scsh/external.txt
|
||||
share/doc/scsh/hacking.txt
|
||||
share/doc/scsh/install.s48-0.36.txt
|
||||
share/doc/scsh/install.txt
|
||||
share/doc/scsh/latex-stuff.tex
|
||||
share/doc/scsh/io.txt
|
||||
share/doc/scsh/meeting.ps
|
||||
share/doc/scsh/meeting.tex
|
||||
share/doc/scsh/module.ps
|
||||
share/doc/scsh/module.tex
|
||||
share/doc/scsh/news.txt
|
||||
share/doc/scsh/no-leaf-env.txt
|
||||
share/doc/scsh/olins-changes.txt
|
||||
share/doc/scsh/package.txt
|
||||
share/doc/scsh/scsh-manual.ps
|
||||
share/doc/scsh/porting.txt
|
||||
share/doc/scsh/s48-manual/ascii.tex
|
||||
share/doc/scsh/s48-manual/bibliography.tex
|
||||
share/doc/scsh/s48-manual/code.tex
|
||||
share/doc/scsh/s48-manual/command.tex
|
||||
share/doc/scsh/s48-manual/external.tex
|
||||
share/doc/scsh/s48-manual/hacks.tex
|
||||
share/doc/scsh/s48-manual/html/s48manual.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_1.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_10.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_11.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_12.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_13.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_14.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_15.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_16.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_17.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_18.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_19.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_2.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_20.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_21.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_22.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_23.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_24.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_25.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_26.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_27.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_28.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_29.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_3.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_30.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_31.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_32.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_33.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_34.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_35.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_36.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_37.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_38.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_39.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_4.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_40.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_41.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_42.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_43.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_44.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_45.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_46.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_47.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_48.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_49.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_5.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_50.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_51.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_52.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_53.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_54.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_55.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_56.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_57.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_58.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_59.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_6.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_60.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_61.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_62.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_63.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_7.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_8.html
|
||||
share/doc/scsh/s48-manual/html/s48manual_9.html
|
||||
share/doc/scsh/s48-manual/index.tex
|
||||
share/doc/scsh/s48-manual/intro.tex
|
||||
share/doc/scsh/s48-manual/latex-index.tex
|
||||
share/doc/scsh/s48-manual/latex-stuff.tex
|
||||
share/doc/scsh/s48-manual/manual.dvi
|
||||
share/doc/scsh/s48-manual/manual.ps
|
||||
share/doc/scsh/s48-manual/manual.tex
|
||||
share/doc/scsh/s48-manual/meeting.tex
|
||||
share/doc/scsh/s48-manual/module.tex
|
||||
share/doc/scsh/s48-manual/my-sequential.tex
|
||||
share/doc/scsh/s48-manual/proposal.tex
|
||||
share/doc/scsh/s48-manual/proto.tex
|
||||
share/doc/scsh/s48-manual/summary.tex
|
||||
share/doc/scsh/s48-manual/thread.tex
|
||||
share/doc/scsh/s48-manual/user-guide.tex
|
||||
share/doc/scsh/s48-manual/utilities.tex
|
||||
share/doc/scsh/s48-manual/version-number.tex
|
||||
share/doc/scsh/scsh-manual/awk.tex
|
||||
share/doc/scsh/scsh-manual/decls.tex
|
||||
share/doc/scsh/scsh-manual/front.tex
|
||||
share/doc/scsh/scsh-manual/html/man-Z-C.css
|
||||
share/doc/scsh/scsh-manual/html/man-Z-G-D-1.gif
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-1.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-10.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-11.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-12.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-13.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-2.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-3.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-4.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-5.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-6.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-7.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-8.html
|
||||
share/doc/scsh/scsh-manual/html/man-Z-H-9.html
|
||||
share/doc/scsh/scsh-manual/html/man.html
|
||||
share/doc/scsh/scsh-manual/intro.tex
|
||||
share/doc/scsh/scsh-manual/man.dvi
|
||||
share/doc/scsh/scsh-manual/man.ps
|
||||
share/doc/scsh/scsh-manual/man.tex
|
||||
share/doc/scsh/scsh-manual/miscprocs.tex
|
||||
share/doc/scsh/scsh-manual/network.tex
|
||||
@ -216,28 +137,228 @@ share/doc/scsh/scsh-manual/sre.tex
|
||||
share/doc/scsh/scsh-manual/strings.tex
|
||||
share/doc/scsh/scsh-manual/syscalls.tex
|
||||
share/doc/scsh/scsh-manual/test.tex
|
||||
share/doc/scsh/scsh-manual/todo.tex
|
||||
share/doc/scsh/scsh-manual/threads.tex
|
||||
share/doc/scsh/scsh-manual/tty.tex
|
||||
share/doc/scsh/scsh-manual/xman.tex
|
||||
share/doc/scsh/scsh-paper.ps
|
||||
share/doc/scsh/scsh-paper.tex
|
||||
share/doc/scsh/scsh-src-roadmap.txt
|
||||
share/doc/scsh/summary.tex
|
||||
share/doc/scsh/threads.txt
|
||||
share/doc/scsh/todo.txt
|
||||
share/doc/scsh/type.txt
|
||||
share/doc/scsh/user-guide.txt
|
||||
@exec ln -fs %D/share/doc/scsh %D/lib/scsh/doc
|
||||
@unexec rm -f %D/lib/scsh/doc
|
||||
share/scsh/big/array.scm
|
||||
share/scsh/big/big-util.scm
|
||||
share/scsh/big/bigbit.scm
|
||||
share/scsh/big/callback.scm
|
||||
share/scsh/big/compose-cont.scm
|
||||
share/scsh/big/defrecord.scm
|
||||
share/scsh/big/destructure.scm
|
||||
share/scsh/big/dump.scm
|
||||
share/scsh/big/enum-set.scm
|
||||
share/scsh/big/external.scm
|
||||
share/scsh/big/filename.scm
|
||||
share/scsh/big/finite-type.scm
|
||||
share/scsh/big/format.scm
|
||||
share/scsh/big/general-table.scm
|
||||
share/scsh/big/import-def.scm
|
||||
share/scsh/big/linked-queue.scm
|
||||
share/scsh/big/lu-decomp.scm
|
||||
share/scsh/big/more-port.scm
|
||||
share/scsh/big/pipe.scm
|
||||
share/scsh/big/placeholder.scm
|
||||
share/scsh/big/pp.scm
|
||||
share/scsh/big/queue.scm
|
||||
share/scsh/big/random.scm
|
||||
share/scsh/big/receive.scm
|
||||
share/scsh/big/search-tree.scm
|
||||
share/scsh/big/socket.scm
|
||||
share/scsh/big/sort.scm
|
||||
share/scsh/big/strong.scm
|
||||
share/scsh/big/thread-fluid.scm
|
||||
share/scsh/emacs/README
|
||||
share/scsh/emacs/cmulisp.el
|
||||
share/scsh/emacs/cmuscheme.el
|
||||
share/scsh/emacs/cmuscheme48.el
|
||||
share/scsh/emacs/cmushell.el
|
||||
share/scsh/emacs/comint.el
|
||||
share/scsh/emacs/jar-hacks.el
|
||||
share/scsh/env/assem.scm
|
||||
share/scsh/env/basic-command.scm
|
||||
share/scsh/env/build.scm
|
||||
share/scsh/env/command-level.scm
|
||||
share/scsh/env/command.scm
|
||||
share/scsh/env/debug.scm
|
||||
share/scsh/env/debuginfo.scm
|
||||
share/scsh/env/disasm.scm
|
||||
share/scsh/env/disclosers.scm
|
||||
share/scsh/env/dispcond.scm
|
||||
share/scsh/env/flatload.scm
|
||||
share/scsh/env/init-defpackage.scm
|
||||
share/scsh/env/inspect.scm
|
||||
share/scsh/env/jar-assem.scm
|
||||
share/scsh/env/list-interface.scm
|
||||
share/scsh/env/load-package.scm
|
||||
share/scsh/env/pacman.scm
|
||||
share/scsh/env/pedit.scm
|
||||
share/scsh/env/profile.scm
|
||||
share/scsh/env/read-command.scm
|
||||
share/scsh/env/shadow.scm
|
||||
share/scsh/env/space.scm
|
||||
share/scsh/env/start.scm
|
||||
share/scsh/env/traverse.scm
|
||||
share/scsh/env/version-info.scm
|
||||
share/scsh/link/data.scm
|
||||
share/scsh/link/generate-c-header.scm
|
||||
share/scsh/link/generate-old-c-header.scm
|
||||
share/scsh/link/link.scm
|
||||
share/scsh/link/loadc.scm
|
||||
share/scsh/link/reify.scm
|
||||
share/scsh/link/transport.scm
|
||||
share/scsh/link/write-image.scm
|
||||
share/scsh/misc/annotate.scm
|
||||
share/scsh/misc/doodl.scm
|
||||
share/scsh/misc/either.scm
|
||||
share/scsh/misc/engine.scm
|
||||
share/scsh/misc/getenv.scm
|
||||
share/scsh/misc/hilbert.scm
|
||||
share/scsh/misc/ilength.scm
|
||||
share/scsh/misc/integertostring.scm
|
||||
share/scsh/misc/load-static.scm
|
||||
share/scsh/misc/mail.scm
|
||||
share/scsh/misc/packages.scm
|
||||
share/scsh/misc/pipe.scm
|
||||
share/scsh/misc/psd-s48.scm
|
||||
share/scsh/misc/remote.scm
|
||||
share/scsh/misc/require.scm
|
||||
share/scsh/misc/separate.scm
|
||||
share/scsh/misc/shift-reset.scm
|
||||
share/scsh/misc/sicp.scm
|
||||
share/scsh/misc/static.scm
|
||||
share/scsh/misc/syscall.scm
|
||||
share/scsh/misc/test-doodl.scm
|
||||
share/scsh/opt/analyze.scm
|
||||
share/scsh/opt/flatten.scm
|
||||
share/scsh/opt/inline.scm
|
||||
share/scsh/opt/sort.scm
|
||||
share/scsh/opt/tst.scm
|
||||
share/scsh/opt/usage.scm
|
||||
share/scsh/rts/bignum.scm
|
||||
share/scsh/rts/defenum.scm
|
||||
share/scsh/rts/floatnum.scm
|
||||
share/scsh/rts/innum.scm
|
||||
share/scsh/rts/jar-defrecord.scm
|
||||
share/scsh/rts/ratnum.scm
|
||||
share/scsh/rts/recnum.scm
|
||||
share/scsh/rts/xnum.scm
|
||||
share/scsh/scsh/awk.scm
|
||||
share/scsh/scsh/bufpol.scm
|
||||
share/scsh/scsh/ccp-pack.scm
|
||||
share/scsh/scsh/ccp.scm
|
||||
share/scsh/scsh/char-package.scm
|
||||
share/scsh/scsh/char-set.scm
|
||||
share/scsh/scsh/cond-package.scm
|
||||
share/scsh/scsh/cset-lib.scm
|
||||
share/scsh/scsh/cset-obsolete.scm
|
||||
share/scsh/scsh/cset-package.scm
|
||||
share/scsh/scsh/cset-tests.scm
|
||||
share/scsh/scsh/db.scm
|
||||
share/scsh/scsh/dbm.scm
|
||||
share/scsh/scsh/defrec.scm
|
||||
share/scsh/scsh/dot-locking.scm
|
||||
share/scsh/scsh/ekko.scm
|
||||
share/scsh/scsh/endian.scm
|
||||
share/scsh/scsh/enumconst.scm
|
||||
share/scsh/scsh/env-test-add.scm
|
||||
share/scsh/scsh/env-test-code.scm
|
||||
share/scsh/scsh/errno.scm
|
||||
share/scsh/scsh/event.scm
|
||||
share/scsh/scsh/fdflags.scm
|
||||
share/scsh/scsh/fdports.scm
|
||||
share/scsh/scsh/file-system-tests.scm
|
||||
share/scsh/scsh/fileinfo.scm
|
||||
share/scsh/scsh/filemtch.scm
|
||||
share/scsh/scsh/filesys.scm
|
||||
share/scsh/scsh/flock.scm
|
||||
share/scsh/scsh/fname.scm
|
||||
share/scsh/scsh/fr.scm
|
||||
share/scsh/scsh/glob.scm
|
||||
share/scsh/scsh/here.scm
|
||||
share/scsh/scsh/let-opt.scm
|
||||
share/scsh/scsh/list-lib.scm
|
||||
share/scsh/scsh/list-pack.scm
|
||||
share/scsh/scsh/loadem.scm
|
||||
share/scsh/scsh/low-interrupt.scm
|
||||
share/scsh/scsh/meta-arg.scm
|
||||
share/scsh/scsh/modules.scm
|
||||
share/scsh/scsh/ndbm.scm
|
||||
share/scsh/scsh/netconst.scm
|
||||
share/scsh/scsh/network.scm
|
||||
share/scsh/scsh/newports.scm
|
||||
share/scsh/scsh/oldfuns.scm
|
||||
share/scsh/scsh/packages-old.scm
|
||||
share/scsh/scsh/packages-old2.scm
|
||||
share/scsh/scsh/packages.scm
|
||||
share/scsh/scsh/parse.scm
|
||||
share/scsh/scsh/posixstr.scm
|
||||
share/scsh/scsh/process-state-tests.scm
|
||||
share/scsh/scsh/procobj.scm
|
||||
share/scsh/scsh/pty.scm
|
||||
share/scsh/scsh/rdelim.scm
|
||||
share/scsh/scsh/re-fold.scm
|
||||
share/scsh/scsh/re-high.scm
|
||||
share/scsh/scsh/re-low.scm
|
||||
share/scsh/scsh/re-match-syntax.scm
|
||||
share/scsh/scsh/re-subst.scm
|
||||
share/scsh/scsh/re-syntax.scm
|
||||
share/scsh/scsh/re.scm
|
||||
share/scsh/scsh/regexp.scm
|
||||
share/scsh/scsh/regress.scm
|
||||
share/scsh/scsh/rw.scm
|
||||
share/scsh/scsh/rx-lib.scm
|
||||
share/scsh/scsh/scsh-condition.scm
|
||||
share/scsh/scsh/scsh-interfaces.scm
|
||||
share/scsh/scsh/scsh-package.scm
|
||||
share/scsh/scsh/scsh-read.scm
|
||||
share/scsh/scsh/scsh-version.scm
|
||||
share/scsh/scsh/scsh.scm
|
||||
share/scsh/scsh/select.scm
|
||||
share/scsh/scsh/sighandlers.scm
|
||||
share/scsh/scsh/signals.scm
|
||||
share/scsh/scsh/simp.scm
|
||||
share/scsh/scsh/spencer.scm
|
||||
share/scsh/scsh/startup.scm
|
||||
share/scsh/scsh/static.scm
|
||||
share/scsh/scsh/string-lib.scm
|
||||
share/scsh/scsh/string-pack.scm
|
||||
share/scsh/scsh/string-package.scm
|
||||
share/scsh/scsh/stringcoll.scm
|
||||
share/scsh/scsh/syntax-helpers.scm
|
||||
share/scsh/scsh/syntax.scm
|
||||
share/scsh/scsh/syscalls.scm
|
||||
share/scsh/scsh/syslog.scm
|
||||
share/scsh/scsh/test-base.scm
|
||||
share/scsh/scsh/test-packages.scm
|
||||
share/scsh/scsh/test.scm
|
||||
share/scsh/scsh/threads.scm
|
||||
share/scsh/scsh/time.scm
|
||||
share/scsh/scsh/time_dep.scm
|
||||
share/scsh/scsh/top.scm
|
||||
share/scsh/scsh/tty-consts.scm
|
||||
share/scsh/scsh/tty.scm
|
||||
share/scsh/scsh/utilities.scm
|
||||
share/scsh/scsh/waitcodes.scm
|
||||
share/scsh/scsh/weaktables.scm
|
||||
@dirrm share/scsh/scsh
|
||||
@dirrm share/scsh/rts
|
||||
@dirrm share/scsh/opt
|
||||
@dirrm share/scsh/misc
|
||||
@dirrm share/scsh/link
|
||||
@dirrm share/scsh/env
|
||||
@dirrm share/scsh/emacs
|
||||
@dirrm share/scsh/big
|
||||
@dirrm share/scsh
|
||||
@dirrm share/doc/scsh/scsh-manual/html
|
||||
@dirrm share/doc/scsh/scsh-manual
|
||||
@dirrm share/doc/scsh/s48-manual/html
|
||||
@dirrm share/doc/scsh/s48-manual
|
||||
@dirrm share/doc/scsh
|
||||
@dirrm lib/scsh/vm
|
||||
@dirrm lib/scsh/scsh
|
||||
@dirrm lib/scsh/rts
|
||||
@dirrm lib/scsh/opt
|
||||
@dirrm lib/scsh/misc
|
||||
@dirrm lib/scsh/link
|
||||
@dirrm lib/scsh/env
|
||||
@dirrm lib/scsh/emacs
|
||||
@exec mkdir -p %D/lib/scsh/cig
|
||||
@dirrm lib/scsh/cig
|
||||
@dirrm lib/scsh/big
|
||||
@dirrm lib/scsh
|
||||
|
Loading…
Reference in New Issue
Block a user