aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNicolas Vigier <boklm@mageia.org>2011-08-17 19:19:59 +0000
committerNicolas Vigier <boklm@mageia.org>2011-08-17 19:19:59 +0000
commitffd9d21e4df15ca2890402add445d1725f7519ba (patch)
tree0a8bec8854afafbe1ab8c38d3b795b0283eb8706
parent79b92b412edfdebba7a34bb409f5734cd6fd3575 (diff)
downloadmgarepo-ffd9d21e4df15ca2890402add445d1725f7519ba.tar
mgarepo-ffd9d21e4df15ca2890402add445d1725f7519ba.tar.gz
mgarepo-ffd9d21e4df15ca2890402add445d1725f7519ba.tar.bz2
mgarepo-ffd9d21e4df15ca2890402add445d1725f7519ba.tar.xz
mgarepo-ffd9d21e4df15ca2890402add445d1725f7519ba.zip
remove binrev option
-rw-r--r--MgaRepo/commands/markrelease.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/MgaRepo/commands/markrelease.py b/MgaRepo/commands/markrelease.py
index 65a091c..857d38d 100644
--- a/MgaRepo/commands/markrelease.py
+++ b/MgaRepo/commands/markrelease.py
@@ -30,7 +30,6 @@ structure.
Options:
-f FILE Try to extract information from given file
-r REV Revision which will be used to make the release copy tag
- -R REV binrepo revision which will be used to make the release copy tag
-v VER Version which will be used to make the release copy tag
-n Append package name to provided URL
-h Show this message
@@ -52,11 +51,9 @@ def parse_options():
parser = OptionParser(help=HELP)
parser.defaults["version"] = None
parser.defaults["release"] = None
- parser.defaults["binrev"] = None
parser.add_option("-v", action="callback", callback=version_callback,
nargs=1, type="string", dest="__ignore")
parser.add_option("-r", dest="revision")
- parser.add_option("-R", dest="binrev")
parser.add_option("-f", dest="filename")
parser.add_option("-n", dest="appendname", action="store_true")
opts, args = parser.parse_args()