mirror of
https://abf.rosa.ru/djam/urpm-tools.git
synced 2025-02-23 17:32:46 +00:00
Merge conflicts
This commit is contained in:
commit
0e2998b3a1
9 changed files with 3943 additions and 2890 deletions
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
*~
|
||||
*.mo
|
||||
urpm-tools.pot
|
|
@ -16,6 +16,8 @@ repositories.
|
|||
"New" repository or list of "new" repositories if several present.
|
||||
.IP "\fB\-\-quiet, -q\fP"
|
||||
Quiet mode: hide service messages.
|
||||
.IP "\fB\-\-no-release, -r\fP"
|
||||
Ignore release during package compare.
|
||||
.PP
|
||||
.SH "USUAL OUTPUT OPTIONS"
|
||||
.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"
|
||||
.IP "\fB\-\-output, -o OUTPUT_FILE\fP"
|
||||
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"
|
||||
.IP "Compare packages in two local repositories:"
|
||||
\fBurpm-repodiff --old /tmp/repo-old --new /tmp/repo-new\fP
|
||||
|
|
File diff suppressed because it is too large
Load diff
1313
urpm-repoclosure.pl
1313
urpm-repoclosure.pl
File diff suppressed because it is too large
Load diff
713
urpm-repodiff.py
713
urpm-repodiff.py
File diff suppressed because it is too large
Load diff
|
@ -188,7 +188,7 @@ def main(args):
|
|||
for dropped in evrlist[:keepnum]:
|
||||
(e,v,r,d) = dropped
|
||||
pkg = str(verfile[(n,a,e,v,r,d)]).replace("['","").replace("']","")
|
||||
subprocess.call(["rm", pkg])
|
||||
subprocess.call(["rm", "-f", pkg])
|
||||
if options.verbose:
|
||||
for dropped in evrlist[:keepnum]:
|
||||
(e,v,r,d) = dropped
|
||||
|
|
1101
urpm-tools.pot
1101
urpm-tools.pot
File diff suppressed because it is too large
Load diff
BIN
urpm-tools/locale/ru/LC_MESSAGES/urpm-tools.mo
Normal file
BIN
urpm-tools/locale/ru/LC_MESSAGES/urpm-tools.mo
Normal file
Binary file not shown.
1518
urpm-tools/locale/ru/LC_MESSAGES/urpm-tools.po
Normal file
1518
urpm-tools/locale/ru/LC_MESSAGES/urpm-tools.po
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue