-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
License and version #14
Comments
So far I haven't bothered with version numbers. Is it possible for you to use a commit hash? Most files in the repository are ISC-licensed. A few are BSD-licensed or in the public domain. The two .proto files originate from Signal and are licensed under the AGPLv3. |
Thanks for checking back and your explanations!
The build system requires SemVer to which the hash can be optionally attached. The common choice for these kinds of situations would be "0.1.0". I would go with that if it does not underplay the maturity or history of the project. Please see also the file "build.zig.zon" for the version and "build.zig" for the build instructions (the rest are just NixOS dev files) in fleimgruber@a053cd5. I will open other issues for build related questions.
I analyzed using https://github.com/aboutcode-org/scancode-toolkit as an excuse for trying it out and it found these licenses:
So the set of all licenses per file is The files that have license 'None' above are:
Where all except config.h are "public domain". For those I would suggest an equivalent license from Public-domain-equivalent license, e.g. using ISC as well or using 0BSD. Same for config.h as I think you also meant for that to be public domain? For the .proto 'LicenseRef-scancode-unknown-license-reference' files I would copy the license file and change the license header of the files to reference that file. I would also include the other licenses with the naming convention from here. |
I will add a license to config.h and add a LICENSE file to document the licensing situation. So have your versioning and licensing issues been solved? I don't mind changing things but I'd rather not if it's not necessary. |
Yes, thanks, I will work with the LICENSE file you mentioned and with a 0.1.0 version. My plan is to prepare this properly and let someone from https://github.com/allyourcodebase review it. After that I would ask you for a final review if the result is ok with you.
Fair enough! |
Thanks for the package, I enjoyed using it a while ago!
I am working on compiling this package with an alternative build tool: https://ziglang.org/documentation/0.13.0/#Zig-Build-System.
For this purpose, I was asking myself what license and version number to use. Did you think about licensing and version numbering already?
The text was updated successfully, but these errors were encountered: