summaryrefslogtreecommitdiffstats
path: root/cnf/make.globals
Commit message (Collapse)AuthorAgeFilesLines
* * Make portdbapi.aux_get() automatically pull pre-generated metadataZac Medico2008-04-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | directly from the metadata/cache/ directory when metadata-transfer is not enabled in FEATURES. This makes all cache modules behave similar to existing metadata_overlay module, except when FEATURES="metadata-transfer" has been explicitly enabled. * Remove metadata-transfer from FEATURES in make.globals so that it's no longer enabled by default. Users will be happy about this since the "Updating Portage cache" part of emerge --sync can be more time consuming than the rsync run itself. It's also nicer when when using PORTDIR over nfs or bind mounted in a chroot since there's no need to run emerge --metadata. * Update FEATURES="metadata-transfer" docs to warn users of the rsync tree to modify eclases in PORTDIR_OVERLAY if necessary instead of doing it directly in the rsync tree. * Relevant updates to /etc/portage/modules docs. (trunk r9930) svn path=/main/branches/2.1.2/; revision=9931
* Implement a PORTAGE_FETCH_RESUME_MIN_SIZE variable that is useful forZac Medico2008-04-031-0/+3
| | | | | | | helping to ensure that small garbage files such as html 404 pages are properly discarded. (trunk r9687) svn path=/main/branches/2.1.2/; revision=9688
* Bug #214499 - When compiler flags are unset, many packages will substituteZac Medico2008-03-281-0/+5
| | | | | | | their own implicit flags. For uniformity, use an empty string as the default. (trunk r9511) svn path=/main/branches/2.1.2/; revision=9571
* Bug #42456 - When a checksum failure occurs during fetch, use a newZac Medico2008-03-281-0/+3
| | | | | | | | | PORTAGE_FETCH_CHECKSUM_TRY_MIRRORS config variable to control how many mirrors should be tried before aborting the download. This type of behavior used to be enabled only in --fetchonly mode but now it's enabled for all fetch() calls. (trunk r9462:9466) svn path=/main/branches/2.1.2/; revision=9554
* * Optimize parallel-fetch to avoid redundant checksum verification.Zac Medico2008-03-281-1/+1
| | | | | | | * Add parallel-fetch to the default FEATURES since it is more efficient now. (trunk r9462) svn path=/main/branches/2.1.2/; revision=9553
* Quote the file path and uri inside FETCHCOMMAND and RESUMECOMMAND. ThanksZac Medico2008-03-281-2/+2
| | | | | | to igli for suggesting. (trunk r9418) svn path=/main/branches/2.1.2/; revision=9543
* Remove the manifest1 digest filter from PORTAGE_RSYNC_OPTS since it'sZac Medico2008-02-011-1/+1
| | | | | | no longer needed. (trunk r9260) svn path=/main/branches/2.1.2/; revision=9261
* Bug #204425 - Remove --delete-after from the default PORTAGE_RSYNC_OPTS.Zac Medico2008-01-111-1/+1
| | | | | | | This allows the rsync program to choose the preferred --delete algorithm, or the user can choose one via PORTAGE_RSYNC_EXTRA_OPTS. (trunk r9163) svn path=/main/branches/2.1.2/; revision=9172
* Add @localhost to default PORTAGE_ELOG_MAILFROM toZac Medico2007-10-121-1/+1
| | | | | | | account for mail servers that don't accept mails without a domainname (trunk r7982) svn path=/main/branches/2.1.2/; revision=8056
* For bug #187016, and env.d to the default USE_ORDER. (trunk r7426:7428)Zac Medico2007-07-291-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7429
* Add sfperms and strict to the default FEATURES since they're already in the ↵Zac Medico2007-07-231-1/+1
| | | | | | base profile's make.defaults. (trunk r7377) svn path=/main/branches/2.1.2/; revision=7378
* Enable FEATURES=userfetch by default. (trunk r7375)Zac Medico2007-07-231-1/+1
| | | | svn path=/main/branches/2.1.2/; revision=7376
* enable save_summary and echo modules in make.globals (trunk r6458)Zac Medico2007-06-221-0/+1
| | | | svn path=/main/branches/2.1.2/; revision=6961
* For bug #134620, add a FEATURES=unmerge-orphans option that causes unmerge ↵Zac Medico2007-06-131-1/+1
| | | | | | to remove files more aggressively. If a file is not claimed by another package in the same slot and it is not protected by CONFIG_PROTECT, unmerge it even if the modification time or checksum differs from the file that was originally installed. This is enabled in make.globals since the vast majority of users probably want this. (trunk r6829) svn path=/main/branches/2.1.2/; revision=6830
* For bug #153967, use -O / in the default FETCHCOMMAND. (trunk r6741)Zac Medico2007-06-081-2/+2
| | | | svn path=/main/branches/2.1.2/; revision=6761
* For bug #175058, avoid potential quoting issues by spawning FETCHCOMMAND ↵Zac Medico2007-04-291-2/+2
| | | | | | without a shell. (trunk r6455:6456) svn path=/main/branches/2.1.2/; revision=6457
* For bug #175058, properly quote the variables in FETCHCOMMAND and ↵Zac Medico2007-04-281-2/+2
| | | | | | RESUMECOMMAND since the command is spawned in a bash shell. (trunk r6451:6452) svn path=/main/branches/2.1.2/; revision=6453
* For bug #168646, remove --prune-empty-dirs from PORTAGE_RSYNC_OPTS since ↵Zac Medico2007-03-021-1/+1
| | | | | | it's only a small optimization and it's inconvenient to force >=rsync-2.6.4 on server admins at this time. If users desire, they can still add it to PORTAGE_RSYNC_EXTRA_OPTS. (trunk r6128:6129) svn path=/main/branches/2.1.2/; revision=6130
* For bug #167668, prune empty ${FILESDIR}s by adding --prune-empty-dirs to ↵Zac Medico2007-02-261-1/+1
| | | | | | PORTAGE_RSYNC_OPTS. Thanks to Ulrich Mueller <ulm@kph.uni-mainz.de> for the suggestion. (trunk r6069:6070) svn path=/main/branches/2.1.2/; revision=6071
* For bug #167668, use an rsync "hide" filter rule to exclude ↵Zac Medico2007-02-221-1/+1
| | | | | | **/files/digest-* and delete them on the receiver. (trunk r6046:6047) svn path=/main/branches/2.1.2/; revision=6049
* Merge package.use and USE from make.defaults together at each level of the ↵Zac Medico2006-10-171-1/+1
| | | | | | profile stack. This is analogous to how use.mask and package.use.mask are planned to be merged for bug #151586. svn path=/main/trunk/; revision=4734
* Implement per-package default USE flags at the ebuild and profile levels for ↵Zac Medico2006-10-141-1/+1
| | | | | | bug #61732. svn path=/main/trunk/; revision=4679
* Remove redundant quotes from PORTAGE_RSYNC_OPTS.Zac Medico2006-10-071-1/+1
| | | | svn path=/main/trunk/; revision=4614
* Remove USE_EXPAND_HIDDEN from make.globals since it's now included in the ↵Zac Medico2006-07-071-3/+0
| | | | | | base profile. svn path=/main/trunk/; revision=3812
* make elog mail module always set the 'From' header for rfc2822 complianceMarius Mauch2006-06-101-1/+1
| | | | svn path=/main/trunk/; revision=3483
* Move hard coding of /etc/env.d in CONFIG_PROTECT_MASK from ↵Zac Medico2006-06-081-0/+1
| | | | | | portage.config.__getitem__() to make.globals. Thanks to pauldv for reporting. svn path=/main/trunk/; revision=3470
* set a timeout on wget to 60 seconds to fix bug 101196; the old timeout was ↵Alec Warner2006-05-251-2/+2
| | | | | | 15 minutes :/ svn path=/main/trunk/; revision=3412
* Add kernel to the default USE_EXPAND_HIDDEN. Thanks to Flameeyes for reporting.Zac Medico2006-05-231-1/+1
| | | | svn path=/main/trunk/; revision=3404
* Add ELIBC and USERLAND to USE_EXPAND_HIDDEN in make.globals since the user ↵Zac Medico2006-05-231-0/+3
| | | | | | can't change those flags easily. svn path=/main/trunk/; revision=3401
* move some elog defaults into make.globals, add new vars for mail from and ↵Marius Mauch2006-03-261-0/+7
| | | | | | subject (bug #116637), change default location for mod_save logfiles to PORT_LOGDIR/elog (bug #124165) svn path=/main/trunk/; revision=3014
* Add support for generic PORTAGE_RSYNC_{EXTRA_,}OPTS, deprecate existing ↵Marius Mauch2006-03-191-2/+4
| | | | | | RSYNC_ variables, rename RSYNC_RETRIES to PORTAGE_RSYNC_RETRIES svn path=/main/trunk/; revision=2955
* Add a new PORTAGE_WORKDIR_MODE config variable so that the mode of WORKDIR ↵Zac Medico2006-03-161-0/+3
| | | | | | is no longer hard coded. See bug #8688. svn path=/main/trunk/; revision=2901
* Move PORTAGE_INST_UID and PORTAGE_INST_GID from ebuild.sh to make.globals so ↵Zac Medico2006-03-111-0/+4
| | | | | | they can be overridden. svn path=/main/trunk/; revision=2846
* update copyrightsMike Frysinger2006-03-091-1/+1
| | | | svn path=/main/trunk/; revision=2827
* Make the post-sync metadata-transfer a FEATURE so that it can be optionally ↵Zac Medico2006-02-261-1/+1
| | | | | | disabled. svn path=/main/trunk/; revision=2788
* Disable auto-use prior to code removalMarius Mauch2006-01-241-0/+3
| | | | svn path=/main/trunk/; revision=2582
* Update the casing of "linux" on the default distfile mirror.Jason Stubbs2005-09-291-1/+1
| | | | svn path=/main/branches/2.0/; revision=2054
* header changes, $Header: -> $Id:Brian Harring2005-08-301-1/+1
| | | | svn path=/main/branches/2.0/; revision=1951
* Migration (without history) of the current stable line to subversion.Jason Stubbs2005-08-281-0/+67
svn path=/main/branches/2.0/; revision=1941