summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Meyer <james.meyer@operamail.com>2016-01-20 18:59:46 (GMT)
committerJames Meyer <james.meyer@operamail.com>2016-01-20 18:59:46 (GMT)
commit584630052112824b7dd476f2fac1f468d7b94b13 (patch)
tree0e521eff0e9df50a6a091b8ad972775e140c640e
parent002e557a6e8ea19d4b094b2bf4dca03e39ded19c (diff)
downloadlinhes_dev-584630052112824b7dd476f2fac1f468d7b94b13.zip
mpv2.py: add --skippgpcheck
-rwxr-xr-xbuild_tools/bin/mpv2.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/build_tools/bin/mpv2.py b/build_tools/bin/mpv2.py
index 1467602..0431bc6 100755
--- a/build_tools/bin/mpv2.py
+++ b/build_tools/bin/mpv2.py
@@ -57,6 +57,7 @@ def commandline(makepkg_cmd):
clparser.add_option("--forcever", action="store_true", default=False, help="This is a hidden option that should not be used unless you really know what you are doing.")
clparser.add_option("-g", "--geninteg", action="store_true", default=False, help="For each source file in the source array of PKGBUILD, download the file if required and generate integrity checks.")
clparser.add_option("--skipinteg", action="store_true", default=False, help="Do not perform any integrity checks, just print a warning instead.")
+ clparser.add_option("--skippgpcheck", action="store_true", default=False, help="Do not perform any integrity checks, just print a warning instead.")
clparser.add_option("--holdver", action="store_true", default=True, help="Prevents makepkg from automatically bumping the pkgver to the latest revision number in the package's development tree.")
clparser.add_option("--nohold", action="store_false", dest="holdver", help="Automatically bump the pkgver to the latest revision number in the package's development tree.")
clparser.add_option("-i", "--install", action="store_true", default=False, help="Install or upgrade the package after a successful build.")
@@ -81,7 +82,7 @@ def commandline(makepkg_cmd):
'noextract', 'force', 'forcever', 'geninteg', 'skipinteg', 'holdver',
'install', 'log', 'nocolor', 'nobuild', 'rmdeps', 'repackage',
'syncdeps', 'allsource', 'source', 'noconfirm', 'noprogressbar',
- 'rmold', 'md5','recurse','abs' ]
+ 'rmold', 'md5','recurse','abs', 'skippgpcheck' ]
for o in options1:
cmd1 = eval('options.'+o)