@hviana/sema 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTING.md +92 -10
- package/LICENSE.md +2 -2
- package/package.json +1 -1
package/CONTRIBUTING.md
CHANGED
|
@@ -1,15 +1,97 @@
|
|
|
1
|
-
# Contributing
|
|
1
|
+
# Contributing to Sema
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
Thank you for your interest in contributing to Sema.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
1.0.0;
|
|
9
|
-
- this project is source-available, not formally open source;
|
|
10
|
-
- commercial use requires a separate paid license;
|
|
11
|
-
- you will not submit secrets, credentials, private keys, or confidential data.
|
|
5
|
+
Sema is source-available software distributed publicly under the PolyForm
|
|
6
|
+
Noncommercial License 1.0.0. Commercial use requires a separate commercial
|
|
7
|
+
license from the Sema licensor.
|
|
12
8
|
|
|
13
|
-
|
|
9
|
+
## Contributor representations
|
|
14
10
|
|
|
11
|
+
By submitting a contribution to Sema, you represent that:
|
|
12
|
+
|
|
13
|
+
- you created the contribution or otherwise have the legal right to submit it
|
|
14
|
+
under these terms;
|
|
15
|
+
- the contribution does not knowingly violate any copyright, patent, trade
|
|
16
|
+
secret, contractual obligation, or other third-party right;
|
|
17
|
+
- you have obtained any authorization required from your employer or another
|
|
18
|
+
rights holder;
|
|
19
|
+
- you have clearly identified any third-party material included in the
|
|
20
|
+
contribution and provided its applicable license and copyright notices;
|
|
21
|
+
- the contribution does not contain secrets, credentials, private keys,
|
|
22
|
+
confidential information, or unlawfully obtained material;
|
|
23
|
+
- if the contribution was created with the assistance of an artificial
|
|
24
|
+
intelligence system, you have reviewed it and remain responsible for its
|
|
25
|
+
origin, legality, correctness, and compliance with these terms.
|
|
26
|
+
|
|
27
|
+
## Contribution license grant
|
|
28
|
+
|
|
29
|
+
You retain ownership of the copyright in your contribution.
|
|
30
|
+
|
|
31
|
+
By intentionally submitting a contribution for inclusion in Sema, you grant
|
|
32
|
+
Henrique Viana, as the author, copyright holder, and licensor of Sema, and his
|
|
33
|
+
successors and assigns, a worldwide, perpetual, irrevocable, non-exclusive,
|
|
34
|
+
royalty-free, transferable, and sublicensable license to:
|
|
35
|
+
|
|
36
|
+
- use, reproduce, modify, adapt, and prepare derivative works from the
|
|
37
|
+
contribution;
|
|
38
|
+
- combine the contribution with Sema or other materials;
|
|
39
|
+
- publicly display, publicly perform, distribute, make available, host, and
|
|
40
|
+
otherwise exploit the contribution;
|
|
41
|
+
- offer, license, and sublicense the contribution as part of Sema under the
|
|
42
|
+
PolyForm Noncommercial License 1.0.0;
|
|
43
|
+
- offer, license, and sublicense the contribution as part of commercial,
|
|
44
|
+
proprietary, source-available, or other versions of Sema;
|
|
45
|
+
- relicense the contribution as part of Sema under current or future licensing
|
|
46
|
+
terms.
|
|
47
|
+
|
|
48
|
+
This license grant does not transfer ownership of your contribution to Henrique
|
|
49
|
+
Viana. You remain free to use and license your original contribution
|
|
50
|
+
independently, provided that doing so does not violate rights belonging to Sema
|
|
51
|
+
or to third parties.
|
|
52
|
+
|
|
53
|
+
## Patent license
|
|
54
|
+
|
|
55
|
+
To the extent that you own or control patent claims necessarily infringed by
|
|
56
|
+
your contribution, you grant Henrique Viana, his successors and assigns, and
|
|
57
|
+
recipients of Sema a worldwide, perpetual, irrevocable, non-exclusive,
|
|
58
|
+
royalty-free, transferable, and sublicensable patent license to make, use, sell,
|
|
59
|
+
offer for sale, import, and otherwise exploit your contribution as part of Sema.
|
|
60
|
+
|
|
61
|
+
This patent license terminates for any party that initiates patent litigation
|
|
62
|
+
alleging that Sema or a contribution incorporated into Sema infringes a patent.
|
|
63
|
+
|
|
64
|
+
## No obligation to accept contributions
|
|
65
|
+
|
|
66
|
+
Submitting a contribution does not guarantee that it will be accepted, merged,
|
|
67
|
+
published, maintained, or included in any public or commercial version of Sema.
|
|
68
|
+
|
|
69
|
+
The project maintainer may modify, reject, remove, or replace an accepted
|
|
70
|
+
contribution.
|
|
71
|
+
|
|
72
|
+
## Developer Certificate of Origin
|
|
73
|
+
|
|
74
|
+
All commits must include a Developer Certificate of Origin sign-off:
|
|
75
|
+
|
|
76
|
+
```bash
|
|
15
77
|
git commit -s
|
|
78
|
+
```
|
|
79
|
+
|
|
80
|
+
The sign-off must use your real name and an email address you are authorized to
|
|
81
|
+
use:
|
|
82
|
+
|
|
83
|
+
```text
|
|
84
|
+
Signed-off-by: Your Name <your.email@example.com>
|
|
85
|
+
```
|
|
86
|
+
|
|
87
|
+
The sign-off certifies the origin and authorization of each commit. It does not
|
|
88
|
+
replace the contribution license grant described in this document.
|
|
89
|
+
|
|
90
|
+
## Acceptance
|
|
91
|
+
|
|
92
|
+
By opening or submitting a pull request, patch, or other contribution intended
|
|
93
|
+
for inclusion in Sema, you confirm that you have read and agree to these
|
|
94
|
+
contribution terms.
|
|
95
|
+
|
|
96
|
+
Contributions submitted on behalf of a company or another organization must be
|
|
97
|
+
authorized by the applicable rights holder.
|
package/LICENSE.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
<https://polyformproject.org/licenses/noncommercial/1.0.0>
|
|
4
4
|
|
|
5
|
-
> Required Notice: Copyright
|
|
6
|
-
> Reis
|
|
5
|
+
> Required Notice: Copyright © Henrique Viana (author). Marcelo Oliveira dos
|
|
6
|
+
> Reis and Rogerio Nascimento (supporters).
|
|
7
7
|
|
|
8
8
|
## Acceptance
|
|
9
9
|
|