aboutsummaryrefslogtreecommitdiffstats
path: root/RepSys/commands
diff options
context:
space:
mode:
authorBogdano Arendartchuk <bogdano@mandriva.org>2007-05-03 21:03:27 +0000
committerBogdano Arendartchuk <bogdano@mandriva.org>2007-05-03 21:03:27 +0000
commit928b0bed6fff9a002fcd10533fd1fa464e1bc10b (patch)
tree4341cb184f0d27e846b730ead9c94a9ebe38bf47 /RepSys/commands
parent023b84f8f91df6f3062ff2992d1ebe3e94254532 (diff)
downloadmgarepo-928b0bed6fff9a002fcd10533fd1fa464e1bc10b.tar
mgarepo-928b0bed6fff9a002fcd10533fd1fa464e1bc10b.tar.gz
mgarepo-928b0bed6fff9a002fcd10533fd1fa464e1bc10b.tar.bz2
mgarepo-928b0bed6fff9a002fcd10533fd1fa464e1bc10b.tar.xz
mgarepo-928b0bed6fff9a002fcd10533fd1fa464e1bc10b.zip
Added one cheap copy of the sync subcommand from mdvsys.
It required two sensitive changes: - in order to parse the spec file, "rpm" module was used, so this is the brand new package dependency; and - as RepSys already had one "rpm" module, we had to rename it to "simplerpm" in order to allow access to the module from python-rpm (I think py2.4 is still used a lot so we can't use absolute imports)
Diffstat (limited to 'RepSys/commands')
-rw-r--r--RepSys/commands/markrelease.py2
-rw-r--r--RepSys/commands/sync.py31
2 files changed, 32 insertions, 1 deletions
diff --git a/RepSys/commands/markrelease.py b/RepSys/commands/markrelease.py
index 9e52a31..440775b 100644
--- a/RepSys/commands/markrelease.py
+++ b/RepSys/commands/markrelease.py
@@ -9,7 +9,7 @@
#
from RepSys import Error
from RepSys.command import *
-from RepSys.rpm import SRPM
+from RepSys.simplerpm import SRPM
from RepSys.rpmutil import mark_release
from RepSys.util import get_auth
import getopt
diff --git a/RepSys/commands/sync.py b/RepSys/commands/sync.py
new file mode 100644
index 0000000..42ede8d
--- /dev/null
+++ b/RepSys/commands/sync.py
@@ -0,0 +1,31 @@
+#!/usr/bin/python
+from RepSys.command import *
+from RepSys.rpmutil import sync
+
+HELP = """\
+Usage: repsys sync
+
+Will add or removed from the working copy new files added or removed
+from the spec file.
+
+"No changes are commited."
+
+Options:
+ --dry-run Print results without changing the working copy
+ -h Show this message
+
+Examples:
+ repsys sync
+"""
+
+def parse_options():
+ parser = OptionParser(help=HELP)
+ parser.add_option("--dry-run", dest="dryrun", default=False,
+ action="store_true")
+ opts, args = parser.parse_args()
+ if len(args):
+ opts.target = args[0]
+ return opts
+
+def main():
+ do_command(parse_options, sync)