Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
pkg ________________________________________________________________________________ Personal Kiss Linux repo. Documentation ________________________________________________________________________________ - https://kisslinux.github.io/package-system - https://kisslinux.github.io/package-manager - https://kisscommunity.bvnf.space/kiss/style-guide 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. 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 ..." | | | +------------------------------------------------------------------------------+