From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=-1.0 required=5.0 tests=MAILING_LIST_MULTI autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 8859 invoked from network); 21 Sep 2022 22:18:28 -0000 Received: from minnie.tuhs.org (50.116.15.146) by inbox.vuxu.org with ESMTPUTF8; 21 Sep 2022 22:18:28 -0000 Received: from minnie.tuhs.org (localhost [IPv6:::1]) by minnie.tuhs.org (Postfix) with ESMTP id 4F59240A14; Thu, 22 Sep 2022 08:18:07 +1000 (AEST) Received: from minun.buric.co (minun.buric.co [51.15.8.196]) by minnie.tuhs.org (Postfix) with ESMTP id 1981240A10 for ; Thu, 22 Sep 2022 08:18:02 +1000 (AEST) Received: by minun.buric.co (Postfix, from userid 1000) id 863CC35C11DD; Wed, 21 Sep 2022 18:19:17 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by minun.buric.co (Postfix) with ESMTP id 6C3C735C0402 for ; Wed, 21 Sep 2022 18:19:17 -0400 (EDT) Date: Wed, 21 Sep 2022 18:19:17 -0400 (EDT) From: Steve Nickolas X-X-Sender: mary@sd-119843.dedibox.fr To: tuhs@tuhs.org In-Reply-To: Message-ID: References: <202209212149.28LLnV1J032395@ultimate.com> User-Agent: Alpine 2.21 (DEB 202 2017-01-01) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Message-ID-Hash: J2AWM75RVHUZW4WRCIYHZR2V3DKDYJOF X-Message-ID-Hash: J2AWM75RVHUZW4WRCIYHZR2V3DKDYJOF X-MailFrom: usotsuki@buric.co X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; header-match-tuhs.tuhs.org-0; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.6b1 Precedence: list Subject: [TUHS] Re: Early BSD license thread List-Id: The Unix Heritage Society mailing list Archived-At: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: On Wed, 21 Sep 2022, Dan Cross wrote: > On Wed, Sep 21, 2022 at 5:50 PM Phil Budne wrote: >> Not to excuse the failure of the BSD team to properly attribute source >> origin by adding only their copyright notice, but didn't AT&T try >> unfair turnabout by not properly attributing the origins of their >> TCP/IP code? > > One of my favorite copyright notices was for /bin/true in System V. > An empty file got turned into 7 lines of comments holding copyright > boilerplate and an `#ident` line with an SCCS version number: > progress! > > - Dan C. > And then when I wrote it for my own project: true - #!/bin/sh # Does something this small need a license? - SVN exit 0 false - #!/bin/sh # Does something this small need a license? - SVN exit 1 -uso.