[pacman-dev] [PATCH] libmakepkg: Add missing vim modelines

Eli Schwartz eschwartz93 at gmail.com
Sun Jan 8 06:03:15 UTC 2017


This conforms with the rest of the pacman codebase.

The modelines appear to have been mistakenly dropped when libmakepkg was
separated out into separate files from the original monolithic makepkg
script.

Signed-off-by: Eli Schwartz <eschwartz93 at gmail.com>
---
 scripts/libmakepkg/integrity.sh.in                      | 2 ++
 scripts/libmakepkg/integrity/generate_checksum.sh.in    | 2 ++
 scripts/libmakepkg/integrity/generate_signature.sh.in   | 2 ++
 scripts/libmakepkg/integrity/verify_checksum.sh.in      | 2 ++
 scripts/libmakepkg/integrity/verify_signature.sh.in     | 2 ++
 scripts/libmakepkg/lint_package.sh.in                   | 2 ++
 scripts/libmakepkg/lint_package/build_references.sh.in  | 2 ++
 scripts/libmakepkg/lint_package/dotfiles.sh.in          | 2 ++
 scripts/libmakepkg/lint_package/file_names.sh.in        | 2 ++
 scripts/libmakepkg/lint_package/missing_backup.sh.in    | 2 ++
 scripts/libmakepkg/lint_pkgbuild.sh.in                  | 2 ++
 scripts/libmakepkg/lint_pkgbuild/arch.sh.in             | 2 ++
 scripts/libmakepkg/lint_pkgbuild/backup.sh.in           | 2 ++
 scripts/libmakepkg/lint_pkgbuild/changelog.sh.in        | 2 ++
 scripts/libmakepkg/lint_pkgbuild/epoch.sh.in            | 2 ++
 scripts/libmakepkg/lint_pkgbuild/install.sh.in          | 2 ++
 scripts/libmakepkg/lint_pkgbuild/optdepends.sh.in       | 2 ++
 scripts/libmakepkg/lint_pkgbuild/options.sh.in          | 2 ++
 scripts/libmakepkg/lint_pkgbuild/package_function.sh.in | 2 ++
 scripts/libmakepkg/lint_pkgbuild/pkgbase.sh.in          | 2 ++
 scripts/libmakepkg/lint_pkgbuild/pkglist.sh.in          | 2 ++
 scripts/libmakepkg/lint_pkgbuild/pkgname.sh.in          | 2 ++
 scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in           | 2 ++
 scripts/libmakepkg/lint_pkgbuild/pkgver.sh.in           | 2 ++
 scripts/libmakepkg/lint_pkgbuild/provides.sh.in         | 2 ++
 scripts/libmakepkg/lint_pkgbuild/source.sh.in           | 2 ++
 scripts/libmakepkg/lint_pkgbuild/util.sh.in             | 2 ++
 scripts/libmakepkg/lint_pkgbuild/variable.sh.in         | 2 ++
 scripts/libmakepkg/source.sh.in                         | 2 ++
 scripts/libmakepkg/source/bzr.sh.in                     | 2 ++
 scripts/libmakepkg/source/file.sh.in                    | 2 ++
 scripts/libmakepkg/source/git.sh.in                     | 2 ++
 scripts/libmakepkg/source/hg.sh.in                      | 2 ++
 scripts/libmakepkg/source/local.sh.in                   | 2 ++
 scripts/libmakepkg/source/svn.sh.in                     | 2 ++
 scripts/libmakepkg/srcinfo.sh.in                        | 2 ++
 scripts/libmakepkg/tidy.sh.in                           | 2 ++
 scripts/libmakepkg/tidy/docs.sh.in                      | 2 ++
 scripts/libmakepkg/tidy/emptydirs.sh.in                 | 2 ++
 scripts/libmakepkg/tidy/libtool.sh.in                   | 2 ++
 scripts/libmakepkg/tidy/purge.sh.in                     | 2 ++
 scripts/libmakepkg/tidy/staticlibs.sh.in                | 2 ++
 scripts/libmakepkg/tidy/strip.sh.in                     | 2 ++
 scripts/libmakepkg/tidy/zipman.sh.in                    | 2 ++
 scripts/libmakepkg/util.sh.in                           | 2 ++
 scripts/libmakepkg/util/message.sh.in                   | 2 ++
 scripts/libmakepkg/util/option.sh.in                    | 2 ++
 scripts/libmakepkg/util/parseopts.sh.in                 | 2 ++
 scripts/libmakepkg/util/pkgbuild.sh.in                  | 2 ++
 scripts/libmakepkg/util/source.sh.in                    | 2 ++
 scripts/libmakepkg/util/util.sh.in                      | 2 ++
 51 files changed, 102 insertions(+)

diff --git a/scripts/libmakepkg/integrity.sh.in b/scripts/libmakepkg/integrity.sh.in
index 3a77ef16..68177884 100644
--- a/scripts/libmakepkg/integrity.sh.in
+++ b/scripts/libmakepkg/integrity.sh.in
@@ -43,3 +43,5 @@ check_source_integrity() {
 		check_pgpsigs "$@"
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/integrity/generate_checksum.sh.in b/scripts/libmakepkg/integrity/generate_checksum.sh.in
index 902a989e..35dbb7cc 100644
--- a/scripts/libmakepkg/integrity/generate_checksum.sh.in
+++ b/scripts/libmakepkg/integrity/generate_checksum.sh.in
@@ -100,3 +100,5 @@ generate_checksums() {
 		done
 	done
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/integrity/generate_signature.sh.in b/scripts/libmakepkg/integrity/generate_signature.sh.in
index 060ae344..732df131 100644
--- a/scripts/libmakepkg/integrity/generate_signature.sh.in
+++ b/scripts/libmakepkg/integrity/generate_signature.sh.in
@@ -47,3 +47,5 @@ create_signature() {
 		warning "$(gettext "Failed to sign package file.")"
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/integrity/verify_checksum.sh.in b/scripts/libmakepkg/integrity/verify_checksum.sh.in
index 1a11a082..b194b9fe 100644
--- a/scripts/libmakepkg/integrity/verify_checksum.sh.in
+++ b/scripts/libmakepkg/integrity/verify_checksum.sh.in
@@ -128,3 +128,5 @@ verify_integrity_sums() {
 		return 1
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/integrity/verify_signature.sh.in b/scripts/libmakepkg/integrity/verify_signature.sh.in
index b5577523..2f02b337 100644
--- a/scripts/libmakepkg/integrity/verify_signature.sh.in
+++ b/scripts/libmakepkg/integrity/verify_signature.sh.in
@@ -267,3 +267,5 @@ source_has_signatures() {
 	done
 	return 1
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_package.sh.in b/scripts/libmakepkg/lint_package.sh.in
index ff0894ec..5043dc24 100644
--- a/scripts/libmakepkg/lint_package.sh.in
+++ b/scripts/libmakepkg/lint_package.sh.in
@@ -46,3 +46,5 @@ lint_package() {
 	done
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_package/build_references.sh.in b/scripts/libmakepkg/lint_package/build_references.sh.in
index 9183fce9..29347d2e 100644
--- a/scripts/libmakepkg/lint_package/build_references.sh.in
+++ b/scripts/libmakepkg/lint_package/build_references.sh.in
@@ -39,3 +39,5 @@ warn_build_references() {
 	done
 	return 0
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_package/dotfiles.sh.in b/scripts/libmakepkg/lint_package/dotfiles.sh.in
index 9842028c..cf6ef749 100644
--- a/scripts/libmakepkg/lint_package/dotfiles.sh.in
+++ b/scripts/libmakepkg/lint_package/dotfiles.sh.in
@@ -36,3 +36,5 @@ check_dotfiles() {
 	done
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_package/file_names.sh.in b/scripts/libmakepkg/lint_package/file_names.sh.in
index 0b8e7a03..657489bd 100644
--- a/scripts/libmakepkg/lint_package/file_names.sh.in
+++ b/scripts/libmakepkg/lint_package/file_names.sh.in
@@ -40,3 +40,5 @@ lint_file_names() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_package/missing_backup.sh.in b/scripts/libmakepkg/lint_package/missing_backup.sh.in
index 934dd12f..bb2f3f3e 100644
--- a/scripts/libmakepkg/lint_package/missing_backup.sh.in
+++ b/scripts/libmakepkg/lint_package/missing_backup.sh.in
@@ -37,3 +37,5 @@ warn_missing_backup() {
 	done
 	return 0
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild.sh.in b/scripts/libmakepkg/lint_pkgbuild.sh.in
index d3a1a083..c126c662 100644
--- a/scripts/libmakepkg/lint_pkgbuild.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild.sh.in
@@ -44,3 +44,5 @@ lint_pkgbuild() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/arch.sh.in b/scripts/libmakepkg/lint_pkgbuild/arch.sh.in
index ddc2f29e..79377f36 100644
--- a/scripts/libmakepkg/lint_pkgbuild/arch.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/arch.sh.in
@@ -62,3 +62,5 @@ lint_arch() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/backup.sh.in b/scripts/libmakepkg/lint_pkgbuild/backup.sh.in
index 5b37b4e9..9ead0a8d 100644
--- a/scripts/libmakepkg/lint_pkgbuild/backup.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/backup.sh.in
@@ -49,3 +49,5 @@ lint_backup() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/changelog.sh.in b/scripts/libmakepkg/lint_pkgbuild/changelog.sh.in
index 264ea105..d7c5f1ca 100644
--- a/scripts/libmakepkg/lint_pkgbuild/changelog.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/changelog.sh.in
@@ -45,3 +45,5 @@ lint_changelog() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/epoch.sh.in b/scripts/libmakepkg/lint_pkgbuild/epoch.sh.in
index cc11d975..7c56b77b 100644
--- a/scripts/libmakepkg/lint_pkgbuild/epoch.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/epoch.sh.in
@@ -35,3 +35,5 @@ lint_epoch() {
 		return 1
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/install.sh.in b/scripts/libmakepkg/lint_pkgbuild/install.sh.in
index 3e268923..1435ec95 100644
--- a/scripts/libmakepkg/lint_pkgbuild/install.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/install.sh.in
@@ -44,3 +44,5 @@ lint_install() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/optdepends.sh.in b/scripts/libmakepkg/lint_pkgbuild/optdepends.sh.in
index f5fdbb90..7fc2d98e 100644
--- a/scripts/libmakepkg/lint_pkgbuild/optdepends.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/optdepends.sh.in
@@ -62,3 +62,5 @@ lint_optdepends() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/options.sh.in b/scripts/libmakepkg/lint_pkgbuild/options.sh.in
index ffcd19e3..d5b0bd48 100644
--- a/scripts/libmakepkg/lint_pkgbuild/options.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/options.sh.in
@@ -55,3 +55,5 @@ lint_options() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/package_function.sh.in b/scripts/libmakepkg/lint_pkgbuild/package_function.sh.in
index 14398217..f1c97279 100644
--- a/scripts/libmakepkg/lint_pkgbuild/package_function.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/package_function.sh.in
@@ -49,3 +49,5 @@ lint_package_function() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/pkgbase.sh.in b/scripts/libmakepkg/lint_pkgbuild/pkgbase.sh.in
index 911e1128..e697d813 100644
--- a/scripts/libmakepkg/lint_pkgbuild/pkgbase.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/pkgbase.sh.in
@@ -48,3 +48,5 @@ lint_pkgbase() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/pkglist.sh.in b/scripts/libmakepkg/lint_pkgbuild/pkglist.sh.in
index 8c09ad5b..64d76d92 100644
--- a/scripts/libmakepkg/lint_pkgbuild/pkglist.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/pkglist.sh.in
@@ -42,3 +42,5 @@ lint_pkglist() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/pkgname.sh.in b/scripts/libmakepkg/lint_pkgbuild/pkgname.sh.in
index b66eda68..bb749f37 100644
--- a/scripts/libmakepkg/lint_pkgbuild/pkgname.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/pkgname.sh.in
@@ -60,3 +60,5 @@ lint_pkgname() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in b/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in
index b5cdfcf1..8c7a9bdd 100644
--- a/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/pkgrel.sh.in
@@ -40,3 +40,5 @@ lint_pkgrel() {
 		return 1
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/pkgver.sh.in b/scripts/libmakepkg/lint_pkgbuild/pkgver.sh.in
index 0ec6584c..727f054c 100644
--- a/scripts/libmakepkg/lint_pkgbuild/pkgver.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/pkgver.sh.in
@@ -49,3 +49,5 @@ lint_pkgver() {
 
 	check_pkgver $pkgver
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/provides.sh.in b/scripts/libmakepkg/lint_pkgbuild/provides.sh.in
index f521d0f5..ab3cd9b0 100644
--- a/scripts/libmakepkg/lint_pkgbuild/provides.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/provides.sh.in
@@ -60,3 +60,5 @@ lint_provides() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/source.sh.in b/scripts/libmakepkg/lint_pkgbuild/source.sh.in
index 052b9d54..c9cbe9f3 100644
--- a/scripts/libmakepkg/lint_pkgbuild/source.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/source.sh.in
@@ -37,3 +37,5 @@ lint_source() {
 		return 1
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/util.sh.in b/scripts/libmakepkg/lint_pkgbuild/util.sh.in
index e8a35933..1eb1eb74 100644
--- a/scripts/libmakepkg/lint_pkgbuild/util.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/util.sh.in
@@ -39,3 +39,5 @@ check_files_exist() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/lint_pkgbuild/variable.sh.in b/scripts/libmakepkg/lint_pkgbuild/variable.sh.in
index 1e749638..78df84a5 100644
--- a/scripts/libmakepkg/lint_pkgbuild/variable.sh.in
+++ b/scripts/libmakepkg/lint_pkgbuild/variable.sh.in
@@ -105,3 +105,5 @@ lint_variable() {
 
 	return $ret
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/source.sh.in b/scripts/libmakepkg/source.sh.in
index 234e35e4..42e70d67 100644
--- a/scripts/libmakepkg/source.sh.in
+++ b/scripts/libmakepkg/source.sh.in
@@ -111,3 +111,5 @@ extract_sources() {
 		esac
 	done
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/source/bzr.sh.in b/scripts/libmakepkg/source/bzr.sh.in
index 97206714..69529f4b 100644
--- a/scripts/libmakepkg/source/bzr.sh.in
+++ b/scripts/libmakepkg/source/bzr.sh.in
@@ -104,3 +104,5 @@ extract_bzr() {
 
 	popd &>/dev/null
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/source/file.sh.in b/scripts/libmakepkg/source/file.sh.in
index 1d85ea9b..5e724249 100644
--- a/scripts/libmakepkg/source/file.sh.in
+++ b/scripts/libmakepkg/source/file.sh.in
@@ -145,3 +145,5 @@ extract_file() {
 		chown -R 0:0 "$srcdir"
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/source/git.sh.in b/scripts/libmakepkg/source/git.sh.in
index 6d7e0a67..8129a717 100644
--- a/scripts/libmakepkg/source/git.sh.in
+++ b/scripts/libmakepkg/source/git.sh.in
@@ -120,3 +120,5 @@ extract_git() {
 
 	popd &>/dev/null
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/source/hg.sh.in b/scripts/libmakepkg/source/hg.sh.in
index 4e6ebad9..6a3e863d 100644
--- a/scripts/libmakepkg/source/hg.sh.in
+++ b/scripts/libmakepkg/source/hg.sh.in
@@ -102,3 +102,5 @@ extract_hg() {
 
 	popd &>/dev/null
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/source/local.sh.in b/scripts/libmakepkg/source/local.sh.in
index 8104141a..bfb93f8e 100644
--- a/scripts/libmakepkg/source/local.sh.in
+++ b/scripts/libmakepkg/source/local.sh.in
@@ -40,3 +40,5 @@ download_local() {
 		exit 1 # $E_MISSING_FILE
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/source/svn.sh.in b/scripts/libmakepkg/source/svn.sh.in
index 6cb78235..2fafadfe 100644
--- a/scripts/libmakepkg/source/svn.sh.in
+++ b/scripts/libmakepkg/source/svn.sh.in
@@ -91,3 +91,5 @@ extract_svn() {
 
 	cp -au "$dir" "$srcdir"
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/srcinfo.sh.in b/scripts/libmakepkg/srcinfo.sh.in
index 99f5628a..f627f88d 100644
--- a/scripts/libmakepkg/srcinfo.sh.in
+++ b/scripts/libmakepkg/srcinfo.sh.in
@@ -125,3 +125,5 @@ write_srcinfo() {
 	write_srcinfo_header
 	write_srcinfo_content
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/tidy.sh.in b/scripts/libmakepkg/tidy.sh.in
index 856f2394..ce7d879d 100644
--- a/scripts/libmakepkg/tidy.sh.in
+++ b/scripts/libmakepkg/tidy.sh.in
@@ -50,3 +50,5 @@ tidy_install() {
 		$func
 	done
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/tidy/docs.sh.in b/scripts/libmakepkg/tidy/docs.sh.in
index 0919f201..31617c81 100644
--- a/scripts/libmakepkg/tidy/docs.sh.in
+++ b/scripts/libmakepkg/tidy/docs.sh.in
@@ -35,3 +35,5 @@ tidy_docs() {
 		rm -rf -- ${DOC_DIRS[@]}
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/tidy/emptydirs.sh.in b/scripts/libmakepkg/tidy/emptydirs.sh.in
index 2b16afdf..9acf7f0f 100644
--- a/scripts/libmakepkg/tidy/emptydirs.sh.in
+++ b/scripts/libmakepkg/tidy/emptydirs.sh.in
@@ -37,3 +37,5 @@ tidy_emptydirs() {
 		find . -depth -type d -exec rmdir '{}' \; 2>/dev/null
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/tidy/libtool.sh.in b/scripts/libmakepkg/tidy/libtool.sh.in
index b844c792..3690e7bc 100644
--- a/scripts/libmakepkg/tidy/libtool.sh.in
+++ b/scripts/libmakepkg/tidy/libtool.sh.in
@@ -36,3 +36,5 @@ tidy_libtool() {
 		find . ! -type d -name "*.la" -exec rm -f -- '{}' +
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/tidy/purge.sh.in b/scripts/libmakepkg/tidy/purge.sh.in
index 5d37ded5..9c32e34d 100644
--- a/scripts/libmakepkg/tidy/purge.sh.in
+++ b/scripts/libmakepkg/tidy/purge.sh.in
@@ -43,3 +43,5 @@ tidy_purge() {
 		done
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/tidy/staticlibs.sh.in b/scripts/libmakepkg/tidy/staticlibs.sh.in
index 643932dd..df0bb4ed 100644
--- a/scripts/libmakepkg/tidy/staticlibs.sh.in
+++ b/scripts/libmakepkg/tidy/staticlibs.sh.in
@@ -41,3 +41,5 @@ tidy_staticlibs() {
 		done < <(find . ! -type d -name "*.a" -print0)
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/tidy/strip.sh.in b/scripts/libmakepkg/tidy/strip.sh.in
index 76562808..29218c4d 100644
--- a/scripts/libmakepkg/tidy/strip.sh.in
+++ b/scripts/libmakepkg/tidy/strip.sh.in
@@ -134,3 +134,5 @@ tidy_strip() {
 		done
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/tidy/zipman.sh.in b/scripts/libmakepkg/tidy/zipman.sh.in
index ff82d43c..ca30118a 100644
--- a/scripts/libmakepkg/tidy/zipman.sh.in
+++ b/scripts/libmakepkg/tidy/zipman.sh.in
@@ -59,3 +59,5 @@ tidy_zipman() {
 			-exec @INODECMD@ '{}' + 2>/dev/null)
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/util.sh.in b/scripts/libmakepkg/util.sh.in
index b7b56d34..7c8f9c98 100644
--- a/scripts/libmakepkg/util.sh.in
+++ b/scripts/libmakepkg/util.sh.in
@@ -26,3 +26,5 @@ LIBRARY=${LIBRARY:-'@libmakepkgdir@'}
 for lib in "$LIBRARY/util/"*.sh; do
 	source "$lib"
 done
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/util/message.sh.in b/scripts/libmakepkg/util/message.sh.in
index 33808de7..49ce025d 100644
--- a/scripts/libmakepkg/util/message.sh.in
+++ b/scripts/libmakepkg/util/message.sh.in
@@ -67,3 +67,5 @@ error() {
 	local mesg=$1; shift
 	printf "${RED}==> $(gettext "ERROR:")${ALL_OFF}${BOLD} ${mesg}${ALL_OFF}\n" "$@" >&2
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/util/option.sh.in b/scripts/libmakepkg/util/option.sh.in
index 8cf0039b..2892cdfb 100644
--- a/scripts/libmakepkg/util/option.sh.in
+++ b/scripts/libmakepkg/util/option.sh.in
@@ -140,3 +140,5 @@ check_buildoption() {
 	# not found
 	return 127
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/util/parseopts.sh.in b/scripts/libmakepkg/util/parseopts.sh.in
index a7638cf1..bd018cc8 100644
--- a/scripts/libmakepkg/util/parseopts.sh.in
+++ b/scripts/libmakepkg/util/parseopts.sh.in
@@ -171,3 +171,5 @@ parseopts() {
 
 	return 0
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/util/pkgbuild.sh.in b/scripts/libmakepkg/util/pkgbuild.sh.in
index 2a4bd3af..7f431394 100644
--- a/scripts/libmakepkg/util/pkgbuild.sh.in
+++ b/scripts/libmakepkg/util/pkgbuild.sh.in
@@ -218,3 +218,5 @@ get_integlist() {
 		printf "%s\n" "${INTEGRITY_CHECK[@]}"
 	fi
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/util/source.sh.in b/scripts/libmakepkg/util/source.sh.in
index 238d1f58..aeeca00a 100644
--- a/scripts/libmakepkg/util/source.sh.in
+++ b/scripts/libmakepkg/util/source.sh.in
@@ -169,3 +169,5 @@ get_downloadclient() {
 
 	printf "%s\n" "$agent"
 }
+
+# vim: set noet:
diff --git a/scripts/libmakepkg/util/util.sh.in b/scripts/libmakepkg/util/util.sh.in
index d676249d..45070bea 100644
--- a/scripts/libmakepkg/util/util.sh.in
+++ b/scripts/libmakepkg/util/util.sh.in
@@ -83,3 +83,5 @@ cd_safe() {
 		exit 1
 	fi
 }
+
+# vim: set noet:
-- 
2.11.0


More information about the pacman-dev mailing list