Add 0BSD license
This commit is contained in:
parent
f623ad955d
commit
beea35ddf7
4 changed files with 48 additions and 23 deletions
32
LICENSE
32
LICENSE
|
@ -1,21 +1,15 @@
|
||||||
The MIT License (MIT)
|
Copyright (C) 2023 by 0x1eef <0x1eef@protonmail.com>
|
||||||
|
|
||||||
Copyright (c) 2017 Thomas Hurst
|
Permission to use, copy, modify, and/or distribute this
|
||||||
|
software for any purpose with or without fee is hereby
|
||||||
|
granted.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
|
||||||
in the Software without restriction, including without limitation the rights
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT,
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER
|
||||||
furnished to do so, subject to the following conditions:
|
RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
||||||
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
|
||||||
The above copyright notice and this permission notice shall be included in
|
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||||
all copies or substantial portions of the Software.
|
OF THIS SOFTWARE.
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
||||||
|
|
21
LICENSE.ruby-capsicum
Normal file
21
LICENSE.ruby-capsicum
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
The MIT License (MIT)
|
||||||
|
|
||||||
|
Copyright (c) 2017 Thomas Hurst
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in
|
||||||
|
all copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||||
|
THE SOFTWARE.
|
14
README.md
14
README.md
|
@ -133,5 +133,15 @@ bsdcapsicum.rb is available via rubygems.org:
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
|
bsdcapsicum.rb
|
||||||
|
<br>
|
||||||
|
[BSD Zero Clause](https://choosealicense.com/licenses/0bsd/)
|
||||||
|
<br>
|
||||||
|
See [LICENSE](./LICENSE)
|
||||||
|
<br><br>
|
||||||
|
ruby-capsicum
|
||||||
|
<br>
|
||||||
|
[Freaky/ruby-capsicum](https://github.com/Freaky/ruby-capsicum) is released
|
||||||
|
under the terms of the MIT license
|
||||||
|
<br>
|
||||||
|
See [LICENSE.ruby-capsicum](/.LICENSE-ruby-capsicum)
|
||||||
|
|
|
@ -11,8 +11,8 @@ Gem::Specification.new do |spec|
|
||||||
|
|
||||||
spec.summary = "Ruby bindings for FreeBSD's capsicum(4)"
|
spec.summary = "Ruby bindings for FreeBSD's capsicum(4)"
|
||||||
spec.homepage = "https://github.com/0x1eef/bsdcapsicum.rb"
|
spec.homepage = "https://github.com/0x1eef/bsdcapsicum.rb"
|
||||||
spec.license = "MIT"
|
spec.license = "0BSD"
|
||||||
spec.files = Dir["lib/*.rb", "lib/**/*.rb", "README.md", "LICENSE", "*.gemspec"]
|
spec.files = Dir["lib/*.rb", "lib/**/*.rb", "README.md", "LICENSE", "LICENSE.ruby-capsicum", "*.gemspec"]
|
||||||
spec.require_paths = ["lib"]
|
spec.require_paths = ["lib"]
|
||||||
|
|
||||||
spec.add_runtime_dependency "fiddle", "~> 1.1"
|
spec.add_runtime_dependency "fiddle", "~> 1.1"
|
||||||
|
|
Loading…
Reference in a new issue