[yast-commit] r57016 - in /trunk/pkg-bindings: VERSION package/yast2-pkg-bindings.changes src/Source_Resolvables.cc
Author: lslezak Date: Wed Apr 29 08:51:26 2009 New Revision: 57016 URL: http://svn.opensuse.org/viewcvs/yast?rev=57016&view=rev Log: - report also the URL when repository metadata are not found (bnc#439069) - 2.18.4 Modified: trunk/pkg-bindings/VERSION trunk/pkg-bindings/package/yast2-pkg-bindings.changes trunk/pkg-bindings/src/Source_Resolvables.cc Modified: trunk/pkg-bindings/VERSION URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/VERSION?rev=57016&r1=57015&r2=57016&view=diff ============================================================================== --- trunk/pkg-bindings/VERSION (original) +++ trunk/pkg-bindings/VERSION Wed Apr 29 08:51:26 2009 @@ -1 +1 @@ -2.18.3 +2.18.4 Modified: trunk/pkg-bindings/package/yast2-pkg-bindings.changes URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/package/yast2-pkg-bindings.changes?rev=57016&r1=57015&r2=57016&view=diff ============================================================================== --- trunk/pkg-bindings/package/yast2-pkg-bindings.changes (original) +++ trunk/pkg-bindings/package/yast2-pkg-bindings.changes Wed Apr 29 08:51:26 2009 @@ -1,4 +1,11 @@ ------------------------------------------------------------------- +Wed Apr 29 08:45:52 CEST 2009 - lslezak@suse.cz + +- report also the URL when repository metadata are not found + (bnc#439069) +- 2.18.4 + +------------------------------------------------------------------- Tue Apr 21 19:18:16 CEST 2009 - lslezak@suse.cz - Pkg::ResolvableDependencies() - also return raw (unresolved) Modified: trunk/pkg-bindings/src/Source_Resolvables.cc URL: http://svn.opensuse.org/viewcvs/yast/trunk/pkg-bindings/src/Source_Resolvables.cc?rev=57016&r1=57015&r2=57016&view=diff ============================================================================== --- trunk/pkg-bindings/src/Source_Resolvables.cc (original) +++ trunk/pkg-bindings/src/Source_Resolvables.cc Wed Apr 29 08:51:26 2009 @@ -126,8 +126,9 @@ if (!autorefresh_skipped) { std::string alias = repoinfo.alias(); + zypp::Url url(repoinfo.url()); y2error ("Resolvables from '%s' havn't been loaded: %s", alias.c_str(), excpt.asString().c_str()); - _last_error.setLastError("'" + alias + "': " + ExceptionAsString(excpt)); + _last_error.setLastError("'" + alias + "': " + url.asString() + "\n" + ExceptionAsString(excpt)); success = false; } else -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
lslezak@svn.opensuse.org