summaryrefslogtreecommitdiffstats
path: root/bin
Commit message (Collapse)AuthorAgeFilesLines
* Remove bin/mirror.py because, according to Brian Harring, it's obsoleted by ↵v2.1_pre8Zac Medico2006-04-081-167/+0
| | | | | | mirror-dist. svn path=/main/trunk/; revision=3101
* Remove redundant "please tell me what to do" code, which is now handled earlier.Zac Medico2006-04-081-5/+0
| | | | svn path=/main/trunk/; revision=3096
* Fix myaction logic so that --resume works (with --pretend) for non-root users.Zac Medico2006-04-081-3/+4
| | | | svn path=/main/trunk/; revision=3095
* Fix myaction logic (myaction==None is actually valid, regression from r3090).Zac Medico2006-04-071-2/+2
| | | | svn path=/main/trunk/; revision=3093
* Fix this random y that was in the last commit...I blame nano :PAlec Warner2006-04-071-1/+1
| | | | svn path=/main/trunk/; revision=3091
* Fix a regression in security handling, emerge with no options should print ↵Alec Warner2006-04-071-1/+4
| | | | | | out helpful information, not tell you you need to be root ;) svn path=/main/trunk/; revision=3090
* Thanks to jforman for finding this one, emerge was not helpful when ↵Alec Warner2006-04-071-3/+9
| | | | | | permissions on the world file are not so good, so in the case of permission denied, we reraise, essentially telling the user we can't read the world file. In the case of it not existing, we assume the user knows what they are doing and we print a squelchable warning message. svn path=/main/trunk/; revision=3089
* Change == None to is NoneAlec Warner2006-04-072-13/+13
| | | | svn path=/main/trunk/; revision=3085
* only display syncing progress for each file when --verbose is set; thanks ↵Simon Stelling2006-04-061-2/+2
| | | | | | Olaf Hering, bug 128362 svn path=/main/trunk/; revision=3084
* set PKG_CONFIG_PATH correct on multilib systems; bug 126801Simon Stelling2006-04-061-0/+6
| | | | svn path=/main/trunk/; revision=3083
* add /usr/local/{,s}bin to PATH; bug 117713Simon Stelling2006-04-061-1/+1
| | | | svn path=/main/trunk/; revision=3082
* Remove really really old check during a cvs move. Fix except statement to ↵Alec Warner2006-04-061-30/+1
| | | | | | be saner svn path=/main/trunk/; revision=3079
* Revert r3073 since it causes a regression (digestgen needs to be run for ↵Zac Medico2006-04-061-1/+3
| | | | | | each value of repoman_settings["O"]). See bug #128946. svn path=/main/trunk/; revision=3078
* Don't generate digests on --pretend for repoman. Thanks go once again to ↵Alec Warner2006-04-041-3/+1
| | | | | | exg@gentoo.org :) svn path=/main/trunk/; revision=3073
* It was pointed out that we have a Test-Manifest perl package, which would ↵Alec Warner2006-04-031-1/+1
| | | | | | get sadly excluded using the old string match, so we fix it to match less ;) svn path=/main/trunk/; revision=3068
* Fix yet another typo of mine, thanks to exgAlec Warner2006-04-031-1/+1
| | | | svn path=/main/trunk/; revision=3067
* Fix ordering in cvs calls to be correct, thanks to exg for the fix (again)Alec Warner2006-04-031-6/+6
| | | | svn path=/main/trunk/; revision=3066
* Fixes for repoman thanks to exg@gentoo.org and bug #128451, Excludes ↵Alec Warner2006-04-031-6/+12
| | | | | | Manifest regeneration in certain cases, adds pretend gpg outut svn path=/main/trunk/; revision=3062
* Fix minor typo: reported by Brian HarringAlec Warner2006-04-031-1/+1
| | | | svn path=/main/trunk/; revision=3061
* Take sound advice and move all the use expand files into desc/Alec Warner2006-04-031-1/+1
| | | | svn path=/main/trunk/; revision=3057
* Make repoman check for USE expand descriptions in other files so USE_EXPAND ↵Alec Warner2006-04-032-3/+5
| | | | | | variables can have longer/better/faster/stronger descriptions. svn path=/main/trunk/; revision=3056
* Fixing stupid exception handlingAlec Warner2006-04-021-3/+1
| | | | svn path=/main/trunk/; revision=3051
* Compare distfiles timestamps with the files in PORTAGE_ACTUAL_DISTDIR ↵Zac Medico2006-03-291-1/+1
| | | | | | instead of with the symlinks in DISTDIR. Thanks to Ed Catmur for this patch (bug #127930). svn path=/main/trunk/; revision=3036
* add missing space in quiet col outputMike Frysinger2006-03-291-1/+1
| | | | svn path=/main/trunk/; revision=3033
* Recommend PORTAGE_RSYNC_EXTRA_OPTS instead of PORTAGE_RSYNC_OPTSMarius Mauch2006-03-281-1/+1
| | | | svn path=/main/trunk/; revision=3029
* - set sane perms on unpacking. If anybody hates this than they are welcome ↵Ned Ludd2006-03-271-0/+1
| | | | | | to tie it into FEATURES= sfperms svn path=/main/trunk/; revision=3028
* fix some nasty repoman tricks causing problems (always use absolute paths ↵Marius Mauch2006-03-271-3/+3
| | | | | | with manifest2 code) svn path=/main/trunk/; revision=3020
* Allow users in the portage group to fetch. Thanks to truedfx for reporting ↵Zac Medico2006-03-261-5/+12
| | | | | | this regression. svn path=/main/trunk/; revision=3015
* Add files/ prefix for AUX files in manifest1 entries; fix digest.unused ↵v2.1_pre7Marius Mauch2006-03-251-8/+15
| | | | | | check partially by checking all DIST entries against all SRC_URI entries of a package (instead of per ebuild checks) svn path=/main/trunk/; revision=3002
* Load virtuals on demand in order to avoid needless vdb scanning during a ↵Zac Medico2006-03-252-3/+3
| | | | | | simple 'import portage'. Virtuals are loaded during import, for initialization of portage.settings, only when autouse is enabled (though autouse is disabled by default). svn path=/main/trunk/; revision=2999
* Create tbz2 package directly in ${PKGDIR}/All to avoid need for temp file ↵Zac Medico2006-03-241-8/+9
| | | | | | (inefficient) and avoid selinux label issues for bug #127374. svn path=/main/trunk/; revision=2986
* Add a portage_debug module and python-trace feature for --debug mode.Zac Medico2006-03-232-0/+8
| | | | svn path=/main/trunk/; revision=2979
* Include the die call itself (including line number) in the printed call ↵Zac Medico2006-03-231-0/+1
| | | | | | stack when an ebuild dies. svn path=/main/trunk/; revision=2972
* Enable bash tracing during sourcing of bashrc for --debug mode. See bug ↵Zac Medico2006-03-221-1/+9
| | | | | | #126442. svn path=/main/trunk/; revision=2971
* Make emerge-webrsync only do metadata-transfer when necessary. Thanks to ↵Zac Medico2006-03-201-2/+6
| | | | | | Patrick Lauer for reporting. svn path=/main/trunk/; revision=2965
* Move has, hasq, and hasv functions to isolated-functions.sh since they do ↵Zac Medico2006-03-202-16/+17
| | | | | | not depend on ebuild.sh. svn path=/main/trunk/; revision=2964
* Do not split PORTAGE_RSYNC_EXTRA_OPTS and add it directly to rsynccommand in ↵Zac Medico2006-03-201-10/+11
| | | | | | order to preserve (hypothetical) quoted whitespace. svn path=/main/trunk/; revision=2961
* Miscellaneous fixes and cleanup for the rsync options handling.Zac Medico2006-03-191-43/+71
| | | | svn path=/main/trunk/; revision=2959
* Fix deprecated RSYNC_TIMEOUT handling (move it where rsync_flags is defined) ↵Zac Medico2006-03-191-12/+8
| | | | | | and direct error messages to stderr via writemsg. svn path=/main/trunk/; revision=2958
* Add support for generic PORTAGE_RSYNC_{EXTRA_,}OPTS, deprecate existing ↵Marius Mauch2006-03-191-19/+60
| | | | | | 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
* 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
* 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
* 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
* 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 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