KISS Linux - Community Repository
 
 
 
 
Go to file
Pratham f2e61dca75
ci/woodpecker/push/woodpecker Pipeline was successful Details
pipewire: 1.0.0+0.4.16
2023-11-28 20:54:26 +05:30
.github meta: revamp (#1303) 2022-10-19 07:05:54 +02:00
community pipewire: 1.0.0+0.4.16 2023-11-28 20:54:26 +05:30
.woodpecker.yml .woodpecker.yml: fix parse error 2023-08-12 12:25:07 +01:00
LICENSE LICENSE: update year, owner 2022-01-06 02:22:55 -05:00
MOTD inih: rename from libinih (#1419) 2023-03-03 07:03:40 +00:00
README meta: revamp (#1303) 2022-10-19 07:05:54 +02:00

README

|/
|\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
- https://kisscommunity.bvnf.space/kiss/style-guide


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 Codeberg.

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 ..."                        |
|                                                                              |
+------------------------------------------------------------------------------+