summaryrefslogtreecommitdiffstats
path: root/man
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2012-08-21 13:22:19 -0700
committerZac Medico <zmedico@gentoo.org>2012-08-21 13:22:19 -0700
commitaccee1b7c61da284022f86d9ab39bcb492ea4023 (patch)
tree7a25fa56dbb0b3878f5a8050f60f0a193281057b /man
parentb696337bf20fdc539ce7721df7a4b42b35999705 (diff)
downloadportage-accee1b7c61da284022f86d9ab39bcb492ea4023.tar.gz
portage-accee1b7c61da284022f86d9ab39bcb492ea4023.tar.bz2
portage-accee1b7c61da284022f86d9ab39bcb492ea4023.zip
Implement PORTAGE_CHECKSUM_FILTER for bug #432170
Diffstat (limited to 'man')
-rw-r--r--man/make.conf.519
1 files changed, 18 insertions, 1 deletions
diff --git a/man/make.conf.5 b/man/make.conf.5
index c617fbcfe..59f32b87c 100644
--- a/man/make.conf.5
+++ b/man/make.conf.5
@@ -1,4 +1,4 @@
-.TH "MAKE.CONF" "5" "Jul 2012" "Portage VERSION" "Portage"
+.TH "MAKE.CONF" "5" "Aug 2012" "Portage VERSION" "Portage"
.SH "NAME"
make.conf \- custom settings for Portage
.SH "SYNOPSIS"
@@ -697,6 +697,23 @@ for bzip2 compression operations. \fBPORTAGE_BZIP2_COMMAND\fR will also be
called for extraction operation, with -d appended, unless the
\fBPORTAGE_BUNZIP2_COMMAND\fR variable is set.
.TP
+\fBPORTAGE_CHECKSUM_FILTER\fR = \fI[space delimited list of hash names]\fR
+This variable may be used to filter the hash functions that are used to
+verify integrity of files. Hash functions names are case\-insensitive, and
+the \fI*\fR and \fI\-*\fR wildcard tokens are supported.
+.br
+Defaults to the value of *.
+.br
+.I Examples:
+.nf
+# Use all available hash functions
+PORTAGE_CHECKSUM_FILTER="*"
+# Use any function except whirlpool
+PORTAGE_CHECKSUM_FILTER="* \-whirlpool"
+# Only use sha256
+PORTAGE_CHECKSUM_FILTER="\-* sha256"
+.fi
+.TP
\fBPORTAGE_COMPRESS\fR = \fI"bzip2"\fR
This variable contains the command used to compress documentation during the
install phase.