--- drawterm-20091003.orig/debian/compat +++ drawterm-20091003/debian/compat @@ -0,0 +1 @@ +7 --- drawterm-20091003.orig/debian/drawterm.1 +++ drawterm-20091003/debian/drawterm.1 @@ -0,0 +1,123 @@ +.\" Hey, EMACS: -*- nroff -*- +.\" First parameter, NAME, should be all caps +.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection +.\" other parameters are allowed: see man(7), man(1) +.TH DRAWTERM 1 "October 16, 2008" +.\" Please adjust this date whenever revising the manpage. +.\" +.\" Some roff macros, for reference: +.\" .nh disable hyphenation +.\" .hy enable hyphenation +.\" .ad l left justify +.\" .ad b justify to both left and right margins +.\" .nf disable filling +.\" .fi enable filling +.\" .br insert line break +.\" .sp insert n+1 empty lines +.\" for manpage-specific macros, see man(7) +.SH NAME +drawterm \- connect to Plan 9 CPU servers from other operating systems +.SH SYNOPSIS +.B drawterm +.RB [ \-d ]\| +.RB [ -a +.IR authserver ] +.RB [ -c +.IR cpuserver ] +.RB [ -e +.IR encription_hash_algs ] +.RB [ -k +.IR keyspec ] +.RB [ -s +.IR secstoreserver ] +.RB [ -u +.IR username ] +.RB [ -C +.I command args +.IR ... ] +.br +.SH DESCRIPTION +\fBdrawterm\fP is not a Plan 9 program. +It is a program that users of non-Plan 9 systems can use to establish +graphical +.BR cpu (1) +connections with Plan 9 CPU servers. Just as a real Plan 9 terminal does, a +\fBdrawterm\fP serves its local name space as well as some devices (the +keyboard, mouse, and screen) to a remote CPU server, which mounts this name +space on +.I /mnt/term +and starts a shell. +Typically, either explicitly or via the profile, one uses the shell to start +.BR rio (1). + +.PP +By default, drawterm uses the CPU server \fB$cpu\fP or \fIcpu\fP, and the +authentication server \fB$auth\fP or \fIauth\fP, + + +.SH OPTIONS +This program follows the syntax of the cpu(1) Plan 9 command. + +A summary of options is included below. +.TP +.B \-h +Show summary of options. +.TP +.B \-a +Specifies the authentication server to use. If not present uses the +.B $auth +environment variable, if present, or tries with a host name of +.BR auth . +.TP +.B \-c +Specifies the cpu server to use. If not present uses the +.B $cpu +environment variable, if present, or tries with a host name of +.BR cpu . +.TP +.B \-u +Specifies the username to authenticate with. If not present uses the +.B $USER +environment variable, if present, or asks interactively for an username. +.TP +.B \-s +Specifies the secstore server to use. +.TP +.B \-C +Specifies a command to be executed remotely. +.TP +.BR \-e , \-k +Allow for selecting the hash algorithm and keys used, they have the same +meaning as in \fBcpu\fP(1). + +.SH SOURCE +In Plan 9 distributions, \fI/sys/src/cmd/unix/drawterm\fP. + +.SH DIAGNOSTICS +Drawterm prints most diagnostics in its own window. + +.SH BUGS + +Although at first \fBdrawterm\fP may seem like a Plan 9 terminal, in fact it +is just a way to provide a CPU server with some terminal devices. +The difference is important because one cannot run terminal-resident programs +when using \fBdrawterm\fP. +The illusion can be improved by delicate adjustments in +\fI/usr/$user/lib/profile\fP. + +Should import latest /dev/draw to allow resize of window + +Should copy 9term code and make console window a real 9term window instead. + +Should implement /dev/label. + +.SH SEE ALSO +.BR cpu (1), +.BR rio (1) +in the Plan 9 documentation + +.SH AUTHOR +drawterm was written by Russ Cox . +.PP +This manual page was written by Russ Cox , with modifications +by Martín Ferrari for the Debian project. --- drawterm-20091003.orig/debian/rules +++ drawterm-20091003/debian/rules @@ -0,0 +1,43 @@ +#!/usr/bin/make -f +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +build: build-stamp +build-stamp: + dh_testdir + $(MAKE) CONF=pthread + touch $@ + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + $(MAKE) CONF=pthread clean + dh_clean + +install: build + dh_testdir + dh_testroot + dh_installdirs usr/bin + dh_install drawterm usr/bin + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs debian/CHANGES + dh_installdocs +# dh_install + dh_installman debian/drawterm.1 + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install --- drawterm-20091003.orig/debian/CHANGES +++ drawterm-20091003/debian/CHANGES @@ -0,0 +1,625 @@ +2008-12-09 14:47 rsc + + * libc/sprint.c: sprint: the usual gcc "bug" + +2008-12-09 05:05 rsc + + * Make.pthread, gui-x11/x11.c, include/lib.h, include/unix.h, + kern/devcons.c, kern/screen.h, libc/lock.c, posix-port/Makefile, + posix-port/getcallerpc.c, posix-port/md5block.c, + posix-port/sha1block.c: add make CONF=pthread for modern systems + +2008-12-06 21:31 rsc + + * cpu.c: delay user prompt until after -u is parsed (Randall Bohn) + +2008-08-07 12:18 rsc + + * gui-osx/screen.c: ctl-opt is gone (Michaelian Ennis) + +2008-07-31 16:57 rsc + + * gui-x11/x11.c: ctl-alt is not ctl-u (tony lainson) + +2008-07-14 13:48 rsc + + * kern/chan.c: memrchr -> mymemrchr for FreeBSD + +2008-06-24 14:50 rsc + + * gui-osx/screen.c: better handling of quit events + (underspecified@gmail) + +2008-06-22 00:10 rsc + + * gui-x11/: Makefile, alloc.c, cload.c, draw.c, glenda.xbm, + ksym2utf.h, load.c, screen.c, x11.c, xmem.h: consolidate + +2007-12-31 15:23 rsc + + * include/9windows.h, kern/win32.c: windows fixes + +2007-11-26 12:11 rsc + + * kern/posix.c: fix redefinition in kern/posix.c + +2007-09-28 09:58 rsc + + * include/dtos.h: add openbsd + +2007-08-22 11:36 rsc + + * gui-x11/: glenda.xbm, screen.c: add glenda icon (Matthias + Schmidt) + +2007-06-24 15:56 rsc + + * cpu.c: fix auth problem + +2007-06-22 21:13 rsc + + * Make.unix: add lib64 + +2007-06-22 19:06 rsc + + * Make.unix, cpu.c, gui-x11/screen.c, include/unix.h: various fixes + +2007-05-29 09:23 rsc + + * kern/: devfs-posix.c, devfs-win32.c: fix name bug; try to use + bigger offsets + +2007-05-03 22:48 rsc + + * posix-amd64/getcallerpc.c: uintptr for getcallerpc + +2007-01-28 23:56 rsc + + * gui-osx/screen.c: yet more length fiddling + +2007-01-28 22:43 rsc + + * gui-osx/screen.c: More length fiddling. + +2007-01-28 21:42 rsc + + * gui-osx/screen.c: fix length + +2007-01-28 13:10 rsc + + * gui-osx/screen.c: respect snarf length + +2007-01-18 12:09 rsc + + * 9ball.png: 9ball + +2007-01-16 21:26 rsc + + * gui-osx/screen.c: more fixes from andrey + +2007-01-16 16:47 rsc + + * gui-osx/screen.c: fixes from Andrey + +2007-01-15 17:40 rsc + + * gui-osx/screen.c: Fixes from Andrey - extra buttons and Alt + handling. + +2007-01-12 14:29 rsc + + * gui-osx/screen.c: more fixes from andrey + +2007-01-12 14:27 rsc + + * posix-386/: md5block.spp, sha1block.spp: use __APPLE__ instead of + __Darwin__ + +2007-01-12 14:26 rsc + + * posix-386/Makefile: trick gcc! + +2007-01-09 23:48 rsc + + * gui-osx/screen.c: add missing drawqlock/drawqunlock + +2007-01-09 19:17 rsc + + * Make.osx, Make.osx-x11, gui-osx/Makefile, gui-osx/alloc.c, + gui-osx/cload.c, gui-osx/draw.c, gui-osx/keycodes.h, + gui-osx/load.c, gui-osx/screen.c, gui-osx/wstrtoutf.c, + gui-x11/alloc.c, include/lib.h, libc/Makefile, + posix-386/Makefile, posix-386/md5block.spp, + posix-386/sha1block.spp: Updates for 386 OS X, add native OS X + graphics from Paul Lalonde + +2007-01-09 19:16 rsc + + * include/a.out: oops + +2006-11-13 00:23 rsc + + * kern/devmnt.c: sync with Plan 9 + +2006-10-12 00:23 rsc + + * kern/devmnt.c: fix the way Plan 9 does + +2006-10-12 00:21 rsc + + * kern/devmnt.c: dangling pointer reference (Tim Wiess) + +2006-05-29 12:24 rsc + + * kern/devaudio-sun.c: from axel belinfante + +2006-05-24 12:24 rsc + + * kern/devcons.c, libmemlayer/unload.c: silly sun + +2006-05-21 20:32 rsc + + * kern/: devcons.c, fns.h, posix.c, win32.c: setmalloctag + +2006-05-21 14:02 rsc + + * Make.sun, README, cpu.c, include/auth.h, include/dtos.h, + kern/Makefile, kern/dat.h, kern/devaudio.c, kern/devcons.c, + kern/devdraw.c, kern/devmnt.c, kern/devtls.c, kern/todo.c, + libauth/auth_getuserpasswd.c, libauth/auth_proxy.c, + libauth/auth_respond.c, libc/fmt.c, libc/fmtquote.c, + libc/runevseprint.c, libc/runevsnprint.c, libc/strtoll.c, + libmemdraw/draw.c, libmemlayer/lsetrefresh.c, libmp/dat.h, + posix-sun4u/Makefile, posix-sun4u/getcallerpc.c, + posix-sun4u/md5block.c, posix-sun4u/sha1block.c, + posix-sun4u/tas.s: #%*&*@#(@ sun + +2006-05-21 13:35 rsc + + * posix-amd64/: Makefile, getcallerpc.c, md5block.c, sha1block.c, + tas.c: posix-amd64 changes + +2006-05-21 13:32 rsc + + * exportfs/exportsrv.c, gui-x11/screen.c, gui-x11/xmem.h, + include/lib.h, include/user.h, kern/allocb.c, kern/chan.c, + kern/dat.h, kern/devaudio-unix.c, kern/devdraw.c, kern/devlfd.c, + kern/devmnt.c, kern/devssl.c, kern/devtls.c, kern/posix.c, + kern/qio.c, kern/stub.c, kern/sysfile.c, libauth/auth_proxy.c, + libc/dofmt.c, libc/lock.c, libc/strtod.c, libmemdraw/alloc.c, + libmemdraw/defont.c, libsec/ranlib.core, posix-386/getcallerpc.c, + posix-power/getcallerpc.c, win32-386/getcallerpc.c: amd64 fixes + +2006-04-06 13:21 rsc + + * kern/devip.c: misparsing 9grid.net + +2006-04-06 12:54 rsc + + * kern/devip.c: misparsing 9grid.net + +2006-04-04 08:40 rsc + + * Make.osx: separate Make.osx + +2006-04-04 08:38 rsc + + * include/lib.h, kern/Makefile, kern/devaudio-none.c, + kern/devtab.c, kern/devtls.c, libc/Makefile, libc/encodefmt.c, + libc/pushtls.c: fix audio for mac; add devtls + +2006-04-04 08:37 rsc + + * libc/strtod.c: add ERANGE + +2006-03-10 00:43 rsc + + * kern/devaudio.h: forgot + +2006-03-08 01:26 rsc + + * Make.win32, gui-win32/screen.c: windows unicode and scroll wheel + +2006-03-08 01:24 rsc + + * Make.config, Make.unix, main.c, kern/Makefile, + kern/devaudio-none.c, kern/devaudio-unix.c, kern/devaudio.c, + kern/devtab.c: add audio + +2006-01-18 18:21 rsc + + * libc/fmtdef.h: ditto + +2006-01-18 18:19 rsc + + * libc/: charstod.c, dofmt.c, dorfmt.c, fltfmt.c, fmt.c, fmtfd.c, + fmtfdflush.c, fmtprint.c, fmtquote.c, fmtrune.c, fmtstr.c, + fmtvprint.c, fprint.c, pow10.c, print.c, runefmtstr.c, + runeseprint.c, runesmprint.c, runesnprint.c, runesprint.c, + runevseprint.c, runevsmprint.c, runevsnprint.c, seprint.c, + smprint.c, snprint.c, sprint.c, strtod.c, vfprint.c, vseprint.c, + vsmprint.c, vsnprint.c: remove redundant copyright notices + +2006-01-17 10:57 rsc + + * libc/fmtlock.c: fix + +2006-01-17 10:55 rsc + + * include/lib.h, include/unix.h, libc/dofmt.c, libc/fmt.h, + libc/fmtdef.h, libc/fprint.c, libc/nan64.c, libc/plan9.h: fixes + +2006-01-17 10:22 rsc + + * libc/: charstod.c, dofmt.c, dorfmt.c, fltfmt.c, fmt.c, + fmtprint.c, fmtquote.c, fmtrune.c, fmtstr.c, fmtvprint.c, + pow10.c, print.c, runefmtstr.c, runeseprint.c, runesmprint.c, + runesnprint.c, runesprint.c, runevseprint.c, runevsmprint.c, + runevsnprint.c, seprint.c, smprint.c, snprint.c, sprint.c, + strtod.c, vfprint.c, vseprint.c, vsmprint.c, vsnprint.c: better + includes? + +2006-01-17 09:48 rsc + + * main.c, kern/devroot.c, kern/sysfile.c, libc/Makefile, + libc/errfmt.c, libc/fmt.h, libc/fmtfd.c, libc/fmtfdflush.c, + libmemdraw/draw.c: fixes + +2006-01-17 09:47 rsc + + * README: help + +2006-01-17 09:39 rsc + + * libc/: fmtfdflush.c, plan9.h: add + +2006-01-17 09:37 rsc + + * libc/: charstod.c, dofmt.c, dorfmt.c, errfmt.c, fltfmt.c, fmt.c, + fmtdef.h, fmtfd.c, fmtlock.c, fmtprint.c, fmtquote.c, fmtrune.c, + fmtstr.c, fmtvprint.c, fprint.c, nan64.c, pow10.c, print.c, + runefmtstr.c, runeseprint.c, runesmprint.c, runesnprint.c, + runesprint.c, runevseprint.c, runevsmprint.c, runevsnprint.c, + seprint.c, smprint.c, snprint.c, sprint.c, strtod.c, vfprint.c, + vseprint.c, vsmprint.c, vsnprint.c: updates from p9p + +2005-12-29 20:50 rsc + + * posix-mips/: getcallerpc.c, md5block.c, sha1block.c, tas.s, + Makefile: add + +2005-12-29 20:45 rsc + + * cpu-bl.c: bell labs version + +2005-12-29 20:41 rsc + + * Make.irix, Makefile, cpu.c, include/dtos.h, include/lib.h, + kern/fns.h: more irix-inspired fixes + +2005-12-29 20:15 rsc + + * exportfs/exportsrv.c, gui-x11/alloc.c, gui-x11/screen.c, + kern/devip-posix.c, kern/posix.c, kern/qio.c, kern/term.c, + libmemdraw/draw.c: cleanups spotted by irix cc + +2005-12-29 20:07 rsc + + * README, cpu.c: warnings + +2005-12-29 19:40 rsc + + * drawterm.ico, drawterm.rc, drawterm.res, include/dtos.h: add icon + +2005-12-29 18:02 rsc + + * kern/sysfile.c: netbsd fix + +2005-11-12 11:00 rsc + + * Make.unix, gui-x11/Makefile: accomodate bsd, x + +2005-11-12 11:00 rsc + + * posix-386/Makefile: stupid bsd make + +2005-11-08 00:12 rsc + + * 9ball.ico, 9ball.rc, Make.win32, Makefile: windows icon + +2005-11-07 22:35 rsc + + * Make.unix, Make.win32, cpu.c, main.c, gui-win32/Makefile, + include/dtos.h, include/lib.h, kern/devcons.c, + kern/devip-win32.c, kern/devip.c, kern/devroot.c, kern/devssl.c, + kern/win32.c, libc/Makefile, libc/nan64.c, libmemdraw/draw.c: + fixes + +2005-11-07 14:46 rsc + + * kern/devfs-posix.c: set muid + +2005-11-07 14:42 rsc + + * cpu.c, main.c, drawterm.h, secstore.c: fiddle + +2005-11-07 14:37 rsc + + * Make.unix: use -pthread + +2005-11-07 14:36 rsc + + * kern/term.c: no deadlock + +2005-11-07 14:34 rsc + + * Make.unix, README, gui-x11/screen.c, kern/devcons.c, + kern/devfs-posix.c, kern/devip-posix.c, libdraw/chan.c, + posix-power/md5block.c, posix-power/sha1block.c: mac warnings + +2005-11-07 14:21 rsc + + * Make.win32, gui-win32/screen.c, include/9windows.h, + kern/devfs-win32.c, kern/devip-win32.c, kern/win32.c: silence gcc + warnings + +2005-11-07 14:13 rsc + + * Make.unix, cpu.c, drawterm.h, main.c, posix-factotum.c, + secstore.c, exportfs/exportfs.c, exportfs/exportfs.h, + exportfs/exportsrv.c, gui-x11/alloc.c, gui-x11/draw.c, + gui-x11/screen.c, include/auth.h, include/authsrv.h, + include/draw.h, include/keyboard.h, include/lib.h, + include/memdraw.h, include/memlayer.h, include/user.h, + kern/chan.c, kern/dat.h, kern/devcons.c, kern/devdraw.c, + kern/devfs-posix.c, kern/devip-posix.c, kern/devip.c, + kern/devip.h, kern/fns.h, kern/pgrp.c, kern/posix.c, kern/qio.c, + kern/stub.c, libauth/attr.c, libauthsrv/Makefile, + libc/charstod.c, libc/lock.c, libc/strtod.c, libc/utfutf.c, + libmemdraw/draw.c, libmemdraw/ellipse.c, libmemdraw/fillpoly.c, + libmemdraw/line.c, libmemdraw/string.c, libmp/strtomp.c, + libsec/aes.c, libsec/md5.c: silence all gcc warnings + +2005-11-07 12:13 rsc + + * cpu.c: check env for $authserver + +2005-11-04 16:19 rsc + + * kern/devssl.c: devssl fix (should not matter) + +2005-11-04 14:19 rsc + + * LICENSE: clearer + +2005-11-04 14:12 rsc + + * README: update + +2005-11-04 14:06 rsc + + * Make.unix, README, cpu.c: updates + +2005-11-04 13:05 rsc + + * win32-386/Makefile: where did this go? + +2005-11-04 13:05 rsc + + * Make.unix, Make.win32, libsec/Makefile, posix-386/Makefile, + posix-386/md5block.s, posix-386/md5block.spp, + posix-386/sha1block.s, posix-386/sha1block.spp, + posix-power/Makefile, posix-power/md5block.c, + posix-power/sha1block.c, win32-386/md5block.spp, + win32-386/sha1block.spp, win32-386/tas.c: use assembly + +2005-11-04 12:57 rsc + + * win32-386/: md5block.s, md5block.spp, sha1block.s, sha1block.spp, + tas.c: new + +2005-11-04 12:47 rsc + + * Make.unix, Make.win32, Makefile, exportfs/Makefile, + gui-win32/Makefile, gui-x11/Makefile, kern/Makefile, + libauth/Makefile, libauthsrv/Makefile, libc/Makefile, + libdraw/Makefile, libmemdraw/Makefile, libmemlayer/Makefile, + libmp/Makefile, libsec/Makefile, posix-386/Makefile, + posix-power/Makefile: Mac fixes + +2005-11-04 12:36 rsc + + * Makefile, cpu.c, drawterm.h, main.c, posix-factotum.c, + win32-factotum.c, exportfs/exportfs.c, exportfs/exportsrv.c, + include/user.h, kern/Makefile, kern/devcons.c, kern/devlfd.c, + kern/devroot.c, kern/devssl.c, kern/devtab.c, libauth/Makefile, + libauth/attr.c, libauth/auth_attr.c, libauth/auth_challenge.c, + libauth/auth_getuserpasswd.c, libauth/auth_proxy.c, + libauth/auth_respond.c, libauth/auth_rpc.c, + libauth/auth_userpasswd.c, libauth/authlocal.h, + libauth/httpauth.c: Add real factotum. + +2005-11-02 12:21 rsc + + * gui-x11/screen.c, kern/uart.c: mac + +2005-11-02 12:20 rsc + + * Make.unix, Make.win32, Makefile, secstore.c, include/lib.h, + kern/devcons.c, kern/procinit.c: windows + +2005-10-31 12:30 rsc + + * LICENSE, Make.config, Make.unix, Make.win32, Makefile, Notes, + README, drawterm.ico, drawterm.rc, drawterm.res, mkfile, + mkfile-Windows, mkfile-posix, mklib-Windows, mkone, + exportfs/Makefile, exportfs/mkfile, gui-win32/Makefile, + gui-win32/mkfile, gui-win32/screen.c, gui-x11/Makefile, + include/9windows.h, include/dtos.h, kern/Makefile, + kern/devcons.c, kern/devfs-posix.c, kern/devfs-win32.c, + kern/devfs.c, kern/devip-win.c, kern/devip-win32.c, + kern/devmnt.c, kern/devntfs.c, kern/devssl.c, kern/fns.h, + kern/mkfile, kern/os-windows.c, kern/uart.c, kern/win32.c, + kern/winduhz.h, libauthsrv/Makefile, libauthsrv/mkfile, + libc/Makefile, libc/fcallfmt.c, libc/mkfile, libc/nan64.c, + libc/nsec.c, libdraw/Makefile, libdraw/mkfile, + libmemdraw/Makefile, libmemdraw/fillpoly.c, libmemdraw/mkfile, + libmemlayer/Makefile, libmemlayer/mkfile, libmp/Makefile, + libmp/mkfile, libsec/Makefile, libsec/mkfile, posix-386/Makefile, + posix-power/Makefile, win32-386/mkfile: + + Merge in Windows port using mingw and make. + +2005-10-18 15:19 rsc + + * exportfs/exportfs.c, kern/devcons.c: Less or better chatter. + +2005-10-18 10:45 rsc + + * kern/posix.c: Use posix locks instead of pipes. + +2005-10-17 13:39 rsc + + * gui-x11/screen.c, kern/term.c: More fixes. + +2005-10-17 13:18 rsc + + * gui-x11/screen.c, kern/devdraw.c, kern/fns.h: Rewrite X11 snarf. + Maybe this will be better. + +2005-09-01 13:43 andrey + + * kern/devmouse.c: enable queue management in kern/devmouse.c. i + have no idea why it was disabled. + + this caused scroll button movements to be missed from /dev/mouse + as they generate two quick on-off events of which only the last + one was being read by devmouse. + + andrey + +2005-08-08 09:50 rsc + + * mklib-Windows, libauthsrv/_asgetticket.c, libauthsrv/_asrdresp.c: + a + +2005-08-08 09:50 rsc + + * Makefile, Notes, args.h, cpu.c, drawterm.h, drawterm.ico, + drawterm.rc, drawterm.res, latin1.c, main.c, mkfile, + mkfile-Windows, mkfile-posix, mkone, readcons.c, resource.h, + secstore.c, exportfs/Makefile, exportfs/exportfs.c, + exportfs/exportfs.h, exportfs/exportsrv.c, exportfs/mkfile, + gui-win32/alloc.c, gui-win32/cload.c, gui-win32/draw.c, + gui-win32/load.c, gui-win32/mkfile, gui-win32/screen.c, + gui-win32/wstrtoutf.c, gui-x11/Makefile, gui-x11/alloc.c, + gui-x11/cload.c, gui-x11/draw.c, gui-x11/keysym2ucs-x11.c, + gui-x11/keysym2ucs.h, gui-x11/ksym2utf.h, gui-x11/load.c, + gui-x11/screen.c, gui-x11/xmem.h, include/a.out, include/auth.h, + include/authsrv.h, include/cursor.h, include/draw.h, + include/dtos.h, include/fcall.h, include/keyboard.h, + include/lib.h, include/libc.h, include/libsec.h, + include/memdraw.h, include/memlayer.h, include/mp.h, include/u.h, + include/unix.h, include/user.h, include/x, include/x.c, + kern/Makefile, kern/allocb.c, kern/cache.c, kern/chan.c, + kern/dat.h, kern/data.c, kern/dev.c, kern/devcons.c, + kern/devdraw.c, kern/devfs.c, kern/devip-posix.c, + kern/devip-win.c, kern/devip.c, kern/devip.h, kern/devmnt.c, + kern/devmouse.c, kern/devntfs.c, kern/devpipe.c, kern/devroot.c, + kern/devssl.c, kern/devtab.c, kern/error.c, kern/error.h, + kern/exportfs.c, kern/fns.h, kern/mkfile, kern/netif.h, + kern/os-windows.c, kern/parse.c, kern/pgrp.c, kern/posix.c, + kern/procinit.c, kern/qio.c, kern/qlock.c, kern/rendez.c, + kern/rwlock.c, kern/screen.h, kern/sleep.c, kern/smalloc.c, + kern/stub.c, kern/syscall.c, kern/sysfile.c, kern/sysproc.c, + kern/term.c, kern/todo.c, kern/uart.c, kern/waserror.c, + kern/winduhz.h, kern/x, libauthsrv/Makefile, + libauthsrv/authdial.c, libauthsrv/convA2M.c, + libauthsrv/convM2A.c, libauthsrv/convM2PR.c, + libauthsrv/convM2T.c, libauthsrv/convM2TR.c, + libauthsrv/convPR2M.c, libauthsrv/convT2M.c, + libauthsrv/convTR2M.c, libauthsrv/mkfile, libauthsrv/nvcsum.c, + libauthsrv/opasstokey.c, libauthsrv/passtokey.c, + libauthsrv/readnvram.c, libc/Makefile, libc/charstod.c, + libc/cleanname.c, libc/convD2M.c, libc/convM2D.c, libc/convM2S.c, + libc/convS2M.c, libc/crypt.c, libc/dial.c, libc/dirfstat.c, + libc/dirfwstat.c, libc/dirmodefmt.c, libc/dirstat.c, + libc/dirwstat.c, libc/dofmt.c, libc/dorfmt.c, libc/errfmt.c, + libc/fcallfmt.c, libc/fltfmt.c, libc/fmt.c, libc/fmt.h, + libc/fmtdef.h, libc/fmtfd.c, libc/fmtlock.c, libc/fmtprint.c, + libc/fmtquote.c, libc/fmtrune.c, libc/fmtstr.c, libc/fmtvprint.c, + libc/fprint.c, libc/frand.c, libc/getfields.c, libc/getpid.c, + libc/lnrand.c, libc/lock.c, libc/lrand.c, libc/mallocz.c, + libc/mkfile, libc/nan.h, libc/nan64.c, libc/netmkaddr.c, + libc/nrand.c, libc/nsec.c, libc/pow10.c, libc/print.c, + libc/pushssl.c, libc/rand.c, libc/read9pmsg.c, libc/readn.c, + libc/rune.c, libc/runefmtstr.c, libc/runeseprint.c, + libc/runesmprint.c, libc/runesnprint.c, libc/runesprint.c, + libc/runestrcat.c, libc/runestrchr.c, libc/runestrcmp.c, + libc/runestrcpy.c, libc/runestrdup.c, libc/runestrecpy.c, + libc/runestrlen.c, libc/runestrncat.c, libc/runestrncmp.c, + libc/runestrncpy.c, libc/runestrrchr.c, libc/runestrstr.c, + libc/runetype.c, libc/runevseprint.c, libc/runevsmprint.c, + libc/runevsnprint.c, libc/seprint.c, libc/smprint.c, + libc/snprint.c, libc/sprint.c, libc/strecpy.c, libc/strtod.c, + libc/strtod.h, libc/strtoll.c, libc/sysfatal.c, libc/time.c, + libc/tokenize.c, libc/truerand.c, libc/u16.c, libc/u32.c, + libc/u64.c, libc/utf.h, libc/utfdef.h, libc/utfecpy.c, + libc/utflen.c, libc/utfnlen.c, libc/utfrrune.c, libc/utfrune.c, + libc/utfutf.c, libc/vfprint.c, libc/vseprint.c, libc/vsmprint.c, + libc/vsnprint.c, libdraw/Makefile, libdraw/alloc.c, + libdraw/arith.c, libdraw/bytesperline.c, libdraw/chan.c, + libdraw/defont.c, libdraw/drawrepl.c, libdraw/icossin.c, + libdraw/icossin2.c, libdraw/mkfile, libdraw/rectclip.c, + libdraw/rgb.c, libmemdraw/Makefile, libmemdraw/alloc.c, + libmemdraw/alpha.hoc, libmemdraw/arc.c, libmemdraw/arctest.c, + libmemdraw/cload.c, libmemdraw/cmap.c, libmemdraw/cread.c, + libmemdraw/defont.c, libmemdraw/draw.c, libmemdraw/drawtest.c, + libmemdraw/ellipse.c, libmemdraw/fillpoly.c, libmemdraw/hwdraw.c, + libmemdraw/iprint.c, libmemdraw/line.c, libmemdraw/load.c, + libmemdraw/mkcmap.c, libmemdraw/mkfile, + libmemdraw/openmemsubfont.c, libmemdraw/poly.c, + libmemdraw/read.c, libmemdraw/string.c, libmemdraw/subfont.c, + libmemdraw/times, libmemdraw/unload.c, libmemdraw/write.c, + libmemlayer/Makefile, libmemlayer/draw.c, libmemlayer/lalloc.c, + libmemlayer/layerop.c, libmemlayer/ldelete.c, + libmemlayer/lhide.c, libmemlayer/line.c, libmemlayer/load.c, + libmemlayer/lorigin.c, libmemlayer/lsetrefresh.c, + libmemlayer/ltofront.c, libmemlayer/ltorear.c, + libmemlayer/mkfile, libmemlayer/unload.c, libmp/Makefile, + libmp/betomp.c, libmp/crt.c, libmp/crttest.c, libmp/dat.h, + libmp/letomp.c, libmp/mkfile, libmp/mpadd.c, libmp/mpaux.c, + libmp/mpcmp.c, libmp/mpdigdiv.c, libmp/mpdiv.c, libmp/mpeuclid.c, + libmp/mpexp.c, libmp/mpextendedgcd.c, libmp/mpfmt.c, + libmp/mpinvert.c, libmp/mpleft.c, libmp/mpmod.c, libmp/mpmul.c, + libmp/mprand.c, libmp/mpright.c, libmp/mpsub.c, libmp/mptobe.c, + libmp/mptoi.c, libmp/mptole.c, libmp/mptoui.c, libmp/mptouv.c, + libmp/mptov.c, libmp/mpvecadd.c, libmp/mpveccmp.c, + libmp/mpvecdigmuladd.c, libmp/mpvecsub.c, libmp/os.h, + libmp/reduce, libmp/strtomp.c, libsec/Makefile, libsec/aes.c, + libsec/blowfish.c, libsec/decodepem.c, libsec/des.c, + libsec/des3CBC.c, libsec/des3ECB.c, libsec/desCBC.c, + libsec/desECB.c, libsec/desmodes.c, libsec/dsaalloc.c, + libsec/dsagen.c, libsec/dsaprimes.c, libsec/dsaprivtopub.c, + libsec/dsasign.c, libsec/dsaverify.c, libsec/egalloc.c, + libsec/egdecrypt.c, libsec/egencrypt.c, libsec/eggen.c, + libsec/egprivtopub.c, libsec/egsign.c, libsec/egtest.c, + libsec/egverify.c, libsec/fastrand.c, libsec/genprime.c, + libsec/genrandom.c, libsec/gensafeprime.c, + libsec/genstrongprime.c, libsec/hmac.c, libsec/hmactest.c, + libsec/md4.c, libsec/md4test.c, libsec/md5.c, libsec/md5block.c, + libsec/md5pickle.c, libsec/mkfile, libsec/nfastrand.c, + libsec/os.h, libsec/primetest.c, libsec/prng.c, + libsec/probably_prime.c, libsec/ranlib.core, libsec/rc4.c, + libsec/readcert.c, libsec/rsaalloc.c, libsec/rsadecrypt.c, + libsec/rsaencrypt.c, libsec/rsafill.c, libsec/rsagen.c, + libsec/rsaprivtopub.c, libsec/rsatest.c, libsec/sha1.c, + libsec/sha1block.c, libsec/sha1pickle.c, libsec/smallprimes.c, + libsec/smallprimetest.c, libsec/thumb.c, libsec/tlshand.c, + libsec/x509.c, posix-386/Makefile, posix-386/getcallerpc.c, + posix-386/md5block.s, posix-386/sha1block.s, posix-386/tas.c, + posix-power/Makefile, posix-power/getcallerpc.c, + posix-power/tas.c, win32-386/getcallerpc.c, win32-386/md5block.s, + win32-386/mkfile, win32-386/sha1block.s, win32-386/tas.c: + a + --- drawterm-20091003.orig/debian/control +++ drawterm-20091003/debian/control @@ -0,0 +1,16 @@ +Source: drawterm +Section: x11 +Priority: extra +Maintainer: Martín Ferrari +Build-Depends: debhelper (>= 7), libxt-dev +Standards-Version: 3.8.4 +Homepage: http://swtch.com/drawterm/ +Vcs-Browser: http://canterville.mine.nu/wsvn/debian/trunk/drawterm/ + +Package: drawterm +Architecture: any +Depends: ${shlibs:Depends}, ${misc:Depends} +Description: graphical client for Plan 9 CPU servers + Drawterm is a X11 application that allows to connect to a remote Plan 9 + server, usually a CPU server, but a terminal can also be tweaked to receive + drawterm clients. --- drawterm-20091003.orig/debian/copyright +++ drawterm-20091003/debian/copyright @@ -0,0 +1,264 @@ +Format-Specification: + http://wiki.debian.org/Proposals/CopyrightFormat?action=recall&rev=196 +Upstream-Maintainer: Russ Cox +Upstream-Source: http://swtch.com/drawterm/drawterm.tgz +Upstream-Name: drawterm + +Files: * +Copyright: © 2005 Lucent Technologies + Portions © 2005 Russ Cox, MIT +License: other + Although the source files don't have proper copyright notice, it's inferred + from the webpage, CVS logs and the LICENSE file, which is consistent with all + the software released for Plan 9. Text follows: + . + Copyright (c) 2005 Lucent Technologies + Portions Copyright (c) 2005 Russ Cox, MIT + . + The Plan 9 software is provided under the terms of the + Lucent Public License, Version 1.02, reproduced below. + . + =================================================================== + . + Lucent Public License Version 1.02 + . + THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS PUBLIC + LICENSE ("AGREEMENT"). ANY USE, REPRODUCTION OR DISTRIBUTION OF THE + PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT. + . + 1. DEFINITIONS + . + "Contribution" means: + . + a. in the case of Lucent Technologies Inc. ("LUCENT"), the Original + Program, and + b. in the case of each Contributor, + . + i. changes to the Program, and + ii. additions to the Program; + . + where such changes and/or additions to the Program were added to the + Program by such Contributor itself or anyone acting on such + Contributor's behalf, and the Contributor explicitly consents, in + accordance with Section 3C, to characterization of the changes and/or + additions as Contributions. + . + "Contributor" means LUCENT and any other entity that has Contributed a + Contribution to the Program. + . + "Distributor" means a Recipient that distributes the Program, + modifications to the Program, or any part thereof. + . + "Licensed Patents" mean patent claims licensable by a Contributor + which are necessarily infringed by the use or sale of its Contribution + alone or when combined with the Program. + . + "Original Program" means the original version of the software + accompanying this Agreement as released by LUCENT, including source + code, object code and documentation, if any. + . + "Program" means the Original Program and Contributions or any part + thereof + . + "Recipient" means anyone who receives the Program under this + Agreement, including all Contributors. + . + 2. GRANT OF RIGHTS + . + a. Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free copyright + license to reproduce, prepare derivative works of, publicly display, + publicly perform, distribute and sublicense the Contribution of such + Contributor, if any, and such derivative works, in source code and + object code form. + + b. Subject to the terms of this Agreement, each Contributor hereby + grants Recipient a non-exclusive, worldwide, royalty-free patent + license under Licensed Patents to make, use, sell, offer to sell, + import and otherwise transfer the Contribution of such Contributor, if + any, in source code and object code form. The patent license granted + by a Contributor shall also apply to the combination of the + Contribution of that Contributor and the Program if, at the time the + Contribution is added by the Contributor, such addition of the + Contribution causes such combination to be covered by the Licensed + Patents. The patent license granted by a Contributor shall not apply + to (i) any other combinations which include the Contribution, nor to + (ii) Contributions of other Contributors. No hardware per se is + licensed hereunder. + + c. Recipient understands that although each Contributor grants the + licenses to its Contributions set forth herein, no assurances are + provided by any Contributor that the Program does not infringe the + patent or other intellectual property rights of any other entity. Each + Contributor disclaims any liability to Recipient for claims brought by + any other entity based on infringement of intellectual property rights + or otherwise. As a condition to exercising the rights and licenses + granted hereunder, each Recipient hereby assumes sole responsibility + to secure any other intellectual property rights needed, if any. For + example, if a third party patent license is required to allow + Recipient to distribute the Program, it is Recipient's responsibility + to acquire that license before distributing the Program. + . + d. Each Contributor represents that to its knowledge it has sufficient + copyright rights in its Contribution, if any, to grant the copyright + license set forth in this Agreement. + . + 3. REQUIREMENTS + . + A. Distributor may choose to distribute the Program in any form under + this Agreement or under its own license agreement, provided that: + . + a. it complies with the terms and conditions of this Agreement; + . + b. if the Program is distributed in source code or other tangible + form, a copy of this Agreement or Distributor's own license agreement + is included with each copy of the Program; and + . + c. if distributed under Distributor's own license agreement, such + license agreement: + . + i. effectively disclaims on behalf of all Contributors all warranties + and conditions, express and implied, including warranties or + conditions of title and non-infringement, and implied warranties or + conditions of merchantability and fitness for a particular purpose; + ii. effectively excludes on behalf of all Contributors all liability + for damages, including direct, indirect, special, incidental and + consequential damages, such as lost profits; and + iii. states that any provisions which differ from this Agreement are + offered by that Contributor alone and not by any other party. + . + B. Each Distributor must include the following in a conspicuous + location in the Program: + . + Copyright (C) 2003, Lucent Technologies Inc. and others. All Rights + Reserved. + . + C. In addition, each Contributor must identify itself as the + originator of its Contribution in a manner that reasonably allows + subsequent Recipients to identify the originator of the Contribution. + Also, each Contributor must agree that the additions and/or changes + are intended to be a Contribution. Once a Contribution is contributed, + it may not thereafter be revoked. + . + 4. COMMERCIAL DISTRIBUTION + . + Commercial distributors of software may accept certain + responsibilities with respect to end users, business partners and the + like. While this license is intended to facilitate the commercial use + of the Program, the Distributor who includes the Program in a + commercial product offering should do so in a manner which does not + create potential liability for Contributors. Therefore, if a + Distributor includes the Program in a commercial product offering, + such Distributor ("Commercial Distributor") hereby agrees to defend + and indemnify every Contributor ("Indemnified Contributor") against + any losses, damages and costs (collectively"Losses") arising from + claims, lawsuits and other legal actions brought by a third party + against the Indemnified Contributor to the extent caused by the acts + or omissions of such Commercial Distributor in connection with its + distribution of the Program in a commercial product offering. The + obligations in this section do not apply to any claims or Losses + relating to any actual or alleged intellectual property infringement. + In order to qualify, an Indemnified Contributor must: a) promptly + notify the Commercial Distributor in writing of such claim, and b) + allow the Commercial Distributor to control, and cooperate with the + Commercial Distributor in, the defense and any related settlement + negotiations. The Indemnified Contributor may participate in any such + claim at its own expense. + . + For example, a Distributor might include the Program in a commercial + product offering, Product X. That Distributor is then a Commercial + Distributor. If that Commercial Distributor then makes performance + claims, or offers warranties related to Product X, those performance + claims and warranties are such Commercial Distributor's responsibility + alone. Under this section, the Commercial Distributor would have to + defend claims against the Contributors related to those performance + claims and warranties, and if a court requires any Contributor to pay + any damages as a result, the Commercial Distributor must pay those + damages. + . + 5. NO WARRANTY + . + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, THE PROGRAM IS + PROVIDED ON AN"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY + WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY + OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is solely + responsible for determining the appropriateness of using and + distributing the Program and assumes all risks associated with its + exercise of rights under this Agreement, including but not limited to + the risks and costs of program errors, compliance with applicable + laws, damage to or loss of data, programs or equipment, and + unavailability or interruption of operations. + . + 6. DISCLAIMER OF LIABILITY + . + EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, NEITHER RECIPIENT NOR + ANY CONTRIBUTORS SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, + INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING + WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF + LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING + NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OR + DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS GRANTED + HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. + . + 7. EXPORT CONTROL + . + Recipient agrees that Recipient alone is responsible for compliance + with the United States export administration regulations (and the + export control laws and regulation of any other countries). + . + 8. GENERAL + . + If any provision of this Agreement is invalid or unenforceable under + applicable law, it shall not affect the validity or enforceability of + the remainder of the terms of this Agreement, and without further + action by the parties hereto, such provision shall be reformed to the + minimum extent necessary to make such provision valid and enforceable. + . + If Recipient institutes patent litigation against a Contributor with + respect to a patent applicable to software (including a cross-claim or + counterclaim in a lawsuit), then any patent licenses granted by that + Contributor to such Recipient under this Agreement shall terminate as + of the date such litigation is filed. In addition, if Recipient + institutes patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Program + itself (excluding combinations of the Program with other software or + hardware) infringes such Recipient's patent(s), then such Recipient's + rights granted under Section 2(b) shall terminate as of the date such + litigation is filed. + . + All Recipient's rights under this Agreement shall terminate if it + fails to comply with any of the material terms or conditions of this + Agreement and does not cure such failure in a reasonable period of + time after becoming aware of such noncompliance. If all Recipient's + rights under this Agreement terminate, Recipient agrees to cease use + and distribution of the Program as soon as reasonably practicable. + However, Recipient's obligations under this Agreement and any licenses + granted by Recipient relating to the Program shall continue and + survive. + . + LUCENT may publish new versions (including revisions) of this + Agreement from time to time. Each new version of the Agreement will be + given a distinguishing version number. The Program (including + Contributions) may always be distributed subject to the version of the + Agreement under which it was received. In addition, after a new + version of the Agreement is published, Contributor may elect to + distribute the Program (including its Contributions) under the new + version. No one other than LUCENT has the right to modify this + Agreement. Except as expressly stated in Sections 2(a) and 2(b) above, + Recipient receives no rights or licenses to the intellectual property + of any Contributor under this Agreement, whether expressly, by + implication, estoppel or otherwise. All rights in the Program not + expressly granted under this Agreement are reserved. + . + This Agreement is governed by the laws of the State of New York and + the intellectual property laws of the United States of America. No + party to this Agreement will bring a legal action under this Agreement + more than one year after the cause of action arose. Each party waives + its rights to a jury trial in any resulting litigation. + + +Files: debian/* +Copyright: © 2008 Martín Ferrari +License: other + Same license as upstream --- drawterm-20091003.orig/debian/changelog +++ drawterm-20091003/debian/changelog @@ -0,0 +1,26 @@ +drawterm (20091003-1) unstable; urgency=low + + * Merged own manpage with one provided by uptream in private mail. + * Updated dummy watchfile. + * New upstream release. + * debian/rules: remove dh_clean -k. + * debian/control: bumped Standards-Version, no changes. + + -- Martín Ferrari Thu, 18 Feb 2010 02:56:59 +0100 + +drawterm (0.cvs+20081209.1-1) unstable; urgency=low + + * The "should ask upstream for help before fighting for hours to solve + upstream problems" release. + * New upstream release that closes: #508068, #508100. + * debian/rules: use the new CONF=pthreads makefiles. + * debian/CHANGES: add upstream changelog, syntetized from cvs logs. + * New minimal upstream release, fixes a problem in sparc. + + -- Martín Ferrari Tue, 09 Dec 2008 23:31:45 -0200 + +drawterm (0.cvs+20080909-1) unstable; urgency=low + + * Initial release (Closes: #298340). + + -- Martín Ferrari Thu, 16 Oct 2008 12:21:32 -0300 --- drawterm-20091003.orig/debian/watch +++ drawterm-20091003/debian/watch @@ -0,0 +1,5 @@ +version=3 + +# Dummy, upstream doesn't show the version +opts=uversionmangle=s/.*/0.cvs+20081209.1/ \ +http://swtch.com/drawterm/ (drawterm).tgz