summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* Create namespace for emergeMarius Mauch2007-02-082-1/+1
| | | | svn path=/main/trunk/; revision=5931
* Turn on strict dep checking to fix the isvalidatom test.Zac Medico2007-02-081-0/+2
| | | | svn path=/main/trunk/; revision=5926
* Synchronize required hash code in all relevant places.Zac Medico2007-02-072-5/+10
| | | | svn path=/main/trunk/; revision=5924
* For bug #165783, handle a potential InvalidDependString exception inside ↵Zac Medico2007-02-071-5/+11
| | | | | | doebuild(). svn path=/main/trunk/; revision=5920
* For bug #165783, handle a potential InvalidDependString exception inside ↵Zac Medico2007-02-071-3/+9
| | | | | | digestgen(). svn path=/main/trunk/; revision=5916
* For backward compatibility with api consumers, _dep_check_strict behavior ↵Zac Medico2007-02-071-2/+3
| | | | | | will be explicitly enabled as necessary. Thanks to Brian <dol-sen@telus.net> for reporting issues with porthole and equery. svn path=/main/trunk/; revision=5907
* Make sure to fetch files if MANIFEST2_REQUIRED_HASH is missing.Zac Medico2007-02-061-0/+1
| | | | svn path=/main/trunk/; revision=5903
* Check if entries contain the required hashes before writing the ManifestMarius Mauch2007-02-061-2/+10
| | | | svn path=/main/trunk/; revision=5902
* Ensure that the code for bug #165342 only affects name collisions with virtuals.Zac Medico2007-02-051-2/+4
| | | | svn path=/main/trunk/; revision=5891
* For bug #165382, don't raise a ValueError in cpv_expand() if there are only ↵Zac Medico2007-02-051-2/+12
| | | | | | two matches and one of them is a virtual. Prefer the non-virtual instead. svn path=/main/trunk/; revision=5890
* In order to correctly handl the case of target caches that don't have ↵Zac Medico2007-02-031-1/+3
| | | | | | complete eclass entries, validate the set of interited eclasses to make sure it is correct (since timestamp validation is not applicable). svn path=/main/trunk/; revision=5880
* Make the tests pass.Zac Medico2007-02-031-1/+1
| | | | svn path=/main/trunk/; revision=5876
* For bug #165065, use the proper RESTRICT setting when fetching files in ↵Zac Medico2007-02-031-9/+19
| | | | | | digestgen(). svn path=/main/trunk/; revision=5875
* grrr I thought I removed thisAlec Warner2007-02-021-4/+0
| | | | svn path=/main/trunk/; revision=5872
* remove redundant directory nowAlec Warner2007-02-0221-1/+1
| | | | svn path=/main/trunk/; revision=5871
* For bug #153109, replace our old chflags module with the one provided by the ↵Zac Medico2007-02-011-28/+13
| | | | | | py-freebsd package. Thanks to Diego Pettenò <flameeyes@gentoo.org> for the initial patch. svn path=/main/trunk/; revision=5870
* A somewhat more intelligent layout, move tests into portaage namespace so we ↵Alec Warner2007-02-0123-0/+643
| | | | | | can import them easier, seems to be a more common layout from what I've seen. Also rewrite the test runner to work with new layout svn path=/main/trunk/; revision=5863
* fix doc typo; more test fiddlingAlec Warner2007-02-011-2/+2
| | | | svn path=/main/trunk/; revision=5862
* Round one of dep_getusedeps()Alec Warner2007-02-011-1/+31
| | | | svn path=/main/trunk/; revision=5855
* Don't use os.path.isdir() because it can swallow errors related to ↵Zac Medico2007-01-311-2/+8
| | | | | | filesystem/disk corruption. svn path=/main/trunk/; revision=5852
* Ignore EEXIST from rmdir since some kernels (such as solaris) return that ↵Zac Medico2007-01-271-3/+6
| | | | | | instead of ENOTEMPTY. svn path=/main/trunk/; revision=5798
* Fix automatic path detection to account for new locationMarius Mauch2007-01-251-1/+1
| | | | svn path=/main/trunk/; revision=5789
* Fix broken symlink caused by exec module renameMarius Mauch2007-01-251-1/+1
| | | | svn path=/main/trunk/; revision=5788
* Namespace sanitizing, step 5Marius Mauch2007-01-251-4/+4
| | | | svn path=/main/trunk/; revision=5785
* Fix some breakage caused by script malfunctionMarius Mauch2007-01-252-2/+2
| | | | svn path=/main/trunk/; revision=5783
* Namespace sanitizing, step 3Marius Mauch2007-01-2520-79/+79
| | | | svn path=/main/trunk/; revision=5782
* Namespace sanitizing, step 2bMarius Mauch2007-01-258-16/+16
| | | | svn path=/main/trunk/; revision=5781
* Namespace sanitizing, step 2Marius Mauch2007-01-2517-304/+304
| | | | | | | Rename portage.exec to portage.process to avoid syntax errors svn path=/main/trunk/; revision=5780
* Adding compat symlinks for cache and elog packagesMarius Mauch2007-01-252-0/+2
| | | | svn path=/main/trunk/; revision=5779
* Namespace sanitizing, step 1Marius Mauch2007-01-2570-6992/+7016
| | | | svn path=/main/trunk/; revision=5778
* Fix broken line number counting for CONTENTS.v2.1.2-r3Zac Medico2007-01-231-2/+2
| | | | svn path=/main/trunk/; revision=5765
* For bug #142279, detect and warn about null bytes in CONTENTS.Zac Medico2007-01-231-0/+8
| | | | svn path=/main/trunk/; revision=5763
* Add new ** for package.keywords token to bypass keyword visibility layerMarius Mauch2007-01-231-1/+3
| | | | svn path=/main/trunk/; revision=5759
* For bug #163219, handle binpkgs that have missing PF metadata.Zac Medico2007-01-221-2/+3
| | | | svn path=/main/trunk/; revision=5757
* For bug #163083, handle an UnsupportedAPIException thrown from the prerm phase.Zac Medico2007-01-212-4/+11
| | | | svn path=/main/trunk/; revision=5749
* To ease transition while Manifest 1 is being removed, only require hashes ↵Zac Medico2007-01-211-4/+6
| | | | | | that will exist before and after the transition. svn path=/main/trunk/; revision=5746
* Don't require MANIFEST2 hashes since that can trigger excessive fetches when ↵Zac Medico2007-01-211-1/+3
| | | | | | sufficient digests already exist. Thanks to vapier for reporting. svn path=/main/trunk/; revision=5743
* For bug #161356, fix the SLOT match code to handle a KeyError thrown due to ↵Zac Medico2007-01-201-2/+8
| | | | | | a corrupt ebuild. svn path=/main/trunk/; revision=5736
* Some minor fixes for manifest codeMarius Mauch2007-01-202-8/+15
| | | | svn path=/main/trunk/; revision=5735
* Fix syntax.Zac Medico2007-01-191-1/+1
| | | | svn path=/main/trunk/; revision=5722
* For bug #162404, when sesandbox is enabled, only log if PORT_LOGDIR is ↵Zac Medico2007-01-191-1/+7
| | | | | | explicitly enabled since it is possible that local SELinux security policies do not allow ouput to be piped out of the sesandbox domain. svn path=/main/trunk/; revision=5718
* Raise an informative InvalidData exception instead of 'TypeError: ↵Zac Medico2007-01-181-0/+2
| | | | | | unsubscriptable object' when pkgsplit returns None. svn path=/main/trunk/; revision=5714
* Validate ebuild names inside portdbapi.cp_list() in order to prevent ↵Zac Medico2007-01-181-2/+8
| | | | | | problems later on. Thanks to delusions for reporting on irc. svn path=/main/trunk/; revision=5713
* Unified try-except-finally only works with python-2.5Marius Mauch2007-01-181-11/+12
| | | | svn path=/main/trunk/; revision=5711
* don't force a comparisonAlec Warner2007-01-181-1/+1
| | | | svn path=/main/trunk/; revision=5710
* Don't load a module if there is nothing to process after filteringMarius Mauch2007-01-181-0/+2
| | | | svn path=/main/trunk/; revision=5709
* Allow per-module filtering based on loglevels in addition to the global ↵Marius Mauch2007-01-181-21/+45
| | | | | | PORTAGE_ELOG_CLASSES one, add wildcard support for loglevels svn path=/main/trunk/; revision=5707
* more trivial fixesMarius Mauch2007-01-181-4/+6
| | | | svn path=/main/trunk/; revision=5706
* but news lib path is global, not an attrAlec Warner2007-01-181-1/+1
| | | | svn path=/main/trunk/; revision=5705
* I really meant NEWS_LIB_PATH (/var/lib/gentoo) but decent idea to have a ↵Alec Warner2007-01-181-4/+5
| | | | | | timestamp per repo ;) svn path=/main/trunk/; revision=5704