summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Update syntax of numbers for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2017-71/+71
| | | | | | (2to3-3.1 -f numliterals -nw ${FILES}) svn path=/main/trunk/; revision=14292
* Support print() function with Python 2 in some files.Arfrever Frehtes Taifersar Arahesis2009-09-201-0/+1
| | | | svn path=/main/trunk/; revision=14291
* Update syntax of calls to print() for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2027-728/+727
| | | | | | (2to3-3.1 -f print -nw ${FILES}) svn path=/main/trunk/; revision=14290
* Update syntax of 'except' statements for compatibility with Python 3.Arfrever Frehtes Taifersar Arahesis2009-09-2053-333/+333
| | | | | | (2to3-3.1 -f except -nw ${FILES}) svn path=/main/trunk/; revision=14289
* Bug #285637 - Fix NameError exception triggered by InvalidAtom inZac Medico2009-09-201-1/+1
| | | | | | grabfile_package(). svn path=/main/trunk/; revision=14288
* Add isinstance(mydep, Atom) checks to the dep_* functions since we don't use av2.2_rc41Zac Medico2009-09-191-6/+15
| | | | | | metaclass to do that anymore (due to performance). svn path=/main/trunk/; revision=14286
* Fix config.setinst() to add Atom instances to the provider lists instead ofZac Medico2009-09-191-1/+1
| | | | | | plain str. svn path=/main/trunk/; revision=14285
* Revert accidental changes _unicode_module_wrapper.__getattribute__ fromZac Medico2009-09-191-4/+4
| | | | | | previous commit. svn path=/main/trunk/; revision=14284
* Remove obsolete InvalidAtom handler in _add_pkg_dep_string().Zac Medico2009-09-192-19/+12
| | | | svn path=/main/trunk/; revision=14283
* Avoid lots of redundant Atom constructor calls. Thanks to Marat RadchenkoZac Medico2009-09-198-68/+79
| | | | | | <marat@slonopotamus.org> for the initial patch from bug #276813. svn path=/main/trunk/; revision=14282
* Fix _expand_new_virtuals() to preserve USE deps in atoms for new-styleZac Medico2009-09-192-52/+53
| | | | | | virtuals, and update the corresponding depgraph code. svn path=/main/trunk/; revision=14281
* Use a dict for Package.metadata, because it's faster. Thanks to MaratZac Medico2009-09-191-49/+33
| | | | | | Radchenko <marat@slonopotamus.org> for this patch from bug #276813. svn path=/main/trunk/; revision=14280
* Atom optimizations. Remove the metaclass and cache since it just slows itZac Medico2009-09-181-52/+21
| | | | | | down. Thanks to Marat Radchenko <marat@slonopotamus.org> for this patch. svn path=/main/trunk/; revision=14279
* Fix broken virtual depth code from previous commit.Zac Medico2009-09-141-2/+1
| | | | svn path=/main/trunk/; revision=14273
* Add support in depgraph._add_pkg_dep_string() for adding indirect virtualZac Medico2009-09-141-6/+36
| | | | | | | | deps to the graph. This takes advantage of circular dependency avoidance that's done by dep_zapdeps, while avoiding the dependency graph distortion reported in bug #283795. svn path=/main/trunk/; revision=14272
* Make depgraph._select_atoms() return a dict, in order to separate selectedZac Medico2009-09-141-17/+30
| | | | | | direct deps from indirect virtual deps. svn path=/main/trunk/; revision=14271
* When _expand_new_virtuals() is called by repoman, skip expansion of new-styleZac Medico2009-09-141-5/+17
| | | | | | virtuals. svn path=/main/trunk/; revision=14270
* Reimplement the code from bug #283795 so that indirect deps are preservedZac Medico2009-09-142-37/+57
| | | | | | | | for later use. TODO: Write code to add selected indirect virtual deps to the graph. This will take advantage of circular dependency avoidance that's done by dep_zapdeps. svn path=/main/trunk/; revision=14269
* Simplify cpv_getkey() by just calling dep_getkey('=' + mycpv).Zac Medico2009-09-142-17/+1
| | | | svn path=/main/trunk/; revision=14264
* Make dep_getcpv() use Atom, and fall back to legacy code for backward compat.Zac Medico2009-09-141-10/+7
| | | | svn path=/main/trunk/; revision=14262
* Insice match_from_list(), use remove_slot() instead of dep_getcpv() whereZac Medico2009-09-141-1/+1
| | | | | | appropriate. svn path=/main/trunk/; revision=14261
* Use a regular expression for cpv_getkey(), and fall back to legacy code ifZac Medico2009-09-142-0/+6
| | | | | | no match is found. svn path=/main/trunk/; revision=14259
* Make get_operator() use Atom, and remove unnecessary reflection code fromZac Medico2009-09-141-6/+7
| | | | | | | dep_getkey(). Thanks to Marat Radchenko <marat@slonopotamus.org> for suggestions. svn path=/main/trunk/; revision=14256
* Make isspecific() use the Atom class and fall back to legacy code if theZac Medico2009-09-141-13/+9
| | | | | | | atom is invalid. Also, optimize called isjustname() legacy code to only check the last 2 components. svn path=/main/trunk/; revision=14255
* Use the Atom class to implement dep_getkey(), and fall back to legacy codeZac Medico2009-09-141-0/+10
| | | | | | when necessary for backward compatibility. svn path=/main/trunk/; revision=14254
* Add more test cases.Zac Medico2009-09-141-0/+3
| | | | svn path=/main/trunk/; revision=14253
* Simplify isvalidatom() to simply use the Atom class. Thanks to MaratZac Medico2009-09-141-33/+3
| | | | | | Radchenko <marat@slonopotamus.org> for the suggestion. svn path=/main/trunk/; revision=14252
* Simplify the _pkg regex and fix validation for some cases by using theZac Medico2009-09-142-12/+41
| | | | | | | | _version regex to match unwanted version-like components which can not be at the end of a _pkg match. For example isvalidatom('app-doc/php-docs-20071125-r2') now correctly returns False. svn path=/main/trunk/; revision=14251
* Bug #240656 - Unmerge broken symlinks where a directory was expected.Zac Medico2009-09-141-1/+1
| | | | | | (merged from branches/prefix r14248) svn path=/main/trunk/; revision=14250
* Simlify the Atom regex. Thanks to Marat Radchenko <marat@slonopotamus.org>Zac Medico2009-09-141-9/+4
| | | | | | for this patch. svn path=/main/trunk/; revision=14249
* Use cpv_getkey() instead of dep_getkey() where appropriate.Zac Medico2009-09-132-4/+4
| | | | svn path=/main/trunk/; revision=14242
* Make the Atom constructor use regular expression match groups forZac Medico2009-09-131-22/+41
| | | | | | | initialization. Thanks to Marat Radchenko <marat@slonopotamus.org> for this patch. svn path=/main/trunk/; revision=14241
* Fix docs for isjustname() since it doesn't raise InvalidAtom now.Zac Medico2009-09-121-1/+0
| | | | svn path=/main/trunk/; revision=14240
* Add backward compatibility to isjustname(), so the tests don't fail.Zac Medico2009-09-121-1/+10
| | | | svn path=/main/trunk/; revision=14239
* Add tests for the Atom class.Zac Medico2009-09-121-0/+42
| | | | svn path=/main/trunk/; revision=14238
* Fix bug in _expand_new_virtuals() reported by Arfrever:Zac Medico2009-09-121-1/+1
| | | | | | TypeError: coercing to Unicode: need string or buffer, Atom found svn path=/main/trunk/; revision=14237
* Use isjustname() where appropriate.Zac Medico2009-09-123-5/+6
| | | | svn path=/main/trunk/; revision=14236
* Fix isjustname docstring to have a valid atom in the example.Zac Medico2009-09-121-1/+1
| | | | svn path=/main/trunk/; revision=14235
* Reimplement isjustname() using the Atom class. Thanks to Marat RadchenkoZac Medico2009-09-121-13/+8
| | | | | | <marat@slonopotamus.org> for the suggestion. svn path=/main/trunk/; revision=14234
* In config.getvirtuals(), save Atom instances in order to avoid revalidation.Zac Medico2009-09-121-17/+38
| | | | | | Also, fix cpv_expand() to handle Atom instances from config.getvirtuals(). svn path=/main/trunk/; revision=14233
* Make dbapi.move_ent() take advantage of Atom instances when validatingZac Medico2009-09-122-9/+8
| | | | | | arguments. svn path=/main/trunk/; revision=14232
* Add missing InvalidAtom import.Zac Medico2009-09-121-1/+1
| | | | svn path=/main/trunk/; revision=14231
* Make parse_updates() and update_dbentry() use Atom instances.Zac Medico2009-09-121-9/+27
| | | | svn path=/main/trunk/; revision=14230
* Fix bad assumptions.Zac Medico2009-09-121-20/+15
| | | | svn path=/main/trunk/; revision=14229
* Fix poor assumptions.Zac Medico2009-09-121-6/+9
| | | | svn path=/main/trunk/; revision=14228
* Fix bugs and poor assumptions.Zac Medico2009-09-121-7/+5
| | | | svn path=/main/trunk/; revision=14227
* Update grabdict_package and grabfile_package calling code to take advantageZac Medico2009-09-121-35/+18
| | | | | | | of Atom instances, and convert *atom from 'packages' to a normal Atom instance when it's stored in prevmaskdict. svn path=/main/trunk/; revision=14226
* Make grabfile_package() accept *atom only for files named 'packages' sinceZac Medico2009-09-121-1/+2
| | | | | | they are not valid in any other files. svn path=/main/trunk/; revision=14225
* Make grabdict_package() and grabfile_package() return Atom instances whenZac Medico2009-09-121-12/+25
| | | | | | possible, in order to avoid revalidation. svn path=/main/trunk/; revision=14224
* Implement Atom.__copy__ and __deepcopy__ to return self, since instances areZac Medico2009-09-121-0/+9
| | | | | | immutable. svn path=/main/trunk/; revision=14223