summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add stacklevel=2 to warnings.warn() calls.Zac Medico2010-02-191-2/+2
| | | | svn path=/main/trunk/; revision=15405
* Remove deprecated methods that call removed key_expand function.Zac Medico2010-02-192-75/+3
| | | | svn path=/main/trunk/; revision=15404
* Add DeprecationWarning to dep_virtual function.Zac Medico2010-02-191-0/+2
| | | | svn path=/main/trunk/; revision=15403
* Remove deprecated key_expand function and config.load_infodir method.Zac Medico2010-02-191-31/+0
| | | | svn path=/main/trunk/; revision=15402
* Use Atom.cp instead of dep_getkey.Zac Medico2010-02-192-9/+9
| | | | svn path=/main/trunk/; revision=15401
* Use Atom.cp instead of dep_getkey.Zac Medico2010-02-191-3/+6
| | | | svn path=/main/trunk/; revision=15400
* Use Atom.cp instead of dep_getkey.Zac Medico2010-02-191-2/+2
| | | | svn path=/main/trunk/; revision=15399
* Use a valid atom in the dep_getkey docstring.Zac Medico2010-02-191-1/+1
| | | | svn path=/main/trunk/; revision=15398
* Use isvalidatom to validate PROVIDE entries.Zac Medico2010-02-191-2/+8
| | | | svn path=/main/trunk/; revision=15397
* Fix deprecated usage of dep_getkey.Zac Medico2010-02-191-1/+1
| | | | svn path=/main/trunk/; revision=15396
* Fix deprecated usage of dep_getkey.Zac Medico2010-02-191-1/+1
| | | | svn path=/main/trunk/; revision=15395
* Bail out when given an invalid mode.Zac Medico2010-02-191-1/+3
| | | | svn path=/main/trunk/; revision=15394
* Bug #268724 - Show a warning message for --unmerge operations and suggestZac Medico2010-02-191-0/+9
| | | | | | --depclean <atom> instead. svn path=/main/trunk/; revision=15393
* Bug #303519 - Call warnings.warn() with stacklevel=2 inside dep_getkey andZac Medico2010-02-191-3/+3
| | | | | | dep_getcpv so that the caller is displayed. svn path=/main/trunk/; revision=15392
* Fix deprecated usage of dep_getkey.Zac Medico2010-02-191-1/+1
| | | | svn path=/main/trunk/; revision=15391
* Fix deprecated usage of dep_getkey.Zac Medico2010-02-191-2/+2
| | | | svn path=/main/trunk/; revision=15390
* Fix deprecated usage of dep_getkey.Zac Medico2010-02-191-1/+1
| | | | svn path=/main/trunk/; revision=15388
* Fix deprecated usage of dep_getkey.Zac Medico2010-02-191-3/+1
| | | | svn path=/main/trunk/; revision=15383
* Fix deprecated usage of dep_getkey.Zac Medico2010-02-191-3/+3
| | | | svn path=/main/trunk/; revision=15382
* Fix deprecated dep_getkey usage in match_from_list.Zac Medico2010-02-191-1/+3
| | | | svn path=/main/trunk/; revision=15381
* Make dep_getkey() recommend cpv_getkey() if given a cpv.Zac Medico2010-02-191-1/+6
| | | | svn path=/main/trunk/; revision=15380
* Use a property to trigger deprecation warnings if binarytree.remotepkgsZac Medico2010-02-191-9/+27
| | | | | | is accessed. svn path=/main/trunk/; revision=15379
* Remove the deprecated 'clone' parameter from the portagetree constructor.Zac Medico2010-02-191-10/+2
| | | | svn path=/main/trunk/; revision=15378
* Remove deprecated portdbapi.getfetchlist() method.Zac Medico2010-02-191-24/+0
| | | | svn path=/main/trunk/; revision=15377
* Remove deprecated binarytree.get_use() method.Zac Medico2010-02-191-5/+0
| | | | svn path=/main/trunk/; revision=15376
* Remove the deprecated 'clone' parameter to the binarytree constructor.Zac Medico2010-02-191-14/+2
| | | | svn path=/main/trunk/; revision=15375
* Deprecate the unused getbinpkgsonly parameter to binarytree.populate().Zac Medico2010-02-191-3/+11
| | | | svn path=/main/trunk/; revision=15374
* Allow --rebuilt-binaries to trigger downgrades.Zac Medico2010-02-181-2/+1
| | | | svn path=/main/trunk/; revision=15373
* Only enable --rebuilt-binaries automatically if --update and --deep are alsoZac Medico2010-02-185-9/+18
| | | | | | enabled. svn path=/main/trunk/; revision=15372
* Remove unused merge_cmd variable.Zac Medico2010-02-181-1/+0
| | | | svn path=/main/trunk/; revision=15371
* Remove diffutils version detection code since it's not really needed.Zac Medico2010-02-181-13/+2
| | | | svn path=/main/trunk/; revision=15370
* Update the spinner in depgraph._serialize_tasks when searching forZac Medico2010-02-181-0/+1
| | | | | | suitable uninstall tasks. svn path=/main/trunk/; revision=15369
* Fix broken diffutils vercmp code.Zac Medico2010-02-181-3/+2
| | | | svn path=/main/trunk/; revision=15368
* Fix colors for --rebuilt-binaries docs.Zac Medico2010-02-181-1/+1
| | | | svn path=/main/trunk/; revision=15367
* Add a comment about slowness in _serialize_tasks when there are lots ofZac Medico2010-02-181-0/+4
| | | | | | blockers to solve. svn path=/main/trunk/; revision=15366
* Bug #305393 - Handle new sdiff exit status for diffutils-2.9.Zac Medico2010-02-181-0/+16
| | | | svn path=/main/trunk/; revision=15365
* Add a --rebuilt-binaries[=n] option, causing automatic replacement ofZac Medico2010-02-184-2/+49
| | | | | | | | | | | | | installed packages with binary packages that have been rebuilt. Rebuilds are detected by comparison of BUILD_TIME package metadata. This option is enabled automatically when using binary packages, so rebuilt binaries are installed with a user's typical update command. This isn't possible with the existing @rebuild-binaries package set since that only works with --selective=n and therefore can't be used with a typical world update. The package set framework should support this type of behavior sometime in the future. svn path=/main/trunk/; revision=15364
* Add @rebuilt-binaries set which uses BUILD_TIME to pull in binary packagesZac Medico2010-02-174-36/+63
| | | | | | | that have a different build time from a currently installed package of the exact same version. svn path=/main/trunk/; revision=15363
* Bug #303567 - Merge libc asap, in order to account for implicit dependencies.Zac Medico2010-02-172-0/+10
| | | | svn path=/main/trunk/; revision=15362
* Fix type in CLEAN_DELAY docs.Zac Medico2010-02-161-1/+2
| | | | svn path=/main/trunk/; revision=15361
* Cache BUILD_TIME in $PKGDIR/Packages and inside bindbapi.Zac Medico2010-02-151-2/+3
| | | | svn path=/main/trunk/; revision=15360
* Cache BUILD_TIME in Package.metadata.Zac Medico2010-02-151-1/+1
| | | | svn path=/main/trunk/; revision=15359
* Cache BUILD_TIME in vdb_metadata.pickle.Zac Medico2010-02-151-1/+1
| | | | svn path=/main/trunk/; revision=15358
* Add a BUILD_TIME vdb entry containing the integer number of seconds since theZac Medico2010-02-151-0/+5
| | | | | | | | | | unix Epoch. This will be useful for creating package sets that involve comparison of installed packages to binary packages, especially for binhost users. See discussion here: http://archives.gentoo.org/gentoo-portage-dev/msg_d068a8deefd179cc23808bc23f3de200.xml svn path=/main/trunk/; revision=15357
* Add a 'trees' parameter to portdbapi.cp_all(). Thanks to Brian Dolbec (dol-sen)Zac Medico2010-02-151-3/+12
| | | | | | for this patch. svn path=/main/trunk/; revision=15356
* Use config.environ() instead of config.items() when spawning FETCHCOMMAND.Zac Medico2010-02-151-1/+1
| | | | svn path=/main/trunk/; revision=15355
* Make sure that config._accept_chost() accepts empty CHOST.Zac Medico2010-02-141-2/+3
| | | | svn path=/main/trunk/; revision=15354
* Prevent CHOST vdb entries from being created for virtual packages.Zac Medico2010-02-142-0/+10
| | | | svn path=/main/trunk/; revision=15353
* Bug #304981 - Truncate the build log after successful fetch, instead ofZac Medico2010-02-141-3/+4
| | | | | | removing it, so as not to interfere with tail -f. svn path=/main/trunk/; revision=15352
* Evaluate conditional USE deps for *DEPEND atoms saved in vdb entries.Zac Medico2010-02-142-0/+21
| | | | svn path=/main/trunk/; revision=15351