diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2012-01-12 15:37:49 +0200 |
---|---|---|
committer | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2014-01-14 13:48:21 +0200 |
commit | 75f2961a29916647e926ee59dd53bf954a186d77 (patch) | |
tree | aa2d55f235ee680703b46300cc2e0bfbb8ca0be9 /bin | |
parent | 1de4550b7619110270acb363f25b20f9b40405ca (diff) | |
download | git-buildpackage-75f2961a29916647e926ee59dd53bf954a186d77.tar.gz git-buildpackage-75f2961a29916647e926ee59dd53bf954a186d77.tar.bz2 git-buildpackage-75f2961a29916647e926ee59dd53bf954a186d77.zip |
Introduce git-import-srpm tool
Initial version of the git-import-srpm: a tool for importing source
rpms.
Unit tests: created a separate method in TestHelp for RPM-specific
commands.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/git-import-srpm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/git-import-srpm b/bin/git-import-srpm new file mode 100755 index 00000000..721741b7 --- /dev/null +++ b/bin/git-import-srpm @@ -0,0 +1,5 @@ +#! /usr/bin/python -u +import sys +from gbp.scripts.import_srpm import main + +sys.exit(main(sys.argv)) |