summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* make the fallback make.conf more generic by removing x86 specific stuff and ↵Marius Mauch2006-03-191-35/+2
| | | | | | removing CHOST completely svn path=/main/trunk/; revision=2956
* Add support for generic PORTAGE_RSYNC_{EXTRA_,}OPTS, deprecate existing ↵Marius Mauch2006-03-1917-177/+199
| | | | | | RSYNC_ variables, rename RSYNC_RETRIES to PORTAGE_RSYNC_RETRIES svn path=/main/trunk/; revision=2955
* update -I long optionMike Frysinger2006-03-191-1/+1
| | | | svn path=/main/trunk/; revision=2954
* delete extraneous printMike Frysinger2006-03-191-1/+0
| | | | svn path=/main/trunk/; revision=2953
* Add NOCOLOR support to ebuild.sh and make emerge automatically add NOCOLOR ↵Zac Medico2006-03-192-3/+17
| | | | | | to portage.settings when --nocolor is specified. See bug #126756. svn path=/main/trunk/; revision=2952
* Compare new digest data with old digest data and rewrite the new digest only ↵Zac Medico2006-03-191-18/+16
| | | | | | if they differ. Thanks to AllanonJL for reporting this issue. svn path=/main/trunk/; revision=2951
* Catch a possible OSError from the stat call in atomic_ofstream.close().Zac Medico2006-03-191-0/+5
| | | | svn path=/main/trunk/; revision=2950
* Reset the selinux security context before returning from spawn (regression ↵Zac Medico2006-03-181-7/+9
| | | | | | from r2834). See bug #126711. svn path=/main/trunk/; revision=2947
* Fix typo from the last revision.Zac Medico2006-03-181-1/+1
| | | | svn path=/main/trunk/; revision=2946
* Stop swallowing IOError and TypeError exceptions in portdbapi.gvisible(). ↵Zac Medico2006-03-181-2/+6
| | | | | | Write instances of PortageException to stderr. Thanks to marienz for reporting. svn path=/main/trunk/; revision=2945
* Prevent an IOError with errno != ENOENT from being swallowed in ↵Zac Medico2006-03-181-5/+5
| | | | | | flat_hash._setitem(). svn path=/main/trunk/; revision=2944
* Fix typo in spelling of been in emerge-webrsync. Thanks to bonsaikitten for ↵Zac Medico2006-03-181-1/+1
| | | | | | reporting. svn path=/main/trunk/; revision=2943
* Make PORTAGE_INST_UID and PORTAGE_INST_GID default to 0 in case of ↵Zac Medico2006-03-184-8/+8
| | | | | | environment problems. svn path=/main/trunk/; revision=2942
* Minor speedup for findname2, suggested by Brian HarringAlec Warner2006-03-181-10/+12
| | | | svn path=/main/trunk/; revision=2941
* Make successful inherit calls return success so that \'source ${EBUILD}` ↵Zac Medico2006-03-181-1/+2
| | | | | | returns success when an ebuild calls inherit last. svn path=/main/trunk/; revision=2940
* add short options for --one-shot and --fetch-all-uri to --help output. ↵Kito2006-03-181-2/+2
| | | | | | Closes Bug #126626 svn path=/main/trunk/; revision=2939
* Replace hard coded number 2 in cache modules with errno.ENOENT.Zac Medico2006-03-182-11/+7
| | | | svn path=/main/trunk/; revision=2938
* Change os.makedirs to makedirs (typo from r2934).Zac Medico2006-03-181-1/+1
| | | | svn path=/main/trunk/; revision=2936
* Fix a typo from the last revision.Zac Medico2006-03-181-1/+1
| | | | svn path=/main/trunk/; revision=2935
* Use one makedirs function for all directory creations inside prepare_build_dirs.Zac Medico2006-03-181-67/+33
| | | | svn path=/main/trunk/; revision=2934
* Fix PORTAGE_WORKDIR_MODE so that 0700 is correctly substituted when ↵Zac Medico2006-03-181-1/+1
| | | | | | PORTAGE_WORKDIR_MODE is unset or null. svn path=/main/trunk/; revision=2933
* Use loops to consolidate directory cleaning and creation in prepare_build_dirs.Zac Medico2006-03-181-57/+46
| | | | svn path=/main/trunk/; revision=2932
* Prevent "eclass-debug.log: No such file or directory" messages that are ↵Zac Medico2006-03-181-1/+1
| | | | | | produced during the "depend" phase when ${T} doesn't exist. svn path=/main/trunk/; revision=2931
* Fix PORTAGE_WORKDIR_MODE parsing so that the validated value is stored in ↵Zac Medico2006-03-181-2/+5
| | | | | | mysettings. svn path=/main/trunk/; revision=2930
* Catch a possible SyntaxError from the eval function when parsing ↵Zac Medico2006-03-181-1/+1
| | | | | | PORTAGE_WORKDIR_MODE. Thanks to solar for reporting. svn path=/main/trunk/; revision=2929
* Use apply_recursive_permissions for DISTCC_DIR.Zac Medico2006-03-181-7/+4
| | | | svn path=/main/trunk/; revision=2928
* Use apply_recursive_permissions for CCACHE_DIR. Also fix a typo in error ↵Zac Medico2006-03-181-26/+35
| | | | | | handling for CONFCACHE_DIR from r2912. svn path=/main/trunk/; revision=2927
* Use apply_recursive_permissions for CONFCACHE_DIR.Zac Medico2006-03-181-19/+5
| | | | svn path=/main/trunk/; revision=2926
* Add a generic apply_recursive_permissions function and use is for ↵Zac Medico2006-03-182-22/+45
| | | | | | $DISTDIR/cvs-src. svn path=/main/trunk/; revision=2925
* Fix deprecated emerge syntax in emerge-webrsync for bug #126558.Zac Medico2006-03-171-1/+1
| | | | svn path=/main/trunk/; revision=2924
* Merge emerge-webrsync uid and gid fixes from the prefix branch.Zac Medico2006-03-171-4/+5
| | | | svn path=/main/trunk/; revision=2923
* For better handling of $DISTDIR/cvs-src permissions, use os.walk instead of ↵Zac Medico2006-03-171-7/+21
| | | | | | spawning chgrp and chmod. svn path=/main/trunk/; revision=2922
* Fix error handling for $DISTDIR/cvs-src creation and permissions in doebuild.Zac Medico2006-03-171-21/+27
| | | | svn path=/main/trunk/; revision=2919
* Fix typo in variable name from last revision.Zac Medico2006-03-171-1/+1
| | | | svn path=/main/trunk/; revision=2918
* Fix the apply_permissions XOR logic so that mask removes mode bits correctly.Zac Medico2006-03-171-2/+2
| | | | svn path=/main/trunk/; revision=2917
* Improve error handling in prepare_build_dirs for PORT_LOGDIR. Fix doebuild ↵Zac Medico2006-03-171-23/+40
| | | | | | 'logfile' which has caused broken logging since r2894. svn path=/main/trunk/; revision=2915
* Error handling in prepare_build_dirs for DISTCC_DIR.Zac Medico2006-03-171-13/+26
| | | | svn path=/main/trunk/; revision=2914
* Disable confcache when it's not possible to apply correct group permissions ↵Zac Medico2006-03-171-1/+1
| | | | | | to an existing file in CONFCACHE_DIR. svn path=/main/trunk/; revision=2913
* Improve error handling in the CONFCACHE_DIR section of prepare_build_dirs. ↵Zac Medico2006-03-171-35/+40
| | | | | | Thanks to solar for reporting this issue. svn path=/main/trunk/; revision=2912
* Use `mv -f` to make sure mv does not prompt for confirmation.Zac Medico2006-03-171-1/+1
| | | | svn path=/main/trunk/; revision=2911
* Fix permissions functions so that error messages tell exactly which call failed.Zac Medico2006-03-171-28/+48
| | | | svn path=/main/trunk/; revision=2910
* Use the built-in bool() function to convert 1 or 0 to True or False as ↵Zac Medico2006-03-171-3/+1
| | | | | | recommended by marienz. svn path=/main/trunk/; revision=2909
* Add package atom validation to the `emerge --config` action. Thanks to ↵Zac Medico2006-03-161-12/+19
| | | | | | sekretarz for reporting and providing an initial patch. svn path=/main/trunk/; revision=2908
* Implement __contains__ for portage.config so that it calls has_key, enabling ↵Zac Medico2006-03-161-0/+6
| | | | | | membership test operators (in and not in) to work as expected. svn path=/main/trunk/; revision=2907
* Revert a hunk from r2834 because PORTAGE_SANDBOX_T is used incorrectly where ↵Zac Medico2006-03-161-3/+8
| | | | | | PORTAGE_FETCH_T should be used for selinux fetch. Thanks to spb for reporting. svn path=/main/trunk/; revision=2906
* touchup some more misc bits of bash codeMike Frysinger2006-03-161-15/+12
| | | | svn path=/main/trunk/; revision=2905
* Move environment variables WORKDIR, D, and T from prepare_build_dirs to ↵Zac Medico2006-03-161-6/+6
| | | | | | doebuild_environment. svn path=/main/trunk/; revision=2904
* cleanup bash code in use*() and has*() functions with the help of agriffisMike Frysinger2006-03-161-41/+15
| | | | svn path=/main/trunk/; revision=2903
* add support for unpacking .tbz, .a, and .deb filesMike Frysinger2006-03-161-1/+4
| | | | svn path=/main/trunk/; revision=2902
* Add a new PORTAGE_WORKDIR_MODE config variable so that the mode of WORKDIR ↵Zac Medico2006-03-163-2/+24
| | | | | | is no longer hard coded. See bug #8688. svn path=/main/trunk/; revision=2901