summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix LazyDatabasesDict so that databases only need to be created once.Zac Medico2006-04-111-0/+1
| | | | svn path=/main/trunk/; revision=3131
* Make etc-update play nice with symlinks for bug #129515. Thanks to Patrick ↵Zac Medico2006-04-111-1/+6
| | | | | | McLean for the initial patch. svn path=/main/trunk/; revision=3130
* Make dispatch-conf play nice with symlinks for bug #129515. Thanks to ↵Zac Medico2006-04-111-1/+9
| | | | | | Patrick McLean for the initial patch. svn path=/main/trunk/; revision=3129
* Make qmerge imply noclean for bug #129559.Zac Medico2006-04-111-0/+3
| | | | svn path=/main/trunk/; revision=3128
* Implement lazy construction of global databases db[root]["porttree"] and ↵Zac Medico2006-04-111-4/+27
| | | | | | | | db[root]["bintree"] and automatically populate db[root]["bintree"] on access. svn path=/main/trunk/; revision=3127
* Support EBUILD_PHASE during more phases for bug #129244.Zac Medico2006-04-111-0/+2
| | | | svn path=/main/trunk/; revision=3126
* Support EBUILD_PHASE during package and rpm phases for bug #129244.Zac Medico2006-04-112-2/+4
| | | | svn path=/main/trunk/; revision=3125
* Remove dead code from portage.digestcheck().Zac Medico2006-04-111-86/+0
| | | | svn path=/main/trunk/; revision=3124
* Remove the "db" parameter from digestcheck() because it's not needed.Zac Medico2006-04-111-3/+1
| | | | svn path=/main/trunk/; revision=3123
* Remove the "db" parameter from digestParseFile() because it's not needed.Zac Medico2006-04-111-3/+2
| | | | svn path=/main/trunk/; revision=3122
* Remove the "db" parameter from digestgen() because it's not needed.Zac Medico2006-04-111-4/+1
| | | | svn path=/main/trunk/; revision=3121
* Fix FetchlistDict.keys() so it does the same porttrees trick as __getitem__.Zac Medico2006-04-111-1/+8
| | | | svn path=/main/trunk/; revision=3120
* Fix FetchlistDict so usage of global portdb leaves portdb.porttrees intact.Zac Medico2006-04-111-7/+11
| | | | svn path=/main/trunk/; revision=3119
* kill off custom bash hacks and replace with calls to find/xargs #121368Mike Frysinger2006-04-111-68/+18
| | | | svn path=/main/trunk/; revision=3118
* Ensure that binarytree.populate is called even when the first access isJason Stubbs2006-04-101-0/+7
| | | | | | via binarytree.dbapi.{aux_get,match}. svn path=/main/trunk/; revision=3117
* Use os.path.join for cleaner joins.Zac Medico2006-04-101-6/+6
| | | | svn path=/main/trunk/; revision=3116
* Make repoman ignore deeply nested CVS directories and files they contain in ↵Zac Medico2006-04-101-0/+2
| | | | | | order to prevent false file.name errors (files with CVS directories may contain commas). svn path=/main/trunk/; revision=3115
* Add docstrings for FetchlistDict.Zac Medico2006-04-101-1/+9
| | | | svn path=/main/trunk/; revision=3114
* Simplify the porttrees logic for FetchlistDict.Zac Medico2006-04-101-5/+2
| | | | svn path=/main/trunk/; revision=3113
* Remove unnecessary calls to dict.keys() from portage_manifest.Zac Medico2006-04-101-7/+7
| | | | svn path=/main/trunk/; revision=3112
* Remove db and mysettings from Manifest and replace them with a mapping ↵Zac Medico2006-04-103-11/+31
| | | | | | object that provides access to fetch lists for each cpv. svn path=/main/trunk/; revision=3111
* Pass DISTDIR into the Manifest constructor instead of getting it from ↵Zac Medico2006-04-103-32/+31
| | | | | | mysettings because mysettings will be eliminated soon. svn path=/main/trunk/; revision=3110
* Remove dependency on the core portage module from portage_manifest.Zac Medico2006-04-092-13/+35
| | | | svn path=/main/trunk/; revision=3109
* simpler dosym to make mr bones happyMike Frysinger2006-04-091-3/+4
| | | | svn path=/main/trunk/; revision=3108
* Remove dead code from portage.digestParseFile().Zac Medico2006-04-091-30/+0
| | | | svn path=/main/trunk/; revision=3107
* Encapsulate type guessing logic in a new Manifest method.Zac Medico2006-04-092-9/+14
| | | | svn path=/main/trunk/; revision=3106
* For compatibility, return a tuple of 3 when an OSError is raised in ↵Zac Medico2006-04-091-1/+1
| | | | | | portage_checksum.verify_all() svn path=/main/trunk/; revision=3105
* Move mf.create out of a loop because it should only need to be called once.Zac Medico2006-04-091-1/+1
| | | | svn path=/main/trunk/; revision=3104
* Supply missing parameters to a checkFileHashes call.Zac Medico2006-04-091-1/+1
| | | | svn path=/main/trunk/; revision=3103
* Remove bin/mirror.py because, according to Brian Harring, it's obsoleted by ↵v2.1_pre8Zac Medico2006-04-082-167/+1
| | | | | | mirror-dist. svn path=/main/trunk/; revision=3101
* Remove pym/portage_contents.py because it's not used. Thanks to Brian ↵Zac Medico2006-04-081-161/+0
| | | | | | Harring for noticing. svn path=/main/trunk/; revision=3100
* Remove pym/dcdialog.py because it's not used. Thanks to antarus for noticing.Zac Medico2006-04-081-412/+0
| | | | svn path=/main/trunk/; revision=3099
* Add copyright headers for portage_update and portage_manifest.Zac Medico2006-04-082-0/+7
| | | | svn path=/main/trunk/; revision=3098
* Fix some minor issues with the anydbm cache module. Thanks to Halcyon for ↵Zac Medico2006-04-081-3/+3
| | | | | | reporting. svn path=/main/trunk/; revision=3097
* Remove redundant "please tell me what to do" code, which is now handled earlier.Zac Medico2006-04-081-5/+0
| | | | svn path=/main/trunk/; revision=3096
* Fix myaction logic so that --resume works (with --pretend) for non-root users.Zac Medico2006-04-081-3/+4
| | | | svn path=/main/trunk/; revision=3095
* Protect string indexes during input stripping in dep_getkey and dep_getcpv.Jason Stubbs2006-04-081-11/+7
| | | | | | Bug #129193 svn path=/main/trunk/; revision=3094
* Fix myaction logic (myaction==None is actually valid, regression from r3090).Zac Medico2006-04-071-2/+2
| | | | svn path=/main/trunk/; revision=3093
* remove reference to a script that doesnt existMike Frysinger2006-04-071-2/+0
| | | | svn path=/main/trunk/; revision=3092
* Fix this random y that was in the last commit...I blame nano :PAlec Warner2006-04-071-1/+1
| | | | svn path=/main/trunk/; revision=3091
* Fix a regression in security handling, emerge with no options should print ↵Alec Warner2006-04-071-1/+4
| | | | | | out helpful information, not tell you you need to be root ;) svn path=/main/trunk/; revision=3090
* Thanks to jforman for finding this one, emerge was not helpful when ↵Alec Warner2006-04-071-3/+9
| | | | | | permissions on the world file are not so good, so in the case of permission denied, we reraise, essentially telling the user we can't read the world file. In the case of it not existing, we assume the user knows what they are doing and we print a squelchable warning message. svn path=/main/trunk/; revision=3089
* Optimize manifest2AuxfileFilter handling of ignored directories. Thanks to ↵Zac Medico2006-04-071-3/+1
| | | | | | Brian Harring for the patch. svn path=/main/trunk/; revision=3088
* Raise exceptions when appropriate in the atomic_ofstream constructor for bug ↵Zac Medico2006-04-071-0/+2
| | | | | | #129098. svn path=/main/trunk/; revision=3087
* Speed up portage.config.keys()Alec Warner2006-04-071-6/+1
| | | | svn path=/main/trunk/; revision=3086
* Change == None to is NoneAlec Warner2006-04-078-74/+74
| | | | svn path=/main/trunk/; revision=3085
* only display syncing progress for each file when --verbose is set; thanks ↵Simon Stelling2006-04-061-2/+2
| | | | | | Olaf Hering, bug 128362 svn path=/main/trunk/; revision=3084
* set PKG_CONFIG_PATH correct on multilib systems; bug 126801Simon Stelling2006-04-061-0/+6
| | | | svn path=/main/trunk/; revision=3083
* add /usr/local/{,s}bin to PATH; bug 117713Simon Stelling2006-04-061-1/+1
| | | | svn path=/main/trunk/; revision=3082
* emerge info -> emerge --infoSimon Stelling2006-04-061-1/+1
| | | | svn path=/main/trunk/; revision=3080