Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/test/pacman
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2018-05-03 00:10:20 -0400
committerAllan McRae <allan@archlinux.org>2018-05-14 09:59:15 +1000
commit860e4c4943ad062bd0eff99f28e7d64804b3c08e (patch)
tree161b0a4096b2f4bfce79e468d7c7cb133d70e7b9 /test/pacman
parent9aec7c3c7225ec9a2ae1124eca612a709f7abddf (diff)
Remove all modelines from the project
Many of these are pointless (e.g. there is no need to explicitly turn on spellchecking and language dictionaries for the manpages by default). The only useful modelines are the ones enforcing the project coding standards for indentation style (and "maybe" filetype/syntax, but everything except the asciidoc manpages and makepkg.conf is already autodetected), and indent style can be applied more easily with .editorconfig Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'test/pacman')
-rw-r--r--test/pacman/Makefile.am2
-rwxr-xr-xtest/pacman/pactest.py2
-rw-r--r--test/pacman/pmdb.py2
-rw-r--r--test/pacman/pmenv.py2
-rw-r--r--test/pacman/pmfile.py2
-rw-r--r--test/pacman/pmpkg.py2
-rw-r--r--test/pacman/pmrule.py2
-rw-r--r--test/pacman/pmtest.py2
-rw-r--r--test/pacman/tests/Makefile.am2
-rw-r--r--test/pacman/util.py2
10 files changed, 0 insertions, 20 deletions
diff --git a/test/pacman/Makefile.am b/test/pacman/Makefile.am
index f71333c4..a36908a7 100644
--- a/test/pacman/Makefile.am
+++ b/test/pacman/Makefile.am
@@ -19,5 +19,3 @@ EXTRA_DIST = \
ChangeLog \
ldconfig.stub \
$(check_SCRIPTS)
-
-# vim:set noet:
diff --git a/test/pacman/pactest.py b/test/pacman/pactest.py
index b251ef45..1f5b8483 100755
--- a/test/pacman/pactest.py
+++ b/test/pacman/pactest.py
@@ -162,5 +162,3 @@ if __name__ == "__main__":
if env.failed > 0:
sys.exit(1)
-
-# vim: set ts=4 sw=4 et:
diff --git a/test/pacman/pmdb.py b/test/pacman/pmdb.py
index 1c425458..f7671987 100644
--- a/test/pacman/pmdb.py
+++ b/test/pacman/pmdb.py
@@ -257,5 +257,3 @@ class pmdb(object):
serverpath = os.path.join(self.root, util.SYNCREPO, self.treename)
util.mkdir(serverpath)
shutil.copy(self.dbfile, serverpath)
-
-# vim: set ts=4 sw=4 et:
diff --git a/test/pacman/pmenv.py b/test/pacman/pmenv.py
index bf19ceaa..f1d626d3 100644
--- a/test/pacman/pmenv.py
+++ b/test/pacman/pmenv.py
@@ -69,5 +69,3 @@ class pmenv(object):
tap.diag("==> Checking rules")
tap.todo = t.expectfailure
tap.subtest(lambda: t.check(), t.description)
-
-# vim: set ts=4 sw=4 et:
diff --git a/test/pacman/pmfile.py b/test/pacman/pmfile.py
index af37e9f2..f7204d68 100644
--- a/test/pacman/pmfile.py
+++ b/test/pacman/pmfile.py
@@ -80,5 +80,3 @@ class snapshot(object):
return True
return False
-
-# vim: set ts=4 sw=4 et:
diff --git a/test/pacman/pmpkg.py b/test/pacman/pmpkg.py
index db81225c..5a32ccd6 100644
--- a/test/pacman/pmpkg.py
+++ b/test/pacman/pmpkg.py
@@ -221,5 +221,3 @@ class pmpkg(object):
data.append("%s() {\n%s\n}\n" % (key, value))
return "\n".join(data)
-
-# vim: set ts=4 sw=4 et:
diff --git a/test/pacman/pmrule.py b/test/pacman/pmrule.py
index 923ccde9..bdd0fcaa 100644
--- a/test/pacman/pmrule.py
+++ b/test/pacman/pmrule.py
@@ -189,5 +189,3 @@ class pmrule(object):
success = not success
self.result = success
return success
-
-# vim: set ts=4 sw=4 et:
diff --git a/test/pacman/pmtest.py b/test/pacman/pmtest.py
index 0f0f84e0..00012ac6 100644
--- a/test/pacman/pmtest.py
+++ b/test/pacman/pmtest.py
@@ -323,5 +323,3 @@ class pmtest(object):
def hookdir(self):
return os.path.join(self.root, util.PM_HOOKDIR)
-
-# vim: set ts=4 sw=4 et:
diff --git a/test/pacman/tests/Makefile.am b/test/pacman/tests/Makefile.am
index b541b3d6..ba3d0993 100644
--- a/test/pacman/tests/Makefile.am
+++ b/test/pacman/tests/Makefile.am
@@ -3,5 +3,3 @@ check_SCRIPTS = $(wildcard *.py)
noinst_SCRIPTS = $(check_SCRIPTS)
EXTRA_DIST = $(check_SCRIPTS)
-
-# vim:set noet:
diff --git a/test/pacman/util.py b/test/pacman/util.py
index f84a6ae0..5fbe4c35 100644
--- a/test/pacman/util.py
+++ b/test/pacman/util.py
@@ -185,5 +185,3 @@ def mkdir(path):
elif os.path.isfile(path):
raise OSError("'%s' already exists and is not a directory" % path)
os.makedirs(path, 0o755)
-
-# vim: set ts=4 sw=4 et: