Merge conflicts

This commit is contained in:
Andrey Ponomarenko 2012-10-31 16:25:45 +04:00
commit 0e2998b3a1
9 changed files with 3943 additions and 2890 deletions

3
.gitignore vendored Normal file
View file

@ -0,0 +1,3 @@
*~
*.mo
urpm-tools.pot

View file

@ -16,6 +16,8 @@ repositories.
"New" repository or list of "new" repositories if several present. "New" repository or list of "new" repositories if several present.
.IP "\fB\-\-quiet, -q\fP" .IP "\fB\-\-quiet, -q\fP"
Quiet mode: hide service messages. Quiet mode: hide service messages.
.IP "\fB\-\-no-release, -r\fP"
Ignore release during package compare.
.PP .PP
.SH "USUAL OUTPUT OPTIONS" .SH "USUAL OUTPUT OPTIONS"
.IP "\fB\-\-size, -s\fP" .IP "\fB\-\-size, -s\fP"
@ -33,6 +35,15 @@ If \fB--output, -o\fP option is not present, page will be output to file 'repodi
.SH "OUTPUT OPTION" .SH "OUTPUT OPTION"
.IP "\fB\-\-output, -o OUTPUT_FILE\fP" .IP "\fB\-\-output, -o OUTPUT_FILE\fP"
Change standart output to OUTPUT_FILE. Change standart output to OUTPUT_FILE.
.SH "FILTER OPTION"
.IP "\fB\-\-show-new, -N\fP"
Show new packages.
.IP "\fB\-\-show-removed, -R\fP"
Show removed packages.
.IP "\fB\-\-show-updated, -U\fP"
Show updated packages.
.IP "\fB\-\-show-downgraded, -D\fP"
Show downgraded packages.
.SH "EXAMPLES" .SH "EXAMPLES"
.IP "Compare packages in two local repositories:" .IP "Compare packages in two local repositories:"
\fBurpm-repodiff --old /tmp/repo-old --new /tmp/repo-new\fP \fBurpm-repodiff --old /tmp/repo-old --new /tmp/repo-new\fP

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -188,7 +188,7 @@ def main(args):
for dropped in evrlist[:keepnum]: for dropped in evrlist[:keepnum]:
(e,v,r,d) = dropped (e,v,r,d) = dropped
pkg = str(verfile[(n,a,e,v,r,d)]).replace("['","").replace("']","") pkg = str(verfile[(n,a,e,v,r,d)]).replace("['","").replace("']","")
subprocess.call(["rm", pkg]) subprocess.call(["rm", "-f", pkg])
if options.verbose: if options.verbose:
for dropped in evrlist[:keepnum]: for dropped in evrlist[:keepnum]:
(e,v,r,d) = dropped (e,v,r,d) = dropped

File diff suppressed because it is too large Load diff

Binary file not shown.

File diff suppressed because it is too large Load diff