diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2012-01-12 15:39:12 +0200 |
---|---|---|
committer | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2013-04-03 09:46:11 +0300 |
commit | ae9e62f2a6377e2ca9caf0afda28bc45f00880e5 (patch) | |
tree | d5fa0ad47f4c57519f55f50932cd1e5da9de1dde /bin | |
parent | 84ee2d75f0e14a188bb7508f97eb30167a618dda (diff) | |
download | git-buildpackage-ae9e62f2a6377e2ca9caf0afda28bc45f00880e5.tar.gz git-buildpackage-ae9e62f2a6377e2ca9caf0afda28bc45f00880e5.tar.bz2 git-buildpackage-ae9e62f2a6377e2ca9caf0afda28bc45f00880e5.zip |
Introduce git-buildpackage-rpm tool
Initial version of git-buildpackage-rpm: git-buildpackage tool for rpms.
Also adds some new options to config.py that are exclusively used in
this tool.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
Signed-off-by: Zhang Qiang <qiang.z.zhang@intel.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/git-buildpackage-rpm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/git-buildpackage-rpm b/bin/git-buildpackage-rpm new file mode 100755 index 00000000..393f1ae1 --- /dev/null +++ b/bin/git-buildpackage-rpm @@ -0,0 +1,5 @@ +#! /usr/bin/python -u +import sys +from gbp.scripts.buildpackage_rpm import main + +sys.exit(main(sys.argv)) |