summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Remove the PKG_*ARG* color classes in order to simplify things since it's ↵Zac Medico2007-07-061-8/+2
| | | | | | questionable whether many people will want to use them. Also, make the PKG_*SYSTEM colors default to the traditional colors since people are generally most interested in world packages. (trunk r7174) svn path=/main/branches/2.1.2/; revision=7175
* Merge portdbapi.getRepositories() from trunk.Zac Medico2007-07-052-1/+36
| | | | svn path=/main/branches/2.1.2/; revision=7158
* backport r7087 and r7093 to ease the upgrade to 2.2 wrt verbose pretend displayMarius Mauch2007-07-051-0/+13
| | | | svn path=/main/branches/2.1.2/; revision=7156
* For bug #183861, allow a color class in color.map to specify a space ↵Zac Medico2007-07-051-20/+68
| | | | | | separated list of attributes so that any combination of foreground, background, and other attributes is possible. Also make color class handling for package sets more consistent. Thanks to Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com>. svn path=/main/branches/2.1.2/; revision=7151
* Add a 0xAAAA00 rgb color code to represent the darkyellow color that some ↵Zac Medico2007-06-291-1/+3
| | | | | | terminals have instead of brown. (trunk r7094) svn path=/main/branches/2.1.2/; revision=7095
* Fix typo. (trunk r6989)Zac Medico2007-06-291-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7086
* For bug #144333, document the new --reinstall=changed-use option. (trunk r7081)Zac Medico2007-06-281-1/+7
| | | | svn path=/main/branches/2.1.2/; revision=7082
* For bug #142473, add 2 additional color classes for system packages and ↵Zac Medico2007-06-281-0/+4
| | | | | | packages matched by arguments. (trunk r7074:7076) svn path=/main/branches/2.1.2/; revision=7077
* For bug #183431, catch a ParseError caused by a corrupt profile and dump an ↵Zac Medico2007-06-281-1/+8
| | | | | | error message. This allows emerge to continue with actions that don't require a valid profile, such as --sync. (trunk r7073) svn path=/main/branches/2.1.2/; revision=7074
* Send the ebuild die message through eerror and make sure that elog_process() ↵Zac Medico2007-06-271-29/+27
| | | | | | gets called when an ebuild dies. This makes the elog echo module display the die message last in case other elog messages push the original die message off of the top of the screen. (trunk r7047) svn path=/main/branches/2.1.2/; revision=7049
* Preserve merge order in elog output. (trunk r7046)Zac Medico2007-06-271-13/+7
| | | | svn path=/main/branches/2.1.2/; revision=7048
* Short circuit the loop as soon as missing hashes are detected. (trunk r7044)Zac Medico2007-06-261-2/+2
| | | | svn path=/main/branches/2.1.2/; revision=7045
* Add one more size == 0 check to digestgen(). (trunk r7040:7042)Zac Medico2007-06-261-0/+3
| | | | svn path=/main/branches/2.1.2/; revision=7043
* Add sanity checks in fetch() and digestgen() to automatically detect and ↵Zac Medico2007-06-261-2/+26
| | | | | | handle invalid empty distfiles since some users have reported difficulty when trying to create digests. (trunk r7039) svn path=/main/branches/2.1.2/; revision=7040
* For bug #142473, add 4 color classes corresponding to combinations of ↵Zac Medico2007-06-251-0/+4
| | | | | | world/merge/nomerge attributes of each package. (trunk r7031) svn path=/main/branches/2.1.2/; revision=7032
* Don't use urljoin() in binarytree.gettbz2() since it doesn't work correctly ↵Zac Medico2007-06-251-2/+3
| | | | | | wih unrecognized protocols like sftp. (trunk r7027) svn path=/main/branches/2.1.2/; revision=7028
* Fix file_get_lib() so it behaves the same way with sftp as it does with ↵Zac Medico2007-06-251-1/+18
| | | | | | other protocols. (trunk r7023:7024) svn path=/main/branches/2.1.2/; revision=7026
* For bug #175891, add sftp protocol support via the paramiko library.Zac Medico2007-06-251-0/+20
| | | | svn path=/main/branches/2.1.2/; revision=7022
* Allow emerge --fetchonly to continue downloading other packages after a ↵Zac Medico2007-06-251-1/+2
| | | | | | download from a binhost fails. (trunk r6709) svn path=/main/branches/2.1.2/; revision=7021
* Fix resume logic in binarytree.gettbz2(). (trunk r7017:7019)Zac Medico2007-06-251-4/+4
| | | | svn path=/main/branches/2.1.2/; revision=7020
* For bug #175891, support ${FETCHCOMMAND}_${PROTOCOL} in ↵Zac Medico2007-06-251-3/+12
| | | | | | binarytree.gettbz2(). (trunk r7016) svn path=/main/branches/2.1.2/; revision=7017
* Clean up file_get() to use shlex, varexpand, and spawn. (trunk r7014)Zac Medico2007-06-251-22/+13
| | | | svn path=/main/branches/2.1.2/; revision=7015
* Fix binarytree.isremote() to be consistent with binarytree.gettbz2() logic ↵Zac Medico2007-06-241-6/+12
| | | | | | wrt partially downloaded files. (trunk r7012) svn path=/main/branches/2.1.2/; revision=7013
* add hashlib support for checksum verification, refactor checksum functions ↵Zac Medico2007-06-241-53/+71
| | | | | | to not look like a complete mess (bug #148514, trunk r6972) svn path=/main/branches/2.1.2/; revision=7010
* dont break when the binhost url doesn't end with a slash (bug #144440, trunk ↵Zac Medico2007-06-241-2/+8
| | | | | | r6978) svn path=/main/branches/2.1.2/; revision=7003
* sort the world file before writing it and ensure that it's terminated by a ↵Zac Medico2007-06-241-1/+2
| | | | | | newline (bug #180706, trunk r6976 and r6999) svn path=/main/branches/2.1.2/; revision=7000
* get ACCEPT_KEYWORDS from the env in gvisible() to properly handle negated ↵Zac Medico2007-06-241-0/+8
| | | | | | values (bug #139600) (trunk r6981 and r6987) svn path=/main/branches/2.1.2/; revision=6998
* - s/!owned/replaced/ in merge output to clarify it (trunk r6975)Zac Medico2007-06-241-25/+27
| | | | | | | - Fix column alignment in unmerge output. (trunk r6988) - Fix typos. (trunk r6989 and r6996) svn path=/main/branches/2.1.2/; revision=6997
* For bug #182964, replace os.rename() with portage.movefile() in cases where ↵Zac Medico2007-06-241-5/+13
| | | | | | the parent directory might change. (trunk r6983) svn path=/main/branches/2.1.2/; revision=6984
* Revert r6968 since shutil.move() is broken internally.Zac Medico2007-06-232-14/+14
| | | | svn path=/main/branches/2.1.2/; revision=6971
* For bug #182964, replace os.rename() with shutil.move() in order to handle ↵Zac Medico2007-06-232-14/+14
| | | | | | EXDEV errors that are triggered by layered filesystems. (trunk r6967) svn path=/main/branches/2.1.2/; revision=6968
* Show which $ROOT a package was merged to when $ROOT is not /. (trunk r6959)Zac Medico2007-06-221-1/+4
| | | | svn path=/main/branches/2.1.2/; revision=6960
* - Make elog finalize() handling safe for PORTAGE_CONFIGROOT. (trunk r6955)Zac Medico2007-06-223-14/+33
| | | | | | - Dump mod_echo elog output inside post_emerge(), just before the other notifications that happen at exit. (trunk r6953) svn path=/main/branches/2.1.2/; revision=6958
* Clean up the profile masking code. (trunk r6292)Zac Medico2007-06-221-9/+5
| | | | svn path=/main/branches/2.1.2/; revision=6936
* Implement iterkeys on top of __iter__ instead of vice versa. Thanks to ↵Zac Medico2007-06-229-12/+22
| | | | | | Brian Harring for the suggestion. (trunk r6918) svn path=/main/branches/2.1.2/; revision=6934
* config class mapping interface cleanups from trunk r6916, r6919, and r6920.Zac Medico2007-06-221-26/+23
| | | | svn path=/main/branches/2.1.2/; revision=6933
* Remove more unnecessary list generation. (trunk r6913)Zac Medico2007-06-226-10/+7
| | | | svn path=/main/branches/2.1.2/; revision=6932
* Remove more unnecessary list generation. (trunk r6912)Zac Medico2007-06-226-25/+22
| | | | svn path=/main/branches/2.1.2/; revision=6931
* Remove lots of unnecessary list generation via dict.keys(). (trunk r6911)Zac Medico2007-06-221-13/+22
| | | | svn path=/main/branches/2.1.2/; revision=6930
* Print filename when displaying package.mask comments (trunk r5974)Zac Medico2007-06-221-22/+26
| | | | svn path=/main/branches/2.1.2/; revision=6928
* Check if entries contain the required hashes before writing the Manifest ↵Zac Medico2007-06-221-0/+7
| | | | | | (trunk r5902) svn path=/main/branches/2.1.2/; revision=6926
* Some minor fixes for manifest code (trunk r5735)Zac Medico2007-06-211-8/+14
| | | | svn path=/main/branches/2.1.2/; revision=6923
* Allow per-module filtering based on loglevels in addition to the global ↵Zac Medico2007-06-211-21/+47
| | | | | | PORTAGE_ELOG_CLASSES one, add wildcard support for loglevels (trunk r5706:5709) svn path=/main/branches/2.1.2/; revision=6921
* default --help should be usable, so make the extended output require ↵Zac Medico2007-06-211-7/+4
| | | | | | --verbose (trunk r6262:6264) svn path=/main/branches/2.1.2/; revision=6906
* fix grammar in error output (trunk r6285)Zac Medico2007-06-211-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=6905
* add new echo module for people who don't want any real logging (trunk r6458)Zac Medico2007-06-211-0/+30
| | | | svn path=/main/branches/2.1.2/; revision=6899
* In dblink._security_check(), use os.path.realpath to make sure that the same ↵Zac Medico2007-06-211-2/+8
| | | | | | path isn't counted twice. (trunk r6894) svn path=/main/branches/2.1.2/; revision=6895
* For bug #180165, make portageq print a "Permission denied" error when ↵Zac Medico2007-06-202-3/+9
| | | | | | appropriate and make has_version die if portageq has an unexpected exit code. (trunk r6880:6882) svn path=/main/branches/2.1.2/; revision=6885
* Fix cacheddir() to behave properly if os.listdir() raises errno.EACCES ↵Zac Medico2007-06-191-1/+9
| | | | | | (Permission denied). (trunk r6879) svn path=/main/branches/2.1.2/; revision=6880
* For bug #143340, give an appropriate message when there is no read access to ↵Zac Medico2007-06-191-0/+6
| | | | | | a binary package. (trunk r6877) svn path=/main/branches/2.1.2/; revision=6878