aboutsummaryrefslogtreecommitdiff
path: root/ipsbuild.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2013-07-29 16:27:38 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2013-07-29 16:27:38 -0400
commit49394a3d01f05b92ea6635b0fd88f7a1d3a8b14a (patch)
treeb552e604e02edcb9aadcda5ae651401919725f34 /ipsbuild.py
parente73fba646a958b5bb70aae7fb6f1f3000bac804c (diff)
downloadipsutils-49394a3d01f05b92ea6635b0fd88f7a1d3a8b14a.tar.gz
Feature: --nodepsolve disables dependency resolution (GOOD FOR META PACKAGING\!)
Diffstat (limited to 'ipsbuild.py')
-rwxr-xr-xipsbuild.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/ipsbuild.py b/ipsbuild.py
index d9f8a21..b7ba895 100755
--- a/ipsbuild.py
+++ b/ipsbuild.py
@@ -22,6 +22,7 @@ import os
parser = argparse.ArgumentParser(description='Build Solaris 11 packages from .ips spec files')
parser.add_argument('--version', action="store_true", help='Show version information')
parser.add_argument('--verbose', action="store_true", help='Increased verbosity')
+parser.add_argument('--nodepsolve', action="store_true", help='Disable dependency resolution')
parser.add_argument('--lint', action="store_true", help='Enables deep packaging checks')
parser.add_argument('--fast', action="store_true", help='Use system tools to extract source archive')
parser.add_argument('spec', nargs='*', help='An ipsutils spec file')