summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTavis Ormandy <taviso@gentoo.org>2003-07-07 16:26:57 +0000
committerTavis Ormandy <taviso@gentoo.org>2003-07-07 16:26:57 +0000
commit2e8e2cd78e107117d443a34430abe44510e5a519 (patch)
treef9e544708c1bf2fb65e20e0c9e502c1dde90a20f /app-editors/teco
parentInitial import. bug #20810 (diff)
downloadgentoo-2-2e8e2cd78e107117d443a34430abe44510e5a519.tar.gz
gentoo-2-2e8e2cd78e107117d443a34430abe44510e5a519.tar.bz2
gentoo-2-2e8e2cd78e107117d443a34430abe44510e5a519.zip
metadata
Diffstat (limited to 'app-editors/teco')
-rw-r--r--app-editors/teco/Manifest3
-rw-r--r--app-editors/teco/metadata.xml36
2 files changed, 38 insertions, 1 deletions
diff --git a/app-editors/teco/Manifest b/app-editors/teco/Manifest
index 9c48870e1d0d..40f30245cc3d 100644
--- a/app-editors/teco/Manifest
+++ b/app-editors/teco/Manifest
@@ -1,3 +1,4 @@
MD5 3552dde8efb51a0376cce18e38d3ffeb teco-1.00-r1.ebuild 1551
-MD5 a1fa49c80cda812092f03eb552a8949c ChangeLog 678
+MD5 4d3e95bca7a72811e26cd6bb14a3034a ChangeLog 789
+MD5 721f86c732c9918f7d03b8a1fc52bd29 metadata.xml 2648
MD5 8b57d774afe4775a6ffa845c0e1712d0 files/digest-teco-1.00-r1 271
diff --git a/app-editors/teco/metadata.xml b/app-editors/teco/metadata.xml
new file mode 100644
index 000000000000..a3004aa40bc3
--- /dev/null
+++ b/app-editors/teco/metadata.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+<herd>no-herd</herd>
+<maintainer>
+ <email>taviso@gentoo.org</email>
+ <name>Tavis Ormandy</name>
+</maintainer>
+<longdescription>
+[the following was adapted from the Jargon File entry for TECO]
+TECO /tee'koh/ /n.,v. obs./ 1. [originally an acronym for `[paper] Tape Editor and COrrector'; later, `Text Editor and COrrector'] /n./ A text editor developed at MIT and modified by just about everybody. With all the dialects included, TECO may have been the most prolific editor in use before EMACS, to which it was directly ancestral. Noted for its powerful programming-language-like features and its unspeakably hairy syntax. It is literally the case that every string of characters is a valid TECO program (though probably not a useful one); one common game used to be mentally working out what the TECO commands corresponding to human names did. 2. /vt./ Originally, to edit using the TECO editor in one of its infinite variations (see below). 3. vt.,obs. To edit even when TECO is *not* the editor being used! This usage is rare and now primarily historical.
+
+As an example of TECO's obscurity, here is a TECO program that takes a list of names such as:
+
+ Loser, J. Random
+ Quux, The Great
+ Dick, Moby
+
+sorts them alphabetically according to surname, and then puts the surname last, removing the comma, to produce the following:
+
+ Moby Dick
+ J. Random Loser
+ The Great Quux
+
+The program is
+
+ [1 J^P$L$$
+ J <.-Z; .,(S,$ -D .)FX1 @F^B $K :L I $ G1 L>$$
+
+(where ^B means `Control-B' (ASCII 0000010) and $ is actually an alt or escape (ASCII 0011011) character).
+
+In fact, this very program was used to produce the second, sorted list from the first list. The first hack at it had a bug: GLS (the author) had accidentally omitted the `@' in front of `F^B', which as anyone can see is clearly the Wrong Thing. It worked fine the second time. There is no space to describe all the features of TECO, but it may be of interest that `^P' means `sort' and `J<.-Z; ... L>' is an idiomatic series of commands for `do once for every line'.
+
+In mid-1991, TECO is pretty much one with the dust of history, having been replaced in the affections of hackerdom by EMACS. Descendants of an early (and somewhat lobotomized) version adopted by DEC can still be found lurking on VMS and a couple of crufty PDP-11 operating systems, however, and ports of the more advanced MIT versions remain the focus of some antiquarian interest. See also retrocomputing, write-only language.
+</longdescription>
+</pkgmetadata>