Skip to content

Commit 89e86f1

Browse files
committed
Standardize license file
Standardization in license documentation is important because, in addition to making it easy for humans to find this vital information, it allows machines to automate the process of license type determination, which is useful both for discovering suitable open source projects as well as checking open source license compliance. The open source license of this project is already stored in a standardized location in a dedicated license file. However, even though the project is licensed under a standardized open source license, additional text was added to the license file which offers the option to purchase an exception for proprietary use of the project. Even though this offer does not have any legal effect on the open source license, the presence of that text made it so that the open license type could not be identified with 100% confidence by machines (e.g., the Licensee Gem used by the GitHub website), which meant identification could only be made by a human carefully evaluating the license text. Since there is no need to place the exception offer in the license file, it can be moved to the readme, with the license file containing only the verbatim standardized open source license text. The result is that the project's open source license type can now be automatically identified, without making any change to the licensing.
1 parent 28a913d commit 89e86f1

File tree

2 files changed

+9
-17
lines changed

2 files changed

+9
-17
lines changed

LICENSE

+3-17
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,3 @@
1-
This file includes licensing information for Arduino_DebugUtils.
2-
3-
Copyright (c) 2018 ARDUINO SA (www.arduino.cc)
4-
5-
The software is released under the GNU General Public License, which covers the main body
6-
of the Arduino_DebugUtils code. The terms of this license can be found at:
7-
https://www.gnu.org/licenses/gpl-3.0.en.html
8-
9-
You can be released from the requirements of the above licenses by purchasing
10-
a commercial license. Buying such a license is mandatory if you want to modify or
11-
otherwise use the software for commercial activities involving the Arduino
12-
software without disclosing the source code of your own applications. To purchase
13-
a commercial license, send an email to [email protected]
14-
151
GNU GENERAL PUBLIC LICENSE
162
Version 3, 29 June 2007
173

@@ -645,8 +631,8 @@ to attach them to the start of each source file to most effectively
645631
state the exclusion of warranty; and each file should have at least
646632
the "copyright" line and a pointer to where the full notice is found.
647633

648-
Arduino_DebugUtils encapsulates functionality useful for debugging code via printf statements.
649-
Copyright (C) Arduino SA, 2019, Author: Alexander Entinger
634+
<one line to give the program's name and a brief idea of what it does.>
635+
Copyright (C) <year> <name of author>
650636

651637
This program is free software: you can redistribute it and/or modify
652638
it under the terms of the GNU General Public License as published by
@@ -666,7 +652,7 @@ Also add information on how to contact you by electronic and paper mail.
666652
If the program does terminal interaction, make it output a short
667653
notice like this when it starts in an interactive mode:
668654

669-
Arduino_DebugUtils Copyright (C) 2019, Arduino SA
655+
<program> Copyright (C) <year> <name of author>
670656
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
671657
This is free software, and you are welcome to redistribute it
672658
under certain conditions; type `show c' for details.

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -111,3 +111,9 @@ Debug.setDebugLevel(DBG_VERBOSE);
111111
int i = 0;
112112
DEBUG_VERBOSE("DBG_VERBOSE i = %d", i);
113113
```
114+
115+
# License
116+
117+
Arduino_DebugUtils is licensed under the GNU General Public License v3.0.
118+
119+
You can be released from the requirements of the above license by purchasing a commercial license. Buying such a license is mandatory if you want to modify or otherwise use the software for commercial activities involving the Arduino software without disclosing the source code of your own applications. To purchase a commercial license, send an email to [email protected]

0 commit comments

Comments
 (0)