scsh-defaults-0.6.6.2/0000755000175000017500000000000010444502537014004 5ustar mastermasterscsh-defaults-0.6.6.2/debian/0000755000175000017500000000000010444503040015214 5ustar mastermasterscsh-defaults-0.6.6.2/debian/control.in0000644000175000017500000000457310444502674017251 0ustar mastermasterSource: scsh-defaults Section: interpreters Priority: optional Maintainer: Lionel Elie Mamane Build-Depends: debhelper (>= 4) Standards-Version: 3.7.2 Package: scsh Architecture: all Depends: scsh-@VER@ Suggests: scsh-doc Description: A `scheme' interpreter designed for writing system programs (default version) Scsh has a high-level process notation for doing shell-script like tasks: running programs, establishing pipelines and I/O redirection. Scsh embeds this process notation within a full implementation of Scheme, a minimal and clean dialect of the Lisp programming language. The process notation is realized as a set of macro definitions, and is carefully designed to allow full integration with standard Scheme code. Scsh isn't Scheme-like; it is Scheme. . At the scripting level, scsh also has an Awk design, also implemented as a macro that can be embedded inside general Scheme code. . Scsh additionally provides the low-level access to the operating system normally associated with C. The current release provides full access to POSIX, plus important non-POSIX extensions, such as complete sockets support. "Complete POSIX" means: fork, exec & wait, sockets, full read, write, open & close, seek & tell, complete file-system access, including stat, chmod/chgrp/chown, symlink, FIFO & directory access, tty & pty support, file locking, pipes, select, file-name pattern-matching, time & date, environment variables, signal handlers, and more. . Please be aware that several of the other scheme implementations being distributed as Debian packages also provide much of the similar system programming functionality. It is wisest to try them all and explore. . This package is a dependency package, which depends on Debian's default scsh version (currently v@VER@). Package: scsh-doc Section: doc Architecture: all Depends: scsh-@VER@-doc Suggests: scsh Description: Documentation for scsh, "The Scheme Shell" This package contains the documentation for scsh: The Scheme Shell. Scsh is used for shell-script like tasks. . Included in the package are the scsh manual (in html and postscript), the s48 manual (the scheme that scsh is based on) (in html and postscript), a paper written in 1994 describing scsh, and some miscellaneous documentation. . This package is a dependency package, which depends on Debian's default scsh version (currently v@VER@). scsh-defaults-0.6.6.2/debian/copyright0000644000175000017500000000155110444502674017165 0ustar mastermasterCopyright © 2004,2006 Lionel Elie Mamane This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. On a Debian system, a copy of the GPL can be found in /usr/share/common-licenses/GPL .scsh-defaults-0.6.6.2/debian/compat0000644000175000017500000000000210134504300016406 0ustar mastermaster4 scsh-defaults-0.6.6.2/debian/rules0000755000175000017500000000233110444502674016307 0ustar mastermaster#!/usr/bin/make -f export SHELL = /bin/bash # Uncomment this to turn on verbose mode. #export DH_VERBOSE=1 DEB_HOST_ARCH := $(shell dpkg-architecture -qDEB_HOST_ARCH) export VER=0.6 PWD := $(shell pwd) build-indep: stamp-build stamp-build: touch stamp-build build-arch: #nothing to do build: build-arch build-indep control-file: sed -e "s/@VER@/$(VER)/g" \ < debian/control.in > debian/control clean: dh_testdir dh_testroot rm -f stamp-* rm -f patch-stamp* dh_clean install: build stamp-install stamp-install: stamp-build dh_testdir dh_testroot dh_clean -k touch stamp-install binary-indep: build install dh_testdir -i dh_testroot -i mkdir -p debian/scsh/usr/bin ln -sf scsh-$(VER) debian/scsh/usr/bin/scsh mkdir -p debian/scsh/usr/share/man/man1 ln -sf scsh-$(VER).1.gz \ debian/scsh/usr/share/man/man1/scsh.1.gz dh_installdocs -i dh_installchangelogs -i dh_compress -i dh_fixperms -i dh_installdeb -i dh_gencontrol -i dh_md5sums -i dh_builddeb -i # Build architecture-dependent files here. binary-arch: build-arch # nothing to do binary: binary-indep binary-arch .PHONY: control-file configure build clean binary-indep binary-arch binary install # Local Variables: # mode: makefile # end: scsh-defaults-0.6.6.2/debian/changelog0000644000175000017500000000155610444503016017100 0ustar mastermasterscsh-defaults (0.6.6.3) unstable; urgency=low * Put debhelper in Build-Depends, not B-D-Indep. * Bump up Standards-Version. * Switch to my debian.org address in control file -- Lionel Elie Mamane Fri, 16 Jun 2006 12:21:02 +0200 scsh-defaults (0.6.6.2) unstable; urgency=low * Fix typo in description -- Lionel Elie Mamane Mon, 28 Mar 2005 08:52:20 +0200 scsh-defaults (0.6.6.1) unstable; urgency=low * Tweak description (thanks to Chung-chieh Shan) (closes: #283058) * Sponsored upload done by Joost van Baal -- Lionel Elie Mamane Fri, 26 Nov 2004 07:20:50 +0100 scsh-defaults (0.6.6.0) unstable; urgency=low * Initial version * Sponsored upload done by Joost van Baal -- Lionel Elie Mamane Sun, 17 Oct 2004 17:34:22 +0200 scsh-defaults-0.6.6.2/debian/control0000644000175000017500000000456310444503051016631 0ustar mastermasterSource: scsh-defaults Section: interpreters Priority: optional Maintainer: Lionel Elie Mamane Build-Depends: debhelper (>= 4) Standards-Version: 3.7.2 Package: scsh Architecture: all Depends: scsh-0.6 Suggests: scsh-doc Description: A `scheme' interpreter designed for writing system programs (default version) Scsh has a high-level process notation for doing shell-script like tasks: running programs, establishing pipelines and I/O redirection. Scsh embeds this process notation within a full implementation of Scheme, a minimal and clean dialect of the Lisp programming language. The process notation is realized as a set of macro definitions, and is carefully designed to allow full integration with standard Scheme code. Scsh isn't Scheme-like; it is Scheme. . At the scripting level, scsh also has an Awk design, also implemented as a macro that can be embedded inside general Scheme code. . Scsh additionally provides the low-level access to the operating system normally associated with C. The current release provides full access to POSIX, plus important non-POSIX extensions, such as complete sockets support. "Complete POSIX" means: fork, exec & wait, sockets, full read, write, open & close, seek & tell, complete file-system access, including stat, chmod/chgrp/chown, symlink, FIFO & directory access, tty & pty support, file locking, pipes, select, file-name pattern-matching, time & date, environment variables, signal handlers, and more. . Please be aware that several of the other scheme implementations being distributed as Debian packages also provide much of the similar system programming functionality. It is wisest to try them all and explore. . This package is a dependency package, which depends on Debian's default scsh version (currently v0.6). Package: scsh-doc Section: doc Architecture: all Depends: scsh-0.6-doc Suggests: scsh Description: Documentation for scsh, "The Scheme Shell" This package contains the documentation for scsh: The Scheme Shell. Scsh is used for shell-script like tasks. . Included in the package are the scsh manual (in html and postscript), the s48 manual (the scheme that scsh is based on) (in html and postscript), a paper written in 1994 describing scsh, and some miscellaneous documentation. . This package is a dependency package, which depends on Debian's default scsh version (currently v0.6).