From a10bae71a65c5eb343f738199a862e4ad630fc71 Mon Sep 17 00:00:00 2001 From: "Michael D. Lowis" Date: Wed, 14 Apr 2021 11:07:41 -0400 Subject: [PATCH] removed remnants of removed binaries --- share/man/man1/obnc-path.1 | 35 ---------------- share/man/man1/obncdoc.1 | 29 ------------- tests/obncdoc/ExportedFeatures.def | 30 ------------- tests/obncdoc/ExportedFeatures.def.html | 45 -------------------- tests/obncdoc/ExportedFeatures.obn | 51 ----------------------- tests/obncdoc/NoExportedFeatures.def | 2 - tests/obncdoc/NoExportedFeatures.def.html | 17 -------- tests/obncdoc/NoExportedFeatures.obn | 17 -------- 8 files changed, 226 deletions(-) delete mode 100644 share/man/man1/obnc-path.1 delete mode 100644 share/man/man1/obncdoc.1 delete mode 100644 tests/obncdoc/ExportedFeatures.def delete mode 100644 tests/obncdoc/ExportedFeatures.def.html delete mode 100644 tests/obncdoc/ExportedFeatures.obn delete mode 100644 tests/obncdoc/NoExportedFeatures.def delete mode 100644 tests/obncdoc/NoExportedFeatures.def.html delete mode 100644 tests/obncdoc/NoExportedFeatures.obn diff --git a/share/man/man1/obnc-path.1 b/share/man/man1/obnc-path.1 deleted file mode 100644 index 4e6a7db..0000000 --- a/share/man/man1/obnc-path.1 +++ /dev/null @@ -1,35 +0,0 @@ -.TH OBNC-PATH 1 -.SH NAME -obnc-path \- print directory path for Oberon module -.SH SYNOPSIS -.B obnc-path -[\fB\-v\fR] -MODULE -.br -.B obnc-path -(\fB\-h\fR | \fB\-v\fR) -.SH DESCRIPTION -.B obnc-path -prints the directory path for an Oberon module. For a module M, the printed path is the first directory found which contains either the Oberon source file, -.IR .obnc/M.sym -or -.IR M.sym . -.P -First the current directory is searched. Then paths in OBNC_IMPORT_PATH are searched. Finally the default library directory in the OBNC installation path is searched. -.P -For each path P, modules are searched both in P and in first-level subdirectories of P. Subdirectories represent individual libraries and are expected to be in lowercase. For the modules in a subdirectory L, only modules prefixed with L followed by an uppercase letter are searched. The other modules in L are considered local to the library. -.SH OPTIONS -.TP -.BR \-h -Display help and exit. -.TP -.BR \-v -Without argument, display version and exit. Otherwise, print each inspected directory path to standard output. -.SH ENVIRONMENT -.IP OBNC_IMPORT_PATH -List of directory paths to search Oberon modules in. Paths are separated with a colon on POSIX systems, and with a semicolon on MS Windows. -.SH AUTHOR -Written by Karl Landstr\[:o]m -.SH "SEE ALSO" -.BR obnc (1), -.BR obnc-compile (1) diff --git a/share/man/man1/obncdoc.1 b/share/man/man1/obncdoc.1 deleted file mode 100644 index 4eb4340..0000000 --- a/share/man/man1/obncdoc.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH OBNCDOC 1 -.SH NAME -obncdoc \- extract exported features from Oberon modules -.SH SYNOPSIS -.B obncdoc -[\fB\-h\fR | \fB\-v\fR] -.SH DESCRIPTION -.B obncdoc -reads the Oberon source files in the current directory and creates module definitions in plain-text and HTML. A module index is also created. Each definition contains the exported declarations and the exported comments (start with an asterisk) for the corresponding module. The definition files are created, updated or deleted only as needed. A default style file, -.IR style.css , -is created only if not present. This provides for custom style sheets. All output files are written to the directory -.I obncdoc -in the current directory. Oberon source filenames are expected to end with -.IR .obn , -.IR .Mod -or -.IR .mod . -.P -.B obncdoc -is not a complete parser so no syntactical or semantical checks are performed. -.SH OPTIONS -.TP -.BR \-h -Display help and exit. -.TP -.BR \-v -Display version and exit. -.SH AUTHOR -Written by Karl Landstr\[:o]m diff --git a/tests/obncdoc/ExportedFeatures.def b/tests/obncdoc/ExportedFeatures.def deleted file mode 100644 index 8a3fadc..0000000 --- a/tests/obncdoc/ExportedFeatures.def +++ /dev/null @@ -1,30 +0,0 @@ -DEFINITION ExportedFeatures; (*documentation...*) - - IMPORT F := Files; - - CONST - s = "s* = 'foo'; (**"; (*(*"foo"*)*) - - TYPE - T = RECORD - f: RECORD (*documentation...*) - h: INTEGER - END; - END; - - T1 = RECORD (T) END; - - VAR - x: T; (*documentation...*) - u: F.File; - - PROCEDURE P(x: INTEGER; - y: REAL; - z: BYTE); -(*documentation, -documentation...*) - - PROCEDURE R((*in/out*) VAR x: INTEGER; (*out*) VAR y: REAL; VAR z: BYTE); -(*documentation...*) - -END ExportedFeatures. diff --git a/tests/obncdoc/ExportedFeatures.def.html b/tests/obncdoc/ExportedFeatures.def.html deleted file mode 100644 index 5f0c351..0000000 --- a/tests/obncdoc/ExportedFeatures.def.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - DEFINITION ExportedFeatures - - - -

Index

- -
-DEFINITION ExportedFeatures; (*documentation...*)
-
-	IMPORT F := Files;
-
-	CONST
-		s = "s* = 'foo'; (**"; (*(*"foo"*)*)
-
-	TYPE
-		T = RECORD
-			f: RECORD (*documentation...*)
-				h: INTEGER
-			END;
-		END;
-
-		T1 = RECORD (T) END;
-
-	VAR
-		x: T; (*documentation...*)
-		u: F.File;
-
-	PROCEDURE P(x: INTEGER;
-		y: REAL;
-		z: BYTE);
-(*documentation,
-documentation...*)
-
-	PROCEDURE R((*in/out*) VAR x: INTEGER; (*out*) VAR y: REAL; VAR z: BYTE);
-(*documentation...*)
-
-END ExportedFeatures.
-
- - diff --git a/tests/obncdoc/ExportedFeatures.obn b/tests/obncdoc/ExportedFeatures.obn deleted file mode 100644 index e794ebf..0000000 --- a/tests/obncdoc/ExportedFeatures.obn +++ /dev/null @@ -1,51 +0,0 @@ -module ExportedFeatures; (**documentation...*) - - import F := Files, Out; - - const - s* = "s* = 'foo'; (**"; (**(*"foo"*)*) - (*s* = "s* = 'foo'; (**"; (**(*"foo"*)*)*)*) - t = 37; - - type - T0 = Int; - - (*documentation...*) - T* = record - f*: record (**documentation...*) - g: Int; - h*: Int - end; - g: Real - end; - - T1* = record (T) (*documentation...*) - h: Int - end; - - T2 = record - (*f*: Int*) - end; - - var - x*, y: T; (**documentation...*) - z, u*: F.File; - - procedure P*(x: Int; - y: Real; - z: Byte); -(**documentation, -documentation...*) - end P; - - - procedure Q; -(*documentation...*) - end Q; - - - procedure R*((**in/out*) var x: Int; (**out*) var y: Real; (*out*) var z: Byte); -(**documentation...*) - end R; - -end ExportedFeatures. diff --git a/tests/obncdoc/NoExportedFeatures.def b/tests/obncdoc/NoExportedFeatures.def deleted file mode 100644 index cee1f9a..0000000 --- a/tests/obncdoc/NoExportedFeatures.def +++ /dev/null @@ -1,2 +0,0 @@ -definition NoExportedFeatures; -end NoExportedFeatures. diff --git a/tests/obncdoc/NoExportedFeatures.def.html b/tests/obncdoc/NoExportedFeatures.def.html deleted file mode 100644 index 2bd0805..0000000 --- a/tests/obncdoc/NoExportedFeatures.def.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - DEFINITION NoExportedFeatures - - - -

Index

- -
-DEFINITION NoExportedFeatures;
-END NoExportedFeatures.
-
- - diff --git a/tests/obncdoc/NoExportedFeatures.obn b/tests/obncdoc/NoExportedFeatures.obn deleted file mode 100644 index 6911ffd..0000000 --- a/tests/obncdoc/NoExportedFeatures.obn +++ /dev/null @@ -1,17 +0,0 @@ -module NoExportedFeatures; - - import M := Math; - - const - alpha = M.pi; (*documentation*) - - type - Int = Int; - - var - x: Int; - - procedure P; - end P; - -end NoExportedFeatures. -- 2.49.0