treewide: fix typos

Found via `codespell -q 3 -S "*.patch,*.po" -L acount,afile,distroname,parm,serie,synopsys`
This commit is contained in:
luzpaz
2025-01-23 09:16:21 -05:00
committed by Luz Paz
parent 81abef9745
commit 91a4766cef
41 changed files with 49 additions and 49 deletions

View File

@@ -4,7 +4,7 @@ set -e
BIN=$(readlink -f $(dirname $0))
if git rev-parse --is-inside-work-tree &>/dev/null; then
echo "Don't run this script inside a git reppository!"
echo "Don't run this script inside a git repository!"
exit 1
fi

View File

@@ -87,7 +87,7 @@ for SOURCE_PACKAGE in $(find "${SOURCES}/" -mindepth 1 -type d); do
CUR_PACKAGE_FILE=$(basename "${PACKAGE_SOURCE_FILE}")
for FILE in $(find "${SOURCE_PACKAGE}/" -type f); do
# don't test auxilliary files
# don't test auxiliary files
if [[ "${FILE}" = *.url ]] || [[ "${FILE}" = *.sha256 ]]; then
continue
fi

View File

@@ -108,7 +108,7 @@ else:
for event in events:
slotn[event.slot] = 0
# Acumulate information in this hash - meh
# Accumulate information in this hash - meh
data = {"previous_status": None, "isactive": False, "statuses": {}}
for status in ALL_STATUSES:
data["statuses"][status] = {"enabled": False, "count": 0, "start": 0.0, "total": 0.0}

View File

@@ -5,7 +5,7 @@
# This performs an automated scan with corrections to the packages feed to
# follow certain coding standards used in the project. Corrections are grouped
# by the subdirectory within the packages feed, and then commited.
# by the subdirectory within the packages feed, and then committed.
# Corrections made:
# PKG_VAR="$PKG_VAR stuff" -> PKG_VAR+=" stuff"

View File

@@ -100,7 +100,7 @@ check_for_update() {
# compare upstream with local version
if [ "${PKG_VERSION}" != "${upstream_latest_commit##*/}" ]; then
# get upstream tag informations
# get upstream tag information
if [ "${upstream_latest_tag}" != "null" ]; then
tag=" | TAG: ${upstream_latest_tag} (${upstream_latest_tag_date%T*})"
else