[projects/pld-builder.new] typo fixes across the tree
arekm
arekm at pld-linux.org
Wed Aug 12 11:46:11 CEST 2026
commit 88fcbf42828be1994192ca0671cfe5e112348ded
Author: Arkadiusz Miśkiewicz <arekm at maven.pl>
Date: Wed Aug 12 10:10:09 2026 +0200
typo fixes across the tree
Spelling only, no semantic changes. "SKIPED" stays startswith("SKIP")-compatible.
PLD_Builder/acl.py | 2 +-
PLD_Builder/build.py | 2 +-
PLD_Builder/install.py | 2 +-
PLD_Builder/load_balancer.py | 2 +-
PLD_Builder/rpm_builder.py | 2 +-
client/kde4send2builders.sh | 2 +-
client/make-request.sh | 6 +++---
client/rebuild-kernel-packages.py | 6 +++---
config/builder.conf.dist | 2 +-
doc/ARCHITECTURE | 4 ++--
doc/HISTORY_AND_FUTURE | 4 ++--
doc/README | 4 ++--
doc/README.bin-builder | 4 ++--
doc/TODO | 4 ++--
doc/jak-to-dziala.txt | 6 +++---
doc/jak-wysylac-zlecenia.txt | 2 +-
doc/user-manual.txt | 18 +++++++++---------
17 files changed, 36 insertions(+), 36 deletions(-)
---
diff --git a/PLD_Builder/acl.py b/PLD_Builder/acl.py
index 70faf1e..db56904 100644
--- a/PLD_Builder/acl.py
+++ b/PLD_Builder/acl.py
@@ -116,7 +116,7 @@ class ACL_Conf:
user = User(p, login)
for e in user.gpg_emails:
if e in self.users:
- log.panic("acl: user email colision %s <-> %s" % \
+ log.panic("acl: user email collision %s <-> %s" % \
(self.users[e].login, login))
else:
self.users[e] = user
diff --git a/PLD_Builder/build.py b/PLD_Builder/build.py
index 22b4255..dd6744f 100644
--- a/PLD_Builder/build.py
+++ b/PLD_Builder/build.py
@@ -110,7 +110,7 @@ def build_all(r, build_fnc):
buildlogs.add(batch.logfile, failed = batch.build_failed, id=r.id)
else:
batch.build_failed = 1
- batch.skip_reason = "SKIPED [%s failed]" % failed_dep
+ batch.skip_reason = "SKIPPED [%s failed]" % failed_dep
batch.logfile = None
batch.build_time = ""
log.notice("building %s %s" % (batch.spec, batch.skip_reason))
diff --git a/PLD_Builder/install.py b/PLD_Builder/install.py
index a258b96..36f5da6 100644
--- a/PLD_Builder/install.py
+++ b/PLD_Builder/install.py
@@ -74,7 +74,7 @@ def upgrade_from_batch(r, b):
b.log_line("package removal failed")
return False
else:
- b.log_line("packages removed sucessfuly")
+ b.log_line("packages removed successfully")
else:
b.log_line("upgrade would need removal of %s" % k)
return False
diff --git a/PLD_Builder/load_balancer.py b/PLD_Builder/load_balancer.py
index 459034b..59abcde 100644
--- a/PLD_Builder/load_balancer.py
+++ b/PLD_Builder/load_balancer.py
@@ -62,7 +62,7 @@ def main():
init_conf()
for b in builders_order():
run_rpm_builder(b)
- # give builder some time to aquire lock
+ # give builder some time to acquire lock
time.sleep(1)
# wait for children to die out
try:
diff --git a/PLD_Builder/rpm_builder.py b/PLD_Builder/rpm_builder.py
index e5c8ddb..8f4fdb2 100644
--- a/PLD_Builder/rpm_builder.py
+++ b/PLD_Builder/rpm_builder.py
@@ -157,7 +157,7 @@ def prepare_env(logfile = None):
# need entry for "/" in mtab, for diskspace() to work in rpm
[ -z $(awk '$2 == "/" {print $1; exit}' /etc/mtab) ] && echo "Missing rootfs entry in /etc/mtab"
- # make neccessary files readable for builder user
+ # make necessary files readable for builder user
# TODO: see if they really aren't readable for builder
for db in Packages Name Basenames Providename Pubkeys; do
db=/var/lib/rpm/$db
diff --git a/client/kde4send2builders.sh b/client/kde4send2builders.sh
index 2220c94..24ca6f9 100755
--- a/client/kde4send2builders.sh
+++ b/client/kde4send2builders.sh
@@ -94,7 +94,7 @@ while [ $# -gt 0 ]; do
;;
-* )
- die "Unknow option: $1"
+ die "Unknown option: $1"
;;
*:* | * )
diff --git a/client/make-request.sh b/client/make-request.sh
index 7e21e14..a82da0e 100755
--- a/client/make-request.sh
+++ b/client/make-request.sh
@@ -62,7 +62,7 @@ if [ -f "$USER_CFG" ]; then
fi
fi
-# internal options, not to be overriden
+# internal options, not to be overridden
specs=
df_fetch=no
upgrade_macros=no
@@ -284,7 +284,7 @@ Mandatory arguments to long options are mandatory for short options too.
Performs a 'test-build'. Package will be uploaded to hidden .test-builds/
ftp tree and won't be upgraded on builders.
-r, --ready-build
- Preforms a 'ready' build. Package will be built and uploaded to test/ ftp tree
+ Performs a 'ready' build. Package will be built and uploaded to test/ ftp tree
(and later moved by release manager staff to ready/ and main ftp tree)
-u, --upgrade
Forces package upgrade (for use with -c or -q, not -t)
@@ -333,7 +333,7 @@ Mandatory arguments to long options are mandatory for short options too.
sets request priority (default 2)
-w SECONDS
Wait SECONDS before sending actual request. Note: gpg passphrase is still asked immediately.
- This may be useful if you just commited package and want to send it
+ This may be useful if you just committed package and want to send it
for test build after distfiles has fetched the file.
-h, --help
Displays this help message
diff --git a/client/rebuild-kernel-packages.py b/client/rebuild-kernel-packages.py
index a724c83..69c3fc1 100755
--- a/client/rebuild-kernel-packages.py
+++ b/client/rebuild-kernel-packages.py
@@ -108,7 +108,7 @@ def fetch_package(name, spec, branch, verbose=False):
def csv_list(string):
return string.split(',')
-# TDOD: convert this to key function
+# TODO: convert this to key function
# https://docs.python.org/3/library/stdtypes.html#list.sort
def kernel_cmp(x, y):
x = x.split('.')
@@ -190,7 +190,7 @@ def main():
for kernel_list in packages.values():
all_kernels.update(kernel_list)
all_kernels = list(all_kernels)
- # TDOD: convert this to key function
+ # TODO: convert this to key function
# https://docs.python.org/3/library/stdtypes.html#list.sort
all_kernels.sort(key=functools.cmp_to_key(kernel_cmp), reverse=True)
for kernel in all_kernels:
@@ -237,7 +237,7 @@ def main():
if not args.head:
tag = get_last_tag(name, spec, branch, dist=args.dist, verbose=args.verbose)
if not tag:
- print("Failed getching last autotag for %s!" % pkg)
+ print("Failed fetching last autotag for %s!" % pkg)
continue
spec = '%s:%s' % (spec, tag)
command = ("%s -nd %s -d %s --define 'build_kernels %s' --without userspace %s" %
diff --git a/config/builder.conf.dist b/config/builder.conf.dist
index eeabaa7..6f695c5 100644
--- a/config/builder.conf.dist
+++ b/config/builder.conf.dist
@@ -35,7 +35,7 @@ max_keep_time = 168
request_handler_server_port = 1234
# Send '*.uploadinfo' files along with built rpms (used by pld-ftp-admin), but
-# probably not usefull for small, 'personal' builders. [yes/no]
+# probably not useful for small, 'personal' builders. [yes/no]
gen_upinfo = yes
# CIA bot (see cia.navi.cx).
diff --git a/doc/ARCHITECTURE b/doc/ARCHITECTURE
index 7bcbcef..49fb0e1 100644
--- a/doc/ARCHITECTURE
+++ b/doc/ARCHITECTURE
@@ -56,7 +56,7 @@ Main task: sending build requests to source builders.
This is the simplest part. It consists of a shell script (make-request.sh),
which, based on the way it's configured and on the cmdline parameters given to
-it, generates an xml-formated build request, which it then signs with the
+it, generates an xml-formatted build request, which it then signs with the
requester's PGP key (using the gpg utility) and then sends it to the source
builder via a sendmail compatible command line application (by default invoking
"sendmail -t").
@@ -104,7 +104,7 @@ somewhere, most likely to our PLD buildlogs system
If the build procedure was successful, the resulting src.rpm file is most
likely uploaded somewhere (if configured to do so; in our case it's our FTP
server) and, what is most important, it's being served via a http server for
-the binary builders to download. An xml-formated (and pgp signed) 'queue.gz'
+the binary builders to download. An xml-formatted (and pgp signed) 'queue.gz'
and a small 'max_req_no' files are also updated with relevant information, in
order for the bin.builders to be able to notice new requests and figure out
which are addressed to which builders.
diff --git a/doc/HISTORY_AND_FUTURE b/doc/HISTORY_AND_FUTURE
index 88b5f5d..95d09da 100644
--- a/doc/HISTORY_AND_FUTURE
+++ b/doc/HISTORY_AND_FUTURE
@@ -97,9 +97,9 @@ What follows are the SQL queries used to create the database.
4.3 Summary Of Changes
-- Switch from using emails to xmlprc over https for any type of builder communication.
+- Switch from using emails to xmlrpc over https for any type of builder communication.
- Design a robust, extensible database for storing source builder metadata.
-- Alter the source builder to use that database as it's backend.
+- Alter the source builder to use that database as its backend.
- Write a (PHP based) web interface for manipulating data in the aforementioned database.
- Extend binary builders to take better advantage of source builder's new functionality.
diff --git a/doc/README b/doc/README
index cc9fb47..e5b86ba 100644
--- a/doc/README
+++ b/doc/README
@@ -34,8 +34,8 @@ Roadmap:
rpm-builder.sh <builder>
Run on binary builder.
- Tries to aquire locks for <builder> and for job-slot. If that suceeds,
- proccess one request from spool/queue-<builder>.
+ Tries to acquire locks for <builder> and for job-slot. If that succeeds,
+ process one request from spool/queue-<builder>.
load-balancer.sh
Run on binary builder.
diff --git a/doc/README.bin-builder b/doc/README.bin-builder
index c51dddd..4d5aee5 100644
--- a/doc/README.bin-builder
+++ b/doc/README.bin-builder
@@ -2,7 +2,7 @@ new bin builder setup
packages and chroot
~~~~~~~~~~~~~~~~~~~
-1. install pld-builder from th repoistory on target host
+1. install pld-builder from th repository on target host
2. create chroot /srv/chroot
(you can symlink to real dest for the sake of copy-paste from here)
@@ -15,7 +15,7 @@ ln -s /srv/chroot/var/lib/rpm /var/lib/rpm
install -d /srv/chroot/var/lib/rpm
rpm -r /srv/chroot --initdb
-therwise it's just:
+otherwise it's just:
rpm -r /srv/chroot --initdb
- install distro gpg key as default th config packages are signed and sign verify enabled in config:
diff --git a/doc/TODO b/doc/TODO
index 4af9ba7..f4da0cf 100644
--- a/doc/TODO
+++ b/doc/TODO
@@ -22,12 +22,12 @@
and jabber server forwards this to conference room.
Next step for such daemon would be to create second unix socket, where
- scripts log what thay are doing so, we can do things like tail on
+ scripts log what they are doing so, we can do things like tail on
current buildlog.
- add log.debug (log only with special options) to log.py, and use it
-- if magic comment found in spec: single-build -- aquire all job-slots
+- if magic comment found in spec: single-build -- acquire all job-slots
- allow blocking some packages
diff --git a/doc/jak-to-dziala.txt b/doc/jak-to-dziala.txt
index 4c2c9eb..9f2dfd5 100644
--- a/doc/jak-to-dziala.txt
+++ b/doc/jak-to-dziala.txt
@@ -3,14 +3,14 @@ srpm buildera.
2. Na koncie srpm buildera skrypt request_handler.py wołany z procmaila obsługuje
zlecenie.
- a) sprawdza podpis gpg, wyciąga wszystkie Good sinature from <...>
+ a) sprawdza podpis gpg, wyciąga wszystkie Good signature from <...>
jeśli brak -- wypad
b) szuka w swoim acl.conf czy osoba z Good signature from może robić
cokolwiek, w.p.p wypad
c) xml-parsuje zlecenie (request.py)
- i. jeśli jest to <notifcation ...>, sparawdza uprawnienie
+ i. jeśli jest to <notification ...>, sprawdza uprawnienie
notify:<builder>, i jeśli OK, to zmienia odpowiednio
- kolejkę spool/req_queue. Jeśli wszystki buildery
+ kolejkę spool/req_queue. Jeśli wszystkie buildery
zakończyły już budowanie danej grupy usuwane są src rpmy
z www/srpms/<group-id>/. Generuje stronę ze statystykami
(www/queue.html).
diff --git a/doc/jak-wysylac-zlecenia.txt b/doc/jak-wysylac-zlecenia.txt
index e771eb4..e6fdeba 100644
--- a/doc/jak-wysylac-zlecenia.txt
+++ b/doc/jak-wysylac-zlecenia.txt
@@ -37,7 +37,7 @@ Drugi to puszczenie w jednym zleceniu qt i kadu, przy czym jeśli budowanie
qt się wywróci, to automatyka nawet nie będzie próbowała budować kadu.
Ostatni przykład to puszczenie nasma tylko i wyłącznie na buildery x86
(th-i* rozwija się na to samo, co th-i?86). Zwracam uwagę, że przy
-listowaniu tych buidlerów trzeba je wycytować, żeby szły jako jeden
+listowaniu tych builderów trzeba je wycytować, żeby szły jako jeden
argument.
Każdy dostaje mailem informacje o zleceniach które wysyła (przy czym maile
diff --git a/doc/user-manual.txt b/doc/user-manual.txt
index 6b5791b..70c613f 100644
--- a/doc/user-manual.txt
+++ b/doc/user-manual.txt
@@ -2,9 +2,9 @@ Installation instructions.
1. Accounts
-Builder needs account for it's needs. Account should be shared for all builders,
+Builder needs account for its needs. Account should be shared for all builders,
which build binary packages on specified host. This allows for better
-resources managment (hint: variable job_slots in configuration).
+resources management (hint: variable job_slots in configuration).
However, SRPMS builder should use different account.
@@ -20,7 +20,7 @@ Both:
srpms_builder:
mail box + procmail
- posibillity to serve files via http
+ possibility to serve files via http
cvs connections
ftp or http connections (distfiles)
@@ -77,13 +77,13 @@ both: user builder
both: ~builder/rpm/{SPECS,SOURCES,RPMS,SRPMS,BUILD}
-srpms_build: additionally has to have SPECS and SOURCES checkouted from CVS
+srpms_build: additionally has to have SPECS and SOURCES checked out from CVS
in SPECS it has to have builder, additional-md5sum and mirrors
both: folders /spools/poldek/ /spools/ready/
Wszystko to robi automagicznie admin/install-chroot.sh
-All that stuff can be done automaticly with admin/install-chroot.sh.
+All that stuff can be done automagically with admin/install-chroot.sh.
[[...]]
@@ -125,21 +125,21 @@ srpms_builder:
|~/pld-builder.new/bin/request-handler.sh
:0
-!admin at somehere
+!admin at somewhere
bin_builder
:0
-!admin at somwhere
+!admin at somewhere
102. httpd
-Directory ~/pld-builder.new/www/, in srpm_builder account, have to be accessibble
+Directory ~/pld-builder.new/www/, in srpm_builder account, have to be accessible
via http (control_url in bin_builder configuration)
103. src builder
-Automat can send informaction (notify) between bin-builders and src-builders
+Automat can send information (notify) between bin-builders and src-builders
via e-mail or via http (POST METHOD).
To use HTTP POST, one should run (src_builder side):
================================================================
---- gitweb:
http://git.pld-linux.org/gitweb.cgi/projects/pld-builder.new.git/commitdiff/44916a7a9112928736ec2b65b4fa58a90bc5828c
More information about the pld-cvs-commit
mailing list