Skip to content
Snippets Groups Projects
Verified Commit bd861c51 authored by David Runge's avatar David Runge :chipmunk:
Browse files

fix: Fix spelling errors


Signed-off-by: default avatarDavid Runge <dvzrv@archlinux.org>
parent cf4896a1
No related branches found
No related tags found
1 merge request!79Add various smaller improvements around dependencies and configuration
......@@ -20,7 +20,7 @@ namcap (3.4.1)
- Use .pc files from packages not matching ones from host system
- Use raw strings to disambiguate regular expressions
- Copy-edit wording of tags
- Fix import path scopeing in tests
- Fix import path scoping in tests
- Refresh licensing, author lists, testing tips, and other info in docs
- Reformat and lint entire codebase (via black & ruff)
......@@ -73,7 +73,7 @@ namcap (3.2.8)
- check for RELRO in ELF files (FS#26435)
- warn on use of undocumented makepkg functions (FS#43502)
- more robust parsing (FS#53161)
- packages can symlink to files in depenencies (FS#53282)
- packages can symlink to files in dependencies (FS#53282)
- warn on unstripped files (FS#27485)
- better file handling (FS#57193)
- FULL RELRO check
......
......@@ -54,7 +54,7 @@ class FHSRule(TarballRule):
name += "/"
# check for files in wrong dirs, directory itself will be
# catched by emptydirs rule
# caught by emptydirs rule
if name in forbidden_paths:
continue
bad_dirs = (name.startswith(dirname) for dirname in forbidden_paths)
......
......@@ -95,7 +95,7 @@ class PkgConfigDependenciesRule(TarballRule):
# Detect dependencies from pkg-config files
scanpcfiles(tar, pclist)
# Find the packages wich contain the pkg-config files
# Find the packages which contain the pkg-config files
dependlist, orphans = finddepends(pclist)
# Handle "no package associated" errors
......
......@@ -183,7 +183,7 @@ class SharedLibsRule(TarballRule):
]
)
# Hanle when a required soname does not provided by the associated package yet
# Handle when a required soname does not provided by the associated package yet
self.infos.extend(
[
("libdepends-missing-provides %s %s (%s)", (i, missing_provides[i], str(list(liblist[libdepends[i]]))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment