diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2014-02-04 17:54:36 +0200 |
---|---|---|
committer | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2014-06-05 14:20:07 +0300 |
commit | 3bb47947eea49fdd8ece530d88ca287ac1b2b875 (patch) | |
tree | a24f4e7ee531229f17e76eda19b7d2e4fa2a8557 /bin | |
parent | 06e95f08ee08f96faaecf977a31d1d73f3e2135e (diff) | |
download | git-buildpackage-3bb47947eea49fdd8ece530d88ca287ac1b2b875.tar.gz git-buildpackage-3bb47947eea49fdd8ece530d88ca287ac1b2b875.tar.bz2 git-buildpackage-3bb47947eea49fdd8ece530d88ca287ac1b2b875.zip |
Introduce git-rpm-ch tool
Initial version of the git-rpm-ch tool which is intended for maintaining
RPM changelogs. Supports both spec files and separate "OBS style"
changelog files.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/git-rpm-ch | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/git-rpm-ch b/bin/git-rpm-ch new file mode 100755 index 00000000..ef1340e7 --- /dev/null +++ b/bin/git-rpm-ch @@ -0,0 +1,5 @@ +#! /usr/bin/python -u +import sys +from gbp.scripts.rpm_ch import main + +sys.exit(main(sys.argv)) |