From 584630052112824b7dd476f2fac1f468d7b94b13 Mon Sep 17 00:00:00 2001 From: James Meyer Date: Wed, 20 Jan 2016 12:59:46 -0600 Subject: mpv2.py: add --skippgpcheck --- build_tools/bin/mpv2.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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) -- cgit v0.12