summaryrefslogtreecommitdiffstats
path: root/pym
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Attribute errorMarius Mauch2007-01-181-1/+1
| | | | svn path=/main/trunk/; revision=5703
* locking, try 100Alec Warner2007-01-181-16/+16
| | | | svn path=/main/trunk/; revision=5701
* lock file around chown/chmodAlec Warner2007-01-181-2/+5
| | | | svn path=/main/trunk/; revision=5700
* fix apply_permissions import and use keyworded args in the call, as well as ↵Alec Warner2007-01-181-3/+5
| | | | | | PORTAGE_INST_UID instead of root, also fix some spacies in emerge, thanks for Zac for reporting svn path=/main/trunk/; revision=5699
* dump emerge's normpath in favor of portage_util's normalize_pathAlec Warner2007-01-181-0/+5
| | | | svn path=/main/trunk/; revision=5698
* add try finally blocks around locking for newsAlec Warner2007-01-181-29/+50
| | | | svn path=/main/trunk/; revision=5697
* Use elif where appropriate. Thanks to ferringb.Zac Medico2007-01-171-1/+1
| | | | svn path=/main/trunk/; revision=5691
* For bug #162404, spawn tee outside the sesandbox domain so that it reads ↵Zac Medico2007-01-171-6/+50
| | | | | | from a pipe between two domains. svn path=/main/trunk/; revision=5690
* Fix elimination of duplicate virtuals between the binpkg repo and installed ↵Zac Medico2007-01-171-3/+4
| | | | | | packages. svn path=/main/trunk/; revision=5684
* For --usepkgonly, allow _expand_new_virtuals() to fall back to the vardb in ↵Zac Medico2007-01-161-2/+10
| | | | | | case all binaries aren't available. svn path=/main/trunk/; revision=5682
* Prevent packages that are installed but masked from being incorrectly ↵Zac Medico2007-01-161-1/+4
| | | | | | flagged as "available" (unless --usepkgonly is enabled, which currently has no package.mask support). svn path=/main/trunk/; revision=5679
* Allow --usepkgonly/--getbinpkgonly to work with installed deps when binpkgs ↵Zac Medico2007-01-161-0/+2
| | | | | | aren't available for some packages. Thanks to Brent Baude <ranger@gentoo.org> for reporting. svn path=/main/trunk/; revision=5675
* For consistency, respect the use_binaries flag inside _expand_new_virtuals().Zac Medico2007-01-161-0/+2
| | | | svn path=/main/trunk/; revision=5674
* switch news timestamp and unread/read storage to '/var/lib/gentoo' like the ↵Alec Warner2007-01-162-2/+3
| | | | | | GLEP states. svn path=/main/trunk/; revision=5673
* If repo/profiles/news doesn't exist, return 0 updatesAlec Warner2007-01-161-0/+4
| | | | svn path=/main/trunk/; revision=5672
* dirty dirty liesAlec Warner2007-01-161-6/+5
| | | | svn path=/main/trunk/; revision=5665
* ferringb pointed out this portroot parameter, ended up not using it, try an ↵Alec Warner2007-01-162-24/+16
| | | | | | os.path.exists to save a very common (and slow) except on missing repo_name files for overlays, use a dict to facility a nicer regex comparison loop for news restrictions. svn path=/main/trunk/; revision=5662
* fix minor syntax issues with lockingAlec Warner2007-01-161-4/+4
| | | | svn path=/main/trunk/; revision=5660
* merge didn't bring in portage_news, no idea whyAlec Warner2007-01-161-0/+241
| | | | svn path=/main/trunk/; revision=5659
* merge glep42 into trunkAlec Warner2007-01-162-8/+52
| | | | svn path=/main/trunk/; revision=5658