-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README, issue templates, license, output some status data etc. (#292)
* Use rpmlintrc (#287) * Add comment to rpmlintrc (#288) * [rpmlintrc] Improve and beautify formatting (#289) * [rpmlintrc] Improve wording in comment (#290) * Improve harbour-storeman-installer.rpmlintrc (#291) * Post release version increase * Update LICENSE * Update LICENSE * Update license * Update LICENSE * Update LICENSE * Update LICENSE * Update LICENSE * Update README.md * Update LICENSE * Change from `armv7hl` to `i486` … … see sailfishos-patches/patchmanager#417 (comment) * Define (S)RPM compression sensibly, … … see sailfishos-patches/patchmanager#417 (comment) * Use `%if 0%{?_chum}` to enable Chum metadata … … conditionally, see sailfishos-chum/sailfishos-chum-gui#149 (comment) * Instruct reporters to upload log-file * Instruct reporters to upload log-file * Add `#readme` to link * Fix copy'os and enhance a bit * Rectify copy'o * Straighten convoluted sentence * Enhance legibility * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Output some status data, first * Raise source compression to default value * Adapt to Storeman, because missed
- Loading branch information
Showing
8 changed files
with
552 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,36 @@ | ||
# References: An exceptionally comprehensive example rpmlintrc file | ||
# https://github.com/coreos/tectonic-rpms/blob/master/rpmlint-config | ||
# but adheres to the old syntax, not the new TOML one: https://toml.io/en/ | ||
# See also https://fedoraproject.org/wiki/Common_Rpmlint_issues and | ||
# https://en.opensuse.org/openSUSE:Packaging_checks#Building_Packages_in_spite_of_errors | ||
|
||
# On behalf of Jolla's tar_git / SailfishOS-OBS: | ||
# - It re-writes the DistURL, rendering it inconsistent | ||
addFilter('invalid-url DistURL obs:') | ||
# - It has a limited list of FLOSS-licenses, most SDPX-IDs are missing | ||
addFilter('invalid-license') | ||
# - It extracts strange changelog entries out of Git, if a %%changelog section is used | ||
addFilter('incoherent-version-in-changelog') | ||
# - It sometimes re-writes the %version-%release strings of package names, | ||
# when referencing (only) a branch (i.e., not a git tag), for example, | ||
# 0.5.2-1 to 0.5.2+main.20230129011931.1.g584263a-1.8.1.jolla | ||
addFilter('filename-too-long-for-joliet') | ||
|
||
# On behalf of the SailfishOS:Chum specification: | ||
# - which re-uses the spec file tag "Url:" | ||
addFilter('tag-in-description Url:') | ||
# - which also re-uses the spec file tag "Icon:" | ||
addFilter('tag-in-description Icon:') | ||
# - which makes one easily do | ||
addFilter('description-line-too-long') | ||
setBadness('description-line-too-long', 0) | ||
|
||
# On our own behalf: | ||
# - This is how it ought to be | ||
addFilter('non-standard-gid /usr/bin/.* ssu') | ||
# - So is this: We shall not be executable by everyone, only the root user and the group ssu | ||
addFilter('non-standard-executable-perm /usr/bin/.* 754') | ||
setBadness('non-standard-executable-perm', 0) | ||
# - This is also how it ought to be: It is in a comment! | ||
addFilter('dangerous-command-in-%post rm') | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters