[Git][qa/jenkins.debian.net][master] fix some spelling mistakes found by spellintian

Holger Levsen (@holger) gitlab at salsa.debian.org
Thu Jan 4 15:07:45 GMT 2024



Holger Levsen pushed to branch master at Debian QA / jenkins.debian.net


Commits:
3fbd6ed7 by Holger Levsen at 2024-01-04T16:07:28+01:00
fix some spelling mistakes found by spellintian

Signed-off-by: Holger Levsen <holger at layer-acht.org>

- - - - -


8 changed files:

- README
- README.builtin-pho-db+buildinfos.d.n
- README.development
- README.infrastructure
- TODO.legacy
- bin/djm
- bin/find_dpkg_trigger_cycles.sh
- update_jdn.sh


Changes:

=====================================
README
=====================================
@@ -149,7 +149,7 @@ Installation tests inside chroot environments.
 
 * There are suite specific jobs to create the pbuilder base.tgz's per suite, which have the reproducible apt repo added. Similarly there's another job per suite to create the schroots used by the builder jobs to download the packages sources to build.
 
-* Then there are two more jobs to create sid and testing schroots to run diffoscope on the the two results. This is necessary since to investigate haskell binaries, diffoscope needs access to the same haskell compiler version as the investigated packages have been built with.
+* Then there are two more jobs to create sid and testing schroots to run diffoscope on the two results. This is necessary since to investigate haskell binaries, diffoscope needs access to the same haskell compiler version as the investigated packages have been built with.
 
 * For making sure things are considerably under control at any time, there is a maintenance job running every 3h, mostly doing cleanups.
 


=====================================
README.builtin-pho-db+buildinfos.d.n
=====================================
@@ -18,7 +18,7 @@ ftp-master.debian.org in a postgresql database.
 
 buildinfos.debian.net is an attempt to make the files from
 /srv/ftp-master.debian.org/buildinfo/ on coccia.debian.org
-accessable to the world.
+accessible to the world.
 
 === builtin=pho initial setup
 


=====================================
README.development
=====================================
@@ -90,7 +90,7 @@ This script construct pages that contain notes about the ongoing status and caus
 First, clone the notes git repo:
 git clone https://salsa.debian.org/reproducible-builds/reproducible-notes
 
-Create symlinks for the the files *packages.yml* and *issues.yml* in your $JENKINSGIT/bin/ directory.
+Create symlinks for the files *packages.yml* and *issues.yml* in your $JENKINSGIT/bin/ directory.
 
 // vim: set filetype=asciidoc:
 


=====================================
README.infrastructure
=====================================
@@ -102,7 +102,7 @@ interacts with screen. "cereal l" lists the available systems, and
 "cereal f XXX" would connect to "XXX" and tail it's console logs.
 
 
-There are now some virtual machine host servers running running armhf
+There are now some virtual machine host servers running armhf
 nodes as virtual machines. Vagrant, Holger and Mattia have access to
 the host server.
 


=====================================
TODO.legacy
=====================================
@@ -285,7 +285,7 @@ Go to
 <http://www.gnu.org/software/guix/manual/html_node/Binary-Installation.html>,
 grab the tarball and follow the instructions there.
 
-*Source instalation:
+*Source installation:
 
 First make sure you have the dependencies mentioned at
 <http://www.gnu.org/software/guix/manual/guix.html#Requirements> installed.
@@ -316,7 +316,7 @@ correctly, Guix is ready for work.
 
 * d-i_check_jobs.sh: check for removed manuals (but with existing jobs) missing
 * svn:trunk/manual/po triggers the full build, should trigger language specific builds.
-* svn:trunk/manual is all thats needed, not whole svn:trunk
+* svn:trunk/manual is all that's needed, not whole svn:trunk
 
 === d-i_build*
 


=====================================
bin/djm
=====================================
@@ -155,9 +155,9 @@ if [ -z "$MODE" ] ; then
 fi
 
 show_help(){
-	seperator "="
+	separator "="
 	djm_header
-	seperator "="
+	separator "="
 	echo
 	echo "djm				shows report (and sometimes fetches remote data)"
 	echo "djm -d/--dry-run *		will not actually do *"
@@ -201,7 +201,7 @@ show_help(){
 	echo "          su=security updates"
 	echo
 	if [ -n "$1" ] ; then
-		seperator
+		separator
 		echo
 		echo Problem parsing parameters:
 		echo "TARGET = $1"
@@ -281,7 +281,7 @@ djm_header() {
 	echo "      so expect changes for some time."
 }
 
-seperator() {
+separator() {
 	local CHAR="${1:--}"
 	for i in $(seq 1 79) ; do
 		echo -n "$CHAR"
@@ -370,28 +370,28 @@ djm_report() {
 	done
 	rm $TMP_WORKLOG
 	HOURS=$(cut -b 1-13 $TMP_LOGFILE | sort -u | wc -l)
-	# create sorted list of actions/reasons (sorted by amount of occurances)
-	#  the character '%" is solely used as a delimeter for cut later
+	# create sorted list of actions/reasons (sorted by amount of occurrences)
+	#  the character '%" is solely used as a delimiter for cut later
 	#  the character '=' is added so later we can use a for-loop without dealing with $IFS
 	ACTIONS=$(cut -d ',' -f3 $TMP_LOGFILE | sort | sed 's#^#%#g'| uniq -c | sort -nr | cut -d '%' -f2| sed -s "s# #=#g")
 	REASONS=$(cut -d ',' -f4 $TMP_LOGFILE | sort | sed 's#^#%#g'| uniq -c | sort -nr | cut -d '%' -f2| sed -s "s# #=#g")
 
-	seperator "="
+	separator "="
 	echo "Still very simple statistics for djm logs:"
 	echo " - $LOCAL_LOGFILE"
 	echo " - $UI_LOGFILE"
 	echo
 	djm_header
-	seperator "="
+	separator "="
 	printf "$TWO_C" "month:" "$LOGMONTH"
-	seperator
+	separator
 	printf "$TWO_C" "djm actions:" "$TOTAL_ACTIONS"
 	printf "$TWO_C" "hosts maintained:" "$HOSTS"
 	printf "$TWO_C" "jenkins jobs maintained:" "$(cat $JOBS)"
-	seperator
+	separator
 	printf "$TWO_C" "hours with djm usage:" "${HOURS}"
 	printf "$TWO_C" "hours worked:" "${TOTAL_HOURS}"
-	seperator "="
+	separator "="
 
 	printf "$ONE_C" "actions:"
 	printf "$ONE_C" "--------"
@@ -401,7 +401,7 @@ djm_report() {
 		PERCENT=$((200*$AMOUNT/$TOTAL_ACTIONS % 2 + 100*$AMOUNT/$TOTAL_ACTIONS))
 		printf "$THREE_C" "$grep_action:" "$PERCENT%" "($AMOUNT / $TOTAL_ACTIONS)"
 	done
-	seperator "="
+	separator "="
 
 	printf "$ONE_C" "reasons:"
 	printf "$ONE_C" "--------"
@@ -411,7 +411,7 @@ djm_report() {
 		PERCENT=$((200*$AMOUNT/$TOTAL_ACTIONS % 2 + 100*$AMOUNT/$TOTAL_ACTIONS))
 		printf "$THREE_C" "$grep_reason:" "$PERCENT%" "($AMOUNT / $TOTAL_ACTIONS)"
 	done
-	seperator "="
+	separator "="
 
 	#
 	# statistics about jenkins jobs
@@ -431,7 +431,7 @@ djm_report() {
 		done
 	) | sort -n -r
 
-	seperator "="
+	separator "="
 	rm $TMP_LOGFILE
 }
 
@@ -703,7 +703,7 @@ show_fixmes() {
 		echo
 	fi
 	rm -f $TMPFILE
-	seperator
+	separator
 }
 
 djm_finish() {


=====================================
bin/find_dpkg_trigger_cycles.sh
=====================================
@@ -282,7 +282,7 @@ cat $DIRECTORY/interested-file | while read pkg ttype ipath; do
 		| awk '/^package:/ { print $2 }' \
 		| while read dep; do
 			[ "$pkg" != "$dep" ] || continue
-			# using the space as sed delimeter because ipath has slashes
+			# using the space as sed delimiter because ipath has slashes
 			# a space should work because neither package names nor paths have them
 			sed -ne "s ^$dep\s\+activate\(-await\)\?\s\+\($ipath.*\) \2 p" $DIRECTORY/activated-file | while read cpath; do
 				echo "$pkg $ipath $dep $cpath"


=====================================
update_jdn.sh
=====================================
@@ -623,7 +623,7 @@ if [ -f /etc/debian_version ] ; then
 		$UP2DATE || sudo apt-get install $DEBS $MASTERDEBS
 		# for varying kernels:
 		# - we use bpo kernels on osuosl2 and ionos5+15 (and the default amd64 kernel on ionos6+16-i386)
-		# - this is done as a seperate step as bpo kernels are frequently uninstallable when upgraded on bpo
+		# - this is done as a separate step as bpo kernels are frequently uninstallable when upgraded on bpo
 		if [ "$HOSTNAME" = "ionos5-amd64" ] || [ "$HOSTNAME" = "ionos15-amd64" ] \
 			|| [ "$HOSTNAME" = "osuosl2-amd64" ] \
 			|| [ "$HOSTNAME" = "jenkins" ] ; then



View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/commit/3fbd6ed7ea77ae563da11c99e3ca94637119d7a0

-- 
View it on GitLab: https://salsa.debian.org/qa/jenkins.debian.net/-/commit/3fbd6ed7ea77ae563da11c99e3ca94637119d7a0
You're receiving this email because of your account on salsa.debian.org.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/qa-jenkins-scm/attachments/20240104/7983c961/attachment-0001.htm>


More information about the Qa-jenkins-scm mailing list