summaryrefslogtreecommitdiffstats
path: root/pym/portage
Commit message (Collapse)AuthorAgeFilesLines
* Use PackageSet.getAtoms() as a wrapper around load() since load() can ↵Zac Medico2007-07-171-6/+2
| | | | | | trigger unnecessary stat calls. svn path=/main/trunk/; revision=7302
* Make PackageSet._updateAtomMap() clear the map in case something was removed.Zac Medico2007-07-171-0/+1
| | | | svn path=/main/trunk/; revision=7301
* Make sure the atoms are loaded when calling PackageSet.findAtomForPackage().Zac Medico2007-07-171-0/+1
| | | | svn path=/main/trunk/; revision=7289
* Make sure PackageSet._atoms is always a set.Zac Medico2007-07-171-1/+1
| | | | svn path=/main/trunk/; revision=7288
* Sort the atoms when writing the world file.Zac Medico2007-07-161-1/+1
| | | | svn path=/main/trunk/; revision=7285
* break another recursion cycle, add special subclass for "world" to handle ↵Marius Mauch2007-07-162-4/+24
| | | | | | locking svn path=/main/trunk/; revision=7282
* break recursion cycleMarius Mauch2007-07-161-2/+5
| | | | svn path=/main/trunk/; revision=7280
* replace emerge.AtomSet with portage.sets.InternalPackageSetMarius Mauch2007-07-162-15/+84
| | | | svn path=/main/trunk/; revision=7279
* disable FEATURES=gpg as it's unmaintained, useless and likely broken for ↵Marius Mauch2007-07-161-0/+3
| | | | | | many people svn path=/main/trunk/; revision=7278
* fix metadata parsing for file-based sets, add support for user-defined file ↵Marius Mauch2007-07-162-3/+17
| | | | | | sets in test code svn path=/main/trunk/; revision=7277
* add support for metadataMarius Mauch2007-07-166-4/+43
| | | | svn path=/main/trunk/; revision=7276
* ignore already applied glsas when loading the security setMarius Mauch2007-07-163-8/+33
| | | | svn path=/main/trunk/; revision=7275
* fix load logic for editable sets once moreMarius Mauch2007-07-161-3/+5
| | | | svn path=/main/trunk/; revision=7274
* use a more logical approach for editable setsMarius Mauch2007-07-162-47/+46
| | | | svn path=/main/trunk/; revision=7273
* Make PackageSet to behave more like a real set, and change loading logic a ↵Marius Mauch2007-07-162-9/+24
| | | | | | bit to avoid unnecessary reloads for editable sets svn path=/main/trunk/; revision=7272
* s/node/atom/ and other minor updatesMarius Mauch2007-07-166-44/+70
| | | | svn path=/main/trunk/; revision=7271
* Save the repo name along with the other metadata inside dyn_compile() so ↵Zac Medico2007-07-132-15/+10
| | | | | | that it's saved inside binary packages for when they are finally merged. svn path=/main/trunk/; revision=7247
* Add "reset" to the list of attributes.Zac Medico2007-07-121-1/+2
| | | | svn path=/main/trunk/; revision=7242
* Fix typo.Zac Medico2007-07-111-1/+1
| | | | svn path=/main/trunk/; revision=7228
* For bug #184679, handle ENOTDIR by finding the non-directory parent and ↵Zac Medico2007-07-111-4/+29
| | | | | | testing that for collision instead. svn path=/main/trunk/; revision=7220
* For bug #184843, allow USE_EXPAND variables to pass through if none of their ↵Zac Medico2007-07-101-22/+37
| | | | | | flags are in IUSE. This allows packages that support LINGUAS but don't declare it in IUSE to use the variable outside of the USE_EXPAND context. svn path=/main/trunk/; revision=7218
* For bug #184604, make env-update write $ in front of quoted values when ↵Zac Medico2007-07-101-2/+6
| | | | | | appropriate. svn path=/main/trunk/; revision=7216
* Remove the repo_name warning in the portdbapi constructor since we don't ↵Zac Medico2007-07-091-2/+3
| | | | | | want to see a warning every time the portage module is imported. svn path=/main/trunk/; revision=7212
* - be quiet about overlays profiles/repo_name entry when --quiet mode is usedNed Ludd2007-07-091-1/+1
| | | | svn path=/main/trunk/; revision=7211
* Pass the file path into the PermissionDenied exception.Zac Medico2007-07-081-2/+3
| | | | svn path=/main/trunk/; revision=7204
* Make dblink invalidate the vardbapi caches for each merge and unmerge. ↵Zac Medico2007-07-081-5/+21
| | | | | | Don't use portage.listdir() since mtime granularity can prevent cachedir from invalidating it's cache properly and this redundant cache layer isn't needed anyway. This should solve the intermittent failure of AUTOCLEAN to properly clean packages. svn path=/main/trunk/; revision=7203
* For bug #184566, enable the emerge --info action to run an option pkg_info() ↵Zac Medico2007-07-081-2/+2
| | | | | | function from each installed ebuild. svn path=/main/trunk/; revision=7201
* Add color classes PROMPT_CHOICE_{DEFAULT,OTHER} for emerge's Yes/No prompt.Zac Medico2007-07-081-0/+2
| | | | svn path=/main/trunk/; revision=7199
* When depgraph updates preferences for old-style virtuals, also update them ↵Zac Medico2007-07-061-7/+14
| | | | | | in the global config so that they are consistent everywhere. Optimize config.setinst() to minimize the work done. svn path=/main/trunk/; revision=7185
* Misc color fixes. Thanks to Arfrever Frehtes Taifersar Arahesis ↵Zac Medico2007-07-061-12/+12
| | | | | | <Arfrever.FTA@GMail.Com> for this patch from bug#183861, comment #9. svn path=/main/trunk/; revision=7183
* 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. svn path=/main/trunk/; revision=7174
* fix copyright yearMarius Mauch2007-07-067-7/+7
| | | | svn path=/main/trunk/; revision=7172
* Add first draft of PackageSet backend modulesMarius Mauch2007-07-066-0/+277
| | | | svn path=/main/trunk/; revision=7170
* Enable keyword expansionMarius Mauch2007-07-061-1/+1
| | | | svn path=/main/trunk/; revision=7169
* add modified copy of gentoolkits glsa.py (r410)Marius Mauch2007-07-061-0/+596
| | | | svn path=/main/trunk/; revision=7168
* Remove fallback imports for set(), and note minimum requirement of python-2.4Marius Mauch2007-07-059-24/+6
| | | | svn path=/main/trunk/; revision=7157
* Fix broken code concatenation logic in parse_color_map().Zac Medico2007-07-041-1/+3
| | | | svn path=/main/trunk/; revision=7148
* Add a "onerror" callback to parse_color_map() for handling each ParseError ↵Zac Medico2007-07-041-5/+33
| | | | | | that would otherwise be raised. svn path=/main/trunk/; revision=7147
* For bug #183861, allow a color class in color.map to specify a space ↵Zac Medico2007-07-041-16/+34
| | | | | | separated list of attributes so that any combination of foreground, background, and other attributes is possible. Thanks to Arfrever Frehtes Taifersar Arahesis <Arfrever.FTA@GMail.Com> for this patch. svn path=/main/trunk/; revision=7146
* Clean up system and world set handling. For forward compatibility, the ↵Zac Medico2007-07-031-5/+2
| | | | | | world file handling now allows the world file to contain arbitrary atoms such as slot atoms. svn path=/main/trunk/; revision=7131
* Remove old wheel group warnings since portage stopped using this group long ago.Zac Medico2007-06-301-4/+0
| | | | svn path=/main/trunk/; revision=7099
* apply additional phase filters as otherwise some messages are logged in both ↵Marius Mauch2007-06-302-2/+34
| | | | | | unmerge and merge svn path=/main/trunk/; revision=7098
* ewarn when merging a package and the source repository/overlay does not have ↵Marius Mauch2007-06-301-0/+6
| | | | | | a name svn path=/main/trunk/; revision=7097
* print a notice when a repository/overlay does not have a nameMarius Mauch2007-06-301-0/+2
| | | | svn path=/main/trunk/; revision=7096
* Add a 0xAAAA00 rgb color code to represent the darkyellow color that some ↵Zac Medico2007-06-291-1/+3
| | | | | | terminals have instead of brown. svn path=/main/trunk/; revision=7094
* Test for existence of the getRepositories method since bindbapi doesn't have ↵Zac Medico2007-06-291-1/+2
| | | | | | it atm. svn path=/main/trunk/; revision=7093
* display source repository for installed package and target package (bug #67072)Marius Mauch2007-06-291-1/+1
| | | | svn path=/main/trunk/; revision=7089
* Store name of source repository in vdb node for later comparisonMarius Mauch2007-06-291-0/+10
| | | | svn path=/main/trunk/; revision=7087
* For bug #142473, add 2 additional color classes for system packages and ↵Zac Medico2007-06-281-0/+4
| | | | | | packages matched by arguments. svn path=/main/trunk/; revision=7075
* 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. svn path=/main/trunk/; revision=7073