summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Simplify emerge's secpass logic.Zac Medico2006-03-131-19/+11
| | | | svn path=/main/trunk/; revision=2867
* Fix KeyError: 'mergelist' error (regression from r2847). See bug #125993.Zac Medico2006-03-131-0/+1
| | | | svn path=/main/trunk/; revision=2864
* Use find -path instead of -name for compatibility with both gnu and bsd ↵Zac Medico2006-03-121-1/+1
| | | | | | userlands. See bug #125919. svn path=/main/trunk/; revision=2863
* ppc64 isnt ok just yet, so dont scan for exec stacksMike Frysinger2006-03-121-1/+1
| | | | svn path=/main/trunk/; revision=2860
* Add --tree to the blacklist when --resume is used. See bug #54040.Zac Medico2006-03-121-1/+1
| | | | svn path=/main/trunk/; revision=2857
* backport portage-pkg path change from savior branchMike Frysinger2006-03-111-4/+4
| | | | svn path=/main/trunk/; revision=2850
* dont reset spinner for non-ttys if --quiet is in useMike Frysinger2006-03-111-2/+3
| | | | svn path=/main/trunk/; revision=2849
* Do automatic backup the resume list when it's length is greater than 1 for ↵v2.1_pre6Zac Medico2006-03-111-1/+12
| | | | | | bug #122527. svn path=/main/trunk/; revision=2847
* Move PORTAGE_INST_UID and PORTAGE_INST_GID from ebuild.sh to make.globals so ↵Zac Medico2006-03-111-4/+0
| | | | | | they can be overridden. svn path=/main/trunk/; revision=2846
* Make dobin and dosbin use PORTAGE_INST_UID and PORTAGE_INST_GID.Zac Medico2006-03-112-2/+2
| | | | svn path=/main/trunk/; revision=2845
* Do the clean phase at the end of dblink.treewalk() to ensure that it is ↵Zac Medico2006-03-111-8/+1
| | | | | | triggered when both source and binary packages are merged. See bug #105706. svn path=/main/trunk/; revision=2843
* Fix dyn_clean in ebuild.sh so that it removes the builddir correctly (if it ↵Zac Medico2006-03-101-3/+5
| | | | | | is empty). See bug #105706. svn path=/main/trunk/; revision=2840
* Fix emerge's "Post-Build Cleaning" so that it works with --buildpkgonly in ↵Zac Medico2006-03-101-10/+12
| | | | | | FEATURES. See bug #105706. svn path=/main/trunk/; revision=2839
* Move dyn_rpm and dyn_spec from ebuild.sh to misc-functions.sh.Zac Medico2006-03-102-48/+40
| | | | svn path=/main/trunk/; revision=2838
* Move the install phase qa checks from ebuild.sh to misc-functions.sh and add ↵Zac Medico2006-03-092-255/+260
| | | | | | the necessary support to spawnebuild. svn path=/main/trunk/; revision=2837
* Remove "myarg" from the ebuild.sh env before it is saved so that it doesn't ↵Zac Medico2006-03-091-0/+3
| | | | | | interfere when ebuild.sh is sourced by other scripts. svn path=/main/trunk/; revision=2836
* Remove install_mask from ebuild.sh since it's in misc-functions.sh now.Zac Medico2006-03-091-22/+0
| | | | svn path=/main/trunk/; revision=2833
* Split install_mask and parts of dyn_preinst from ebuild.sh to ↵Zac Medico2006-03-092-87/+132
| | | | | | misc-functions.sh and add the necessary support to doebuild. svn path=/main/trunk/; revision=2832
* Split dyn_package from ebuild.sh to misc-functions.sh and add MISC_SH_BINARY ↵Zac Medico2006-03-092-31/+50
| | | | | | support to spawnebuild. svn path=/main/trunk/; revision=2831
* add support for ebuild authors to mark stuff as ignorableMike Frysinger2006-03-091-8/+38
| | | | svn path=/main/trunk/; revision=2830
* document new --no-ldconfig optionMike Frysinger2006-03-091-1/+1
| | | | svn path=/main/trunk/; revision=2828
* Move PKG_INSTALL_MASK functionality (see bug #81025) from dyn_install to ↵Zac Medico2006-03-081-3/+1
| | | | | | dyn_package because we don't want PKG_INSTALL_MASK to affect the install phase (INSTALL_MASK is in dyn_preinst). svn path=/main/trunk/; revision=2826
* - commit initial split install masking code. this commits adds new portage ↵Ned Ludd2006-03-081-15/+26
| | | | | | variable PKG_INSTALL_MASK for fine tuning what gets added to the binary .tbz2 and xpak data. This function will probably be later split out into a misc-functions.sh by zac svn path=/main/trunk/; revision=2825
* Make the parallel-fetch process sleep for 3 seconds at the beginning in ↵Zac Medico2006-03-071-0/+1
| | | | | | order to allow the parent process to have the first fetch (rather than display a 'waiting for a lock' message). Suggestion by Brian Harring. svn path=/main/trunk/; revision=2824
* - make portage display the ROOT when unmerging a selected packageNed Ludd2006-03-071-0/+3
| | | | svn path=/main/trunk/; revision=2820
* only scan for exec stacks on linux/glibc hostsMike Frysinger2006-03-061-7/+12
| | | | svn path=/main/trunk/; revision=2819
* Remove the leading / from WORLD_FILE for better cooperation with ↵Zac Medico2006-03-063-13/+14
| | | | | | os.path.join (see bug #124471). svn path=/main/trunk/; revision=2818
* fix BASH_ARGV walkingMike Frysinger2006-03-051-1/+1
| | | | svn path=/main/trunk/; revision=2817
* - have scanelf nuke insecure rpathsNed Ludd2006-03-051-3/+8
| | | | svn path=/main/trunk/; revision=2813
* Strip the leading slash from WORLD_FILE so that os.path.join works correctly ↵Zac Medico2006-03-051-2/+6
| | | | | | for bug #124471. Thanks to Thomas de Grenier de Latour for finding the cause of the problem and Jonathan Adamczewski for the initial report. svn path=/main/trunk/; revision=2812
* add some URLs for people to learn moreMike Frysinger2006-03-041-0/+2
| | | | svn path=/main/trunk/; revision=2808
* Make emerge-webrsync use renice for cleaner PORTAGE_NICENESS handling (bug ↵Zac Medico2006-03-021-7/+5
| | | | | | #124621). svn path=/main/trunk/; revision=2806
* Fix typo in emerge-webrsync PORTAGE_NICENESS handling for bug #124621 ↵Zac Medico2006-03-021-4/+4
| | | | | | (regression from r2623). svn path=/main/trunk/; revision=2805
* Assume 0 for both uid and gid in dobin and dosbin (bug #124568).Zac Medico2006-03-022-2/+2
| | | | svn path=/main/trunk/; revision=2804
* just use group 0 to workaround broken systems #124568Mike Frysinger2006-03-022-12/+2
| | | | svn path=/main/trunk/; revision=2803
* Use ROOT when checking installed packages for --pretend outputJason Stubbs2006-02-281-3/+3
| | | | svn path=/main/trunk/; revision=2802
* Add a sanity check in dyn_clean() to make sure that PORTAGE_BUILDDIR is not ↵Zac Medico2006-02-281-0/+5
| | | | | | zero length for bug #124203. svn path=/main/trunk/; revision=2800
* Make sure myopts does not contain duplicate options for bug 124204.Zac Medico2006-02-271-1/+2
| | | | svn path=/main/trunk/; revision=2794
* Make `emerge --metadata` work even when metadata-transfer is not in FEATURES.Zac Medico2006-02-261-1/+3
| | | | svn path=/main/trunk/; revision=2789
* Make the post-sync metadata-transfer a FEATURE so that it can be optionally ↵Zac Medico2006-02-261-0/+3
| | | | | | disabled. svn path=/main/trunk/; revision=2788
* move the err/warn funcs togetherMike Frysinger2006-02-241-5/+4
| | | | svn path=/main/trunk/; revision=2780
* Fix a missing parenthesis.Alec Warner2006-02-231-1/+1
| | | | svn path=/main/trunk/; revision=2779
* Kill inject for good.Alec Warner2006-02-232-45/+3
| | | | svn path=/main/trunk/; revision=2775
* Add NOCOLOR support to bin/ebuild for bug 78701.Zac Medico2006-02-231-0/+4
| | | | svn path=/main/trunk/; revision=2773
* remove code that is duplicated in prepstripMike Frysinger2006-02-231-8/+0
| | | | svn path=/main/trunk/; revision=2771
* update syntax/styleMike Frysinger2006-02-231-11/+11
| | | | svn path=/main/trunk/; revision=2770
* warn if we were given a non-existent dirMike Frysinger2006-02-231-2/+5
| | | | svn path=/main/trunk/; revision=2769
* simply code to break down arguments to prepmanMike Frysinger2006-02-231-1/+3
| | | | svn path=/main/trunk/; revision=2768
* dont warn in manpage exists but is emptyMike Frysinger2006-02-231-1/+1
| | | | svn path=/main/trunk/; revision=2767
* disable compression in doman, just let `prepman` handle itMike Frysinger2006-02-231-8/+1
| | | | svn path=/main/trunk/; revision=2766