1
0
Fork
You've already forked community
0
KISS Linux - Community Repository
  • Shell 59.8%
  • Roff 39.7%
  • Clojure 0.2%
  • C 0.2%
  • Makefile 0.1%
Pratham b7fca2422c skalibs, cyrus-sasl, mpfr, gmp, libmpc, bkeymaps: remove duplicates ( #1300 )
Co-authored-by: git-bruh <e817509a-8ee9-4332-b0ad-3a6bdf9ab63f@aleeas.com>
Reviewed-on: kiss-community/community#1300 
2022年10月17日 12:46:10 +02:00
.github .github: add note in PR template 2022年10月05日 12:14:22 +05:30
community skalibs, cyrus-sasl, mpfr, gmp, libmpc, bkeymaps: remove duplicates ( #1300 ) 2022年10月17日 12:46:10 +02:00
.woodpecker.yml .woodpecker.yml: add CI 2022年09月27日 18:51:36 +05:30
LICENSE LICENSE: update year, owner 2022年01月06日 02:22:55 -05:00
README meta: import style-guide.txt from old wiki ( #1089 ) 2022年05月16日 13:06:16 +05:30
style-guide.txt meta: import style-guide.txt from old wiki ( #1089 ) 2022年05月16日 13:06:16 +05:30

|/
|\ISS LINUX https://kisslinux.org
________________________________________________________________________________
Community Repository
________________________________________________________________________________
The unofficial community repository for KISS Linux, maintained by the community.
Documentation
________________________________________________________________________________
- https://kisslinux.org/package-system
- https://kisslinux.org/package-manager
- style-guide.txt in this repository
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 ..." |
| |
+------------------------------------------------------------------------------+