Haik Aftandilian wrote: > In the "Details" section of the the "Update Manager" GUI, are the > package details supposed to be shown for the version of the package > already installed on the system Thanks Haik - yes the installed version.
Current call to get the info in updatemanager.py: 800: ret = self.__get_api_obj().info([name], local, get_license), where local = True To get the update version we should be using, 800: ret = self.__get_api_obj().info([name], False, get_license) So we should at least indicate that the information is for the installed package, or fetch the information from the repo for the update details. Will be looked at post 2008.11, logged bug: http://defect.opensolaris.org/bz/show_bug.cgi?id=5168 JR > or the new version that is available but > not yet installed? > > On my system, the GUI tells me that new versions are available for (what > looks like) all packages, but the version shown is the same version > already installed. > > I installed from osol-0811-101a-rc1b.iso and my preferred authority is > set to osol-re.sfbay. > > Thanks, > Haik > > > $ pkg info -l entire > Name: entire > Summary: entire incorporation > State: Installed > Authority: opensolaris.org > Version: 0.5.11 > Build Release: 5.11 > Branch: 0.101 > Packaging Date: Thu Nov 6 17:09:44 2008 > Size: 0.00 B > FMRI: > pkg://opensolaris.org/[EMAIL PROTECTED],5.11-0.101:20081106T170944Z > > > $ pkg info -r entire > Name: entire > Summary: entire incorporation > State: Not installed > Authority: osol-re.sfbay > Version: 0.5.11 > Build Release: 5.11 > Branch: 0.101 > Packaging Date: Fri Nov 14 04:10:41 2008 > Size: 0.00 B > FMRI: pkg:/[EMAIL PROTECTED],5.11-0.101:20081114T041041Z > > > From "Update Manager" GUI: > > entire > Description: entire incorporation > FMRI: > pkg://opensolaris.org/[EMAIL PROTECTED],5.11-0.101:20081106T170944Z > Version: 0.5.11-0.101 > Packaged on: Thu Nov 6 17:09:44 2008 > _______________________________________________ > pkg-discuss mailing list > [email protected] > http://mail.opensolaris.org/mailman/listinfo/pkg-discuss > _______________________________________________ pkg-discuss mailing list [email protected] http://mail.opensolaris.org/mailman/listinfo/pkg-discuss
