Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dylanaraps/community
KISS - Community Repository (temporarily closed for maintenance)
https://github.com/dylanaraps/community
kiss-repo linux repository
Last synced: 11 days ago
JSON representation
KISS - Community Repository (temporarily closed for maintenance)
- Host: GitHub
- URL: https://github.com/dylanaraps/community
- Owner: dylanaraps
- License: mit
- Archived: true
- Created: 2019-08-23T06:18:43.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-06-26T22:19:03.000Z (over 3 years ago)
- Last Synced: 2024-08-02T15:47:02.274Z (4 months ago)
- Topics: kiss-repo, linux, repository
- Language: Shell
- Homepage: https://k1ss.org
- Size: 2.57 MB
- Stars: 108
- Watchers: 16
- Forks: 89
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: LICENSE
Awesome Lists containing this project
README
|/
|\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/softwareMaintenance
________________________________________________________________________________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 ..." |
| |
+------------------------------------------------------------------------------+