From mboxrd@z Thu Jan 1 00:00:00 1970 X-Mozilla-Status: 0001 X-Mozilla-Status2: 00000000 Return-Path: Received: by mail.ignore.pl (Postfix, from userid 1006) id DC3E9BD5D0; Tue, 7 Oct 2025 20:24:18 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ignore.pl; s=mail; t=1759861458; bh=5vVVYjrsalZc+E20DcMtlO60j+Sy2xfrXf3iDGD0kl4=; h=From:To:Cc:Subject:Date; b=OP0ocuz90hjEjpniF7zYCLbAqjnsiYaSX2aKsp+F+maTG4qYpHEpBhPvKNB/H65z2 A1uC8jgdScPb9Rk9TbYzWMKekJc/zK5z/myXY7qyZC1DiJ0Meh4lQobE9dN8367GhQ 6Y1IavJJnsalrp9AJEij52zy2S25a6ZLiOQl41bQjmCzqDtFeB/uXuUEix+BDmgQVP XQIpUwl+79MzD6IlnxSHy24cAGbdfYS89K30cIqaPZHUBqzTZ9Yw7u/deC2UNVrrMq +9gkOJkAvJTSjp5sGKUmwb5f8aUKPy0aqDbbhKkxzufCf8QCexoSGdtZd2rMxH3Qr0 MnXImHjBNfjvA== X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on vps583257.ovh.net X-Spam-Level: X-Spam-Status: No, score=-1.1 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,URIBL_BLOCKED,URIBL_DBL_BLOCKED_OPENDNS autolearn=unavailable autolearn_force=no version=3.4.2 Received: from localhost.localdomain (daw49.neoplus.adsl.tpnet.pl [83.23.22.49]) by mail.ignore.pl (Postfix) with ESMTPSA id 973D8BD5BE; Tue, 7 Oct 2025 20:24:16 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ignore.pl; s=mail; t=1759861456; bh=5vVVYjrsalZc+E20DcMtlO60j+Sy2xfrXf3iDGD0kl4=; h=From:To:Cc:Subject:Date; b=D61jhEUPofi2Lc26I7aLlnDuMnIv7hSPFT9ewfyvCodJkTggdeGxCcYTjNmRq+2v6 QTk8CBRdhrnTJulu3oDByS3hp5CjyzJ4gLH7F8U/YVXBpS9BBXpGV4couZ2FYntc/g vUhDYY8mRKKCifsyq3nilqBoIhV4Y1gy6qjHMaYVj2NYCGy/XC3yRgegBOxxB+XrEB 3l5FhTaf6lo4dCyvyQ2edodBd9nDaPcx5fi67UZF1tfeViljwTgxEqWUOO2dP1tsvN XHdOcmC9pzFGRXSI2BCAKPVyeauQU446wA6kvDai7FZig0oannrUE7otLEAte19yYX QNUf+iuj8Hc9Q== From: Aki To: patches@ignore.pl, lolywk@tutanota.com Cc: Aki Subject: [PATCH nt] Assume BSD 3-clause license Date: Tue, 7 Oct 2025 20:24:03 +0200 Message-ID: <20251007182403.426873-1-please@ignore.pl> X-Mailer: git-send-email 2.51.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-UID: 5 X-Keywords: nt has been in the void for a while. In case I own the entire codebase it's easy to just ask me, but if there is one or more contributors and license is not decided, it may create problems for whoever wants to use or extend the program. BSD 3-clause along GNU GPL are my go-to. Here, I'm choosing BSD 3-clause only because it'd be funny to attach GNU GPL full body compared to the entire codebase. youkwhd, please answer whether you agree or not to publish your code within nt under BSD 3-clause. Preferably, just answer with "Acked-by: name ", but anything that is indisputably agreement (or not) will work. If you disagree BSD, is GPL ok? This and previous paragraphs are going only into the mailing list for documentation purposes. --- CONTRIBUTORS | 2 ++ COPYING | 29 +++++++++++++++++++++++++++++ NOTICE | 11 +++++++++++ 3 files changed, 42 insertions(+) create mode 100644 CONTRIBUTORS create mode 100644 COPYING create mode 100644 NOTICE diff --git a/CONTRIBUTORS b/CONTRIBUTORS new file mode 100644 index 0000000..c9319b3 --- /dev/null +++ b/CONTRIBUTORS @@ -0,0 +1,2 @@ +Aki +youkwhd diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..09860ca --- /dev/null +++ b/COPYING @@ -0,0 +1,29 @@ +nt - Repeats command line arguments in standard output N times. +Copyright (c) 2023-2025, + +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 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. + +* Neither the name of the copyright holder nor the names of its + contributors may be used to endorse or promote products derived from + this software without specific prior written permission. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS 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 THE COPYRIGHT +HOLDER OR CONTRIBUTORS 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. diff --git a/NOTICE b/NOTICE new file mode 100644 index 0000000..20ec914 --- /dev/null +++ b/NOTICE @@ -0,0 +1,11 @@ +nt - Repeats command line arguments in standard output N times. +Copyright (c) 2023-2025, + +This program is free software: you can redistribute it and/or modify it +under the terms of the 3-Clause BSD License. This program is distributed +WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY +or FITNESS FOR A PARTICULAR PURPOSE. + +You should have received a copy of the 3-Clause BSD +License along with this program. See . If not, see + -- 2.51.0