build: Remove lorder - scc - simple c99 compiler
 (HTM) git clone git://git.simple-cc.org/scc
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Submodules
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 26962956798171998310076e26dd086187ea5ba9
 (DIR) parent 027d5ed74d0e1195669b4f7d7a1531a82f3441e0
 (HTM) Author: Roberto E. Vargas Caballero <k0ga@shike2.net>
       Date:   Fri, 18 Apr 2025 23:40:57 +0200
       
       build: Remove lorder
       
       It is not used anymore, and it required to include the caldera
       license.
       
       Diffstat:
         M LICENSE                             |      60 -------------------------------
         D scripts/lorder                      |      47 -------------------------------
       
       2 files changed, 0 insertions(+), 107 deletions(-)
       ---
 (DIR) diff --git a/LICENSE b/LICENSE
       @@ -1,63 +1,3 @@
       -scripts/lorder
       ---------------
       -
       -Caldera International, Inc. hereby grants a fee free license that includes
       -the rights use, modify and distribute this named source code, including
       -creating derived binary products created from the source code. The source
       -code for which Caldera International, Inc. grants rights are limited
       -to the following UNIX Operating Systems that operate on the 16-Bit
       -PDP-11 CPU and early versions of the 32-Bit UNIX Operating System, with
       -specific exclusion of UNIX System III and UNIX System V and successor
       -operating systems:
       -
       -32-bit 32V UNIX
       -
       -16 bit UNIX Versions 1, 2, 3, 4, 5, 6, 7
       -
       -Caldera International, Inc. makes no guarantees or commitments that any
       -source code is available from Caldera International, Inc.
       -
       -The following copyright notice applies to the source code files for
       -which this license is granted.
       -
       -Copyright(C) Caldera International Inc. 2001-2002. All rights reserved.
       -
       -Redistribution and use in source and binary forms, with or without
       -modification, are permitted provided that the following conditions
       -are met:
       -
       -Redistributions of source code and documentation must retain the above
       -copyright notice, this list of conditions and the following disclaimer.
       -
       -Redistributions in binary form must reproduce the above copyright notice,
       -this list of conditions and the following disclaimer in the documentation
       -and/or other materials provided with the distribution.
       -
       -All advertising materials mentioning features or use of this software
       -must display the following acknowledgement:
       -
       -This product includes software developed or owned by Caldera
       -International, Inc.
       -
       -Neither the name of Caldera International, Inc. nor the names of other
       -contributors may be used to endorse or promote products derived from
       -this software without specific prior written permission.
       -
       -USE OF THE SOFTWARE PROVIDED FOR UNDER THIS LICENSE BY CALDERA
       -INTERNATIONAL, INC. AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED
       -WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
       -MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
       -EVENT SHALL CALDERA INTERNATIONAL, INC. BE LIABLE FOR ANY DIRECT, INDIRECT
       -INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
       -BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
       -USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 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
       -OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
       -
       -All remaining files
       --------------------
       -
        ISC License
        
        (c) 2012-2025 Roberto E. Vargas Caballero <k0ga@shike2.com>
 (DIR) diff --git a/scripts/lorder b/scripts/lorder
       @@ -1,47 +0,0 @@
       -#!/bin/sh
       -
       -set -e
       -trap 'rm -f $$sym?ef' EXIT HUP INT QUIT TERM
       -
       -case $# in
       -0)
       -        echo usage: lorder file ... >&2
       -        exit 1
       -esac
       -
       -rm -f $$sym?ef
       -
       -(echo $1:
       - ${NM:-nm} -g "$@") | sed -n '
       -        /:$/ {
       -                s/://
       -                h
       -                s/.*/& &/
       -                p
       -        }
       -        / [ADTR] / {
       -                s/.* //
       -                G
       -                s/\n/ /
       -                w '$$symdef'
       -        }
       -        / C / {
       -                s/.* //
       -                G
       -                s/\n/ /
       -                w '$$symcef'
       -        }
       -        / U / {
       -                s/.* //
       -                G
       -                s/\n/ /
       -                w '$$symref'
       -        }
       -'
       -sort $$symdef -o $$symdef
       -sort $$symref -o $$symref
       -sort $$symcef -o $$symcef
       -(join $$symref $$symdef
       - join $$symref $$symcef
       - join $$symcef $$symdef) |
       -sed 's/[^ ]* *//'