| … | |
… | |
| 3 | # This source code is distributed under the terms of version 2 of the GNU |
3 | # This source code is distributed under the terms of version 2 of the GNU |
| 4 | # General Public License as published by the Free Software Foundation, a copy |
4 | # General Public License as published by the Free Software Foundation, a copy |
| 5 | # of which can be found in the main directory of this project. |
5 | # of which can be found in the main directory of this project. |
| 6 | Gentoo Linux Installer |
6 | Gentoo Linux Installer |
| 7 | |
7 | |
| 8 | $Id: GLIPortage.py,v 1.36 2006/02/09 00:44:35 agaffney Exp $ |
8 | $Id: GLIPortage.py,v 1.37 2006/02/09 01:00:26 agaffney Exp $ |
| 9 | """ |
9 | """ |
| 10 | |
10 | |
| 11 | import re |
11 | import re |
| 12 | import os |
12 | import os |
| 13 | import GLIUtility |
13 | import GLIUtility |
| … | |
… | |
| 177 | def get_best_version_vdb(self, package): |
177 | def get_best_version_vdb(self, package): |
| 178 | if package.startswith('='): |
178 | if package.startswith('='): |
| 179 | package = package[1:] |
179 | package = package[1:] |
| 180 | if GLIUtility.is_file("/var/db/pkg/" + package): |
180 | if GLIUtility.is_file("/var/db/pkg/" + package): |
| 181 | return package |
181 | return package |
|
|
182 | else: |
|
|
183 | return "" |
| 182 | else: |
184 | else: |
| 183 | return GLIUtility.spawn("portageq best_version / " + package, return_output=True)[1].strip() |
185 | return GLIUtility.spawn("portageq best_version / " + package, return_output=True)[1].strip() |
| 184 | |
186 | |
| 185 | def get_best_version_vdb_chroot(self, package): |
187 | def get_best_version_vdb_chroot(self, package): |
| 186 | return GLIUtility.spawn("portageq best_version / " + package, chroot=self._chroot_dir, return_output=True)[1].strip() |
188 | return GLIUtility.spawn("portageq best_version / " + package, chroot=self._chroot_dir, return_output=True)[1].strip() |