| Summary: | "mgarepo submit" fails with subversion-1.7.1 | ||
|---|---|---|---|
| Product: | Mageia | Reporter: | Shlomi Fish <shlomif> |
| Component: | RPM Packages | Assignee: | Nicolas Vigier <boklm> |
| Status: | RESOLVED FIXED | QA Contact: | |
| Severity: | critical | ||
| Priority: | Normal | Keywords: | PATCH, Triaged |
| Version: | Cauldron | ||
| Target Milestone: | --- | ||
| Hardware: | i586 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Source RPM: | mgarepo-1.10.1-1.mga2.src.rpm | CVE: | |
| Status comment: | |||
| Attachments: | The patch attached. | ||
Created attachment 1058 [details]
The patch attached.
Hi, thanks for reporting this bug. Assigned to the package maintainer. Keywords:
(none) =>
PATCH, Triaged Hi all, any news regarding this bug? It should be fixed for svn to be upgraded. Regards, -- Shlomi Fish mgarepa 1.10.2 has been submitted to cauldron with this patch. Thanks. Status:
NEW =>
RESOLVED |
Description of problem: "mgarepo submit" fails to work properly with subversion upgraded to 1.7.1. This patch fixes the problem: --- /usr/lib/python2.7/site-packages/MgaRepo/svn.py.orig 2011-11-10 20:38:12.188303496 +0200 +++ /usr/lib/python2.7/site-packages/MgaRepo/svn.py 2011-11-10 20:38:15.464303602 +0200 @@ -192,7 +192,7 @@ def info(self, path, **kwargs): cmd = ["info", path + '@' if '@' in path else path] status, output = self._execsvn(local=True, noerror=True, *cmd, **kwargs) - if "Not a versioned resource" not in output: + if (("Not a versioned resource" not in output) and ("svn: warning: W155010" not in output)): return output.splitlines() return None