This repository has been archived by the owner on Jun 30, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 91
/
README
75 lines (54 loc) · 3.47 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|/
|\ISS https://k1ss.org
________________________________________________________________________________
Community Repository
________________________________________________________________________________
The community repository for KISS Linux.
Documentation
________________________________________________________________________________
- https://k1ss.org/package-system
- https://k1ss.org/package-manager
- https://k1ss.org/wiki/kiss/style-guide
- https://k1ss.org/software
Maintenance
________________________________________________________________________________
KISS follows a maintainer model when it comes to package ownership. Only the
maintainer of a package has the ability to push changes to said package. Any
issues must be reported to the maintainer directly.
The maintainer's details can be found via 'git log' or the 'kiss maintainer'
command. If the maintainer cannot be reached via email, open an issue in this
repository on GitHub.
If the maintainer does not respond within a reasonable amount of time, the
package will be orphaned and ownership will be given to someone else.
Submitting Pull Requests
________________________________________________________________________________
Pull requests should contain only a single package. This makes the review
process easier and allows for individual packages to be merged without waiting
on reviews for others.
Please fill out the pull request template as well.
Commit Style
________________________________________________________________________________
Contributions to this repository should adhere to the following commit style.
+------------------------------------------------------------------------------+
| Adding a new package |
+------------------------------------------------------------------------------+
| |
| $ git commit -m "pkg_name: new package at pkg_version" |
| |
+------------------------------------------------------------------------------+
| Updating an existing package |
+------------------------------------------------------------------------------+
| |
| $ git commit -m "pkg_name: pkg_version" |
| $ git commit -m "pkg_name: bumped to pkg_version" |
| |
+------------------------------------------------------------------------------+
| Miscellaneous changes |
+------------------------------------------------------------------------------+
| |
| $ git commit -m "pkg_name: other changes" |
| $ git commit -m "pkg_name: added missing dep_name dependency" |
| $ git commit -m "pkg_name: fixed incorrect bin dir" |
| $ git commit -m "pkg_name: fixed build failure ..." |
| |
+------------------------------------------------------------------------------+